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=google.ads.googleads.v16.enums.ServedAssetFieldTypeEnum_ServedAssetFieldType" json:"pinned_field,omitempty"` + PinnedField enums.ServedAssetFieldTypeEnum_ServedAssetFieldType `protobuf:"varint,11,opt,name=pinned_field,json=pinnedField,proto3,enum=google.ads.googleads.v17.enums.ServedAssetFieldTypeEnum_ServedAssetFieldType" json:"pinned_field,omitempty"` // Output only. Source of the ad group ad asset. - Source enums.AssetSourceEnum_AssetSource `protobuf:"varint,12,opt,name=source,proto3,enum=google.ads.googleads.v16.enums.AssetSourceEnum_AssetSource" json:"source,omitempty"` + Source enums.AssetSourceEnum_AssetSource `protobuf:"varint,12,opt,name=source,proto3,enum=google.ads.googleads.v17.enums.AssetSourceEnum_AssetSource" json:"source,omitempty"` } func (x *AdGroupAdAssetView) Reset() { *x = AdGroupAdAssetView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -91,7 +91,7 @@ func (x *AdGroupAdAssetView) String() string { func (*AdGroupAdAssetView) ProtoMessage() {} func (x *AdGroupAdAssetView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -104,7 +104,7 @@ func (x *AdGroupAdAssetView) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupAdAssetView.ProtoReflect.Descriptor instead. func (*AdGroupAdAssetView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto_rawDescGZIP(), []int{0} } func (x *AdGroupAdAssetView) GetResourceName() string { @@ -179,16 +179,16 @@ type AdGroupAdAssetPolicySummary struct { // Output only. The list of policy findings for the ad group ad asset. 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 group ad asset 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 group ad asset, // 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 *AdGroupAdAssetPolicySummary) Reset() { *x = AdGroupAdAssetPolicySummary{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -201,7 +201,7 @@ func (x *AdGroupAdAssetPolicySummary) String() string { func (*AdGroupAdAssetPolicySummary) ProtoMessage() {} func (x *AdGroupAdAssetPolicySummary) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -214,7 +214,7 @@ func (x *AdGroupAdAssetPolicySummary) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupAdAssetPolicySummary.ProtoReflect.Descriptor instead. func (*AdGroupAdAssetPolicySummary) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto_rawDescGZIP(), []int{1} } func (x *AdGroupAdAssetPolicySummary) GetPolicyTopicEntries() []*common.PolicyTopicEntry { @@ -238,38 +238,38 @@ func (x *AdGroupAdAssetPolicySummary) GetApprovalStatus() enums.PolicyApprovalSt return enums.PolicyApprovalStatusEnum_PolicyApprovalStatus(0) } -var File_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_ad_group_ad_asset_view_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, 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, 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, + 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, + 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, 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, + 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, 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, 0x73, 0x73, 0x65, 0x74, + 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, 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, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, + 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, 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, + 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, 0x5f, + 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, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, @@ -295,7 +295,7 @@ var file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_rawDesc 0x01, 0x01, 0x12, 0x65, 0x0a, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 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, 0x41, 0x73, 0x73, 0x65, 0x74, 0x46, 0x69, 0x65, + 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x09, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x07, 0x65, 0x6e, 0x61, @@ -303,7 +303,7 @@ var file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_rawDesc 0x02, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x88, 0x01, 0x01, 0x12, 0x6b, 0x0a, 0x0e, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x03, 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, + 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, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0d, 0x70, 0x6f, 0x6c, @@ -311,21 +311,21 @@ var file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_rawDesc 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x04, 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, 0x41, 0x73, 0x73, 0x65, 0x74, 0x50, 0x65, 0x72, + 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x10, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x75, 0x0a, 0x0c, 0x70, 0x69, 0x6e, 0x6e, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x0b, 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, + 0x73, 0x2e, 0x67, 0x6f, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0b, 0x70, 0x69, 0x6e, 0x6e, 0x65, 0x64, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x58, 0x0a, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 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, + 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, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x3a, @@ -345,13 +345,13 @@ var file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_rawDesc 0x6d, 0x61, 0x72, 0x79, 0x12, 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, + 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, 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, + 0x64, 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, @@ -359,64 +359,64 @@ var file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_rawDesc 0x74, 0x75, 0x73, 0x12, 0x7b, 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, + 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x89, 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, 0x17, 0x41, 0x64, 0x47, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x17, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 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, + 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, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, + 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, + 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, 0x70, 0x72, + 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_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_rawDescData = file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_rawDesc + file_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto_rawDescData = file_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_goTypes = []interface{}{ - (*AdGroupAdAssetView)(nil), // 0: google.ads.googleads.v16.resources.AdGroupAdAssetView - (*AdGroupAdAssetPolicySummary)(nil), // 1: google.ads.googleads.v16.resources.AdGroupAdAssetPolicySummary - (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 2: google.ads.googleads.v16.enums.AssetFieldTypeEnum.AssetFieldType - (enums.AssetPerformanceLabelEnum_AssetPerformanceLabel)(0), // 3: google.ads.googleads.v16.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel - (enums.ServedAssetFieldTypeEnum_ServedAssetFieldType)(0), // 4: google.ads.googleads.v16.enums.ServedAssetFieldTypeEnum.ServedAssetFieldType - (enums.AssetSourceEnum_AssetSource)(0), // 5: google.ads.googleads.v16.enums.AssetSourceEnum.AssetSource - (*common.PolicyTopicEntry)(nil), // 6: google.ads.googleads.v16.common.PolicyTopicEntry - (enums.PolicyReviewStatusEnum_PolicyReviewStatus)(0), // 7: google.ads.googleads.v16.enums.PolicyReviewStatusEnum.PolicyReviewStatus - (enums.PolicyApprovalStatusEnum_PolicyApprovalStatus)(0), // 8: google.ads.googleads.v16.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus +var file_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto_goTypes = []interface{}{ + (*AdGroupAdAssetView)(nil), // 0: google.ads.googleads.v17.resources.AdGroupAdAssetView + (*AdGroupAdAssetPolicySummary)(nil), // 1: google.ads.googleads.v17.resources.AdGroupAdAssetPolicySummary + (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 2: google.ads.googleads.v17.enums.AssetFieldTypeEnum.AssetFieldType + (enums.AssetPerformanceLabelEnum_AssetPerformanceLabel)(0), // 3: google.ads.googleads.v17.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel + (enums.ServedAssetFieldTypeEnum_ServedAssetFieldType)(0), // 4: google.ads.googleads.v17.enums.ServedAssetFieldTypeEnum.ServedAssetFieldType + (enums.AssetSourceEnum_AssetSource)(0), // 5: google.ads.googleads.v17.enums.AssetSourceEnum.AssetSource + (*common.PolicyTopicEntry)(nil), // 6: google.ads.googleads.v17.common.PolicyTopicEntry + (enums.PolicyReviewStatusEnum_PolicyReviewStatus)(0), // 7: google.ads.googleads.v17.enums.PolicyReviewStatusEnum.PolicyReviewStatus + (enums.PolicyApprovalStatusEnum_PolicyApprovalStatus)(0), // 8: google.ads.googleads.v17.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus } -var file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v16.resources.AdGroupAdAssetView.field_type:type_name -> google.ads.googleads.v16.enums.AssetFieldTypeEnum.AssetFieldType - 1, // 1: google.ads.googleads.v16.resources.AdGroupAdAssetView.policy_summary:type_name -> google.ads.googleads.v16.resources.AdGroupAdAssetPolicySummary - 3, // 2: google.ads.googleads.v16.resources.AdGroupAdAssetView.performance_label:type_name -> google.ads.googleads.v16.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel - 4, // 3: google.ads.googleads.v16.resources.AdGroupAdAssetView.pinned_field:type_name -> google.ads.googleads.v16.enums.ServedAssetFieldTypeEnum.ServedAssetFieldType - 5, // 4: google.ads.googleads.v16.resources.AdGroupAdAssetView.source:type_name -> google.ads.googleads.v16.enums.AssetSourceEnum.AssetSource - 6, // 5: google.ads.googleads.v16.resources.AdGroupAdAssetPolicySummary.policy_topic_entries:type_name -> google.ads.googleads.v16.common.PolicyTopicEntry - 7, // 6: google.ads.googleads.v16.resources.AdGroupAdAssetPolicySummary.review_status:type_name -> google.ads.googleads.v16.enums.PolicyReviewStatusEnum.PolicyReviewStatus - 8, // 7: google.ads.googleads.v16.resources.AdGroupAdAssetPolicySummary.approval_status:type_name -> google.ads.googleads.v16.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus +var file_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v17.resources.AdGroupAdAssetView.field_type:type_name -> google.ads.googleads.v17.enums.AssetFieldTypeEnum.AssetFieldType + 1, // 1: google.ads.googleads.v17.resources.AdGroupAdAssetView.policy_summary:type_name -> google.ads.googleads.v17.resources.AdGroupAdAssetPolicySummary + 3, // 2: google.ads.googleads.v17.resources.AdGroupAdAssetView.performance_label:type_name -> google.ads.googleads.v17.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel + 4, // 3: google.ads.googleads.v17.resources.AdGroupAdAssetView.pinned_field:type_name -> google.ads.googleads.v17.enums.ServedAssetFieldTypeEnum.ServedAssetFieldType + 5, // 4: google.ads.googleads.v17.resources.AdGroupAdAssetView.source:type_name -> google.ads.googleads.v17.enums.AssetSourceEnum.AssetSource + 6, // 5: google.ads.googleads.v17.resources.AdGroupAdAssetPolicySummary.policy_topic_entries:type_name -> google.ads.googleads.v17.common.PolicyTopicEntry + 7, // 6: google.ads.googleads.v17.resources.AdGroupAdAssetPolicySummary.review_status:type_name -> google.ads.googleads.v17.enums.PolicyReviewStatusEnum.PolicyReviewStatus + 8, // 7: google.ads.googleads.v17.resources.AdGroupAdAssetPolicySummary.approval_status:type_name -> google.ads.googleads.v17.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus 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 @@ -424,13 +424,13 @@ var file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_depIdxs 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_init() } -func file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_init() { - if File_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto_init() } +func file_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto_init() { + if File_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupAdAssetView); i { case 0: return &v.state @@ -442,7 +442,7 @@ func file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_init() return nil } } - file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupAdAssetPolicySummary); i { case 0: return &v.state @@ -455,23 +455,23 @@ func file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_init() } } } - file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_ad_group_ad_asset_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_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto_rawDesc, NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto = out.File - file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_ad_group_ad_asset_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto = out.File + file_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_ad_group_ad_asset_view_proto_depIdxs = nil } diff --git a/resources/ad_group_ad_label.pb.go b/resources/ad_group_ad_label.pb.go index cacecfd2..dbe12ae8 100644 --- a/resources/ad_group_ad_label.pb.go +++ b/resources/ad_group_ad_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/resources/ad_group_ad_label.proto +// source: google/ads/googleads/v17/resources/ad_group_ad_label.proto package resources @@ -54,7 +54,7 @@ type AdGroupAdLabel struct { func (x *AdGroupAdLabel) Reset() { *x = AdGroupAdLabel{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_ad_group_ad_label_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_ad_label_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67,7 +67,7 @@ func (x *AdGroupAdLabel) String() string { func (*AdGroupAdLabel) ProtoMessage() {} func (x *AdGroupAdLabel) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_ad_group_ad_label_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_ad_label_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80,7 +80,7 @@ func (x *AdGroupAdLabel) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupAdLabel.ProtoReflect.Descriptor instead. func (*AdGroupAdLabel) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_ad_group_ad_label_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_ad_group_ad_label_proto_rawDescGZIP(), []int{0} } func (x *AdGroupAdLabel) GetResourceName() string { @@ -104,15 +104,15 @@ func (x *AdGroupAdLabel) GetLabel() string { return "" } -var File_google_ads_googleads_v16_resources_ad_group_ad_label_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_ad_group_ad_label_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_ad_group_ad_label_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_ad_group_ad_label_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, 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, 0x6c, 0x61, 0x62, 0x65, 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, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -143,41 +143,41 @@ var file_google_ads_googleads_v16_resources_ad_group_ad_label_proto_rawDesc = [] 0x7d, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x42, 0x85, 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, 0x13, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x4c, 0x61, 0x62, 0x65, 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_ad_group_ad_label_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_ad_group_ad_label_proto_rawDescData = file_google_ads_googleads_v16_resources_ad_group_ad_label_proto_rawDesc + file_google_ads_googleads_v17_resources_ad_group_ad_label_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_ad_group_ad_label_proto_rawDescData = file_google_ads_googleads_v17_resources_ad_group_ad_label_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_ad_group_ad_label_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_ad_group_ad_label_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_ad_group_ad_label_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_ad_group_ad_label_proto_rawDescData) +func file_google_ads_googleads_v17_resources_ad_group_ad_label_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_ad_group_ad_label_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_ad_group_ad_label_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_ad_group_ad_label_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_ad_group_ad_label_proto_rawDescData + return file_google_ads_googleads_v17_resources_ad_group_ad_label_proto_rawDescData } -var file_google_ads_googleads_v16_resources_ad_group_ad_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_ad_group_ad_label_proto_goTypes = []interface{}{ - (*AdGroupAdLabel)(nil), // 0: google.ads.googleads.v16.resources.AdGroupAdLabel +var file_google_ads_googleads_v17_resources_ad_group_ad_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_ad_group_ad_label_proto_goTypes = []interface{}{ + (*AdGroupAdLabel)(nil), // 0: google.ads.googleads.v17.resources.AdGroupAdLabel } -var file_google_ads_googleads_v16_resources_ad_group_ad_label_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_ad_group_ad_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 @@ -185,13 +185,13 @@ var file_google_ads_googleads_v16_resources_ad_group_ad_label_proto_depIdxs = [] 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_ad_group_ad_label_proto_init() } -func file_google_ads_googleads_v16_resources_ad_group_ad_label_proto_init() { - if File_google_ads_googleads_v16_resources_ad_group_ad_label_proto != nil { +func init() { file_google_ads_googleads_v17_resources_ad_group_ad_label_proto_init() } +func file_google_ads_googleads_v17_resources_ad_group_ad_label_proto_init() { + if File_google_ads_googleads_v17_resources_ad_group_ad_label_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_ad_group_ad_label_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_ad_group_ad_label_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupAdLabel); i { case 0: return &v.state @@ -204,23 +204,23 @@ func file_google_ads_googleads_v16_resources_ad_group_ad_label_proto_init() { } } } - file_google_ads_googleads_v16_resources_ad_group_ad_label_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_ad_group_ad_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_resources_ad_group_ad_label_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_ad_group_ad_label_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_ad_group_ad_label_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_ad_group_ad_label_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_ad_group_ad_label_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_ad_group_ad_label_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_ad_group_ad_label_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_ad_group_ad_label_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_ad_group_ad_label_proto = out.File - file_google_ads_googleads_v16_resources_ad_group_ad_label_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_ad_group_ad_label_proto_goTypes = nil - file_google_ads_googleads_v16_resources_ad_group_ad_label_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_ad_group_ad_label_proto = out.File + file_google_ads_googleads_v17_resources_ad_group_ad_label_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_ad_group_ad_label_proto_goTypes = nil + file_google_ads_googleads_v17_resources_ad_group_ad_label_proto_depIdxs = nil } diff --git a/resources/ad_group_asset.pb.go b/resources/ad_group_asset.pb.go index 4ff944b4..3b475af7 100644 --- a/resources/ad_group_asset.pb.go +++ b/resources/ad_group_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/resources/ad_group_asset.proto +// source: google/ads/googleads/v17/resources/ad_group_asset.proto package resources @@ -53,30 +53,30 @@ type AdGroupAsset struct { // Required. Immutable. The asset which is linked to the ad group. Asset string `protobuf:"bytes,3,opt,name=asset,proto3" json:"asset,omitempty"` // Required. Immutable. Role that the asset takes under the linked ad group. - FieldType enums.AssetFieldTypeEnum_AssetFieldType `protobuf:"varint,4,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,4,opt,name=field_type,json=fieldType,proto3,enum=google.ads.googleads.v17.enums.AssetFieldTypeEnum_AssetFieldType" json:"field_type,omitempty"` // Output only. Source of the adgroup asset link. - Source enums.AssetSourceEnum_AssetSource `protobuf:"varint,6,opt,name=source,proto3,enum=google.ads.googleads.v16.enums.AssetSourceEnum_AssetSource" json:"source,omitempty"` + Source enums.AssetSourceEnum_AssetSource `protobuf:"varint,6,opt,name=source,proto3,enum=google.ads.googleads.v17.enums.AssetSourceEnum_AssetSource" json:"source,omitempty"` // Status of the ad group asset. - Status enums.AssetLinkStatusEnum_AssetLinkStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.AssetLinkStatusEnum_AssetLinkStatus" json:"status,omitempty"` + Status enums.AssetLinkStatusEnum_AssetLinkStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.AssetLinkStatusEnum_AssetLinkStatus" json:"status,omitempty"` // Output only. Provides the PrimaryStatus of this asset link. // Primary status is meant essentially to differentiate between the plain // "status" field, which has advertiser set values of enabled, paused, or // removed. The primary status takes into account other signals (for assets // its mainly policy and quality approvals) to come up with a more // comprehensive status to indicate its serving state. - PrimaryStatus enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus `protobuf:"varint,7,opt,name=primary_status,json=primaryStatus,proto3,enum=google.ads.googleads.v16.enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus" json:"primary_status,omitempty"` + PrimaryStatus enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus `protobuf:"varint,7,opt,name=primary_status,json=primaryStatus,proto3,enum=google.ads.googleads.v17.enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus" json:"primary_status,omitempty"` // Output only. Provides the details of the primary status and its associated // reasons. PrimaryStatusDetails []*common.AssetLinkPrimaryStatusDetails `protobuf:"bytes,8,rep,name=primary_status_details,json=primaryStatusDetails,proto3" json:"primary_status_details,omitempty"` // Output only. Provides a list of reasons for why an asset is not serving or // not serving at full capacity. - PrimaryStatusReasons []enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason `protobuf:"varint,9,rep,packed,name=primary_status_reasons,json=primaryStatusReasons,proto3,enum=google.ads.googleads.v16.enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason" json:"primary_status_reasons,omitempty"` + PrimaryStatusReasons []enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason `protobuf:"varint,9,rep,packed,name=primary_status_reasons,json=primaryStatusReasons,proto3,enum=google.ads.googleads.v17.enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason" json:"primary_status_reasons,omitempty"` } func (x *AdGroupAsset) Reset() { *x = AdGroupAsset{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_ad_group_asset_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_asset_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -89,7 +89,7 @@ func (x *AdGroupAsset) String() string { func (*AdGroupAsset) ProtoMessage() {} func (x *AdGroupAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_ad_group_asset_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_asset_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -102,7 +102,7 @@ func (x *AdGroupAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupAsset.ProtoReflect.Descriptor instead. func (*AdGroupAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_ad_group_asset_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_ad_group_asset_proto_rawDescGZIP(), []int{0} } func (x *AdGroupAsset) GetResourceName() string { @@ -168,36 +168,36 @@ func (x *AdGroupAsset) GetPrimaryStatusReasons() []enums.AssetLinkPrimaryStatusR return nil } -var File_google_ads_googleads_v16_resources_ad_group_asset_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_ad_group_asset_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_ad_group_asset_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_ad_group_asset_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, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x73, 0x73, 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, 0x32, 0x67, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x6e, 0x2f, 0x61, + 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, 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, + 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, 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, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, + 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, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, + 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, 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, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 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, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x6f, + 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, 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, @@ -220,25 +220,25 @@ var file_google_ads_googleads_v16_resources_ad_group_asset_proto_rawDesc = []byt 0x73, 0x73, 0x65, 0x74, 0x12, 0x68, 0x0a, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 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, 0x41, 0x73, 0x73, 0x65, 0x74, 0x46, + 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, 0x42, 0x06, 0xe0, 0x41, 0x02, 0xe0, 0x41, 0x05, 0x52, 0x09, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x58, 0x0a, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x06, 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, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x5b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 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, 0x73, 0x73, 0x65, 0x74, 0x4c, + 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x7d, 0x0a, 0x0e, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 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, 0x41, + 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, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, @@ -246,7 +246,7 @@ var file_google_ads_googleads_v16_resources_ad_group_asset_proto_rawDesc = []byt 0x61, 0x74, 0x75, 0x73, 0x12, 0x79, 0x0a, 0x16, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x18, 0x08, 0x20, 0x03, 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, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x14, 0x70, 0x72, 0x69, 0x6d, 0x61, @@ -254,7 +254,7 @@ var file_google_ads_googleads_v16_resources_ad_group_asset_proto_rawDesc = []byt 0x98, 0x01, 0x0a, 0x16, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x73, 0x18, 0x09, 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, + 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, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x69, 0x6d, @@ -270,53 +270,53 @@ var file_google_ads_googleads_v16_resources_ad_group_asset_proto_rawDesc = []byt 0x65, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x7d, 0x42, 0x83, 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, 0x11, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x11, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 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, 0x65, 0x73, + 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, 0x6f, + 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, + 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_asset_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_ad_group_asset_proto_rawDescData = file_google_ads_googleads_v16_resources_ad_group_asset_proto_rawDesc + file_google_ads_googleads_v17_resources_ad_group_asset_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_ad_group_asset_proto_rawDescData = file_google_ads_googleads_v17_resources_ad_group_asset_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_ad_group_asset_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_ad_group_asset_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_ad_group_asset_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_ad_group_asset_proto_rawDescData) +func file_google_ads_googleads_v17_resources_ad_group_asset_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_ad_group_asset_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_ad_group_asset_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_ad_group_asset_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_ad_group_asset_proto_rawDescData + return file_google_ads_googleads_v17_resources_ad_group_asset_proto_rawDescData } -var file_google_ads_googleads_v16_resources_ad_group_asset_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_ad_group_asset_proto_goTypes = []interface{}{ - (*AdGroupAsset)(nil), // 0: google.ads.googleads.v16.resources.AdGroupAsset - (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 1: google.ads.googleads.v16.enums.AssetFieldTypeEnum.AssetFieldType - (enums.AssetSourceEnum_AssetSource)(0), // 2: google.ads.googleads.v16.enums.AssetSourceEnum.AssetSource - (enums.AssetLinkStatusEnum_AssetLinkStatus)(0), // 3: google.ads.googleads.v16.enums.AssetLinkStatusEnum.AssetLinkStatus - (enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus)(0), // 4: google.ads.googleads.v16.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus - (*common.AssetLinkPrimaryStatusDetails)(nil), // 5: google.ads.googleads.v16.common.AssetLinkPrimaryStatusDetails - (enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason)(0), // 6: google.ads.googleads.v16.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason +var file_google_ads_googleads_v17_resources_ad_group_asset_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_ad_group_asset_proto_goTypes = []interface{}{ + (*AdGroupAsset)(nil), // 0: google.ads.googleads.v17.resources.AdGroupAsset + (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 1: google.ads.googleads.v17.enums.AssetFieldTypeEnum.AssetFieldType + (enums.AssetSourceEnum_AssetSource)(0), // 2: google.ads.googleads.v17.enums.AssetSourceEnum.AssetSource + (enums.AssetLinkStatusEnum_AssetLinkStatus)(0), // 3: google.ads.googleads.v17.enums.AssetLinkStatusEnum.AssetLinkStatus + (enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus)(0), // 4: google.ads.googleads.v17.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus + (*common.AssetLinkPrimaryStatusDetails)(nil), // 5: google.ads.googleads.v17.common.AssetLinkPrimaryStatusDetails + (enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason)(0), // 6: google.ads.googleads.v17.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason } -var file_google_ads_googleads_v16_resources_ad_group_asset_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.AdGroupAsset.field_type:type_name -> google.ads.googleads.v16.enums.AssetFieldTypeEnum.AssetFieldType - 2, // 1: google.ads.googleads.v16.resources.AdGroupAsset.source:type_name -> google.ads.googleads.v16.enums.AssetSourceEnum.AssetSource - 3, // 2: google.ads.googleads.v16.resources.AdGroupAsset.status:type_name -> google.ads.googleads.v16.enums.AssetLinkStatusEnum.AssetLinkStatus - 4, // 3: google.ads.googleads.v16.resources.AdGroupAsset.primary_status:type_name -> google.ads.googleads.v16.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus - 5, // 4: google.ads.googleads.v16.resources.AdGroupAsset.primary_status_details:type_name -> google.ads.googleads.v16.common.AssetLinkPrimaryStatusDetails - 6, // 5: google.ads.googleads.v16.resources.AdGroupAsset.primary_status_reasons:type_name -> google.ads.googleads.v16.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason +var file_google_ads_googleads_v17_resources_ad_group_asset_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.AdGroupAsset.field_type:type_name -> google.ads.googleads.v17.enums.AssetFieldTypeEnum.AssetFieldType + 2, // 1: google.ads.googleads.v17.resources.AdGroupAsset.source:type_name -> google.ads.googleads.v17.enums.AssetSourceEnum.AssetSource + 3, // 2: google.ads.googleads.v17.resources.AdGroupAsset.status:type_name -> google.ads.googleads.v17.enums.AssetLinkStatusEnum.AssetLinkStatus + 4, // 3: google.ads.googleads.v17.resources.AdGroupAsset.primary_status:type_name -> google.ads.googleads.v17.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus + 5, // 4: google.ads.googleads.v17.resources.AdGroupAsset.primary_status_details:type_name -> google.ads.googleads.v17.common.AssetLinkPrimaryStatusDetails + 6, // 5: google.ads.googleads.v17.resources.AdGroupAsset.primary_status_reasons:type_name -> google.ads.googleads.v17.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason 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 @@ -324,13 +324,13 @@ var file_google_ads_googleads_v16_resources_ad_group_asset_proto_depIdxs = []int 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_ad_group_asset_proto_init() } -func file_google_ads_googleads_v16_resources_ad_group_asset_proto_init() { - if File_google_ads_googleads_v16_resources_ad_group_asset_proto != nil { +func init() { file_google_ads_googleads_v17_resources_ad_group_asset_proto_init() } +func file_google_ads_googleads_v17_resources_ad_group_asset_proto_init() { + if File_google_ads_googleads_v17_resources_ad_group_asset_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_ad_group_asset_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_ad_group_asset_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupAsset); i { case 0: return &v.state @@ -347,18 +347,18 @@ func file_google_ads_googleads_v16_resources_ad_group_asset_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_ad_group_asset_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_ad_group_asset_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_ad_group_asset_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_ad_group_asset_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_ad_group_asset_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_ad_group_asset_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_ad_group_asset_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_ad_group_asset_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_ad_group_asset_proto = out.File - file_google_ads_googleads_v16_resources_ad_group_asset_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_ad_group_asset_proto_goTypes = nil - file_google_ads_googleads_v16_resources_ad_group_asset_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_ad_group_asset_proto = out.File + file_google_ads_googleads_v17_resources_ad_group_asset_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_ad_group_asset_proto_goTypes = nil + file_google_ads_googleads_v17_resources_ad_group_asset_proto_depIdxs = nil } diff --git a/resources/ad_group_asset_set.pb.go b/resources/ad_group_asset_set.pb.go index c17255c1..11a9299c 100644 --- a/resources/ad_group_asset_set.pb.go +++ b/resources/ad_group_asset_set.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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_asset_set.proto +// source: google/ads/googleads/v17/resources/ad_group_asset_set.proto package resources @@ -53,13 +53,13 @@ type AdGroupAssetSet struct { // Immutable. The asset set which is linked to the ad group. AssetSet string `protobuf:"bytes,3,opt,name=asset_set,json=assetSet,proto3" json:"asset_set,omitempty"` // Output only. The status of the ad group asset set. Read-only. - Status enums.AssetSetLinkStatusEnum_AssetSetLinkStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.AssetSetLinkStatusEnum_AssetSetLinkStatus" json:"status,omitempty"` + Status enums.AssetSetLinkStatusEnum_AssetSetLinkStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.AssetSetLinkStatusEnum_AssetSetLinkStatus" json:"status,omitempty"` } func (x *AdGroupAssetSet) Reset() { *x = AdGroupAssetSet{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_ad_group_asset_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_asset_set_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -72,7 +72,7 @@ func (x *AdGroupAssetSet) String() string { func (*AdGroupAssetSet) ProtoMessage() {} func (x *AdGroupAssetSet) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_ad_group_asset_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_asset_set_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85,7 +85,7 @@ func (x *AdGroupAssetSet) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupAssetSet.ProtoReflect.Descriptor instead. func (*AdGroupAssetSet) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_ad_group_asset_set_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_ad_group_asset_set_proto_rawDescGZIP(), []int{0} } func (x *AdGroupAssetSet) GetResourceName() string { @@ -116,17 +116,17 @@ func (x *AdGroupAssetSet) GetStatus() enums.AssetSetLinkStatusEnum_AssetSetLinkS return enums.AssetSetLinkStatusEnum_AssetSetLinkStatus(0) } -var File_google_ads_googleads_v16_resources_ad_group_asset_set_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_ad_group_asset_set_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_ad_group_asset_set_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_ad_group_asset_set_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, 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, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 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, + 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, + 0x6f, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, @@ -150,7 +150,7 @@ var file_google_ads_googleads_v16_resources_ad_group_asset_set_proto_rawDesc = [ 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x52, 0x08, 0x61, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x12, 0x66, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 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, + 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, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, @@ -163,43 +163,43 @@ var file_google_ads_googleads_v16_resources_ad_group_asset_set_proto_rawDesc = [ 0x74, 0x73, 0x2f, 0x7b, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x86, 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, + 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, 0x14, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 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, 0x65, 0x73, 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, + 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, 0x36, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 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, + 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_asset_set_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_ad_group_asset_set_proto_rawDescData = file_google_ads_googleads_v16_resources_ad_group_asset_set_proto_rawDesc + file_google_ads_googleads_v17_resources_ad_group_asset_set_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_ad_group_asset_set_proto_rawDescData = file_google_ads_googleads_v17_resources_ad_group_asset_set_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_ad_group_asset_set_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_ad_group_asset_set_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_ad_group_asset_set_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_ad_group_asset_set_proto_rawDescData) +func file_google_ads_googleads_v17_resources_ad_group_asset_set_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_ad_group_asset_set_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_ad_group_asset_set_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_ad_group_asset_set_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_ad_group_asset_set_proto_rawDescData + return file_google_ads_googleads_v17_resources_ad_group_asset_set_proto_rawDescData } -var file_google_ads_googleads_v16_resources_ad_group_asset_set_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_ad_group_asset_set_proto_goTypes = []interface{}{ - (*AdGroupAssetSet)(nil), // 0: google.ads.googleads.v16.resources.AdGroupAssetSet - (enums.AssetSetLinkStatusEnum_AssetSetLinkStatus)(0), // 1: google.ads.googleads.v16.enums.AssetSetLinkStatusEnum.AssetSetLinkStatus +var file_google_ads_googleads_v17_resources_ad_group_asset_set_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_ad_group_asset_set_proto_goTypes = []interface{}{ + (*AdGroupAssetSet)(nil), // 0: google.ads.googleads.v17.resources.AdGroupAssetSet + (enums.AssetSetLinkStatusEnum_AssetSetLinkStatus)(0), // 1: google.ads.googleads.v17.enums.AssetSetLinkStatusEnum.AssetSetLinkStatus } -var file_google_ads_googleads_v16_resources_ad_group_asset_set_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.AdGroupAssetSet.status:type_name -> google.ads.googleads.v16.enums.AssetSetLinkStatusEnum.AssetSetLinkStatus +var file_google_ads_googleads_v17_resources_ad_group_asset_set_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.AdGroupAssetSet.status:type_name -> google.ads.googleads.v17.enums.AssetSetLinkStatusEnum.AssetSetLinkStatus 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 @@ -207,13 +207,13 @@ var file_google_ads_googleads_v16_resources_ad_group_asset_set_proto_depIdxs = [ 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_ad_group_asset_set_proto_init() } -func file_google_ads_googleads_v16_resources_ad_group_asset_set_proto_init() { - if File_google_ads_googleads_v16_resources_ad_group_asset_set_proto != nil { +func init() { file_google_ads_googleads_v17_resources_ad_group_asset_set_proto_init() } +func file_google_ads_googleads_v17_resources_ad_group_asset_set_proto_init() { + if File_google_ads_googleads_v17_resources_ad_group_asset_set_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_ad_group_asset_set_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_ad_group_asset_set_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupAssetSet); i { case 0: return &v.state @@ -230,18 +230,18 @@ func file_google_ads_googleads_v16_resources_ad_group_asset_set_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_ad_group_asset_set_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_ad_group_asset_set_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_ad_group_asset_set_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_ad_group_asset_set_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_ad_group_asset_set_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_ad_group_asset_set_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_ad_group_asset_set_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_ad_group_asset_set_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_ad_group_asset_set_proto = out.File - file_google_ads_googleads_v16_resources_ad_group_asset_set_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_ad_group_asset_set_proto_goTypes = nil - file_google_ads_googleads_v16_resources_ad_group_asset_set_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_ad_group_asset_set_proto = out.File + file_google_ads_googleads_v17_resources_ad_group_asset_set_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_ad_group_asset_set_proto_goTypes = nil + file_google_ads_googleads_v17_resources_ad_group_asset_set_proto_depIdxs = nil } diff --git a/resources/ad_group_audience_view.pb.go b/resources/ad_group_audience_view.pb.go index 9adfd99a..9b5596dd 100644 --- a/resources/ad_group_audience_view.pb.go +++ b/resources/ad_group_audience_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_audience_view.proto +// source: google/ads/googleads/v17/resources/ad_group_audience_view.proto package resources @@ -54,7 +54,7 @@ type AdGroupAudienceView struct { func (x *AdGroupAudienceView) Reset() { *x = AdGroupAudienceView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_ad_group_audience_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_audience_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67,7 +67,7 @@ func (x *AdGroupAudienceView) String() string { func (*AdGroupAudienceView) ProtoMessage() {} func (x *AdGroupAudienceView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_ad_group_audience_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_audience_view_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80,7 +80,7 @@ func (x *AdGroupAudienceView) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupAudienceView.ProtoReflect.Descriptor instead. func (*AdGroupAudienceView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_ad_group_audience_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_ad_group_audience_view_proto_rawDescGZIP(), []int{0} } func (x *AdGroupAudienceView) GetResourceName() string { @@ -90,15 +90,15 @@ func (x *AdGroupAudienceView) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_resources_ad_group_audience_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_ad_group_audience_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_ad_group_audience_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_ad_group_audience_view_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, 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, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 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, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -120,41 +120,41 @@ var file_google_ads_googleads_v16_resources_ad_group_audience_view_proto_rawDesc 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x8a, 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, 0x18, 0x41, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x18, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 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, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, + 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, + 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, 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, + 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_audience_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_ad_group_audience_view_proto_rawDescData = file_google_ads_googleads_v16_resources_ad_group_audience_view_proto_rawDesc + file_google_ads_googleads_v17_resources_ad_group_audience_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_ad_group_audience_view_proto_rawDescData = file_google_ads_googleads_v17_resources_ad_group_audience_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_ad_group_audience_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_ad_group_audience_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_ad_group_audience_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_ad_group_audience_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_ad_group_audience_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_ad_group_audience_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_ad_group_audience_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_ad_group_audience_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_ad_group_audience_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_ad_group_audience_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_ad_group_audience_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_ad_group_audience_view_proto_goTypes = []interface{}{ - (*AdGroupAudienceView)(nil), // 0: google.ads.googleads.v16.resources.AdGroupAudienceView +var file_google_ads_googleads_v17_resources_ad_group_audience_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_ad_group_audience_view_proto_goTypes = []interface{}{ + (*AdGroupAudienceView)(nil), // 0: google.ads.googleads.v17.resources.AdGroupAudienceView } -var file_google_ads_googleads_v16_resources_ad_group_audience_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_ad_group_audience_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method output_type 0, // [0:0] is the sub-list for method input_type 0, // [0:0] is the sub-list for extension type_name @@ -162,13 +162,13 @@ var file_google_ads_googleads_v16_resources_ad_group_audience_view_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_ad_group_audience_view_proto_init() } -func file_google_ads_googleads_v16_resources_ad_group_audience_view_proto_init() { - if File_google_ads_googleads_v16_resources_ad_group_audience_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_ad_group_audience_view_proto_init() } +func file_google_ads_googleads_v17_resources_ad_group_audience_view_proto_init() { + if File_google_ads_googleads_v17_resources_ad_group_audience_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_ad_group_audience_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_ad_group_audience_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupAudienceView); i { case 0: return &v.state @@ -185,18 +185,18 @@ func file_google_ads_googleads_v16_resources_ad_group_audience_view_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_ad_group_audience_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_ad_group_audience_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_ad_group_audience_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_ad_group_audience_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_ad_group_audience_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_ad_group_audience_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_ad_group_audience_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_ad_group_audience_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_ad_group_audience_view_proto = out.File - file_google_ads_googleads_v16_resources_ad_group_audience_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_ad_group_audience_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_ad_group_audience_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_ad_group_audience_view_proto = out.File + file_google_ads_googleads_v17_resources_ad_group_audience_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_ad_group_audience_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_ad_group_audience_view_proto_depIdxs = nil } diff --git a/resources/ad_group_bid_modifier.pb.go b/resources/ad_group_bid_modifier.pb.go index ca3830e0..dddc1bdd 100644 --- a/resources/ad_group_bid_modifier.pb.go +++ b/resources/ad_group_bid_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/resources/ad_group_bid_modifier.proto +// source: google/ads/googleads/v17/resources/ad_group_bid_modifier.proto package resources @@ -65,7 +65,7 @@ type AdGroupBidModifier struct { // field is readonly. BaseAdGroup *string `protobuf:"bytes,16,opt,name=base_ad_group,json=baseAdGroup,proto3,oneof" json:"base_ad_group,omitempty"` // Output only. Bid modifier source. - BidModifierSource enums.BidModifierSourceEnum_BidModifierSource `protobuf:"varint,10,opt,name=bid_modifier_source,json=bidModifierSource,proto3,enum=google.ads.googleads.v16.enums.BidModifierSourceEnum_BidModifierSource" json:"bid_modifier_source,omitempty"` + BidModifierSource enums.BidModifierSourceEnum_BidModifierSource `protobuf:"varint,10,opt,name=bid_modifier_source,json=bidModifierSource,proto3,enum=google.ads.googleads.v17.enums.BidModifierSourceEnum_BidModifierSource" json:"bid_modifier_source,omitempty"` // The criterion of this ad group bid modifier. // // Required in create operations starting in V5. @@ -84,7 +84,7 @@ type AdGroupBidModifier struct { func (x *AdGroupBidModifier) Reset() { *x = AdGroupBidModifier{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_bid_modifier_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -97,7 +97,7 @@ func (x *AdGroupBidModifier) String() string { func (*AdGroupBidModifier) ProtoMessage() {} func (x *AdGroupBidModifier) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_bid_modifier_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -110,7 +110,7 @@ func (x *AdGroupBidModifier) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupBidModifier.ProtoReflect.Descriptor instead. func (*AdGroupBidModifier) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_ad_group_bid_modifier_proto_rawDescGZIP(), []int{0} } func (x *AdGroupBidModifier) GetResourceName() string { @@ -252,20 +252,20 @@ func (*AdGroupBidModifier_Device) isAdGroupBidModifier_Criterion() {} func (*AdGroupBidModifier_HotelCheckInDateRange) isAdGroupBidModifier_Criterion() {} -var File_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_ad_group_bid_modifier_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_ad_group_bid_modifier_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, 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, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 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, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 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, + 0x2f, 0x67, 0x6f, 0x6f, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, @@ -297,7 +297,7 @@ var file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_rawDesc 0x13, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x0a, 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, 0x42, 0x69, 0x64, 0x4d, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x11, 0x62, 0x69, 0x64, 0x4d, 0x6f, 0x64, @@ -305,7 +305,7 @@ var file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_rawDesc 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, 0x05, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x44, 0x61, 0x74, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x16, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x44, 0x61, 0x74, 0x65, 0x53, 0x65, 0x6c, @@ -313,7 +313,7 @@ var file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_rawDesc 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x61, 0x64, 0x76, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x62, 0x6f, 0x6f, 0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x18, 0x06, 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, + 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, 0x41, 0x64, 0x76, 0x61, 0x6e, 0x63, 0x65, 0x42, 0x6f, 0x6f, 0x6b, 0x69, 0x6e, 0x67, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x19, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x41, @@ -321,26 +321,26 @@ var file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_rawDesc 0x64, 0x6f, 0x77, 0x12, 0x6e, 0x0a, 0x14, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x5f, 0x6f, 0x66, 0x5f, 0x73, 0x74, 0x61, 0x79, 0x18, 0x07, 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, + 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, 0x4c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x4f, 0x66, 0x53, 0x74, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x11, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x4c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x4f, 0x66, 0x53, 0x74, 0x61, 0x79, 0x12, 0x68, 0x0a, 0x12, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x5f, 0x69, 0x6e, 0x5f, 0x64, 0x61, 0x79, 0x18, 0x08, 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, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x49, 0x6e, 0x44, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x49, 0x6e, 0x44, 0x61, 0x79, 0x12, 0x4a, 0x0a, 0x06, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x18, 0x0b, 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, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x06, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x12, 0x7b, 0x0a, 0x19, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x5f, 0x69, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x18, 0x11, 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, 0x48, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x49, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x15, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x49, 0x6e, 0x44, 0x61, 0x74, @@ -359,55 +359,55 @@ var file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_rawDesc 0x0a, 0x0e, 0x5f, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x89, 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, 0x17, 0x41, 0x64, 0x47, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x17, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 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, + 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, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, + 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, + 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, 0x70, 0x72, + 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_bid_modifier_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_rawDescData = file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_rawDesc + file_google_ads_googleads_v17_resources_ad_group_bid_modifier_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_ad_group_bid_modifier_proto_rawDescData = file_google_ads_googleads_v17_resources_ad_group_bid_modifier_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_rawDescData) +func file_google_ads_googleads_v17_resources_ad_group_bid_modifier_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_ad_group_bid_modifier_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_ad_group_bid_modifier_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_ad_group_bid_modifier_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_rawDescData + return file_google_ads_googleads_v17_resources_ad_group_bid_modifier_proto_rawDescData } -var file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_goTypes = []interface{}{ - (*AdGroupBidModifier)(nil), // 0: google.ads.googleads.v16.resources.AdGroupBidModifier - (enums.BidModifierSourceEnum_BidModifierSource)(0), // 1: google.ads.googleads.v16.enums.BidModifierSourceEnum.BidModifierSource - (*common.HotelDateSelectionTypeInfo)(nil), // 2: google.ads.googleads.v16.common.HotelDateSelectionTypeInfo - (*common.HotelAdvanceBookingWindowInfo)(nil), // 3: google.ads.googleads.v16.common.HotelAdvanceBookingWindowInfo - (*common.HotelLengthOfStayInfo)(nil), // 4: google.ads.googleads.v16.common.HotelLengthOfStayInfo - (*common.HotelCheckInDayInfo)(nil), // 5: google.ads.googleads.v16.common.HotelCheckInDayInfo - (*common.DeviceInfo)(nil), // 6: google.ads.googleads.v16.common.DeviceInfo - (*common.HotelCheckInDateRangeInfo)(nil), // 7: google.ads.googleads.v16.common.HotelCheckInDateRangeInfo +var file_google_ads_googleads_v17_resources_ad_group_bid_modifier_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_ad_group_bid_modifier_proto_goTypes = []interface{}{ + (*AdGroupBidModifier)(nil), // 0: google.ads.googleads.v17.resources.AdGroupBidModifier + (enums.BidModifierSourceEnum_BidModifierSource)(0), // 1: google.ads.googleads.v17.enums.BidModifierSourceEnum.BidModifierSource + (*common.HotelDateSelectionTypeInfo)(nil), // 2: google.ads.googleads.v17.common.HotelDateSelectionTypeInfo + (*common.HotelAdvanceBookingWindowInfo)(nil), // 3: google.ads.googleads.v17.common.HotelAdvanceBookingWindowInfo + (*common.HotelLengthOfStayInfo)(nil), // 4: google.ads.googleads.v17.common.HotelLengthOfStayInfo + (*common.HotelCheckInDayInfo)(nil), // 5: google.ads.googleads.v17.common.HotelCheckInDayInfo + (*common.DeviceInfo)(nil), // 6: google.ads.googleads.v17.common.DeviceInfo + (*common.HotelCheckInDateRangeInfo)(nil), // 7: google.ads.googleads.v17.common.HotelCheckInDateRangeInfo } -var file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.AdGroupBidModifier.bid_modifier_source:type_name -> google.ads.googleads.v16.enums.BidModifierSourceEnum.BidModifierSource - 2, // 1: google.ads.googleads.v16.resources.AdGroupBidModifier.hotel_date_selection_type:type_name -> google.ads.googleads.v16.common.HotelDateSelectionTypeInfo - 3, // 2: google.ads.googleads.v16.resources.AdGroupBidModifier.hotel_advance_booking_window:type_name -> google.ads.googleads.v16.common.HotelAdvanceBookingWindowInfo - 4, // 3: google.ads.googleads.v16.resources.AdGroupBidModifier.hotel_length_of_stay:type_name -> google.ads.googleads.v16.common.HotelLengthOfStayInfo - 5, // 4: google.ads.googleads.v16.resources.AdGroupBidModifier.hotel_check_in_day:type_name -> google.ads.googleads.v16.common.HotelCheckInDayInfo - 6, // 5: google.ads.googleads.v16.resources.AdGroupBidModifier.device:type_name -> google.ads.googleads.v16.common.DeviceInfo - 7, // 6: google.ads.googleads.v16.resources.AdGroupBidModifier.hotel_check_in_date_range:type_name -> google.ads.googleads.v16.common.HotelCheckInDateRangeInfo +var file_google_ads_googleads_v17_resources_ad_group_bid_modifier_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.AdGroupBidModifier.bid_modifier_source:type_name -> google.ads.googleads.v17.enums.BidModifierSourceEnum.BidModifierSource + 2, // 1: google.ads.googleads.v17.resources.AdGroupBidModifier.hotel_date_selection_type:type_name -> google.ads.googleads.v17.common.HotelDateSelectionTypeInfo + 3, // 2: google.ads.googleads.v17.resources.AdGroupBidModifier.hotel_advance_booking_window:type_name -> google.ads.googleads.v17.common.HotelAdvanceBookingWindowInfo + 4, // 3: google.ads.googleads.v17.resources.AdGroupBidModifier.hotel_length_of_stay:type_name -> google.ads.googleads.v17.common.HotelLengthOfStayInfo + 5, // 4: google.ads.googleads.v17.resources.AdGroupBidModifier.hotel_check_in_day:type_name -> google.ads.googleads.v17.common.HotelCheckInDayInfo + 6, // 5: google.ads.googleads.v17.resources.AdGroupBidModifier.device:type_name -> google.ads.googleads.v17.common.DeviceInfo + 7, // 6: google.ads.googleads.v17.resources.AdGroupBidModifier.hotel_check_in_date_range:type_name -> google.ads.googleads.v17.common.HotelCheckInDateRangeInfo 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 @@ -415,13 +415,13 @@ var file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_depIdxs 0, // [0:7] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_init() } -func file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_init() { - if File_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto != nil { +func init() { file_google_ads_googleads_v17_resources_ad_group_bid_modifier_proto_init() } +func file_google_ads_googleads_v17_resources_ad_group_bid_modifier_proto_init() { + if File_google_ads_googleads_v17_resources_ad_group_bid_modifier_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_ad_group_bid_modifier_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupBidModifier); i { case 0: return &v.state @@ -434,7 +434,7 @@ func file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_init() } } } - file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_ad_group_bid_modifier_proto_msgTypes[0].OneofWrappers = []interface{}{ (*AdGroupBidModifier_HotelDateSelectionType)(nil), (*AdGroupBidModifier_HotelAdvanceBookingWindow)(nil), (*AdGroupBidModifier_HotelLengthOfStay)(nil), @@ -446,18 +446,18 @@ func file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_ad_group_bid_modifier_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_ad_group_bid_modifier_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_ad_group_bid_modifier_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_ad_group_bid_modifier_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto = out.File - file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_goTypes = nil - file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_ad_group_bid_modifier_proto = out.File + file_google_ads_googleads_v17_resources_ad_group_bid_modifier_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_ad_group_bid_modifier_proto_goTypes = nil + file_google_ads_googleads_v17_resources_ad_group_bid_modifier_proto_depIdxs = nil } diff --git a/resources/ad_group_criterion.pb.go b/resources/ad_group_criterion.pb.go index 542455de..e464dc51 100644 --- a/resources/ad_group_criterion.pb.go +++ b/resources/ad_group_criterion.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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_criterion.proto +// source: google/ads/googleads/v17/resources/ad_group_criterion.proto package resources @@ -68,22 +68,22 @@ type AdGroupCriterion struct { // excluded. The UI will show each age range as "enabled", since they're // eligible to see the ads; but AdGroupCriterion.status will show "removed", // since no positive criterion was added. - Status enums.AdGroupCriterionStatusEnum_AdGroupCriterionStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.AdGroupCriterionStatusEnum_AdGroupCriterionStatus" json:"status,omitempty"` + Status enums.AdGroupCriterionStatusEnum_AdGroupCriterionStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.AdGroupCriterionStatusEnum_AdGroupCriterionStatus" json:"status,omitempty"` // Output only. Information regarding the quality of the criterion. QualityInfo *AdGroupCriterion_QualityInfo `protobuf:"bytes,4,opt,name=quality_info,json=qualityInfo,proto3" json:"quality_info,omitempty"` // Immutable. The ad group to which the criterion belongs. AdGroup *string `protobuf:"bytes,57,opt,name=ad_group,json=adGroup,proto3,oneof" json:"ad_group,omitempty"` // Output only. The type of the criterion. - Type enums.CriterionTypeEnum_CriterionType `protobuf:"varint,25,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.CriterionTypeEnum_CriterionType" json:"type,omitempty"` + Type enums.CriterionTypeEnum_CriterionType `protobuf:"varint,25,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.CriterionTypeEnum_CriterionType" json:"type,omitempty"` // Immutable. Whether to target (`false`) or exclude (`true`) the criterion. // // This field is immutable. To switch a criterion from positive to negative, // remove then re-add it. Negative *bool `protobuf:"varint,58,opt,name=negative,proto3,oneof" json:"negative,omitempty"` // Output only. Serving status of the criterion. - SystemServingStatus enums.CriterionSystemServingStatusEnum_CriterionSystemServingStatus `protobuf:"varint,52,opt,name=system_serving_status,json=systemServingStatus,proto3,enum=google.ads.googleads.v16.enums.CriterionSystemServingStatusEnum_CriterionSystemServingStatus" json:"system_serving_status,omitempty"` + SystemServingStatus enums.CriterionSystemServingStatusEnum_CriterionSystemServingStatus `protobuf:"varint,52,opt,name=system_serving_status,json=systemServingStatus,proto3,enum=google.ads.googleads.v17.enums.CriterionSystemServingStatusEnum_CriterionSystemServingStatus" json:"system_serving_status,omitempty"` // Output only. Approval status of the criterion. - ApprovalStatus enums.AdGroupCriterionApprovalStatusEnum_AdGroupCriterionApprovalStatus `protobuf:"varint,53,opt,name=approval_status,json=approvalStatus,proto3,enum=google.ads.googleads.v16.enums.AdGroupCriterionApprovalStatusEnum_AdGroupCriterionApprovalStatus" json:"approval_status,omitempty"` + ApprovalStatus enums.AdGroupCriterionApprovalStatusEnum_AdGroupCriterionApprovalStatus `protobuf:"varint,53,opt,name=approval_status,json=approvalStatus,proto3,enum=google.ads.googleads.v17.enums.AdGroupCriterionApprovalStatusEnum_AdGroupCriterionApprovalStatus" json:"approval_status,omitempty"` // Output only. List of disapproval reasons of the criterion. // // The different reasons for disapproving a criterion can be found here: @@ -117,13 +117,13 @@ type AdGroupCriterion struct { // Output only. The effective Percent CPC bid amount. EffectivePercentCpcBidMicros *int64 `protobuf:"varint,69,opt,name=effective_percent_cpc_bid_micros,json=effectivePercentCpcBidMicros,proto3,oneof" json:"effective_percent_cpc_bid_micros,omitempty"` // Output only. Source of the effective CPC bid. - EffectiveCpcBidSource enums.BiddingSourceEnum_BiddingSource `protobuf:"varint,21,opt,name=effective_cpc_bid_source,json=effectiveCpcBidSource,proto3,enum=google.ads.googleads.v16.enums.BiddingSourceEnum_BiddingSource" json:"effective_cpc_bid_source,omitempty"` + EffectiveCpcBidSource enums.BiddingSourceEnum_BiddingSource `protobuf:"varint,21,opt,name=effective_cpc_bid_source,json=effectiveCpcBidSource,proto3,enum=google.ads.googleads.v17.enums.BiddingSourceEnum_BiddingSource" json:"effective_cpc_bid_source,omitempty"` // Output only. Source of the effective CPM bid. - EffectiveCpmBidSource enums.BiddingSourceEnum_BiddingSource `protobuf:"varint,22,opt,name=effective_cpm_bid_source,json=effectiveCpmBidSource,proto3,enum=google.ads.googleads.v16.enums.BiddingSourceEnum_BiddingSource" json:"effective_cpm_bid_source,omitempty"` + EffectiveCpmBidSource enums.BiddingSourceEnum_BiddingSource `protobuf:"varint,22,opt,name=effective_cpm_bid_source,json=effectiveCpmBidSource,proto3,enum=google.ads.googleads.v17.enums.BiddingSourceEnum_BiddingSource" json:"effective_cpm_bid_source,omitempty"` // Output only. Source of the effective CPV bid. - EffectiveCpvBidSource enums.BiddingSourceEnum_BiddingSource `protobuf:"varint,23,opt,name=effective_cpv_bid_source,json=effectiveCpvBidSource,proto3,enum=google.ads.googleads.v16.enums.BiddingSourceEnum_BiddingSource" json:"effective_cpv_bid_source,omitempty"` + EffectiveCpvBidSource enums.BiddingSourceEnum_BiddingSource `protobuf:"varint,23,opt,name=effective_cpv_bid_source,json=effectiveCpvBidSource,proto3,enum=google.ads.googleads.v17.enums.BiddingSourceEnum_BiddingSource" json:"effective_cpv_bid_source,omitempty"` // Output only. Source of the effective Percent CPC bid. - EffectivePercentCpcBidSource enums.BiddingSourceEnum_BiddingSource `protobuf:"varint,35,opt,name=effective_percent_cpc_bid_source,json=effectivePercentCpcBidSource,proto3,enum=google.ads.googleads.v16.enums.BiddingSourceEnum_BiddingSource" json:"effective_percent_cpc_bid_source,omitempty"` + EffectivePercentCpcBidSource enums.BiddingSourceEnum_BiddingSource `protobuf:"varint,35,opt,name=effective_percent_cpc_bid_source,json=effectivePercentCpcBidSource,proto3,enum=google.ads.googleads.v17.enums.BiddingSourceEnum_BiddingSource" json:"effective_percent_cpc_bid_source,omitempty"` // Output only. Estimates for criterion bids at various positions. PositionEstimates *AdGroupCriterion_PositionEstimates `protobuf:"bytes,10,opt,name=position_estimates,json=positionEstimates,proto3" json:"position_estimates,omitempty"` // The list of possible final URLs after all cross-domain redirects for the @@ -138,6 +138,10 @@ type AdGroupCriterion struct { // The list of mappings used to substitute custom parameter tags in a // `tracking_url_template`, `final_urls`, or `mobile_final_urls`. UrlCustomParameters []*common.CustomParameter `protobuf:"bytes,14,rep,name=url_custom_parameters,json=urlCustomParameters,proto3" json:"url_custom_parameters,omitempty"` + // Output only. The primary status for the ad group criterion. + PrimaryStatus *enums.AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus `protobuf:"varint,85,opt,name=primary_status,json=primaryStatus,proto3,enum=google.ads.googleads.v17.enums.AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus,oneof" json:"primary_status,omitempty"` + // Output only. The primary status reasons for the ad group criterion. + PrimaryStatusReasons []enums.AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason `protobuf:"varint,86,rep,packed,name=primary_status_reasons,json=primaryStatusReasons,proto3,enum=google.ads.googleads.v17.enums.AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason" json:"primary_status_reasons,omitempty"` // The ad group criterion. // // Exactly one must be set. @@ -173,7 +177,7 @@ type AdGroupCriterion struct { func (x *AdGroupCriterion) Reset() { *x = AdGroupCriterion{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_ad_group_criterion_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_criterion_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -186,7 +190,7 @@ func (x *AdGroupCriterion) String() string { func (*AdGroupCriterion) ProtoMessage() {} func (x *AdGroupCriterion) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_ad_group_criterion_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_criterion_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -199,7 +203,7 @@ func (x *AdGroupCriterion) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupCriterion.ProtoReflect.Descriptor instead. func (*AdGroupCriterion) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_ad_group_criterion_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_ad_group_criterion_proto_rawDescGZIP(), []int{0} } func (x *AdGroupCriterion) GetResourceName() string { @@ -419,6 +423,20 @@ func (x *AdGroupCriterion) GetUrlCustomParameters() []*common.CustomParameter { return nil } +func (x *AdGroupCriterion) GetPrimaryStatus() enums.AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus { + if x != nil && x.PrimaryStatus != nil { + return *x.PrimaryStatus + } + return enums.AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus(0) +} + +func (x *AdGroupCriterion) GetPrimaryStatusReasons() []enums.AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason { + if x != nil { + return x.PrimaryStatusReasons + } + return nil +} + func (m *AdGroupCriterion) GetCriterion() isAdGroupCriterion_Criterion { if m != nil { return m.Criterion @@ -764,18 +782,18 @@ type AdGroupCriterion_QualityInfo struct { // information to determine a value. QualityScore *int32 `protobuf:"varint,5,opt,name=quality_score,json=qualityScore,proto3,oneof" json:"quality_score,omitempty"` // Output only. The performance of the ad compared to other advertisers. - CreativeQualityScore enums.QualityScoreBucketEnum_QualityScoreBucket `protobuf:"varint,2,opt,name=creative_quality_score,json=creativeQualityScore,proto3,enum=google.ads.googleads.v16.enums.QualityScoreBucketEnum_QualityScoreBucket" json:"creative_quality_score,omitempty"` + CreativeQualityScore enums.QualityScoreBucketEnum_QualityScoreBucket `protobuf:"varint,2,opt,name=creative_quality_score,json=creativeQualityScore,proto3,enum=google.ads.googleads.v17.enums.QualityScoreBucketEnum_QualityScoreBucket" json:"creative_quality_score,omitempty"` // Output only. The quality score of the landing page. - PostClickQualityScore enums.QualityScoreBucketEnum_QualityScoreBucket `protobuf:"varint,3,opt,name=post_click_quality_score,json=postClickQualityScore,proto3,enum=google.ads.googleads.v16.enums.QualityScoreBucketEnum_QualityScoreBucket" json:"post_click_quality_score,omitempty"` + PostClickQualityScore enums.QualityScoreBucketEnum_QualityScoreBucket `protobuf:"varint,3,opt,name=post_click_quality_score,json=postClickQualityScore,proto3,enum=google.ads.googleads.v17.enums.QualityScoreBucketEnum_QualityScoreBucket" json:"post_click_quality_score,omitempty"` // Output only. The click-through rate compared to that of other // advertisers. - SearchPredictedCtr enums.QualityScoreBucketEnum_QualityScoreBucket `protobuf:"varint,4,opt,name=search_predicted_ctr,json=searchPredictedCtr,proto3,enum=google.ads.googleads.v16.enums.QualityScoreBucketEnum_QualityScoreBucket" json:"search_predicted_ctr,omitempty"` + SearchPredictedCtr enums.QualityScoreBucketEnum_QualityScoreBucket `protobuf:"varint,4,opt,name=search_predicted_ctr,json=searchPredictedCtr,proto3,enum=google.ads.googleads.v17.enums.QualityScoreBucketEnum_QualityScoreBucket" json:"search_predicted_ctr,omitempty"` } func (x *AdGroupCriterion_QualityInfo) Reset() { *x = AdGroupCriterion_QualityInfo{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_ad_group_criterion_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_ad_group_criterion_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -788,7 +806,7 @@ func (x *AdGroupCriterion_QualityInfo) String() string { func (*AdGroupCriterion_QualityInfo) ProtoMessage() {} func (x *AdGroupCriterion_QualityInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_ad_group_criterion_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_ad_group_criterion_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -801,7 +819,7 @@ func (x *AdGroupCriterion_QualityInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupCriterion_QualityInfo.ProtoReflect.Descriptor instead. func (*AdGroupCriterion_QualityInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_ad_group_criterion_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v17_resources_ad_group_criterion_proto_rawDescGZIP(), []int{0, 0} } func (x *AdGroupCriterion_QualityInfo) GetQualityScore() int32 { @@ -858,7 +876,7 @@ type AdGroupCriterion_PositionEstimates struct { func (x *AdGroupCriterion_PositionEstimates) Reset() { *x = AdGroupCriterion_PositionEstimates{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_ad_group_criterion_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_ad_group_criterion_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -871,7 +889,7 @@ func (x *AdGroupCriterion_PositionEstimates) String() string { func (*AdGroupCriterion_PositionEstimates) ProtoMessage() {} func (x *AdGroupCriterion_PositionEstimates) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_ad_group_criterion_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_ad_group_criterion_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -884,7 +902,7 @@ func (x *AdGroupCriterion_PositionEstimates) ProtoReflect() protoreflect.Message // Deprecated: Use AdGroupCriterion_PositionEstimates.ProtoReflect.Descriptor instead. func (*AdGroupCriterion_PositionEstimates) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_ad_group_criterion_proto_rawDescGZIP(), []int{0, 1} + return file_google_ads_googleads_v17_resources_ad_group_criterion_proto_rawDescGZIP(), []int{0, 1} } func (x *AdGroupCriterion_PositionEstimates) GetFirstPageCpcMicros() int64 { @@ -922,550 +940,584 @@ func (x *AdGroupCriterion_PositionEstimates) GetEstimatedAddCostAtFirstPositionC return 0 } -var File_google_ads_googleads_v16_resources_ad_group_criterion_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_ad_group_criterion_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_ad_group_criterion_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_ad_group_criterion_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, 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, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 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, 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, 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, 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, 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, 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, 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, + 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, 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, 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, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, - 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, 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, 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, 0x63, 0x72, - 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 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, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, - 0x5f, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 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, 0xdb, 0x2f, 0x0a, 0x10, 0x41, 0x64, - 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x12, 0x56, - 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x31, 0xe0, 0x41, 0x05, 0xfa, 0x41, 0x2b, 0x0a, 0x29, 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, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, - 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2b, 0x0a, 0x0c, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, - 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x38, 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, - 0x03, 0x48, 0x01, 0x52, 0x0b, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x49, 0x64, - 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, - 0x61, 0x6d, 0x65, 0x18, 0x4d, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0b, - 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x69, 0x0a, 0x06, 0x73, - 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 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, 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, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, - 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, - 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x68, 0x0a, 0x0c, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, - 0x79, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x04, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, - 0x6f, 0x6e, 0x2e, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, - 0xe0, 0x41, 0x03, 0x52, 0x0b, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x66, 0x6f, - 0x12, 0x48, 0x0a, 0x08, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x39, 0x20, 0x01, - 0x28, 0x09, 0x42, 0x28, 0xe0, 0x41, 0x05, 0xfa, 0x41, 0x22, 0x0a, 0x20, 0x67, 0x6f, 0x6f, 0x67, + 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, 0x1a, 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, 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, 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, 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, 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, 0x44, + 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, + 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, 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, 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, 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, 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, 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, 0xaa, 0x32, 0x0a, 0x10, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, + 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x12, 0x56, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x31, 0xe0, 0x41, + 0x05, 0xfa, 0x41, 0x2b, 0x0a, 0x29, 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, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x52, + 0x0c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2b, 0x0a, + 0x0c, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x38, 0x20, + 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x01, 0x52, 0x0b, 0x63, 0x72, 0x69, 0x74, + 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x64, 0x69, + 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x4d, 0x20, 0x01, 0x28, 0x09, + 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, + 0x6d, 0x65, 0x12, 0x69, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 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, 0x37, 0x2e, 0x65, 0x6e, + 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x41, + 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x53, + 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x68, 0x0a, + 0x0c, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x04, 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, 0x37, 0x2e, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, + 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x2e, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, + 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0b, 0x71, 0x75, 0x61, 0x6c, + 0x69, 0x74, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x48, 0x0a, 0x08, 0x61, 0x64, 0x5f, 0x67, 0x72, + 0x6f, 0x75, 0x70, 0x18, 0x39, 0x20, 0x01, 0x28, 0x09, 0x42, 0x28, 0xe0, 0x41, 0x05, 0xfa, 0x41, + 0x22, 0x0a, 0x20, 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, 0x47, 0x72, + 0x6f, 0x75, 0x70, 0x48, 0x02, 0x52, 0x07, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x88, 0x01, + 0x01, 0x12, 0x58, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x19, 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, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x2e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, + 0x75, 0x6d, 0x2e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, + 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x24, 0x0a, 0x08, 0x6e, + 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x18, 0x3a, 0x20, 0x01, 0x28, 0x08, 0x42, 0x03, 0xe0, + 0x41, 0x05, 0x48, 0x03, 0x52, 0x08, 0x6e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x88, 0x01, + 0x01, 0x12, 0x96, 0x01, 0x0a, 0x15, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x72, + 0x76, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x34, 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, 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, 0x2e, 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, + 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x13, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x72, + 0x76, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x8f, 0x01, 0x0a, 0x0f, 0x61, + 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x35, + 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, 0x37, 0x2e, + 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0e, 0x61, 0x70, + 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x34, 0x0a, 0x13, + 0x64, 0x69, 0x73, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x61, 0x73, + 0x6f, 0x6e, 0x73, 0x18, 0x3b, 0x20, 0x03, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x12, + 0x64, 0x69, 0x73, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x52, 0x65, 0x61, 0x73, 0x6f, + 0x6e, 0x73, 0x12, 0x4e, 0x0a, 0x06, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x18, 0x3c, 0x20, 0x03, + 0x28, 0x09, 0x42, 0x36, 0xe0, 0x41, 0x03, 0xfa, 0x41, 0x30, 0x0a, 0x2e, 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, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x48, 0x02, 0x52, 0x07, - 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x88, 0x01, 0x01, 0x12, 0x58, 0x0a, 0x04, 0x74, 0x79, - 0x70, 0x65, 0x18, 0x19, 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, 0x72, 0x69, 0x74, 0x65, 0x72, - 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x72, 0x69, 0x74, - 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x04, - 0x74, 0x79, 0x70, 0x65, 0x12, 0x24, 0x0a, 0x08, 0x6e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, - 0x18, 0x3a, 0x20, 0x01, 0x28, 0x08, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x03, 0x52, 0x08, 0x6e, - 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x88, 0x01, 0x01, 0x12, 0x96, 0x01, 0x0a, 0x15, 0x73, - 0x79, 0x73, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, - 0x61, 0x74, 0x75, 0x73, 0x18, 0x34, 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, 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, 0x2e, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x13, - 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x72, 0x76, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, - 0x74, 0x75, 0x73, 0x12, 0x8f, 0x01, 0x0a, 0x0f, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, - 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x35, 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, 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, 0x2e, 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, - 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x53, - 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x34, 0x0a, 0x13, 0x64, 0x69, 0x73, 0x61, 0x70, 0x70, 0x72, - 0x6f, 0x76, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x73, 0x18, 0x3b, 0x20, 0x03, - 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x12, 0x64, 0x69, 0x73, 0x61, 0x70, 0x70, 0x72, - 0x6f, 0x76, 0x61, 0x6c, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x73, 0x12, 0x4e, 0x0a, 0x06, 0x6c, - 0x61, 0x62, 0x65, 0x6c, 0x73, 0x18, 0x3c, 0x20, 0x03, 0x28, 0x09, 0x42, 0x36, 0xe0, 0x41, 0x03, - 0xfa, 0x41, 0x30, 0x0a, 0x2e, 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, - 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4c, 0x61, - 0x62, 0x65, 0x6c, 0x52, 0x06, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x12, 0x26, 0x0a, 0x0c, 0x62, - 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x18, 0x3d, 0x20, 0x01, 0x28, - 0x01, 0x48, 0x04, 0x52, 0x0b, 0x62, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, - 0x88, 0x01, 0x01, 0x12, 0x29, 0x0a, 0x0e, 0x63, 0x70, 0x63, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, - 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x3e, 0x20, 0x01, 0x28, 0x03, 0x48, 0x05, 0x52, 0x0c, 0x63, - 0x70, 0x63, 0x42, 0x69, 0x64, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x29, - 0x0a, 0x0e, 0x63, 0x70, 0x6d, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, - 0x18, 0x3f, 0x20, 0x01, 0x28, 0x03, 0x48, 0x06, 0x52, 0x0c, 0x63, 0x70, 0x6d, 0x42, 0x69, 0x64, - 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x29, 0x0a, 0x0e, 0x63, 0x70, 0x76, - 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x40, 0x20, 0x01, 0x28, - 0x03, 0x48, 0x07, 0x52, 0x0c, 0x63, 0x70, 0x76, 0x42, 0x69, 0x64, 0x4d, 0x69, 0x63, 0x72, 0x6f, - 0x73, 0x88, 0x01, 0x01, 0x12, 0x38, 0x0a, 0x16, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x5f, - 0x63, 0x70, 0x63, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x41, - 0x20, 0x01, 0x28, 0x03, 0x48, 0x08, 0x52, 0x13, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x43, - 0x70, 0x63, 0x42, 0x69, 0x64, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x41, - 0x0a, 0x18, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x70, 0x63, 0x5f, - 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x42, 0x20, 0x01, 0x28, 0x03, - 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x09, 0x52, 0x15, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, - 0x76, 0x65, 0x43, 0x70, 0x63, 0x42, 0x69, 0x64, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, - 0x01, 0x12, 0x41, 0x0a, 0x18, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, - 0x70, 0x6d, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x43, 0x20, - 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x0a, 0x52, 0x15, 0x65, 0x66, 0x66, 0x65, - 0x63, 0x74, 0x69, 0x76, 0x65, 0x43, 0x70, 0x6d, 0x42, 0x69, 0x64, 0x4d, 0x69, 0x63, 0x72, 0x6f, - 0x73, 0x88, 0x01, 0x01, 0x12, 0x41, 0x0a, 0x18, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, - 0x65, 0x5f, 0x63, 0x70, 0x76, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, - 0x18, 0x44, 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x0b, 0x52, 0x15, 0x65, - 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x43, 0x70, 0x76, 0x42, 0x69, 0x64, 0x4d, 0x69, - 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x50, 0x0a, 0x20, 0x65, 0x66, 0x66, 0x65, 0x63, - 0x74, 0x69, 0x76, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x70, 0x63, - 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x45, 0x20, 0x01, 0x28, - 0x03, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x0c, 0x52, 0x1c, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, - 0x69, 0x76, 0x65, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x43, 0x70, 0x63, 0x42, 0x69, 0x64, - 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x7d, 0x0a, 0x18, 0x65, 0x66, 0x66, - 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x70, 0x63, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x15, 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, 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, 0x15, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x43, 0x70, 0x63, 0x42, - 0x69, 0x64, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x7d, 0x0a, 0x18, 0x65, 0x66, 0x66, 0x65, - 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x70, 0x6d, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x73, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x18, 0x16, 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, 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, 0x15, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x43, 0x70, 0x6d, 0x42, 0x69, - 0x64, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x7d, 0x0a, 0x18, 0x65, 0x66, 0x66, 0x65, 0x63, - 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x70, 0x76, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x18, 0x17, 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, 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, - 0x15, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x43, 0x70, 0x76, 0x42, 0x69, 0x64, - 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x8c, 0x01, 0x0a, 0x20, 0x65, 0x66, 0x66, 0x65, 0x63, - 0x74, 0x69, 0x76, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x70, 0x63, - 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x23, 0x20, 0x01, 0x28, + 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, + 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x06, 0x6c, 0x61, 0x62, 0x65, + 0x6c, 0x73, 0x12, 0x26, 0x0a, 0x0c, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, + 0x65, 0x72, 0x18, 0x3d, 0x20, 0x01, 0x28, 0x01, 0x48, 0x04, 0x52, 0x0b, 0x62, 0x69, 0x64, 0x4d, + 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x29, 0x0a, 0x0e, 0x63, 0x70, + 0x63, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x3e, 0x20, 0x01, + 0x28, 0x03, 0x48, 0x05, 0x52, 0x0c, 0x63, 0x70, 0x63, 0x42, 0x69, 0x64, 0x4d, 0x69, 0x63, 0x72, + 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x29, 0x0a, 0x0e, 0x63, 0x70, 0x6d, 0x5f, 0x62, 0x69, 0x64, + 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x3f, 0x20, 0x01, 0x28, 0x03, 0x48, 0x06, 0x52, + 0x0c, 0x63, 0x70, 0x6d, 0x42, 0x69, 0x64, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, + 0x12, 0x29, 0x0a, 0x0e, 0x63, 0x70, 0x76, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, + 0x6f, 0x73, 0x18, 0x40, 0x20, 0x01, 0x28, 0x03, 0x48, 0x07, 0x52, 0x0c, 0x63, 0x70, 0x76, 0x42, + 0x69, 0x64, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x38, 0x0a, 0x16, 0x70, + 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x70, 0x63, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, + 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x41, 0x20, 0x01, 0x28, 0x03, 0x48, 0x08, 0x52, 0x13, 0x70, + 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x43, 0x70, 0x63, 0x42, 0x69, 0x64, 0x4d, 0x69, 0x63, 0x72, + 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x41, 0x0a, 0x18, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, + 0x76, 0x65, 0x5f, 0x63, 0x70, 0x63, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, + 0x73, 0x18, 0x42, 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x09, 0x52, 0x15, + 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x43, 0x70, 0x63, 0x42, 0x69, 0x64, 0x4d, + 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x41, 0x0a, 0x18, 0x65, 0x66, 0x66, 0x65, + 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x70, 0x6d, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, + 0x63, 0x72, 0x6f, 0x73, 0x18, 0x43, 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, + 0x0a, 0x52, 0x15, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x43, 0x70, 0x6d, 0x42, + 0x69, 0x64, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x41, 0x0a, 0x18, 0x65, + 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x70, 0x76, 0x5f, 0x62, 0x69, 0x64, + 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x44, 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, + 0x41, 0x03, 0x48, 0x0b, 0x52, 0x15, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x43, + 0x70, 0x76, 0x42, 0x69, 0x64, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x50, + 0x0a, 0x20, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x63, + 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x70, 0x63, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, + 0x6f, 0x73, 0x18, 0x45, 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x0c, 0x52, + 0x1c, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, + 0x74, 0x43, 0x70, 0x63, 0x42, 0x69, 0x64, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, + 0x12, 0x7d, 0x0a, 0x18, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x70, + 0x63, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x15, 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, 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, 0x15, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, + 0x69, 0x76, 0x65, 0x43, 0x70, 0x63, 0x42, 0x69, 0x64, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, + 0x7d, 0x0a, 0x18, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x70, 0x6d, + 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x16, 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, + 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, 0x1c, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, - 0x76, 0x65, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x43, 0x70, 0x63, 0x42, 0x69, 0x64, 0x53, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x7a, 0x0a, 0x12, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, - 0x6e, 0x5f, 0x65, 0x73, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, - 0x0b, 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, 0x72, 0x65, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, - 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, - 0x45, 0x73, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x11, - 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x73, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x65, - 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x73, 0x18, - 0x46, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x73, - 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, - 0x5f, 0x75, 0x72, 0x6c, 0x73, 0x18, 0x47, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0f, 0x66, 0x69, 0x6e, - 0x61, 0x6c, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x55, 0x72, 0x6c, 0x73, 0x12, 0x2d, 0x0a, 0x10, - 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x73, 0x75, 0x66, 0x66, 0x69, 0x78, - 0x18, 0x48, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0d, 0x52, 0x0e, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x55, - 0x72, 0x6c, 0x53, 0x75, 0x66, 0x66, 0x69, 0x78, 0x88, 0x01, 0x01, 0x12, 0x37, 0x0a, 0x15, 0x74, - 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x74, 0x65, 0x6d, 0x70, - 0x6c, 0x61, 0x74, 0x65, 0x18, 0x49, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0e, 0x52, 0x13, 0x74, 0x72, - 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x72, 0x6c, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, - 0x65, 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, 0x0e, 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, 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, 0x4d, 0x0a, 0x07, 0x6b, 0x65, - 0x79, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x1b, 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, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, - 0x52, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x53, 0x0a, 0x09, 0x70, 0x6c, 0x61, - 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, + 0x63, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x15, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, + 0x76, 0x65, 0x43, 0x70, 0x6d, 0x42, 0x69, 0x64, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x7d, + 0x0a, 0x18, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x70, 0x76, 0x5f, + 0x62, 0x69, 0x64, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x17, 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, 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, 0x15, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, + 0x65, 0x43, 0x70, 0x76, 0x42, 0x69, 0x64, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x8c, 0x01, + 0x0a, 0x20, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x63, + 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x70, 0x63, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x18, 0x23, 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, 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, 0x1c, + 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, + 0x43, 0x70, 0x63, 0x42, 0x69, 0x64, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x7a, 0x0a, 0x12, + 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x73, 0x74, 0x69, 0x6d, 0x61, 0x74, + 0x65, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, + 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x2e, 0x50, + 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x73, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x73, + 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x11, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x45, + 0x73, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x6e, 0x61, + 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x73, 0x18, 0x46, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x66, 0x69, + 0x6e, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x73, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x69, 0x6e, 0x61, 0x6c, + 0x5f, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x73, 0x18, 0x47, 0x20, 0x03, + 0x28, 0x09, 0x52, 0x0f, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x55, + 0x72, 0x6c, 0x73, 0x12, 0x2d, 0x0a, 0x10, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, + 0x5f, 0x73, 0x75, 0x66, 0x66, 0x69, 0x78, 0x18, 0x48, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0d, 0x52, + 0x0e, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x53, 0x75, 0x66, 0x66, 0x69, 0x78, 0x88, + 0x01, 0x01, 0x12, 0x37, 0x0a, 0x15, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x75, + 0x72, 0x6c, 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x18, 0x49, 0x20, 0x01, 0x28, + 0x09, 0x48, 0x0e, 0x52, 0x13, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x72, 0x6c, + 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 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, 0x0e, 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, 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, 0x90, 0x01, 0x0a, 0x0e, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, + 0x61, 0x74, 0x75, 0x73, 0x18, 0x55, 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, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, + 0x48, 0x0f, 0x52, 0x0d, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, + 0x73, 0x88, 0x01, 0x01, 0x12, 0xa6, 0x01, 0x0a, 0x16, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, + 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x73, 0x18, + 0x56, 0x20, 0x03, 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, 0x37, + 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x14, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, + 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x73, 0x12, 0x4d, 0x0a, + 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x1b, 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, 0x42, 0x03, 0xe0, 0x41, + 0x05, 0x48, 0x00, 0x52, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x53, 0x0a, 0x09, + 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x1c, 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, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x6e, 0x2e, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, + 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x09, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, + 0x74, 0x12, 0x6d, 0x0a, 0x13, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x61, 0x70, 0x70, 0x5f, + 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x18, 0x1d, 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, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x2e, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, + 0x72, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x11, 0x6d, + 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, + 0x12, 0x6c, 0x0a, 0x12, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x69, + 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x1e, 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, 0x50, - 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, - 0x05, 0x48, 0x00, 0x52, 0x09, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x6d, - 0x0a, 0x13, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x63, 0x61, 0x74, - 0x65, 0x67, 0x6f, 0x72, 0x79, 0x18, 0x1d, 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, 0x4d, 0x6f, - 0x62, 0x69, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x49, - 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x11, 0x6d, 0x6f, 0x62, 0x69, - 0x6c, 0x65, 0x41, 0x70, 0x70, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x12, 0x6c, 0x0a, - 0x12, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x18, 0x1e, 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, 0x4d, 0x6f, 0x62, 0x69, - 0x6c, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, - 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x11, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, - 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x5d, 0x0a, 0x0d, 0x6c, - 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x20, 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, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, - 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0c, 0x6c, 0x69, - 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x51, 0x0a, 0x09, 0x61, 0x67, - 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x18, 0x24, 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, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, - 0x05, 0x48, 0x00, 0x52, 0x08, 0x61, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x4a, 0x0a, - 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x25, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, + 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x11, 0x6d, 0x6f, 0x62, + 0x69, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x5d, + 0x0a, 0x0d, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, + 0x20, 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, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, + 0x72, 0x6f, 0x75, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, + 0x0c, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x51, 0x0a, + 0x09, 0x61, 0x67, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x18, 0x24, 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, 0x41, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, + 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x08, 0x61, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, + 0x12, 0x4a, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x25, 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, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x6e, 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, + 0x41, 0x05, 0x48, 0x00, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x5a, 0x0a, 0x0c, + 0x69, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x18, 0x26, 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, 0x37, 0x2e, 0x63, 0x6f, + 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, + 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0b, 0x69, 0x6e, 0x63, + 0x6f, 0x6d, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x63, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x65, + 0x6e, 0x74, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x27, 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, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, + 0x75, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0e, 0x70, + 0x61, 0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x51, 0x0a, + 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x2a, 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, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, + 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, + 0x12, 0x5d, 0x0a, 0x0d, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x76, 0x69, 0x64, 0x65, + 0x6f, 0x18, 0x28, 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, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, + 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, + 0x00, 0x52, 0x0c, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x12, + 0x63, 0x0a, 0x0f, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, + 0x65, 0x6c, 0x18, 0x29, 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, 0x59, 0x6f, 0x75, 0x54, 0x75, + 0x62, 0x65, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, + 0x41, 0x05, 0x48, 0x00, 0x52, 0x0e, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x43, 0x68, 0x61, + 0x6e, 0x6e, 0x65, 0x6c, 0x12, 0x47, 0x0a, 0x05, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x18, 0x2b, 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, 0x63, + 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x49, 0x6e, 0x66, 0x6f, 0x42, + 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x05, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x5d, 0x0a, + 0x0d, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x18, 0x2d, + 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, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x65, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0c, + 0x75, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x12, 0x4d, 0x0a, 0x07, + 0x77, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x18, 0x2e, 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, - 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, - 0x00, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x5a, 0x0a, 0x0c, 0x69, 0x6e, 0x63, - 0x6f, 0x6d, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x18, 0x26, 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, 0x49, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x49, 0x6e, 0x66, - 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0b, 0x69, 0x6e, 0x63, 0x6f, 0x6d, 0x65, - 0x52, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x63, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x61, - 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x27, 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, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x49, - 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0e, 0x70, 0x61, 0x72, 0x65, - 0x6e, 0x74, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x51, 0x0a, 0x09, 0x75, 0x73, - 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x2a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x57, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, + 0x48, 0x00, 0x52, 0x07, 0x77, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x12, 0x67, 0x0a, 0x11, 0x61, + 0x70, 0x70, 0x5f, 0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, + 0x18, 0x2f, 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, + 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x70, 0x70, 0x50, 0x61, 0x79, 0x6d, + 0x65, 0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, + 0x05, 0x48, 0x00, 0x52, 0x0f, 0x61, 0x70, 0x70, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x4d, + 0x6f, 0x64, 0x65, 0x6c, 0x12, 0x63, 0x0a, 0x0f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, + 0x66, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x79, 0x18, 0x30, 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, - 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, - 0x05, 0x48, 0x00, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x5d, 0x0a, - 0x0d, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x18, 0x28, - 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, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x56, 0x69, - 0x64, 0x65, 0x6f, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0c, - 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x12, 0x63, 0x0a, 0x0f, - 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x18, - 0x29, 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, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x43, - 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, - 0x00, 0x52, 0x0e, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, - 0x6c, 0x12, 0x47, 0x0a, 0x05, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x18, 0x2b, 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, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, - 0x05, 0x48, 0x00, 0x52, 0x05, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x5d, 0x0a, 0x0d, 0x75, 0x73, - 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x18, 0x2d, 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, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, - 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0c, 0x75, 0x73, 0x65, - 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x12, 0x4d, 0x0a, 0x07, 0x77, 0x65, 0x62, - 0x70, 0x61, 0x67, 0x65, 0x18, 0x2e, 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, 0x57, 0x65, 0x62, - 0x70, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, - 0x07, 0x77, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x12, 0x67, 0x0a, 0x11, 0x61, 0x70, 0x70, 0x5f, - 0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x18, 0x2f, 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, 0x70, 0x70, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, - 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, - 0x52, 0x0f, 0x61, 0x70, 0x70, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x65, - 0x6c, 0x12, 0x63, 0x0a, 0x0f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x66, 0x66, 0x69, - 0x6e, 0x69, 0x74, 0x79, 0x18, 0x30, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x67, 0x6f, 0x6f, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x66, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x79, 0x49, 0x6e, + 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0e, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x6d, 0x41, 0x66, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x79, 0x12, 0x5d, 0x0a, 0x0d, 0x63, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x31, 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x49, + 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0c, 0x63, 0x75, 0x73, 0x74, + 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x63, 0x0a, 0x0f, 0x63, 0x75, 0x73, 0x74, + 0x6f, 0x6d, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x4a, 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, + 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0e, 0x63, + 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x69, 0x0a, + 0x11, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, + 0x63, 0x65, 0x18, 0x4b, 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, 0x43, 0x6f, 0x6d, 0x62, 0x69, + 0x6e, 0x65, 0x64, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, + 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x10, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, + 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x50, 0x0a, 0x08, 0x61, 0x75, 0x64, 0x69, + 0x65, 0x6e, 0x63, 0x65, 0x18, 0x4f, 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, 0x75, 0x73, - 0x74, 0x6f, 0x6d, 0x41, 0x66, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x42, - 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x66, - 0x66, 0x69, 0x6e, 0x69, 0x74, 0x79, 0x12, 0x5d, 0x0a, 0x0d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, - 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x31, 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, - 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, - 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0c, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, - 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x63, 0x0a, 0x0f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, - 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x4a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x75, 0x64, + 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, + 0x52, 0x08, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x50, 0x0a, 0x08, 0x6c, 0x6f, + 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x52, 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, 0x4c, + 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, + 0x48, 0x00, 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x50, 0x0a, 0x08, + 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x18, 0x53, 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, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, + 0x41, 0x05, 0x48, 0x00, 0x52, 0x08, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x1a, 0xe2, + 0x03, 0x0a, 0x0b, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x2d, + 0x0a, 0x0d, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18, + 0x05, 0x20, 0x01, 0x28, 0x05, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x0c, 0x71, 0x75, + 0x61, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x84, 0x01, + 0x0a, 0x16, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x71, 0x75, 0x61, 0x6c, 0x69, + 0x74, 0x79, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 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, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, - 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, - 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0e, 0x63, 0x75, 0x73, 0x74, - 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x69, 0x0a, 0x11, 0x63, 0x6f, - 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x18, - 0x4b, 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, 0x43, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, - 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, - 0x05, 0x48, 0x00, 0x52, 0x10, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x41, 0x75, 0x64, - 0x69, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x50, 0x0a, 0x08, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, - 0x65, 0x18, 0x4f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x14, + 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x76, 0x65, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x53, + 0x63, 0x6f, 0x72, 0x65, 0x12, 0x87, 0x01, 0x0a, 0x18, 0x70, 0x6f, 0x73, 0x74, 0x5f, 0x63, 0x6c, + 0x69, 0x63, 0x6b, 0x5f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x73, 0x63, 0x6f, 0x72, + 0x65, 0x18, 0x03, 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, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, - 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x08, 0x61, - 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x50, 0x0a, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x18, 0x52, 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, 0x4c, 0x6f, 0x63, 0x61, - 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, - 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x50, 0x0a, 0x08, 0x6c, 0x61, 0x6e, - 0x67, 0x75, 0x61, 0x67, 0x65, 0x18, 0x53, 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, 0x4c, 0x61, - 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, - 0x00, 0x52, 0x08, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x1a, 0xe2, 0x03, 0x0a, 0x0b, - 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x2d, 0x0a, 0x0d, 0x71, - 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18, 0x05, 0x20, 0x01, - 0x28, 0x05, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x0c, 0x71, 0x75, 0x61, 0x6c, 0x69, - 0x74, 0x79, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x84, 0x01, 0x0a, 0x16, 0x63, - 0x72, 0x65, 0x61, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x5f, - 0x73, 0x63, 0x6f, 0x72, 0x65, 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, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x14, 0x63, 0x72, 0x65, - 0x61, 0x74, 0x69, 0x76, 0x65, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x63, 0x6f, 0x72, - 0x65, 0x12, 0x87, 0x01, 0x0a, 0x18, 0x70, 0x6f, 0x73, 0x74, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, - 0x5f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18, 0x03, - 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, 0x42, - 0x03, 0xe0, 0x41, 0x03, 0x52, 0x15, 0x70, 0x6f, 0x73, 0x74, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x51, - 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x12, 0x80, 0x01, 0x0a, 0x14, - 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x70, 0x72, 0x65, 0x64, 0x69, 0x63, 0x74, 0x65, 0x64, - 0x5f, 0x63, 0x74, 0x72, 0x18, 0x04, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x12, 0x73, 0x65, 0x61, 0x72, - 0x63, 0x68, 0x50, 0x72, 0x65, 0x64, 0x69, 0x63, 0x74, 0x65, 0x64, 0x43, 0x74, 0x72, 0x42, 0x10, - 0x0a, 0x0e, 0x5f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, - 0x1a, 0xc6, 0x04, 0x0a, 0x11, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x73, 0x74, - 0x69, 0x6d, 0x61, 0x74, 0x65, 0x73, 0x12, 0x3b, 0x0a, 0x15, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, - 0x70, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x70, 0x63, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, - 0x06, 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x12, 0x66, 0x69, - 0x72, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x43, 0x70, 0x63, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, - 0x88, 0x01, 0x01, 0x12, 0x43, 0x0a, 0x19, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x70, 0x6f, 0x73, - 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x70, 0x63, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, - 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x01, 0x52, 0x16, 0x66, - 0x69, 0x72, 0x73, 0x74, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x70, 0x63, 0x4d, - 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x3c, 0x0a, 0x16, 0x74, 0x6f, 0x70, 0x5f, - 0x6f, 0x66, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x70, 0x63, 0x5f, 0x6d, 0x69, 0x63, 0x72, - 0x6f, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x02, 0x52, - 0x12, 0x74, 0x6f, 0x70, 0x4f, 0x66, 0x50, 0x61, 0x67, 0x65, 0x43, 0x70, 0x63, 0x4d, 0x69, 0x63, - 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x62, 0x0a, 0x2a, 0x65, 0x73, 0x74, 0x69, 0x6d, 0x61, - 0x74, 0x65, 0x64, 0x5f, 0x61, 0x64, 0x64, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x5f, 0x61, - 0x74, 0x5f, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, - 0x5f, 0x63, 0x70, 0x63, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, - 0x03, 0x52, 0x24, 0x65, 0x73, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x64, 0x41, 0x64, 0x64, 0x43, - 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x41, 0x74, 0x46, 0x69, 0x72, 0x73, 0x74, 0x50, 0x6f, 0x73, 0x69, - 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x70, 0x63, 0x88, 0x01, 0x01, 0x12, 0x5e, 0x0a, 0x28, 0x65, 0x73, - 0x74, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x64, 0x64, 0x5f, 0x63, 0x6f, 0x73, 0x74, - 0x5f, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, - 0x6f, 0x6e, 0x5f, 0x63, 0x70, 0x63, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, - 0x03, 0x48, 0x04, 0x52, 0x22, 0x65, 0x73, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x64, 0x41, 0x64, - 0x64, 0x43, 0x6f, 0x73, 0x74, 0x41, 0x74, 0x46, 0x69, 0x72, 0x73, 0x74, 0x50, 0x6f, 0x73, 0x69, - 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x70, 0x63, 0x88, 0x01, 0x01, 0x42, 0x18, 0x0a, 0x16, 0x5f, 0x66, - 0x69, 0x72, 0x73, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x70, 0x63, 0x5f, 0x6d, 0x69, - 0x63, 0x72, 0x6f, 0x73, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x70, - 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x70, 0x63, 0x5f, 0x6d, 0x69, 0x63, 0x72, - 0x6f, 0x73, 0x42, 0x19, 0x0a, 0x17, 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x6f, 0x66, 0x5f, 0x70, 0x61, - 0x67, 0x65, 0x5f, 0x63, 0x70, 0x63, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x2d, 0x0a, - 0x2b, 0x5f, 0x65, 0x73, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x64, 0x64, 0x5f, - 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x5f, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, - 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x70, 0x63, 0x42, 0x2b, 0x0a, 0x29, - 0x5f, 0x65, 0x73, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x64, 0x64, 0x5f, 0x63, + 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x15, 0x70, 0x6f, 0x73, 0x74, 0x43, 0x6c, 0x69, + 0x63, 0x6b, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x12, 0x80, + 0x01, 0x0a, 0x14, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x70, 0x72, 0x65, 0x64, 0x69, 0x63, + 0x74, 0x65, 0x64, 0x5f, 0x63, 0x74, 0x72, 0x18, 0x04, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x12, 0x73, + 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x72, 0x65, 0x64, 0x69, 0x63, 0x74, 0x65, 0x64, 0x43, 0x74, + 0x72, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x73, 0x63, + 0x6f, 0x72, 0x65, 0x1a, 0xc6, 0x04, 0x0a, 0x11, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, + 0x45, 0x73, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x73, 0x12, 0x3b, 0x0a, 0x15, 0x66, 0x69, 0x72, + 0x73, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x70, 0x63, 0x5f, 0x6d, 0x69, 0x63, 0x72, + 0x6f, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, + 0x12, 0x66, 0x69, 0x72, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x43, 0x70, 0x63, 0x4d, 0x69, 0x63, + 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x43, 0x0a, 0x19, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, + 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x70, 0x63, 0x5f, 0x6d, 0x69, 0x63, + 0x72, 0x6f, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x01, + 0x52, 0x16, 0x66, 0x69, 0x72, 0x73, 0x74, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x43, + 0x70, 0x63, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x3c, 0x0a, 0x16, 0x74, + 0x6f, 0x70, 0x5f, 0x6f, 0x66, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x70, 0x63, 0x5f, 0x6d, + 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, 0x03, + 0x48, 0x02, 0x52, 0x12, 0x74, 0x6f, 0x70, 0x4f, 0x66, 0x50, 0x61, 0x67, 0x65, 0x43, 0x70, 0x63, + 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x62, 0x0a, 0x2a, 0x65, 0x73, 0x74, + 0x69, 0x6d, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x64, 0x64, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, + 0x73, 0x5f, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74, + 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x70, 0x63, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, + 0x41, 0x03, 0x48, 0x03, 0x52, 0x24, 0x65, 0x73, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x64, 0x41, + 0x64, 0x64, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x41, 0x74, 0x46, 0x69, 0x72, 0x73, 0x74, 0x50, + 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x70, 0x63, 0x88, 0x01, 0x01, 0x12, 0x5e, 0x0a, + 0x28, 0x65, 0x73, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x64, 0x64, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x70, 0x6f, 0x73, - 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x70, 0x63, 0x3a, 0x74, 0xea, 0x41, 0x71, 0x0a, 0x29, - 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, 0x47, 0x72, 0x6f, 0x75, 0x70, - 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x12, 0x44, 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, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, - 0x69, 0x61, 0x2f, 0x7b, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x69, 0x64, 0x7d, - 0x7e, 0x7b, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x42, - 0x0b, 0x0a, 0x09, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x42, 0x0f, 0x0a, 0x0d, - 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x42, 0x0b, 0x0a, - 0x09, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x6e, - 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x62, 0x69, 0x64, 0x5f, - 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x63, 0x70, 0x63, - 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x11, 0x0a, 0x0f, 0x5f, - 0x63, 0x70, 0x6d, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x11, - 0x0a, 0x0f, 0x5f, 0x63, 0x70, 0x76, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, - 0x73, 0x42, 0x19, 0x0a, 0x17, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x70, + 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x70, 0x63, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x42, + 0x03, 0xe0, 0x41, 0x03, 0x48, 0x04, 0x52, 0x22, 0x65, 0x73, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x65, + 0x64, 0x41, 0x64, 0x64, 0x43, 0x6f, 0x73, 0x74, 0x41, 0x74, 0x46, 0x69, 0x72, 0x73, 0x74, 0x50, + 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x70, 0x63, 0x88, 0x01, 0x01, 0x42, 0x18, 0x0a, + 0x16, 0x5f, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x70, 0x63, + 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x66, 0x69, 0x72, 0x73, + 0x74, 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x70, 0x63, 0x5f, 0x6d, + 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x19, 0x0a, 0x17, 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x6f, 0x66, + 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x70, 0x63, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, + 0x42, 0x2d, 0x0a, 0x2b, 0x5f, 0x65, 0x73, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, + 0x64, 0x64, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x5f, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x72, + 0x73, 0x74, 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x70, 0x63, 0x42, + 0x2b, 0x0a, 0x29, 0x5f, 0x65, 0x73, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x64, + 0x64, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, + 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x70, 0x63, 0x3a, 0x74, 0xea, 0x41, + 0x71, 0x0a, 0x29, 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, 0x47, 0x72, + 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x12, 0x44, 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, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, + 0x74, 0x65, 0x72, 0x69, 0x61, 0x2f, 0x7b, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, + 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x69, + 0x64, 0x7d, 0x42, 0x0b, 0x0a, 0x09, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x42, + 0x0f, 0x0a, 0x0d, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, + 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x0b, 0x0a, + 0x09, 0x5f, 0x6e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x62, + 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x42, 0x11, 0x0a, 0x0f, 0x5f, + 0x63, 0x70, 0x63, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x11, + 0x0a, 0x0f, 0x5f, 0x63, 0x70, 0x6d, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, + 0x73, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x63, 0x70, 0x76, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, + 0x63, 0x72, 0x6f, 0x73, 0x42, 0x19, 0x0a, 0x17, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, + 0x5f, 0x63, 0x70, 0x63, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, + 0x1b, 0x0a, 0x19, 0x5f, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x70, 0x63, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x1b, 0x0a, 0x19, - 0x5f, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x70, 0x63, 0x5f, 0x62, + 0x5f, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x70, 0x6d, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x65, 0x66, - 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x70, 0x6d, 0x5f, 0x62, 0x69, 0x64, 0x5f, - 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x65, 0x66, 0x66, 0x65, 0x63, - 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x70, 0x76, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, 0x63, - 0x72, 0x6f, 0x73, 0x42, 0x23, 0x0a, 0x21, 0x5f, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, - 0x65, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x70, 0x63, 0x5f, 0x62, 0x69, - 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x66, 0x69, 0x6e, - 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x73, 0x75, 0x66, 0x66, 0x69, 0x78, 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, 0x87, 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, 0x15, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, - 0x72, 0x69, 0x6f, 0x6e, 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, + 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x70, 0x76, 0x5f, 0x62, 0x69, 0x64, 0x5f, + 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x23, 0x0a, 0x21, 0x5f, 0x65, 0x66, 0x66, 0x65, 0x63, + 0x74, 0x69, 0x76, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x70, 0x63, + 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x13, 0x0a, 0x11, 0x5f, + 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x73, 0x75, 0x66, 0x66, 0x69, 0x78, + 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, 0x11, 0x0a, 0x0f, 0x5f, 0x70, + 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x87, 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, 0x37, 0x2e, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x15, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, + 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 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_group_criterion_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_ad_group_criterion_proto_rawDescData = file_google_ads_googleads_v16_resources_ad_group_criterion_proto_rawDesc + file_google_ads_googleads_v17_resources_ad_group_criterion_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_ad_group_criterion_proto_rawDescData = file_google_ads_googleads_v17_resources_ad_group_criterion_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_ad_group_criterion_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_ad_group_criterion_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_ad_group_criterion_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_ad_group_criterion_proto_rawDescData) +func file_google_ads_googleads_v17_resources_ad_group_criterion_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_ad_group_criterion_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_ad_group_criterion_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_ad_group_criterion_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_ad_group_criterion_proto_rawDescData -} - -var file_google_ads_googleads_v16_resources_ad_group_criterion_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_google_ads_googleads_v16_resources_ad_group_criterion_proto_goTypes = []interface{}{ - (*AdGroupCriterion)(nil), // 0: google.ads.googleads.v16.resources.AdGroupCriterion - (*AdGroupCriterion_QualityInfo)(nil), // 1: google.ads.googleads.v16.resources.AdGroupCriterion.QualityInfo - (*AdGroupCriterion_PositionEstimates)(nil), // 2: google.ads.googleads.v16.resources.AdGroupCriterion.PositionEstimates - (enums.AdGroupCriterionStatusEnum_AdGroupCriterionStatus)(0), // 3: google.ads.googleads.v16.enums.AdGroupCriterionStatusEnum.AdGroupCriterionStatus - (enums.CriterionTypeEnum_CriterionType)(0), // 4: google.ads.googleads.v16.enums.CriterionTypeEnum.CriterionType - (enums.CriterionSystemServingStatusEnum_CriterionSystemServingStatus)(0), // 5: google.ads.googleads.v16.enums.CriterionSystemServingStatusEnum.CriterionSystemServingStatus - (enums.AdGroupCriterionApprovalStatusEnum_AdGroupCriterionApprovalStatus)(0), // 6: google.ads.googleads.v16.enums.AdGroupCriterionApprovalStatusEnum.AdGroupCriterionApprovalStatus - (enums.BiddingSourceEnum_BiddingSource)(0), // 7: google.ads.googleads.v16.enums.BiddingSourceEnum.BiddingSource - (*common.CustomParameter)(nil), // 8: google.ads.googleads.v16.common.CustomParameter - (*common.KeywordInfo)(nil), // 9: google.ads.googleads.v16.common.KeywordInfo - (*common.PlacementInfo)(nil), // 10: google.ads.googleads.v16.common.PlacementInfo - (*common.MobileAppCategoryInfo)(nil), // 11: google.ads.googleads.v16.common.MobileAppCategoryInfo - (*common.MobileApplicationInfo)(nil), // 12: google.ads.googleads.v16.common.MobileApplicationInfo - (*common.ListingGroupInfo)(nil), // 13: google.ads.googleads.v16.common.ListingGroupInfo - (*common.AgeRangeInfo)(nil), // 14: google.ads.googleads.v16.common.AgeRangeInfo - (*common.GenderInfo)(nil), // 15: google.ads.googleads.v16.common.GenderInfo - (*common.IncomeRangeInfo)(nil), // 16: google.ads.googleads.v16.common.IncomeRangeInfo - (*common.ParentalStatusInfo)(nil), // 17: google.ads.googleads.v16.common.ParentalStatusInfo - (*common.UserListInfo)(nil), // 18: google.ads.googleads.v16.common.UserListInfo - (*common.YouTubeVideoInfo)(nil), // 19: google.ads.googleads.v16.common.YouTubeVideoInfo - (*common.YouTubeChannelInfo)(nil), // 20: google.ads.googleads.v16.common.YouTubeChannelInfo - (*common.TopicInfo)(nil), // 21: google.ads.googleads.v16.common.TopicInfo - (*common.UserInterestInfo)(nil), // 22: google.ads.googleads.v16.common.UserInterestInfo - (*common.WebpageInfo)(nil), // 23: google.ads.googleads.v16.common.WebpageInfo - (*common.AppPaymentModelInfo)(nil), // 24: google.ads.googleads.v16.common.AppPaymentModelInfo - (*common.CustomAffinityInfo)(nil), // 25: google.ads.googleads.v16.common.CustomAffinityInfo - (*common.CustomIntentInfo)(nil), // 26: google.ads.googleads.v16.common.CustomIntentInfo - (*common.CustomAudienceInfo)(nil), // 27: google.ads.googleads.v16.common.CustomAudienceInfo - (*common.CombinedAudienceInfo)(nil), // 28: google.ads.googleads.v16.common.CombinedAudienceInfo - (*common.AudienceInfo)(nil), // 29: google.ads.googleads.v16.common.AudienceInfo - (*common.LocationInfo)(nil), // 30: google.ads.googleads.v16.common.LocationInfo - (*common.LanguageInfo)(nil), // 31: google.ads.googleads.v16.common.LanguageInfo - (enums.QualityScoreBucketEnum_QualityScoreBucket)(0), // 32: google.ads.googleads.v16.enums.QualityScoreBucketEnum.QualityScoreBucket -} -var file_google_ads_googleads_v16_resources_ad_group_criterion_proto_depIdxs = []int32{ - 3, // 0: google.ads.googleads.v16.resources.AdGroupCriterion.status:type_name -> google.ads.googleads.v16.enums.AdGroupCriterionStatusEnum.AdGroupCriterionStatus - 1, // 1: google.ads.googleads.v16.resources.AdGroupCriterion.quality_info:type_name -> google.ads.googleads.v16.resources.AdGroupCriterion.QualityInfo - 4, // 2: google.ads.googleads.v16.resources.AdGroupCriterion.type:type_name -> google.ads.googleads.v16.enums.CriterionTypeEnum.CriterionType - 5, // 3: google.ads.googleads.v16.resources.AdGroupCriterion.system_serving_status:type_name -> google.ads.googleads.v16.enums.CriterionSystemServingStatusEnum.CriterionSystemServingStatus - 6, // 4: google.ads.googleads.v16.resources.AdGroupCriterion.approval_status:type_name -> google.ads.googleads.v16.enums.AdGroupCriterionApprovalStatusEnum.AdGroupCriterionApprovalStatus - 7, // 5: google.ads.googleads.v16.resources.AdGroupCriterion.effective_cpc_bid_source:type_name -> google.ads.googleads.v16.enums.BiddingSourceEnum.BiddingSource - 7, // 6: google.ads.googleads.v16.resources.AdGroupCriterion.effective_cpm_bid_source:type_name -> google.ads.googleads.v16.enums.BiddingSourceEnum.BiddingSource - 7, // 7: google.ads.googleads.v16.resources.AdGroupCriterion.effective_cpv_bid_source:type_name -> google.ads.googleads.v16.enums.BiddingSourceEnum.BiddingSource - 7, // 8: google.ads.googleads.v16.resources.AdGroupCriterion.effective_percent_cpc_bid_source:type_name -> google.ads.googleads.v16.enums.BiddingSourceEnum.BiddingSource - 2, // 9: google.ads.googleads.v16.resources.AdGroupCriterion.position_estimates:type_name -> google.ads.googleads.v16.resources.AdGroupCriterion.PositionEstimates - 8, // 10: google.ads.googleads.v16.resources.AdGroupCriterion.url_custom_parameters:type_name -> google.ads.googleads.v16.common.CustomParameter - 9, // 11: google.ads.googleads.v16.resources.AdGroupCriterion.keyword:type_name -> google.ads.googleads.v16.common.KeywordInfo - 10, // 12: google.ads.googleads.v16.resources.AdGroupCriterion.placement:type_name -> google.ads.googleads.v16.common.PlacementInfo - 11, // 13: google.ads.googleads.v16.resources.AdGroupCriterion.mobile_app_category:type_name -> google.ads.googleads.v16.common.MobileAppCategoryInfo - 12, // 14: google.ads.googleads.v16.resources.AdGroupCriterion.mobile_application:type_name -> google.ads.googleads.v16.common.MobileApplicationInfo - 13, // 15: google.ads.googleads.v16.resources.AdGroupCriterion.listing_group:type_name -> google.ads.googleads.v16.common.ListingGroupInfo - 14, // 16: google.ads.googleads.v16.resources.AdGroupCriterion.age_range:type_name -> google.ads.googleads.v16.common.AgeRangeInfo - 15, // 17: google.ads.googleads.v16.resources.AdGroupCriterion.gender:type_name -> google.ads.googleads.v16.common.GenderInfo - 16, // 18: google.ads.googleads.v16.resources.AdGroupCriterion.income_range:type_name -> google.ads.googleads.v16.common.IncomeRangeInfo - 17, // 19: google.ads.googleads.v16.resources.AdGroupCriterion.parental_status:type_name -> google.ads.googleads.v16.common.ParentalStatusInfo - 18, // 20: google.ads.googleads.v16.resources.AdGroupCriterion.user_list:type_name -> google.ads.googleads.v16.common.UserListInfo - 19, // 21: google.ads.googleads.v16.resources.AdGroupCriterion.youtube_video:type_name -> google.ads.googleads.v16.common.YouTubeVideoInfo - 20, // 22: google.ads.googleads.v16.resources.AdGroupCriterion.youtube_channel:type_name -> google.ads.googleads.v16.common.YouTubeChannelInfo - 21, // 23: google.ads.googleads.v16.resources.AdGroupCriterion.topic:type_name -> google.ads.googleads.v16.common.TopicInfo - 22, // 24: google.ads.googleads.v16.resources.AdGroupCriterion.user_interest:type_name -> google.ads.googleads.v16.common.UserInterestInfo - 23, // 25: google.ads.googleads.v16.resources.AdGroupCriterion.webpage:type_name -> google.ads.googleads.v16.common.WebpageInfo - 24, // 26: google.ads.googleads.v16.resources.AdGroupCriterion.app_payment_model:type_name -> google.ads.googleads.v16.common.AppPaymentModelInfo - 25, // 27: google.ads.googleads.v16.resources.AdGroupCriterion.custom_affinity:type_name -> google.ads.googleads.v16.common.CustomAffinityInfo - 26, // 28: google.ads.googleads.v16.resources.AdGroupCriterion.custom_intent:type_name -> google.ads.googleads.v16.common.CustomIntentInfo - 27, // 29: google.ads.googleads.v16.resources.AdGroupCriterion.custom_audience:type_name -> google.ads.googleads.v16.common.CustomAudienceInfo - 28, // 30: google.ads.googleads.v16.resources.AdGroupCriterion.combined_audience:type_name -> google.ads.googleads.v16.common.CombinedAudienceInfo - 29, // 31: google.ads.googleads.v16.resources.AdGroupCriterion.audience:type_name -> google.ads.googleads.v16.common.AudienceInfo - 30, // 32: google.ads.googleads.v16.resources.AdGroupCriterion.location:type_name -> google.ads.googleads.v16.common.LocationInfo - 31, // 33: google.ads.googleads.v16.resources.AdGroupCriterion.language:type_name -> google.ads.googleads.v16.common.LanguageInfo - 32, // 34: google.ads.googleads.v16.resources.AdGroupCriterion.QualityInfo.creative_quality_score:type_name -> google.ads.googleads.v16.enums.QualityScoreBucketEnum.QualityScoreBucket - 32, // 35: google.ads.googleads.v16.resources.AdGroupCriterion.QualityInfo.post_click_quality_score:type_name -> google.ads.googleads.v16.enums.QualityScoreBucketEnum.QualityScoreBucket - 32, // 36: google.ads.googleads.v16.resources.AdGroupCriterion.QualityInfo.search_predicted_ctr:type_name -> google.ads.googleads.v16.enums.QualityScoreBucketEnum.QualityScoreBucket - 37, // [37:37] is the sub-list for method output_type - 37, // [37:37] is the sub-list for method input_type - 37, // [37:37] is the sub-list for extension type_name - 37, // [37:37] is the sub-list for extension extendee - 0, // [0:37] is the sub-list for field type_name -} - -func init() { file_google_ads_googleads_v16_resources_ad_group_criterion_proto_init() } -func file_google_ads_googleads_v16_resources_ad_group_criterion_proto_init() { - if File_google_ads_googleads_v16_resources_ad_group_criterion_proto != nil { + return file_google_ads_googleads_v17_resources_ad_group_criterion_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_ad_group_criterion_proto_msgTypes = make([]protoimpl.MessageInfo, 3) +var file_google_ads_googleads_v17_resources_ad_group_criterion_proto_goTypes = []interface{}{ + (*AdGroupCriterion)(nil), // 0: google.ads.googleads.v17.resources.AdGroupCriterion + (*AdGroupCriterion_QualityInfo)(nil), // 1: google.ads.googleads.v17.resources.AdGroupCriterion.QualityInfo + (*AdGroupCriterion_PositionEstimates)(nil), // 2: google.ads.googleads.v17.resources.AdGroupCriterion.PositionEstimates + (enums.AdGroupCriterionStatusEnum_AdGroupCriterionStatus)(0), // 3: google.ads.googleads.v17.enums.AdGroupCriterionStatusEnum.AdGroupCriterionStatus + (enums.CriterionTypeEnum_CriterionType)(0), // 4: google.ads.googleads.v17.enums.CriterionTypeEnum.CriterionType + (enums.CriterionSystemServingStatusEnum_CriterionSystemServingStatus)(0), // 5: google.ads.googleads.v17.enums.CriterionSystemServingStatusEnum.CriterionSystemServingStatus + (enums.AdGroupCriterionApprovalStatusEnum_AdGroupCriterionApprovalStatus)(0), // 6: google.ads.googleads.v17.enums.AdGroupCriterionApprovalStatusEnum.AdGroupCriterionApprovalStatus + (enums.BiddingSourceEnum_BiddingSource)(0), // 7: google.ads.googleads.v17.enums.BiddingSourceEnum.BiddingSource + (*common.CustomParameter)(nil), // 8: google.ads.googleads.v17.common.CustomParameter + (enums.AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus)(0), // 9: google.ads.googleads.v17.enums.AdGroupCriterionPrimaryStatusEnum.AdGroupCriterionPrimaryStatus + (enums.AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason)(0), // 10: google.ads.googleads.v17.enums.AdGroupCriterionPrimaryStatusReasonEnum.AdGroupCriterionPrimaryStatusReason + (*common.KeywordInfo)(nil), // 11: google.ads.googleads.v17.common.KeywordInfo + (*common.PlacementInfo)(nil), // 12: google.ads.googleads.v17.common.PlacementInfo + (*common.MobileAppCategoryInfo)(nil), // 13: google.ads.googleads.v17.common.MobileAppCategoryInfo + (*common.MobileApplicationInfo)(nil), // 14: google.ads.googleads.v17.common.MobileApplicationInfo + (*common.ListingGroupInfo)(nil), // 15: google.ads.googleads.v17.common.ListingGroupInfo + (*common.AgeRangeInfo)(nil), // 16: google.ads.googleads.v17.common.AgeRangeInfo + (*common.GenderInfo)(nil), // 17: google.ads.googleads.v17.common.GenderInfo + (*common.IncomeRangeInfo)(nil), // 18: google.ads.googleads.v17.common.IncomeRangeInfo + (*common.ParentalStatusInfo)(nil), // 19: google.ads.googleads.v17.common.ParentalStatusInfo + (*common.UserListInfo)(nil), // 20: google.ads.googleads.v17.common.UserListInfo + (*common.YouTubeVideoInfo)(nil), // 21: google.ads.googleads.v17.common.YouTubeVideoInfo + (*common.YouTubeChannelInfo)(nil), // 22: google.ads.googleads.v17.common.YouTubeChannelInfo + (*common.TopicInfo)(nil), // 23: google.ads.googleads.v17.common.TopicInfo + (*common.UserInterestInfo)(nil), // 24: google.ads.googleads.v17.common.UserInterestInfo + (*common.WebpageInfo)(nil), // 25: google.ads.googleads.v17.common.WebpageInfo + (*common.AppPaymentModelInfo)(nil), // 26: google.ads.googleads.v17.common.AppPaymentModelInfo + (*common.CustomAffinityInfo)(nil), // 27: google.ads.googleads.v17.common.CustomAffinityInfo + (*common.CustomIntentInfo)(nil), // 28: google.ads.googleads.v17.common.CustomIntentInfo + (*common.CustomAudienceInfo)(nil), // 29: google.ads.googleads.v17.common.CustomAudienceInfo + (*common.CombinedAudienceInfo)(nil), // 30: google.ads.googleads.v17.common.CombinedAudienceInfo + (*common.AudienceInfo)(nil), // 31: google.ads.googleads.v17.common.AudienceInfo + (*common.LocationInfo)(nil), // 32: google.ads.googleads.v17.common.LocationInfo + (*common.LanguageInfo)(nil), // 33: google.ads.googleads.v17.common.LanguageInfo + (enums.QualityScoreBucketEnum_QualityScoreBucket)(0), // 34: google.ads.googleads.v17.enums.QualityScoreBucketEnum.QualityScoreBucket +} +var file_google_ads_googleads_v17_resources_ad_group_criterion_proto_depIdxs = []int32{ + 3, // 0: google.ads.googleads.v17.resources.AdGroupCriterion.status:type_name -> google.ads.googleads.v17.enums.AdGroupCriterionStatusEnum.AdGroupCriterionStatus + 1, // 1: google.ads.googleads.v17.resources.AdGroupCriterion.quality_info:type_name -> google.ads.googleads.v17.resources.AdGroupCriterion.QualityInfo + 4, // 2: google.ads.googleads.v17.resources.AdGroupCriterion.type:type_name -> google.ads.googleads.v17.enums.CriterionTypeEnum.CriterionType + 5, // 3: google.ads.googleads.v17.resources.AdGroupCriterion.system_serving_status:type_name -> google.ads.googleads.v17.enums.CriterionSystemServingStatusEnum.CriterionSystemServingStatus + 6, // 4: google.ads.googleads.v17.resources.AdGroupCriterion.approval_status:type_name -> google.ads.googleads.v17.enums.AdGroupCriterionApprovalStatusEnum.AdGroupCriterionApprovalStatus + 7, // 5: google.ads.googleads.v17.resources.AdGroupCriterion.effective_cpc_bid_source:type_name -> google.ads.googleads.v17.enums.BiddingSourceEnum.BiddingSource + 7, // 6: google.ads.googleads.v17.resources.AdGroupCriterion.effective_cpm_bid_source:type_name -> google.ads.googleads.v17.enums.BiddingSourceEnum.BiddingSource + 7, // 7: google.ads.googleads.v17.resources.AdGroupCriterion.effective_cpv_bid_source:type_name -> google.ads.googleads.v17.enums.BiddingSourceEnum.BiddingSource + 7, // 8: google.ads.googleads.v17.resources.AdGroupCriterion.effective_percent_cpc_bid_source:type_name -> google.ads.googleads.v17.enums.BiddingSourceEnum.BiddingSource + 2, // 9: google.ads.googleads.v17.resources.AdGroupCriterion.position_estimates:type_name -> google.ads.googleads.v17.resources.AdGroupCriterion.PositionEstimates + 8, // 10: google.ads.googleads.v17.resources.AdGroupCriterion.url_custom_parameters:type_name -> google.ads.googleads.v17.common.CustomParameter + 9, // 11: google.ads.googleads.v17.resources.AdGroupCriterion.primary_status:type_name -> google.ads.googleads.v17.enums.AdGroupCriterionPrimaryStatusEnum.AdGroupCriterionPrimaryStatus + 10, // 12: google.ads.googleads.v17.resources.AdGroupCriterion.primary_status_reasons:type_name -> google.ads.googleads.v17.enums.AdGroupCriterionPrimaryStatusReasonEnum.AdGroupCriterionPrimaryStatusReason + 11, // 13: google.ads.googleads.v17.resources.AdGroupCriterion.keyword:type_name -> google.ads.googleads.v17.common.KeywordInfo + 12, // 14: google.ads.googleads.v17.resources.AdGroupCriterion.placement:type_name -> google.ads.googleads.v17.common.PlacementInfo + 13, // 15: google.ads.googleads.v17.resources.AdGroupCriterion.mobile_app_category:type_name -> google.ads.googleads.v17.common.MobileAppCategoryInfo + 14, // 16: google.ads.googleads.v17.resources.AdGroupCriterion.mobile_application:type_name -> google.ads.googleads.v17.common.MobileApplicationInfo + 15, // 17: google.ads.googleads.v17.resources.AdGroupCriterion.listing_group:type_name -> google.ads.googleads.v17.common.ListingGroupInfo + 16, // 18: google.ads.googleads.v17.resources.AdGroupCriterion.age_range:type_name -> google.ads.googleads.v17.common.AgeRangeInfo + 17, // 19: google.ads.googleads.v17.resources.AdGroupCriterion.gender:type_name -> google.ads.googleads.v17.common.GenderInfo + 18, // 20: google.ads.googleads.v17.resources.AdGroupCriterion.income_range:type_name -> google.ads.googleads.v17.common.IncomeRangeInfo + 19, // 21: google.ads.googleads.v17.resources.AdGroupCriterion.parental_status:type_name -> google.ads.googleads.v17.common.ParentalStatusInfo + 20, // 22: google.ads.googleads.v17.resources.AdGroupCriterion.user_list:type_name -> google.ads.googleads.v17.common.UserListInfo + 21, // 23: google.ads.googleads.v17.resources.AdGroupCriterion.youtube_video:type_name -> google.ads.googleads.v17.common.YouTubeVideoInfo + 22, // 24: google.ads.googleads.v17.resources.AdGroupCriterion.youtube_channel:type_name -> google.ads.googleads.v17.common.YouTubeChannelInfo + 23, // 25: google.ads.googleads.v17.resources.AdGroupCriterion.topic:type_name -> google.ads.googleads.v17.common.TopicInfo + 24, // 26: google.ads.googleads.v17.resources.AdGroupCriterion.user_interest:type_name -> google.ads.googleads.v17.common.UserInterestInfo + 25, // 27: google.ads.googleads.v17.resources.AdGroupCriterion.webpage:type_name -> google.ads.googleads.v17.common.WebpageInfo + 26, // 28: google.ads.googleads.v17.resources.AdGroupCriterion.app_payment_model:type_name -> google.ads.googleads.v17.common.AppPaymentModelInfo + 27, // 29: google.ads.googleads.v17.resources.AdGroupCriterion.custom_affinity:type_name -> google.ads.googleads.v17.common.CustomAffinityInfo + 28, // 30: google.ads.googleads.v17.resources.AdGroupCriterion.custom_intent:type_name -> google.ads.googleads.v17.common.CustomIntentInfo + 29, // 31: google.ads.googleads.v17.resources.AdGroupCriterion.custom_audience:type_name -> google.ads.googleads.v17.common.CustomAudienceInfo + 30, // 32: google.ads.googleads.v17.resources.AdGroupCriterion.combined_audience:type_name -> google.ads.googleads.v17.common.CombinedAudienceInfo + 31, // 33: google.ads.googleads.v17.resources.AdGroupCriterion.audience:type_name -> google.ads.googleads.v17.common.AudienceInfo + 32, // 34: google.ads.googleads.v17.resources.AdGroupCriterion.location:type_name -> google.ads.googleads.v17.common.LocationInfo + 33, // 35: google.ads.googleads.v17.resources.AdGroupCriterion.language:type_name -> google.ads.googleads.v17.common.LanguageInfo + 34, // 36: google.ads.googleads.v17.resources.AdGroupCriterion.QualityInfo.creative_quality_score:type_name -> google.ads.googleads.v17.enums.QualityScoreBucketEnum.QualityScoreBucket + 34, // 37: google.ads.googleads.v17.resources.AdGroupCriterion.QualityInfo.post_click_quality_score:type_name -> google.ads.googleads.v17.enums.QualityScoreBucketEnum.QualityScoreBucket + 34, // 38: google.ads.googleads.v17.resources.AdGroupCriterion.QualityInfo.search_predicted_ctr:type_name -> google.ads.googleads.v17.enums.QualityScoreBucketEnum.QualityScoreBucket + 39, // [39:39] is the sub-list for method output_type + 39, // [39:39] is the sub-list for method input_type + 39, // [39:39] is the sub-list for extension type_name + 39, // [39:39] is the sub-list for extension extendee + 0, // [0:39] is the sub-list for field type_name +} + +func init() { file_google_ads_googleads_v17_resources_ad_group_criterion_proto_init() } +func file_google_ads_googleads_v17_resources_ad_group_criterion_proto_init() { + if File_google_ads_googleads_v17_resources_ad_group_criterion_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_ad_group_criterion_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_ad_group_criterion_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupCriterion); i { case 0: return &v.state @@ -1477,7 +1529,7 @@ func file_google_ads_googleads_v16_resources_ad_group_criterion_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_ad_group_criterion_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_ad_group_criterion_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupCriterion_QualityInfo); i { case 0: return &v.state @@ -1489,7 +1541,7 @@ func file_google_ads_googleads_v16_resources_ad_group_criterion_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_ad_group_criterion_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_ad_group_criterion_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupCriterion_PositionEstimates); i { case 0: return &v.state @@ -1502,7 +1554,7 @@ func file_google_ads_googleads_v16_resources_ad_group_criterion_proto_init() { } } } - file_google_ads_googleads_v16_resources_ad_group_criterion_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_ad_group_criterion_proto_msgTypes[0].OneofWrappers = []interface{}{ (*AdGroupCriterion_Keyword)(nil), (*AdGroupCriterion_Placement)(nil), (*AdGroupCriterion_MobileAppCategory)(nil), @@ -1527,24 +1579,24 @@ func file_google_ads_googleads_v16_resources_ad_group_criterion_proto_init() { (*AdGroupCriterion_Location)(nil), (*AdGroupCriterion_Language)(nil), } - file_google_ads_googleads_v16_resources_ad_group_criterion_proto_msgTypes[1].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_ad_group_criterion_proto_msgTypes[2].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_ad_group_criterion_proto_msgTypes[1].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_ad_group_criterion_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_resources_ad_group_criterion_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_ad_group_criterion_proto_rawDesc, NumEnums: 0, NumMessages: 3, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_ad_group_criterion_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_ad_group_criterion_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_ad_group_criterion_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_ad_group_criterion_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_ad_group_criterion_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_ad_group_criterion_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_ad_group_criterion_proto = out.File - file_google_ads_googleads_v16_resources_ad_group_criterion_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_ad_group_criterion_proto_goTypes = nil - file_google_ads_googleads_v16_resources_ad_group_criterion_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_ad_group_criterion_proto = out.File + file_google_ads_googleads_v17_resources_ad_group_criterion_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_ad_group_criterion_proto_goTypes = nil + file_google_ads_googleads_v17_resources_ad_group_criterion_proto_depIdxs = nil } diff --git a/resources/ad_group_criterion_customizer.pb.go b/resources/ad_group_criterion_customizer.pb.go index d752ec19..f21bfbf9 100644 --- a/resources/ad_group_criterion_customizer.pb.go +++ b/resources/ad_group_criterion_customizer.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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_criterion_customizer.proto +// source: google/ads/googleads/v17/resources/ad_group_criterion_customizer.proto package resources @@ -56,7 +56,7 @@ type AdGroupCriterionCustomizer struct { // group criterion. CustomizerAttribute string `protobuf:"bytes,3,opt,name=customizer_attribute,json=customizerAttribute,proto3" json:"customizer_attribute,omitempty"` // Output only. The status of the ad group criterion customizer. - Status enums.CustomizerValueStatusEnum_CustomizerValueStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.CustomizerValueStatusEnum_CustomizerValueStatus" json:"status,omitempty"` + Status enums.CustomizerValueStatusEnum_CustomizerValueStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.CustomizerValueStatusEnum_CustomizerValueStatus" json:"status,omitempty"` // Required. The value to associate with the customizer attribute at this // level. The value must be of the type specified for the CustomizerAttribute. Value *common.CustomizerValue `protobuf:"bytes,5,opt,name=value,proto3" json:"value,omitempty"` @@ -65,7 +65,7 @@ type AdGroupCriterionCustomizer struct { func (x *AdGroupCriterionCustomizer) Reset() { *x = AdGroupCriterionCustomizer{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_criterion_customizer_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *AdGroupCriterionCustomizer) String() string { func (*AdGroupCriterionCustomizer) ProtoMessage() {} func (x *AdGroupCriterionCustomizer) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_criterion_customizer_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 *AdGroupCriterionCustomizer) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupCriterionCustomizer.ProtoReflect.Descriptor instead. func (*AdGroupCriterionCustomizer) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_ad_group_criterion_customizer_proto_rawDescGZIP(), []int{0} } func (x *AdGroupCriterionCustomizer) GetResourceName() string { @@ -129,21 +129,21 @@ func (x *AdGroupCriterionCustomizer) GetValue() *common.CustomizerValue { return nil } -var File_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_ad_group_criterion_customizer_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_ad_group_criterion_customizer_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, 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, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 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, 0x36, 0x67, 0x6f, + 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, + 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, 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, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, @@ -173,14 +173,14 @@ var file_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto_ 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x12, 0x6c, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 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, + 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, 0x69, 0x7a, 0x65, 0x72, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x4b, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 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, 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, 0x69, 0x7a, 0x65, 0x72, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0xa5, 0x01, 0xea, 0x41, 0xa1, 0x01, 0x0a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x67, @@ -196,46 +196,46 @@ var file_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto_ 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x42, 0x91, 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, 0x1f, 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, 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, + 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, + 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, 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, + 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_criterion_customizer_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto_rawDescData = file_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto_rawDesc + file_google_ads_googleads_v17_resources_ad_group_criterion_customizer_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_ad_group_criterion_customizer_proto_rawDescData = file_google_ads_googleads_v17_resources_ad_group_criterion_customizer_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto_rawDescData) +func file_google_ads_googleads_v17_resources_ad_group_criterion_customizer_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_ad_group_criterion_customizer_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_ad_group_criterion_customizer_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_ad_group_criterion_customizer_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto_rawDescData + return file_google_ads_googleads_v17_resources_ad_group_criterion_customizer_proto_rawDescData } -var file_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto_goTypes = []interface{}{ - (*AdGroupCriterionCustomizer)(nil), // 0: google.ads.googleads.v16.resources.AdGroupCriterionCustomizer - (enums.CustomizerValueStatusEnum_CustomizerValueStatus)(0), // 1: google.ads.googleads.v16.enums.CustomizerValueStatusEnum.CustomizerValueStatus - (*common.CustomizerValue)(nil), // 2: google.ads.googleads.v16.common.CustomizerValue +var file_google_ads_googleads_v17_resources_ad_group_criterion_customizer_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_ad_group_criterion_customizer_proto_goTypes = []interface{}{ + (*AdGroupCriterionCustomizer)(nil), // 0: google.ads.googleads.v17.resources.AdGroupCriterionCustomizer + (enums.CustomizerValueStatusEnum_CustomizerValueStatus)(0), // 1: google.ads.googleads.v17.enums.CustomizerValueStatusEnum.CustomizerValueStatus + (*common.CustomizerValue)(nil), // 2: google.ads.googleads.v17.common.CustomizerValue } -var file_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.AdGroupCriterionCustomizer.status:type_name -> google.ads.googleads.v16.enums.CustomizerValueStatusEnum.CustomizerValueStatus - 2, // 1: google.ads.googleads.v16.resources.AdGroupCriterionCustomizer.value:type_name -> google.ads.googleads.v16.common.CustomizerValue +var file_google_ads_googleads_v17_resources_ad_group_criterion_customizer_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.AdGroupCriterionCustomizer.status:type_name -> google.ads.googleads.v17.enums.CustomizerValueStatusEnum.CustomizerValueStatus + 2, // 1: google.ads.googleads.v17.resources.AdGroupCriterionCustomizer.value:type_name -> google.ads.googleads.v17.common.CustomizerValue 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 @@ -243,13 +243,13 @@ var file_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto_ 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto_init() } -func file_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto_init() { - if File_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto != nil { +func init() { file_google_ads_googleads_v17_resources_ad_group_criterion_customizer_proto_init() } +func file_google_ads_googleads_v17_resources_ad_group_criterion_customizer_proto_init() { + if File_google_ads_googleads_v17_resources_ad_group_criterion_customizer_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_ad_group_criterion_customizer_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupCriterionCustomizer); i { case 0: return &v.state @@ -262,23 +262,23 @@ func file_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto } } } - file_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_ad_group_criterion_customizer_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_criterion_customizer_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_ad_group_criterion_customizer_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_ad_group_criterion_customizer_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_ad_group_criterion_customizer_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_ad_group_criterion_customizer_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto = out.File - file_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto_goTypes = nil - file_google_ads_googleads_v16_resources_ad_group_criterion_customizer_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_ad_group_criterion_customizer_proto = out.File + file_google_ads_googleads_v17_resources_ad_group_criterion_customizer_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_ad_group_criterion_customizer_proto_goTypes = nil + file_google_ads_googleads_v17_resources_ad_group_criterion_customizer_proto_depIdxs = nil } diff --git a/resources/ad_group_criterion_label.pb.go b/resources/ad_group_criterion_label.pb.go index 108017c7..292ea68f 100644 --- a/resources/ad_group_criterion_label.pb.go +++ b/resources/ad_group_criterion_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/resources/ad_group_criterion_label.proto +// source: google/ads/googleads/v17/resources/ad_group_criterion_label.proto package resources @@ -54,7 +54,7 @@ type AdGroupCriterionLabel struct { func (x *AdGroupCriterionLabel) Reset() { *x = AdGroupCriterionLabel{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_ad_group_criterion_label_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_criterion_label_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67,7 +67,7 @@ func (x *AdGroupCriterionLabel) String() string { func (*AdGroupCriterionLabel) ProtoMessage() {} func (x *AdGroupCriterionLabel) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_ad_group_criterion_label_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_criterion_label_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80,7 +80,7 @@ func (x *AdGroupCriterionLabel) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupCriterionLabel.ProtoReflect.Descriptor instead. func (*AdGroupCriterionLabel) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_ad_group_criterion_label_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_ad_group_criterion_label_proto_rawDescGZIP(), []int{0} } func (x *AdGroupCriterionLabel) GetResourceName() string { @@ -104,15 +104,15 @@ func (x *AdGroupCriterionLabel) GetLabel() string { return "" } -var File_google_ads_googleads_v16_resources_ad_group_criterion_label_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_ad_group_criterion_label_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_ad_group_criterion_label_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_ad_group_criterion_label_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, 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, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x61, 0x62, 0x65, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -148,41 +148,41 @@ var file_google_ads_googleads_v16_resources_ad_group_criterion_label_proto_rawDe 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 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, 0x1a, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x1a, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x62, 0x65, 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, 0x3b, + 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, + 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, + 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, 0x63, + 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_criterion_label_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_ad_group_criterion_label_proto_rawDescData = file_google_ads_googleads_v16_resources_ad_group_criterion_label_proto_rawDesc + file_google_ads_googleads_v17_resources_ad_group_criterion_label_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_ad_group_criterion_label_proto_rawDescData = file_google_ads_googleads_v17_resources_ad_group_criterion_label_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_ad_group_criterion_label_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_ad_group_criterion_label_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_ad_group_criterion_label_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_ad_group_criterion_label_proto_rawDescData) +func file_google_ads_googleads_v17_resources_ad_group_criterion_label_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_ad_group_criterion_label_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_ad_group_criterion_label_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_ad_group_criterion_label_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_ad_group_criterion_label_proto_rawDescData + return file_google_ads_googleads_v17_resources_ad_group_criterion_label_proto_rawDescData } -var file_google_ads_googleads_v16_resources_ad_group_criterion_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_ad_group_criterion_label_proto_goTypes = []interface{}{ - (*AdGroupCriterionLabel)(nil), // 0: google.ads.googleads.v16.resources.AdGroupCriterionLabel +var file_google_ads_googleads_v17_resources_ad_group_criterion_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_ad_group_criterion_label_proto_goTypes = []interface{}{ + (*AdGroupCriterionLabel)(nil), // 0: google.ads.googleads.v17.resources.AdGroupCriterionLabel } -var file_google_ads_googleads_v16_resources_ad_group_criterion_label_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_ad_group_criterion_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 @@ -190,13 +190,13 @@ var file_google_ads_googleads_v16_resources_ad_group_criterion_label_proto_depId 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_ad_group_criterion_label_proto_init() } -func file_google_ads_googleads_v16_resources_ad_group_criterion_label_proto_init() { - if File_google_ads_googleads_v16_resources_ad_group_criterion_label_proto != nil { +func init() { file_google_ads_googleads_v17_resources_ad_group_criterion_label_proto_init() } +func file_google_ads_googleads_v17_resources_ad_group_criterion_label_proto_init() { + if File_google_ads_googleads_v17_resources_ad_group_criterion_label_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_ad_group_criterion_label_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_ad_group_criterion_label_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupCriterionLabel); i { case 0: return &v.state @@ -209,23 +209,23 @@ func file_google_ads_googleads_v16_resources_ad_group_criterion_label_proto_init } } } - file_google_ads_googleads_v16_resources_ad_group_criterion_label_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_ad_group_criterion_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_resources_ad_group_criterion_label_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_ad_group_criterion_label_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_ad_group_criterion_label_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_ad_group_criterion_label_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_ad_group_criterion_label_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_ad_group_criterion_label_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_ad_group_criterion_label_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_ad_group_criterion_label_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_ad_group_criterion_label_proto = out.File - file_google_ads_googleads_v16_resources_ad_group_criterion_label_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_ad_group_criterion_label_proto_goTypes = nil - file_google_ads_googleads_v16_resources_ad_group_criterion_label_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_ad_group_criterion_label_proto = out.File + file_google_ads_googleads_v17_resources_ad_group_criterion_label_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_ad_group_criterion_label_proto_goTypes = nil + file_google_ads_googleads_v17_resources_ad_group_criterion_label_proto_depIdxs = nil } diff --git a/resources/ad_group_criterion_simulation.pb.go b/resources/ad_group_criterion_simulation.pb.go index 8b31c9b3..eb541fd2 100644 --- a/resources/ad_group_criterion_simulation.pb.go +++ b/resources/ad_group_criterion_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/resources/ad_group_criterion_simulation.proto +// source: google/ads/googleads/v17/resources/ad_group_criterion_simulation.proto package resources @@ -62,9 +62,9 @@ type AdGroupCriterionSimulation struct { // Output only. Criterion ID of the simulation. CriterionId *int64 `protobuf:"varint,10,opt,name=criterion_id,json=criterionId,proto3,oneof" json:"criterion_id,omitempty"` // Output only. The field that the simulation modifies. - Type enums.SimulationTypeEnum_SimulationType `protobuf:"varint,4,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.SimulationTypeEnum_SimulationType" json:"type,omitempty"` + Type enums.SimulationTypeEnum_SimulationType `protobuf:"varint,4,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.SimulationTypeEnum_SimulationType" json:"type,omitempty"` // Output only. How the simulation modifies the field. - ModificationMethod enums.SimulationModificationMethodEnum_SimulationModificationMethod `protobuf:"varint,5,opt,name=modification_method,json=modificationMethod,proto3,enum=google.ads.googleads.v16.enums.SimulationModificationMethodEnum_SimulationModificationMethod" json:"modification_method,omitempty"` + ModificationMethod enums.SimulationModificationMethodEnum_SimulationModificationMethod `protobuf:"varint,5,opt,name=modification_method,json=modificationMethod,proto3,enum=google.ads.googleads.v17.enums.SimulationModificationMethodEnum_SimulationModificationMethod" json:"modification_method,omitempty"` // Output only. First day on which the simulation is based, in YYYY-MM-DD // format. StartDate *string `protobuf:"bytes,11,opt,name=start_date,json=startDate,proto3,oneof" json:"start_date,omitempty"` @@ -83,7 +83,7 @@ type AdGroupCriterionSimulation struct { func (x *AdGroupCriterionSimulation) Reset() { *x = AdGroupCriterionSimulation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_criterion_simulation_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -96,7 +96,7 @@ func (x *AdGroupCriterionSimulation) String() string { func (*AdGroupCriterionSimulation) ProtoMessage() {} func (x *AdGroupCriterionSimulation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_criterion_simulation_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -109,7 +109,7 @@ func (x *AdGroupCriterionSimulation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupCriterionSimulation.ProtoReflect.Descriptor instead. func (*AdGroupCriterionSimulation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_ad_group_criterion_simulation_proto_rawDescGZIP(), []int{0} } func (x *AdGroupCriterionSimulation) GetResourceName() string { @@ -200,25 +200,25 @@ func (*AdGroupCriterionSimulation_CpcBidPointList) isAdGroupCriterionSimulation_ func (*AdGroupCriterionSimulation_PercentCpcBidPointList) isAdGroupCriterionSimulation_PointList() {} -var File_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_ad_group_criterion_simulation_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_ad_group_criterion_simulation_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, 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, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x30, 0x67, 0x6f, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x73, 0x69, + 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, 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, 0x73, + 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, 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, + 0x67, 0x6f, 0x6f, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, @@ -240,14 +240,14 @@ var file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto_ 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x5a, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 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, 0x53, 0x69, 0x6d, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x93, 0x01, 0x0a, 0x13, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x05, 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, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, + 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, @@ -261,14 +261,14 @@ var file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto_ 0x12, 0x63, 0x70, 0x63, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x08, 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, 0x43, 0x70, 0x63, 0x42, + 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, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x0f, 0x63, 0x70, 0x63, 0x42, 0x69, 0x64, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x84, 0x01, 0x0a, 0x1a, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x70, 0x63, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x0d, 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, 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, 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, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x16, 0x70, 0x65, @@ -292,49 +292,49 @@ var file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto_ 0x74, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x65, 0x6e, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x91, 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, 0x1f, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x1f, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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_ad_group_criterion_simulation_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto_rawDescData = file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto_rawDesc + file_google_ads_googleads_v17_resources_ad_group_criterion_simulation_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_ad_group_criterion_simulation_proto_rawDescData = file_google_ads_googleads_v17_resources_ad_group_criterion_simulation_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto_rawDescData) +func file_google_ads_googleads_v17_resources_ad_group_criterion_simulation_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_ad_group_criterion_simulation_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_ad_group_criterion_simulation_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_ad_group_criterion_simulation_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto_rawDescData + return file_google_ads_googleads_v17_resources_ad_group_criterion_simulation_proto_rawDescData } -var file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto_goTypes = []interface{}{ - (*AdGroupCriterionSimulation)(nil), // 0: google.ads.googleads.v16.resources.AdGroupCriterionSimulation - (enums.SimulationTypeEnum_SimulationType)(0), // 1: google.ads.googleads.v16.enums.SimulationTypeEnum.SimulationType - (enums.SimulationModificationMethodEnum_SimulationModificationMethod)(0), // 2: google.ads.googleads.v16.enums.SimulationModificationMethodEnum.SimulationModificationMethod - (*common.CpcBidSimulationPointList)(nil), // 3: google.ads.googleads.v16.common.CpcBidSimulationPointList - (*common.PercentCpcBidSimulationPointList)(nil), // 4: google.ads.googleads.v16.common.PercentCpcBidSimulationPointList +var file_google_ads_googleads_v17_resources_ad_group_criterion_simulation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_ad_group_criterion_simulation_proto_goTypes = []interface{}{ + (*AdGroupCriterionSimulation)(nil), // 0: google.ads.googleads.v17.resources.AdGroupCriterionSimulation + (enums.SimulationTypeEnum_SimulationType)(0), // 1: google.ads.googleads.v17.enums.SimulationTypeEnum.SimulationType + (enums.SimulationModificationMethodEnum_SimulationModificationMethod)(0), // 2: google.ads.googleads.v17.enums.SimulationModificationMethodEnum.SimulationModificationMethod + (*common.CpcBidSimulationPointList)(nil), // 3: google.ads.googleads.v17.common.CpcBidSimulationPointList + (*common.PercentCpcBidSimulationPointList)(nil), // 4: google.ads.googleads.v17.common.PercentCpcBidSimulationPointList } -var file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.AdGroupCriterionSimulation.type:type_name -> google.ads.googleads.v16.enums.SimulationTypeEnum.SimulationType - 2, // 1: google.ads.googleads.v16.resources.AdGroupCriterionSimulation.modification_method:type_name -> google.ads.googleads.v16.enums.SimulationModificationMethodEnum.SimulationModificationMethod - 3, // 2: google.ads.googleads.v16.resources.AdGroupCriterionSimulation.cpc_bid_point_list:type_name -> google.ads.googleads.v16.common.CpcBidSimulationPointList - 4, // 3: google.ads.googleads.v16.resources.AdGroupCriterionSimulation.percent_cpc_bid_point_list:type_name -> google.ads.googleads.v16.common.PercentCpcBidSimulationPointList +var file_google_ads_googleads_v17_resources_ad_group_criterion_simulation_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.AdGroupCriterionSimulation.type:type_name -> google.ads.googleads.v17.enums.SimulationTypeEnum.SimulationType + 2, // 1: google.ads.googleads.v17.resources.AdGroupCriterionSimulation.modification_method:type_name -> google.ads.googleads.v17.enums.SimulationModificationMethodEnum.SimulationModificationMethod + 3, // 2: google.ads.googleads.v17.resources.AdGroupCriterionSimulation.cpc_bid_point_list:type_name -> google.ads.googleads.v17.common.CpcBidSimulationPointList + 4, // 3: google.ads.googleads.v17.resources.AdGroupCriterionSimulation.percent_cpc_bid_point_list:type_name -> google.ads.googleads.v17.common.PercentCpcBidSimulationPointList 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 @@ -342,13 +342,13 @@ var file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto_ 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto_init() } -func file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto_init() { - if File_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto != nil { +func init() { file_google_ads_googleads_v17_resources_ad_group_criterion_simulation_proto_init() } +func file_google_ads_googleads_v17_resources_ad_group_criterion_simulation_proto_init() { + if File_google_ads_googleads_v17_resources_ad_group_criterion_simulation_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_ad_group_criterion_simulation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupCriterionSimulation); i { case 0: return &v.state @@ -361,7 +361,7 @@ func file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto } } } - file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_ad_group_criterion_simulation_proto_msgTypes[0].OneofWrappers = []interface{}{ (*AdGroupCriterionSimulation_CpcBidPointList)(nil), (*AdGroupCriterionSimulation_PercentCpcBidPointList)(nil), } @@ -369,18 +369,18 @@ func file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_ad_group_criterion_simulation_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_ad_group_criterion_simulation_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_ad_group_criterion_simulation_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_ad_group_criterion_simulation_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto = out.File - file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto_goTypes = nil - file_google_ads_googleads_v16_resources_ad_group_criterion_simulation_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_ad_group_criterion_simulation_proto = out.File + file_google_ads_googleads_v17_resources_ad_group_criterion_simulation_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_ad_group_criterion_simulation_proto_goTypes = nil + file_google_ads_googleads_v17_resources_ad_group_criterion_simulation_proto_depIdxs = nil } diff --git a/resources/ad_group_customizer.pb.go b/resources/ad_group_customizer.pb.go index 020af255..75c65b4a 100644 --- a/resources/ad_group_customizer.pb.go +++ b/resources/ad_group_customizer.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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_customizer.proto +// source: google/ads/googleads/v17/resources/ad_group_customizer.proto package resources @@ -55,7 +55,7 @@ type AdGroupCustomizer struct { // group. CustomizerAttribute string `protobuf:"bytes,3,opt,name=customizer_attribute,json=customizerAttribute,proto3" json:"customizer_attribute,omitempty"` // Output only. The status of the ad group customizer. - Status enums.CustomizerValueStatusEnum_CustomizerValueStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.CustomizerValueStatusEnum_CustomizerValueStatus" json:"status,omitempty"` + Status enums.CustomizerValueStatusEnum_CustomizerValueStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.CustomizerValueStatusEnum_CustomizerValueStatus" json:"status,omitempty"` // Required. The value to associate with the customizer attribute at this // level. The value must be of the type specified for the CustomizerAttribute. Value *common.CustomizerValue `protobuf:"bytes,5,opt,name=value,proto3" json:"value,omitempty"` @@ -64,7 +64,7 @@ type AdGroupCustomizer struct { func (x *AdGroupCustomizer) Reset() { *x = AdGroupCustomizer{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_ad_group_customizer_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_customizer_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *AdGroupCustomizer) String() string { func (*AdGroupCustomizer) ProtoMessage() {} func (x *AdGroupCustomizer) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_ad_group_customizer_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_customizer_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *AdGroupCustomizer) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupCustomizer.ProtoReflect.Descriptor instead. func (*AdGroupCustomizer) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_ad_group_customizer_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_ad_group_customizer_proto_rawDescGZIP(), []int{0} } func (x *AdGroupCustomizer) GetResourceName() string { @@ -128,21 +128,21 @@ func (x *AdGroupCustomizer) GetValue() *common.CustomizerValue { return nil } -var File_google_ads_googleads_v16_resources_ad_group_customizer_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_ad_group_customizer_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_ad_group_customizer_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_ad_group_customizer_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, 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, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 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, 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, + 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, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x76, 0x61, 0x6c, 0x75, 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, 0x63, 0x75, 0x73, 0x74, 0x6f, + 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76, @@ -168,14 +168,14 @@ var file_google_ads_googleads_v16_resources_ad_group_customizer_proto_rawDesc = 0x13, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x12, 0x6c, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 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, + 0x73, 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, 0x69, 0x7a, 0x65, 0x72, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x4b, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 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, 0x6d, + 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, 0x69, 0x7a, 0x65, 0x72, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x84, 0x01, 0xea, 0x41, 0x80, 0x01, 0x0a, 0x2a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, @@ -188,45 +188,45 @@ var file_google_ads_googleads_v16_resources_ad_group_customizer_proto_rawDesc = 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x88, 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, 0x16, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 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, + 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, + 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, + 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, 0x63, 0x65, + 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_customizer_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_ad_group_customizer_proto_rawDescData = file_google_ads_googleads_v16_resources_ad_group_customizer_proto_rawDesc + file_google_ads_googleads_v17_resources_ad_group_customizer_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_ad_group_customizer_proto_rawDescData = file_google_ads_googleads_v17_resources_ad_group_customizer_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_ad_group_customizer_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_ad_group_customizer_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_ad_group_customizer_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_ad_group_customizer_proto_rawDescData) +func file_google_ads_googleads_v17_resources_ad_group_customizer_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_ad_group_customizer_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_ad_group_customizer_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_ad_group_customizer_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_ad_group_customizer_proto_rawDescData + return file_google_ads_googleads_v17_resources_ad_group_customizer_proto_rawDescData } -var file_google_ads_googleads_v16_resources_ad_group_customizer_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_ad_group_customizer_proto_goTypes = []interface{}{ - (*AdGroupCustomizer)(nil), // 0: google.ads.googleads.v16.resources.AdGroupCustomizer - (enums.CustomizerValueStatusEnum_CustomizerValueStatus)(0), // 1: google.ads.googleads.v16.enums.CustomizerValueStatusEnum.CustomizerValueStatus - (*common.CustomizerValue)(nil), // 2: google.ads.googleads.v16.common.CustomizerValue +var file_google_ads_googleads_v17_resources_ad_group_customizer_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_ad_group_customizer_proto_goTypes = []interface{}{ + (*AdGroupCustomizer)(nil), // 0: google.ads.googleads.v17.resources.AdGroupCustomizer + (enums.CustomizerValueStatusEnum_CustomizerValueStatus)(0), // 1: google.ads.googleads.v17.enums.CustomizerValueStatusEnum.CustomizerValueStatus + (*common.CustomizerValue)(nil), // 2: google.ads.googleads.v17.common.CustomizerValue } -var file_google_ads_googleads_v16_resources_ad_group_customizer_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.AdGroupCustomizer.status:type_name -> google.ads.googleads.v16.enums.CustomizerValueStatusEnum.CustomizerValueStatus - 2, // 1: google.ads.googleads.v16.resources.AdGroupCustomizer.value:type_name -> google.ads.googleads.v16.common.CustomizerValue +var file_google_ads_googleads_v17_resources_ad_group_customizer_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.AdGroupCustomizer.status:type_name -> google.ads.googleads.v17.enums.CustomizerValueStatusEnum.CustomizerValueStatus + 2, // 1: google.ads.googleads.v17.resources.AdGroupCustomizer.value:type_name -> google.ads.googleads.v17.common.CustomizerValue 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 @@ -234,13 +234,13 @@ var file_google_ads_googleads_v16_resources_ad_group_customizer_proto_depIdxs = 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_ad_group_customizer_proto_init() } -func file_google_ads_googleads_v16_resources_ad_group_customizer_proto_init() { - if File_google_ads_googleads_v16_resources_ad_group_customizer_proto != nil { +func init() { file_google_ads_googleads_v17_resources_ad_group_customizer_proto_init() } +func file_google_ads_googleads_v17_resources_ad_group_customizer_proto_init() { + if File_google_ads_googleads_v17_resources_ad_group_customizer_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_ad_group_customizer_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_ad_group_customizer_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupCustomizer); i { case 0: return &v.state @@ -257,18 +257,18 @@ func file_google_ads_googleads_v16_resources_ad_group_customizer_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_ad_group_customizer_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_ad_group_customizer_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_ad_group_customizer_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_ad_group_customizer_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_ad_group_customizer_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_ad_group_customizer_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_ad_group_customizer_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_ad_group_customizer_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_ad_group_customizer_proto = out.File - file_google_ads_googleads_v16_resources_ad_group_customizer_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_ad_group_customizer_proto_goTypes = nil - file_google_ads_googleads_v16_resources_ad_group_customizer_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_ad_group_customizer_proto = out.File + file_google_ads_googleads_v17_resources_ad_group_customizer_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_ad_group_customizer_proto_goTypes = nil + file_google_ads_googleads_v17_resources_ad_group_customizer_proto_depIdxs = nil } diff --git a/resources/ad_group_extension_setting.pb.go b/resources/ad_group_extension_setting.pb.go index 2edebc05..8a96b5be 100644 --- a/resources/ad_group_extension_setting.pb.go +++ b/resources/ad_group_extension_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/resources/ad_group_extension_setting.proto +// source: google/ads/googleads/v17/resources/ad_group_extension_setting.proto package resources @@ -48,7 +48,7 @@ type AdGroupExtensionSetting struct { // `customers/{customer_id}/adGroupExtensionSettings/{ad_group_id}~{extension_type}` ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` // Immutable. The extension type of the ad group extension setting. - ExtensionType enums.ExtensionTypeEnum_ExtensionType `protobuf:"varint,2,opt,name=extension_type,json=extensionType,proto3,enum=google.ads.googleads.v16.enums.ExtensionTypeEnum_ExtensionType" json:"extension_type,omitempty"` + ExtensionType enums.ExtensionTypeEnum_ExtensionType `protobuf:"varint,2,opt,name=extension_type,json=extensionType,proto3,enum=google.ads.googleads.v17.enums.ExtensionTypeEnum_ExtensionType" json:"extension_type,omitempty"` // Immutable. The resource name of the ad group. The linked extension feed // items will serve under this ad group. AdGroup resource names have the form: // @@ -60,13 +60,13 @@ type AdGroupExtensionSetting struct { // `customers/{customer_id}/extensionFeedItems/{feed_item_id}` ExtensionFeedItems []string `protobuf:"bytes,7,rep,name=extension_feed_items,json=extensionFeedItems,proto3" json:"extension_feed_items,omitempty"` // The device for which the extensions will serve. Optional. - Device enums.ExtensionSettingDeviceEnum_ExtensionSettingDevice `protobuf:"varint,5,opt,name=device,proto3,enum=google.ads.googleads.v16.enums.ExtensionSettingDeviceEnum_ExtensionSettingDevice" json:"device,omitempty"` + Device enums.ExtensionSettingDeviceEnum_ExtensionSettingDevice `protobuf:"varint,5,opt,name=device,proto3,enum=google.ads.googleads.v17.enums.ExtensionSettingDeviceEnum_ExtensionSettingDevice" json:"device,omitempty"` } func (x *AdGroupExtensionSetting) Reset() { *x = AdGroupExtensionSetting{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_ad_group_extension_setting_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_extension_setting_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *AdGroupExtensionSetting) String() string { func (*AdGroupExtensionSetting) ProtoMessage() {} func (x *AdGroupExtensionSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_ad_group_extension_setting_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_extension_setting_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *AdGroupExtensionSetting) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupExtensionSetting.ProtoReflect.Descriptor instead. func (*AdGroupExtensionSetting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_ad_group_extension_setting_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_ad_group_extension_setting_proto_rawDescGZIP(), []int{0} } func (x *AdGroupExtensionSetting) GetResourceName() string { @@ -130,22 +130,22 @@ func (x *AdGroupExtensionSetting) GetDevice() enums.ExtensionSettingDeviceEnum_E return enums.ExtensionSettingDeviceEnum_ExtensionSettingDevice(0) } -var File_google_ads_googleads_v16_resources_ad_group_extension_setting_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_ad_group_extension_setting_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_ad_group_extension_setting_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_ad_group_extension_setting_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, 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, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 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, + 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, 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, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, + 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, 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, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, + 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, 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, @@ -161,7 +161,7 @@ var file_google_ads_googleads_v16_resources_ad_group_extension_setting_proto_raw 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x6b, 0x0a, 0x0e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 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, 0x73, 0x2e, 0x45, 0x78, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x52, 0x0d, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, @@ -178,7 +178,7 @@ var file_google_ads_googleads_v16_resources_ad_group_extension_setting_proto_raw 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x12, 0x69, 0x0a, 0x06, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x18, 0x05, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x44, 0x65, 0x76, 0x69, 0x63, @@ -194,45 +194,45 @@ var file_google_ads_googleads_v16_resources_ad_group_extension_setting_proto_raw 0x70, 0x65, 0x7d, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x8e, 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, 0x1c, 0x41, 0x64, 0x47, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x1c, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 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, + 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, + 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, + 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, 0x63, 0x65, + 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_extension_setting_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_ad_group_extension_setting_proto_rawDescData = file_google_ads_googleads_v16_resources_ad_group_extension_setting_proto_rawDesc + file_google_ads_googleads_v17_resources_ad_group_extension_setting_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_ad_group_extension_setting_proto_rawDescData = file_google_ads_googleads_v17_resources_ad_group_extension_setting_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_ad_group_extension_setting_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_ad_group_extension_setting_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_ad_group_extension_setting_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_ad_group_extension_setting_proto_rawDescData) +func file_google_ads_googleads_v17_resources_ad_group_extension_setting_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_ad_group_extension_setting_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_ad_group_extension_setting_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_ad_group_extension_setting_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_ad_group_extension_setting_proto_rawDescData + return file_google_ads_googleads_v17_resources_ad_group_extension_setting_proto_rawDescData } -var file_google_ads_googleads_v16_resources_ad_group_extension_setting_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_ad_group_extension_setting_proto_goTypes = []interface{}{ - (*AdGroupExtensionSetting)(nil), // 0: google.ads.googleads.v16.resources.AdGroupExtensionSetting - (enums.ExtensionTypeEnum_ExtensionType)(0), // 1: google.ads.googleads.v16.enums.ExtensionTypeEnum.ExtensionType - (enums.ExtensionSettingDeviceEnum_ExtensionSettingDevice)(0), // 2: google.ads.googleads.v16.enums.ExtensionSettingDeviceEnum.ExtensionSettingDevice +var file_google_ads_googleads_v17_resources_ad_group_extension_setting_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_ad_group_extension_setting_proto_goTypes = []interface{}{ + (*AdGroupExtensionSetting)(nil), // 0: google.ads.googleads.v17.resources.AdGroupExtensionSetting + (enums.ExtensionTypeEnum_ExtensionType)(0), // 1: google.ads.googleads.v17.enums.ExtensionTypeEnum.ExtensionType + (enums.ExtensionSettingDeviceEnum_ExtensionSettingDevice)(0), // 2: google.ads.googleads.v17.enums.ExtensionSettingDeviceEnum.ExtensionSettingDevice } -var file_google_ads_googleads_v16_resources_ad_group_extension_setting_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.AdGroupExtensionSetting.extension_type:type_name -> google.ads.googleads.v16.enums.ExtensionTypeEnum.ExtensionType - 2, // 1: google.ads.googleads.v16.resources.AdGroupExtensionSetting.device:type_name -> google.ads.googleads.v16.enums.ExtensionSettingDeviceEnum.ExtensionSettingDevice +var file_google_ads_googleads_v17_resources_ad_group_extension_setting_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.AdGroupExtensionSetting.extension_type:type_name -> google.ads.googleads.v17.enums.ExtensionTypeEnum.ExtensionType + 2, // 1: google.ads.googleads.v17.resources.AdGroupExtensionSetting.device:type_name -> google.ads.googleads.v17.enums.ExtensionSettingDeviceEnum.ExtensionSettingDevice 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 @@ -240,13 +240,13 @@ var file_google_ads_googleads_v16_resources_ad_group_extension_setting_proto_dep 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_ad_group_extension_setting_proto_init() } -func file_google_ads_googleads_v16_resources_ad_group_extension_setting_proto_init() { - if File_google_ads_googleads_v16_resources_ad_group_extension_setting_proto != nil { +func init() { file_google_ads_googleads_v17_resources_ad_group_extension_setting_proto_init() } +func file_google_ads_googleads_v17_resources_ad_group_extension_setting_proto_init() { + if File_google_ads_googleads_v17_resources_ad_group_extension_setting_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_ad_group_extension_setting_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_ad_group_extension_setting_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupExtensionSetting); i { case 0: return &v.state @@ -259,23 +259,23 @@ func file_google_ads_googleads_v16_resources_ad_group_extension_setting_proto_in } } } - file_google_ads_googleads_v16_resources_ad_group_extension_setting_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_ad_group_extension_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_resources_ad_group_extension_setting_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_ad_group_extension_setting_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_ad_group_extension_setting_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_ad_group_extension_setting_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_ad_group_extension_setting_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_ad_group_extension_setting_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_ad_group_extension_setting_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_ad_group_extension_setting_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_ad_group_extension_setting_proto = out.File - file_google_ads_googleads_v16_resources_ad_group_extension_setting_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_ad_group_extension_setting_proto_goTypes = nil - file_google_ads_googleads_v16_resources_ad_group_extension_setting_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_ad_group_extension_setting_proto = out.File + file_google_ads_googleads_v17_resources_ad_group_extension_setting_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_ad_group_extension_setting_proto_goTypes = nil + file_google_ads_googleads_v17_resources_ad_group_extension_setting_proto_depIdxs = nil } diff --git a/resources/ad_group_feed.pb.go b/resources/ad_group_feed.pb.go index 68f760bb..b3fddc04 100644 --- a/resources/ad_group_feed.pb.go +++ b/resources/ad_group_feed.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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_feed.proto +// source: google/ads/googleads/v17/resources/ad_group_feed.proto package resources @@ -54,20 +54,20 @@ type AdGroupFeed struct { AdGroup *string `protobuf:"bytes,8,opt,name=ad_group,json=adGroup,proto3,oneof" json:"ad_group,omitempty"` // Indicates which placeholder types the feed may populate under the connected // ad group. Required. - PlaceholderTypes []enums.PlaceholderTypeEnum_PlaceholderType `protobuf:"varint,4,rep,packed,name=placeholder_types,json=placeholderTypes,proto3,enum=google.ads.googleads.v16.enums.PlaceholderTypeEnum_PlaceholderType" json:"placeholder_types,omitempty"` + PlaceholderTypes []enums.PlaceholderTypeEnum_PlaceholderType `protobuf:"varint,4,rep,packed,name=placeholder_types,json=placeholderTypes,proto3,enum=google.ads.googleads.v17.enums.PlaceholderTypeEnum_PlaceholderType" json:"placeholder_types,omitempty"` // Matching function associated with the AdGroupFeed. // The matching function is used to filter the set of feed items selected. // Required. MatchingFunction *common.MatchingFunction `protobuf:"bytes,5,opt,name=matching_function,json=matchingFunction,proto3" json:"matching_function,omitempty"` // Output only. Status of the ad group feed. // This field is read-only. - Status enums.FeedLinkStatusEnum_FeedLinkStatus `protobuf:"varint,6,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.FeedLinkStatusEnum_FeedLinkStatus" json:"status,omitempty"` + Status enums.FeedLinkStatusEnum_FeedLinkStatus `protobuf:"varint,6,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.FeedLinkStatusEnum_FeedLinkStatus" json:"status,omitempty"` } func (x *AdGroupFeed) Reset() { *x = AdGroupFeed{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_ad_group_feed_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_feed_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80,7 +80,7 @@ func (x *AdGroupFeed) String() string { func (*AdGroupFeed) ProtoMessage() {} func (x *AdGroupFeed) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_ad_group_feed_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_feed_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93,7 +93,7 @@ func (x *AdGroupFeed) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupFeed.ProtoReflect.Descriptor instead. func (*AdGroupFeed) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_ad_group_feed_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_ad_group_feed_proto_rawDescGZIP(), []int{0} } func (x *AdGroupFeed) GetResourceName() string { @@ -138,24 +138,24 @@ func (x *AdGroupFeed) GetStatus() enums.FeedLinkStatusEnum_FeedLinkStatus { return enums.FeedLinkStatusEnum_FeedLinkStatus(0) } -var File_google_ads_googleads_v16_resources_ad_group_feed_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_ad_group_feed_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_ad_group_feed_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_ad_group_feed_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, 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, 0x66, 0x65, 0x65, 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, 0x73, 0x1a, 0x37, 0x67, 0x6f, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x2f, 0x6d, 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, 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, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 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, 0x70, 0x6c, 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, 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, @@ -179,19 +179,19 @@ var file_google_ads_googleads_v16_resources_ad_group_feed_proto_rawDesc = []byte 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x04, 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, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, + 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, 0x10, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x5e, 0x0a, 0x11, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x5f, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 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, 0x4d, 0x61, 0x74, 0x63, + 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, 0x12, 0x5e, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x06, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x3a, 0x67, @@ -204,47 +204,47 @@ var file_google_ads_googleads_v16_resources_ad_group_feed_proto_rawDesc = []byte 0x65, 0x65, 0x64, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 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, + 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, 0x10, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 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, + 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, + 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, + 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, 0x63, + 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_feed_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_ad_group_feed_proto_rawDescData = file_google_ads_googleads_v16_resources_ad_group_feed_proto_rawDesc + file_google_ads_googleads_v17_resources_ad_group_feed_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_ad_group_feed_proto_rawDescData = file_google_ads_googleads_v17_resources_ad_group_feed_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_ad_group_feed_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_ad_group_feed_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_ad_group_feed_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_ad_group_feed_proto_rawDescData) +func file_google_ads_googleads_v17_resources_ad_group_feed_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_ad_group_feed_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_ad_group_feed_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_ad_group_feed_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_ad_group_feed_proto_rawDescData + return file_google_ads_googleads_v17_resources_ad_group_feed_proto_rawDescData } -var file_google_ads_googleads_v16_resources_ad_group_feed_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_ad_group_feed_proto_goTypes = []interface{}{ - (*AdGroupFeed)(nil), // 0: google.ads.googleads.v16.resources.AdGroupFeed - (enums.PlaceholderTypeEnum_PlaceholderType)(0), // 1: google.ads.googleads.v16.enums.PlaceholderTypeEnum.PlaceholderType - (*common.MatchingFunction)(nil), // 2: google.ads.googleads.v16.common.MatchingFunction - (enums.FeedLinkStatusEnum_FeedLinkStatus)(0), // 3: google.ads.googleads.v16.enums.FeedLinkStatusEnum.FeedLinkStatus +var file_google_ads_googleads_v17_resources_ad_group_feed_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_ad_group_feed_proto_goTypes = []interface{}{ + (*AdGroupFeed)(nil), // 0: google.ads.googleads.v17.resources.AdGroupFeed + (enums.PlaceholderTypeEnum_PlaceholderType)(0), // 1: google.ads.googleads.v17.enums.PlaceholderTypeEnum.PlaceholderType + (*common.MatchingFunction)(nil), // 2: google.ads.googleads.v17.common.MatchingFunction + (enums.FeedLinkStatusEnum_FeedLinkStatus)(0), // 3: google.ads.googleads.v17.enums.FeedLinkStatusEnum.FeedLinkStatus } -var file_google_ads_googleads_v16_resources_ad_group_feed_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.AdGroupFeed.placeholder_types:type_name -> google.ads.googleads.v16.enums.PlaceholderTypeEnum.PlaceholderType - 2, // 1: google.ads.googleads.v16.resources.AdGroupFeed.matching_function:type_name -> google.ads.googleads.v16.common.MatchingFunction - 3, // 2: google.ads.googleads.v16.resources.AdGroupFeed.status:type_name -> google.ads.googleads.v16.enums.FeedLinkStatusEnum.FeedLinkStatus +var file_google_ads_googleads_v17_resources_ad_group_feed_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.AdGroupFeed.placeholder_types:type_name -> google.ads.googleads.v17.enums.PlaceholderTypeEnum.PlaceholderType + 2, // 1: google.ads.googleads.v17.resources.AdGroupFeed.matching_function:type_name -> google.ads.googleads.v17.common.MatchingFunction + 3, // 2: google.ads.googleads.v17.resources.AdGroupFeed.status:type_name -> google.ads.googleads.v17.enums.FeedLinkStatusEnum.FeedLinkStatus 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 @@ -252,13 +252,13 @@ var file_google_ads_googleads_v16_resources_ad_group_feed_proto_depIdxs = []int3 0, // [0:3] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_ad_group_feed_proto_init() } -func file_google_ads_googleads_v16_resources_ad_group_feed_proto_init() { - if File_google_ads_googleads_v16_resources_ad_group_feed_proto != nil { +func init() { file_google_ads_googleads_v17_resources_ad_group_feed_proto_init() } +func file_google_ads_googleads_v17_resources_ad_group_feed_proto_init() { + if File_google_ads_googleads_v17_resources_ad_group_feed_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_ad_group_feed_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_ad_group_feed_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupFeed); i { case 0: return &v.state @@ -271,23 +271,23 @@ func file_google_ads_googleads_v16_resources_ad_group_feed_proto_init() { } } } - file_google_ads_googleads_v16_resources_ad_group_feed_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_ad_group_feed_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_feed_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_ad_group_feed_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_ad_group_feed_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_ad_group_feed_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_ad_group_feed_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_ad_group_feed_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_ad_group_feed_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_ad_group_feed_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_ad_group_feed_proto = out.File - file_google_ads_googleads_v16_resources_ad_group_feed_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_ad_group_feed_proto_goTypes = nil - file_google_ads_googleads_v16_resources_ad_group_feed_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_ad_group_feed_proto = out.File + file_google_ads_googleads_v17_resources_ad_group_feed_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_ad_group_feed_proto_goTypes = nil + file_google_ads_googleads_v17_resources_ad_group_feed_proto_depIdxs = nil } diff --git a/resources/ad_group_label.pb.go b/resources/ad_group_label.pb.go index 6a5cb78d..11232219 100644 --- a/resources/ad_group_label.pb.go +++ b/resources/ad_group_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/resources/ad_group_label.proto +// source: google/ads/googleads/v17/resources/ad_group_label.proto package resources @@ -54,7 +54,7 @@ type AdGroupLabel struct { func (x *AdGroupLabel) Reset() { *x = AdGroupLabel{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_ad_group_label_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_label_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67,7 +67,7 @@ func (x *AdGroupLabel) String() string { func (*AdGroupLabel) ProtoMessage() {} func (x *AdGroupLabel) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_ad_group_label_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_label_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80,7 +80,7 @@ func (x *AdGroupLabel) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupLabel.ProtoReflect.Descriptor instead. func (*AdGroupLabel) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_ad_group_label_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_ad_group_label_proto_rawDescGZIP(), []int{0} } func (x *AdGroupLabel) GetResourceName() string { @@ -104,15 +104,15 @@ func (x *AdGroupLabel) GetLabel() string { return "" } -var File_google_ads_googleads_v16_resources_ad_group_label_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_ad_group_label_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_ad_group_label_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_ad_group_label_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, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x6c, 0x61, 0x62, 0x65, 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, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x1f, 0x67, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -141,41 +141,41 @@ var file_google_ads_googleads_v16_resources_ad_group_label_proto_rawDesc = []byt 0x62, 0x65, 0x6c, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x42, 0x83, 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, + 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, 0x11, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4c, 0x61, 0x62, 0x65, 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, + 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, 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, 0x26, 0x47, 0x6f, + 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, + 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_label_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_ad_group_label_proto_rawDescData = file_google_ads_googleads_v16_resources_ad_group_label_proto_rawDesc + file_google_ads_googleads_v17_resources_ad_group_label_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_ad_group_label_proto_rawDescData = file_google_ads_googleads_v17_resources_ad_group_label_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_ad_group_label_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_ad_group_label_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_ad_group_label_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_ad_group_label_proto_rawDescData) +func file_google_ads_googleads_v17_resources_ad_group_label_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_ad_group_label_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_ad_group_label_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_ad_group_label_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_ad_group_label_proto_rawDescData + return file_google_ads_googleads_v17_resources_ad_group_label_proto_rawDescData } -var file_google_ads_googleads_v16_resources_ad_group_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_ad_group_label_proto_goTypes = []interface{}{ - (*AdGroupLabel)(nil), // 0: google.ads.googleads.v16.resources.AdGroupLabel +var file_google_ads_googleads_v17_resources_ad_group_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_ad_group_label_proto_goTypes = []interface{}{ + (*AdGroupLabel)(nil), // 0: google.ads.googleads.v17.resources.AdGroupLabel } -var file_google_ads_googleads_v16_resources_ad_group_label_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_ad_group_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 @@ -183,13 +183,13 @@ var file_google_ads_googleads_v16_resources_ad_group_label_proto_depIdxs = []int 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_ad_group_label_proto_init() } -func file_google_ads_googleads_v16_resources_ad_group_label_proto_init() { - if File_google_ads_googleads_v16_resources_ad_group_label_proto != nil { +func init() { file_google_ads_googleads_v17_resources_ad_group_label_proto_init() } +func file_google_ads_googleads_v17_resources_ad_group_label_proto_init() { + if File_google_ads_googleads_v17_resources_ad_group_label_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_ad_group_label_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_ad_group_label_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupLabel); i { case 0: return &v.state @@ -202,23 +202,23 @@ func file_google_ads_googleads_v16_resources_ad_group_label_proto_init() { } } } - file_google_ads_googleads_v16_resources_ad_group_label_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_ad_group_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_resources_ad_group_label_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_ad_group_label_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_ad_group_label_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_ad_group_label_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_ad_group_label_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_ad_group_label_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_ad_group_label_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_ad_group_label_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_ad_group_label_proto = out.File - file_google_ads_googleads_v16_resources_ad_group_label_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_ad_group_label_proto_goTypes = nil - file_google_ads_googleads_v16_resources_ad_group_label_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_ad_group_label_proto = out.File + file_google_ads_googleads_v17_resources_ad_group_label_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_ad_group_label_proto_goTypes = nil + file_google_ads_googleads_v17_resources_ad_group_label_proto_depIdxs = nil } diff --git a/resources/ad_group_simulation.pb.go b/resources/ad_group_simulation.pb.go index e8585360..03a366bc 100644 --- a/resources/ad_group_simulation.pb.go +++ b/resources/ad_group_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/resources/ad_group_simulation.proto +// source: google/ads/googleads/v17/resources/ad_group_simulation.proto package resources @@ -61,9 +61,9 @@ type AdGroupSimulation struct { // Output only. Ad group id of the simulation. AdGroupId *int64 `protobuf:"varint,12,opt,name=ad_group_id,json=adGroupId,proto3,oneof" json:"ad_group_id,omitempty"` // Output only. The field that the simulation modifies. - Type enums.SimulationTypeEnum_SimulationType `protobuf:"varint,3,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.SimulationTypeEnum_SimulationType" json:"type,omitempty"` + Type enums.SimulationTypeEnum_SimulationType `protobuf:"varint,3,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.SimulationTypeEnum_SimulationType" json:"type,omitempty"` // Output only. How the simulation modifies the field. - ModificationMethod enums.SimulationModificationMethodEnum_SimulationModificationMethod `protobuf:"varint,4,opt,name=modification_method,json=modificationMethod,proto3,enum=google.ads.googleads.v16.enums.SimulationModificationMethodEnum_SimulationModificationMethod" json:"modification_method,omitempty"` + ModificationMethod enums.SimulationModificationMethodEnum_SimulationModificationMethod `protobuf:"varint,4,opt,name=modification_method,json=modificationMethod,proto3,enum=google.ads.googleads.v17.enums.SimulationModificationMethodEnum_SimulationModificationMethod" json:"modification_method,omitempty"` // Output only. First day on which the simulation is based, in YYYY-MM-DD // format. StartDate *string `protobuf:"bytes,13,opt,name=start_date,json=startDate,proto3,oneof" json:"start_date,omitempty"` @@ -84,7 +84,7 @@ type AdGroupSimulation struct { func (x *AdGroupSimulation) Reset() { *x = AdGroupSimulation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_ad_group_simulation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_simulation_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -97,7 +97,7 @@ func (x *AdGroupSimulation) String() string { func (*AdGroupSimulation) ProtoMessage() {} func (x *AdGroupSimulation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_ad_group_simulation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_group_simulation_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -110,7 +110,7 @@ func (x *AdGroupSimulation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupSimulation.ProtoReflect.Descriptor instead. func (*AdGroupSimulation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_ad_group_simulation_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_ad_group_simulation_proto_rawDescGZIP(), []int{0} } func (x *AdGroupSimulation) GetResourceName() string { @@ -222,25 +222,25 @@ func (*AdGroupSimulation_TargetCpaPointList) isAdGroupSimulation_PointList() {} func (*AdGroupSimulation_TargetRoasPointList) isAdGroupSimulation_PointList() {} -var File_google_ads_googleads_v16_resources_ad_group_simulation_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_ad_group_simulation_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_ad_group_simulation_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_ad_group_simulation_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, 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, 0x73, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 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, + 0x6f, 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, 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, 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, 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, 0x73, 0x69, 0x6d, 0x75, 0x6c, 0x61, + 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, 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, @@ -257,14 +257,14 @@ var file_google_ads_googleads_v16_resources_ad_group_simulation_proto_rawDesc = 0x03, 0xe0, 0x41, 0x03, 0x48, 0x01, 0x52, 0x09, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x5a, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x93, 0x01, 0x0a, 0x13, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x04, 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, 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, 0x2e, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x69, 0x66, @@ -278,21 +278,21 @@ var file_google_ads_googleads_v16_resources_ad_group_simulation_proto_rawDesc = 0x65, 0x88, 0x01, 0x01, 0x12, 0x6e, 0x0a, 0x12, 0x63, 0x70, 0x63, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x08, 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, 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, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x0f, 0x63, 0x70, 0x63, 0x42, 0x69, 0x64, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x6e, 0x0a, 0x12, 0x63, 0x70, 0x76, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x0a, 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, 0x67, 0x6c, 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, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x0f, 0x63, 0x70, 0x76, 0x42, 0x69, 0x64, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x77, 0x0a, 0x15, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x70, 0x61, 0x5f, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x09, 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, + 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, 0x43, 0x70, 0x61, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x12, 0x74, 0x61, 0x72, 0x67, 0x65, @@ -300,7 +300,7 @@ var file_google_ads_googleads_v16_resources_ad_group_simulation_proto_rawDesc = 0x16, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x6f, 0x61, 0x73, 0x5f, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x0b, 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, + 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, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x13, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x6f, 0x61, 0x73, @@ -320,53 +320,53 @@ var file_google_ads_googleads_v16_resources_ad_group_simulation_proto_rawDesc = 0x61, 0x72, 0x74, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x65, 0x6e, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x88, 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, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x16, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, + 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, 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, + 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, 0x63, 0x65, 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_simulation_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_ad_group_simulation_proto_rawDescData = file_google_ads_googleads_v16_resources_ad_group_simulation_proto_rawDesc + file_google_ads_googleads_v17_resources_ad_group_simulation_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_ad_group_simulation_proto_rawDescData = file_google_ads_googleads_v17_resources_ad_group_simulation_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_ad_group_simulation_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_ad_group_simulation_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_ad_group_simulation_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_ad_group_simulation_proto_rawDescData) +func file_google_ads_googleads_v17_resources_ad_group_simulation_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_ad_group_simulation_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_ad_group_simulation_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_ad_group_simulation_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_ad_group_simulation_proto_rawDescData + return file_google_ads_googleads_v17_resources_ad_group_simulation_proto_rawDescData } -var file_google_ads_googleads_v16_resources_ad_group_simulation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_ad_group_simulation_proto_goTypes = []interface{}{ - (*AdGroupSimulation)(nil), // 0: google.ads.googleads.v16.resources.AdGroupSimulation - (enums.SimulationTypeEnum_SimulationType)(0), // 1: google.ads.googleads.v16.enums.SimulationTypeEnum.SimulationType - (enums.SimulationModificationMethodEnum_SimulationModificationMethod)(0), // 2: google.ads.googleads.v16.enums.SimulationModificationMethodEnum.SimulationModificationMethod - (*common.CpcBidSimulationPointList)(nil), // 3: google.ads.googleads.v16.common.CpcBidSimulationPointList - (*common.CpvBidSimulationPointList)(nil), // 4: google.ads.googleads.v16.common.CpvBidSimulationPointList - (*common.TargetCpaSimulationPointList)(nil), // 5: google.ads.googleads.v16.common.TargetCpaSimulationPointList - (*common.TargetRoasSimulationPointList)(nil), // 6: google.ads.googleads.v16.common.TargetRoasSimulationPointList +var file_google_ads_googleads_v17_resources_ad_group_simulation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_ad_group_simulation_proto_goTypes = []interface{}{ + (*AdGroupSimulation)(nil), // 0: google.ads.googleads.v17.resources.AdGroupSimulation + (enums.SimulationTypeEnum_SimulationType)(0), // 1: google.ads.googleads.v17.enums.SimulationTypeEnum.SimulationType + (enums.SimulationModificationMethodEnum_SimulationModificationMethod)(0), // 2: google.ads.googleads.v17.enums.SimulationModificationMethodEnum.SimulationModificationMethod + (*common.CpcBidSimulationPointList)(nil), // 3: google.ads.googleads.v17.common.CpcBidSimulationPointList + (*common.CpvBidSimulationPointList)(nil), // 4: google.ads.googleads.v17.common.CpvBidSimulationPointList + (*common.TargetCpaSimulationPointList)(nil), // 5: google.ads.googleads.v17.common.TargetCpaSimulationPointList + (*common.TargetRoasSimulationPointList)(nil), // 6: google.ads.googleads.v17.common.TargetRoasSimulationPointList } -var file_google_ads_googleads_v16_resources_ad_group_simulation_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.AdGroupSimulation.type:type_name -> google.ads.googleads.v16.enums.SimulationTypeEnum.SimulationType - 2, // 1: google.ads.googleads.v16.resources.AdGroupSimulation.modification_method:type_name -> google.ads.googleads.v16.enums.SimulationModificationMethodEnum.SimulationModificationMethod - 3, // 2: google.ads.googleads.v16.resources.AdGroupSimulation.cpc_bid_point_list:type_name -> google.ads.googleads.v16.common.CpcBidSimulationPointList - 4, // 3: google.ads.googleads.v16.resources.AdGroupSimulation.cpv_bid_point_list:type_name -> google.ads.googleads.v16.common.CpvBidSimulationPointList - 5, // 4: google.ads.googleads.v16.resources.AdGroupSimulation.target_cpa_point_list:type_name -> google.ads.googleads.v16.common.TargetCpaSimulationPointList - 6, // 5: google.ads.googleads.v16.resources.AdGroupSimulation.target_roas_point_list:type_name -> google.ads.googleads.v16.common.TargetRoasSimulationPointList +var file_google_ads_googleads_v17_resources_ad_group_simulation_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.AdGroupSimulation.type:type_name -> google.ads.googleads.v17.enums.SimulationTypeEnum.SimulationType + 2, // 1: google.ads.googleads.v17.resources.AdGroupSimulation.modification_method:type_name -> google.ads.googleads.v17.enums.SimulationModificationMethodEnum.SimulationModificationMethod + 3, // 2: google.ads.googleads.v17.resources.AdGroupSimulation.cpc_bid_point_list:type_name -> google.ads.googleads.v17.common.CpcBidSimulationPointList + 4, // 3: google.ads.googleads.v17.resources.AdGroupSimulation.cpv_bid_point_list:type_name -> google.ads.googleads.v17.common.CpvBidSimulationPointList + 5, // 4: google.ads.googleads.v17.resources.AdGroupSimulation.target_cpa_point_list:type_name -> google.ads.googleads.v17.common.TargetCpaSimulationPointList + 6, // 5: google.ads.googleads.v17.resources.AdGroupSimulation.target_roas_point_list:type_name -> google.ads.googleads.v17.common.TargetRoasSimulationPointList 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 @@ -374,13 +374,13 @@ var file_google_ads_googleads_v16_resources_ad_group_simulation_proto_depIdxs = 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_ad_group_simulation_proto_init() } -func file_google_ads_googleads_v16_resources_ad_group_simulation_proto_init() { - if File_google_ads_googleads_v16_resources_ad_group_simulation_proto != nil { +func init() { file_google_ads_googleads_v17_resources_ad_group_simulation_proto_init() } +func file_google_ads_googleads_v17_resources_ad_group_simulation_proto_init() { + if File_google_ads_googleads_v17_resources_ad_group_simulation_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_ad_group_simulation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_ad_group_simulation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupSimulation); i { case 0: return &v.state @@ -393,7 +393,7 @@ func file_google_ads_googleads_v16_resources_ad_group_simulation_proto_init() { } } } - file_google_ads_googleads_v16_resources_ad_group_simulation_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_ad_group_simulation_proto_msgTypes[0].OneofWrappers = []interface{}{ (*AdGroupSimulation_CpcBidPointList)(nil), (*AdGroupSimulation_CpvBidPointList)(nil), (*AdGroupSimulation_TargetCpaPointList)(nil), @@ -403,18 +403,18 @@ func file_google_ads_googleads_v16_resources_ad_group_simulation_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_ad_group_simulation_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_ad_group_simulation_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_ad_group_simulation_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_ad_group_simulation_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_ad_group_simulation_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_ad_group_simulation_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_ad_group_simulation_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_ad_group_simulation_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_ad_group_simulation_proto = out.File - file_google_ads_googleads_v16_resources_ad_group_simulation_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_ad_group_simulation_proto_goTypes = nil - file_google_ads_googleads_v16_resources_ad_group_simulation_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_ad_group_simulation_proto = out.File + file_google_ads_googleads_v17_resources_ad_group_simulation_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_ad_group_simulation_proto_goTypes = nil + file_google_ads_googleads_v17_resources_ad_group_simulation_proto_depIdxs = nil } diff --git a/resources/ad_parameter.pb.go b/resources/ad_parameter.pb.go index a28fce6a..f6595ba7 100644 --- a/resources/ad_parameter.pb.go +++ b/resources/ad_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/resources/ad_parameter.proto +// source: google/ads/googleads/v17/resources/ad_parameter.proto package resources @@ -75,7 +75,7 @@ type AdParameter struct { func (x *AdParameter) Reset() { *x = AdParameter{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_ad_parameter_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_parameter_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -88,7 +88,7 @@ func (x *AdParameter) String() string { func (*AdParameter) ProtoMessage() {} func (x *AdParameter) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_ad_parameter_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_parameter_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 *AdParameter) ProtoReflect() protoreflect.Message { // Deprecated: Use AdParameter.ProtoReflect.Descriptor instead. func (*AdParameter) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_ad_parameter_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_ad_parameter_proto_rawDescGZIP(), []int{0} } func (x *AdParameter) GetResourceName() string { @@ -132,15 +132,15 @@ func (x *AdParameter) GetInsertionText() string { return "" } -var File_google_ads_googleads_v16_resources_ad_parameter_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_ad_parameter_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_ad_parameter_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_ad_parameter_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, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 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, 0x1f, 0x67, 0x6f, 0x6f, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -176,41 +176,41 @@ var file_google_ads_googleads_v16_resources_ad_parameter_proto_rawDesc = []byte{ 0x65, 0x74, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x69, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x65, 0x78, 0x74, 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, + 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, 0x10, 0x41, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 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, + 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, + 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, + 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, 0x63, + 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_parameter_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_ad_parameter_proto_rawDescData = file_google_ads_googleads_v16_resources_ad_parameter_proto_rawDesc + file_google_ads_googleads_v17_resources_ad_parameter_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_ad_parameter_proto_rawDescData = file_google_ads_googleads_v17_resources_ad_parameter_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_ad_parameter_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_ad_parameter_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_ad_parameter_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_ad_parameter_proto_rawDescData) +func file_google_ads_googleads_v17_resources_ad_parameter_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_ad_parameter_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_ad_parameter_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_ad_parameter_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_ad_parameter_proto_rawDescData + return file_google_ads_googleads_v17_resources_ad_parameter_proto_rawDescData } -var file_google_ads_googleads_v16_resources_ad_parameter_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_ad_parameter_proto_goTypes = []interface{}{ - (*AdParameter)(nil), // 0: google.ads.googleads.v16.resources.AdParameter +var file_google_ads_googleads_v17_resources_ad_parameter_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_ad_parameter_proto_goTypes = []interface{}{ + (*AdParameter)(nil), // 0: google.ads.googleads.v17.resources.AdParameter } -var file_google_ads_googleads_v16_resources_ad_parameter_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_ad_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 @@ -218,13 +218,13 @@ var file_google_ads_googleads_v16_resources_ad_parameter_proto_depIdxs = []int32 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_ad_parameter_proto_init() } -func file_google_ads_googleads_v16_resources_ad_parameter_proto_init() { - if File_google_ads_googleads_v16_resources_ad_parameter_proto != nil { +func init() { file_google_ads_googleads_v17_resources_ad_parameter_proto_init() } +func file_google_ads_googleads_v17_resources_ad_parameter_proto_init() { + if File_google_ads_googleads_v17_resources_ad_parameter_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_ad_parameter_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_ad_parameter_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdParameter); i { case 0: return &v.state @@ -237,23 +237,23 @@ func file_google_ads_googleads_v16_resources_ad_parameter_proto_init() { } } } - file_google_ads_googleads_v16_resources_ad_parameter_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_ad_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_resources_ad_parameter_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_ad_parameter_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_ad_parameter_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_ad_parameter_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_ad_parameter_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_ad_parameter_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_ad_parameter_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_ad_parameter_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_ad_parameter_proto = out.File - file_google_ads_googleads_v16_resources_ad_parameter_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_ad_parameter_proto_goTypes = nil - file_google_ads_googleads_v16_resources_ad_parameter_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_ad_parameter_proto = out.File + file_google_ads_googleads_v17_resources_ad_parameter_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_ad_parameter_proto_goTypes = nil + file_google_ads_googleads_v17_resources_ad_parameter_proto_depIdxs = nil } diff --git a/resources/ad_schedule_view.pb.go b/resources/ad_schedule_view.pb.go index 1cab0638..08a35fc5 100644 --- a/resources/ad_schedule_view.pb.go +++ b/resources/ad_schedule_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_schedule_view.proto +// source: google/ads/googleads/v17/resources/ad_schedule_view.proto package resources @@ -52,7 +52,7 @@ type AdScheduleView struct { func (x *AdScheduleView) Reset() { *x = AdScheduleView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_ad_schedule_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_schedule_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65,7 +65,7 @@ func (x *AdScheduleView) String() string { func (*AdScheduleView) ProtoMessage() {} func (x *AdScheduleView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_ad_schedule_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_ad_schedule_view_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 *AdScheduleView) ProtoReflect() protoreflect.Message { // Deprecated: Use AdScheduleView.ProtoReflect.Descriptor instead. func (*AdScheduleView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_ad_schedule_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_ad_schedule_view_proto_rawDescGZIP(), []int{0} } func (x *AdScheduleView) GetResourceName() string { @@ -88,15 +88,15 @@ func (x *AdScheduleView) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_resources_ad_schedule_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_ad_schedule_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_ad_schedule_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_ad_schedule_view_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, 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, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 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, 0x73, 0x1a, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -116,41 +116,41 @@ var file_google_ads_googleads_v16_resources_ad_schedule_view_proto_rawDesc = []b 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x85, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x13, 0x41, 0x64, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 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, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, + 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, 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, + 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, 0x63, 0x65, 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_schedule_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_ad_schedule_view_proto_rawDescData = file_google_ads_googleads_v16_resources_ad_schedule_view_proto_rawDesc + file_google_ads_googleads_v17_resources_ad_schedule_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_ad_schedule_view_proto_rawDescData = file_google_ads_googleads_v17_resources_ad_schedule_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_ad_schedule_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_ad_schedule_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_ad_schedule_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_ad_schedule_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_ad_schedule_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_ad_schedule_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_ad_schedule_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_ad_schedule_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_ad_schedule_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_ad_schedule_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_ad_schedule_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_ad_schedule_view_proto_goTypes = []interface{}{ - (*AdScheduleView)(nil), // 0: google.ads.googleads.v16.resources.AdScheduleView +var file_google_ads_googleads_v17_resources_ad_schedule_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_ad_schedule_view_proto_goTypes = []interface{}{ + (*AdScheduleView)(nil), // 0: google.ads.googleads.v17.resources.AdScheduleView } -var file_google_ads_googleads_v16_resources_ad_schedule_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_ad_schedule_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method output_type 0, // [0:0] is the sub-list for method input_type 0, // [0:0] is the sub-list for extension type_name @@ -158,13 +158,13 @@ var file_google_ads_googleads_v16_resources_ad_schedule_view_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_ad_schedule_view_proto_init() } -func file_google_ads_googleads_v16_resources_ad_schedule_view_proto_init() { - if File_google_ads_googleads_v16_resources_ad_schedule_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_ad_schedule_view_proto_init() } +func file_google_ads_googleads_v17_resources_ad_schedule_view_proto_init() { + if File_google_ads_googleads_v17_resources_ad_schedule_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_ad_schedule_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_ad_schedule_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdScheduleView); i { case 0: return &v.state @@ -181,18 +181,18 @@ func file_google_ads_googleads_v16_resources_ad_schedule_view_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_ad_schedule_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_ad_schedule_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_ad_schedule_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_ad_schedule_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_ad_schedule_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_ad_schedule_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_ad_schedule_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_ad_schedule_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_ad_schedule_view_proto = out.File - file_google_ads_googleads_v16_resources_ad_schedule_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_ad_schedule_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_ad_schedule_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_ad_schedule_view_proto = out.File + file_google_ads_googleads_v17_resources_ad_schedule_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_ad_schedule_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_ad_schedule_view_proto_depIdxs = nil } diff --git a/resources/age_range_view.pb.go b/resources/age_range_view.pb.go index 61feb676..90e4fe4c 100644 --- a/resources/age_range_view.pb.go +++ b/resources/age_range_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/age_range_view.proto +// source: google/ads/googleads/v17/resources/age_range_view.proto package resources @@ -51,7 +51,7 @@ type AgeRangeView struct { func (x *AgeRangeView) Reset() { *x = AgeRangeView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_age_range_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_age_range_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64,7 +64,7 @@ func (x *AgeRangeView) String() string { func (*AgeRangeView) ProtoMessage() {} func (x *AgeRangeView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_age_range_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_age_range_view_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 *AgeRangeView) ProtoReflect() protoreflect.Message { // Deprecated: Use AgeRangeView.ProtoReflect.Descriptor instead. func (*AgeRangeView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_age_range_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_age_range_view_proto_rawDescGZIP(), []int{0} } func (x *AgeRangeView) GetResourceName() string { @@ -87,15 +87,15 @@ func (x *AgeRangeView) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_resources_age_range_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_age_range_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_age_range_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_age_range_view_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, 0x67, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 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, 0x73, 0x1a, 0x1f, 0x67, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -114,41 +114,41 @@ var file_google_ads_googleads_v16_resources_age_range_view_proto_rawDesc = []byt 0x73, 0x2f, 0x7b, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x83, 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, + 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, 0x11, 0x41, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 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, 0x73, 0x6f, 0x75, 0x72, 0x63, 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, 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, 0x26, 0x47, 0x6f, + 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, + 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_age_range_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_age_range_view_proto_rawDescData = file_google_ads_googleads_v16_resources_age_range_view_proto_rawDesc + file_google_ads_googleads_v17_resources_age_range_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_age_range_view_proto_rawDescData = file_google_ads_googleads_v17_resources_age_range_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_age_range_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_age_range_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_age_range_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_age_range_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_age_range_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_age_range_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_age_range_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_age_range_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_age_range_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_age_range_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_age_range_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_age_range_view_proto_goTypes = []interface{}{ - (*AgeRangeView)(nil), // 0: google.ads.googleads.v16.resources.AgeRangeView +var file_google_ads_googleads_v17_resources_age_range_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_age_range_view_proto_goTypes = []interface{}{ + (*AgeRangeView)(nil), // 0: google.ads.googleads.v17.resources.AgeRangeView } -var file_google_ads_googleads_v16_resources_age_range_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_age_range_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method output_type 0, // [0:0] is the sub-list for method input_type 0, // [0:0] is the sub-list for extension type_name @@ -156,13 +156,13 @@ var file_google_ads_googleads_v16_resources_age_range_view_proto_depIdxs = []int 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_age_range_view_proto_init() } -func file_google_ads_googleads_v16_resources_age_range_view_proto_init() { - if File_google_ads_googleads_v16_resources_age_range_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_age_range_view_proto_init() } +func file_google_ads_googleads_v17_resources_age_range_view_proto_init() { + if File_google_ads_googleads_v17_resources_age_range_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_age_range_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_age_range_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AgeRangeView); i { case 0: return &v.state @@ -179,18 +179,18 @@ func file_google_ads_googleads_v16_resources_age_range_view_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_age_range_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_age_range_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_age_range_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_age_range_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_age_range_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_age_range_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_age_range_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_age_range_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_age_range_view_proto = out.File - file_google_ads_googleads_v16_resources_age_range_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_age_range_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_age_range_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_age_range_view_proto = out.File + file_google_ads_googleads_v17_resources_age_range_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_age_range_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_age_range_view_proto_depIdxs = nil } diff --git a/resources/android_privacy_shared_key_google_ad_group.pb.go b/resources/android_privacy_shared_key_google_ad_group.pb.go index 3f4b6eb4..b52deab6 100644 --- a/resources/android_privacy_shared_key_google_ad_group.pb.go +++ b/resources/android_privacy_shared_key_google_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/android_privacy_shared_key_google_ad_group.proto +// source: google/ads/googleads/v17/resources/android_privacy_shared_key_google_ad_group.proto package resources @@ -50,12 +50,12 @@ type AndroidPrivacySharedKeyGoogleAdGroup struct { // Output only. The campaign ID used in the share key encoding. CampaignId int64 `protobuf:"varint,2,opt,name=campaign_id,json=campaignId,proto3" json:"campaign_id,omitempty"` // Output only. The interaction type enum used in the share key encoding. - AndroidPrivacyInteractionType enums.AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType `protobuf:"varint,3,opt,name=android_privacy_interaction_type,json=androidPrivacyInteractionType,proto3,enum=google.ads.googleads.v16.enums.AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType" json:"android_privacy_interaction_type,omitempty"` + AndroidPrivacyInteractionType enums.AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType `protobuf:"varint,3,opt,name=android_privacy_interaction_type,json=androidPrivacyInteractionType,proto3,enum=google.ads.googleads.v17.enums.AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType" json:"android_privacy_interaction_type,omitempty"` // Output only. The interaction date used in the shared key encoding in the // format of "YYYY-MM-DD" in UTC timezone. AndroidPrivacyInteractionDate string `protobuf:"bytes,4,opt,name=android_privacy_interaction_date,json=androidPrivacyInteractionDate,proto3" json:"android_privacy_interaction_date,omitempty"` // Output only. The network type enum used in the share key encoding. - AndroidPrivacyNetworkType enums.AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType `protobuf:"varint,5,opt,name=android_privacy_network_type,json=androidPrivacyNetworkType,proto3,enum=google.ads.googleads.v16.enums.AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType" json:"android_privacy_network_type,omitempty"` + AndroidPrivacyNetworkType enums.AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType `protobuf:"varint,5,opt,name=android_privacy_network_type,json=androidPrivacyNetworkType,proto3,enum=google.ads.googleads.v17.enums.AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType" json:"android_privacy_network_type,omitempty"` // Output only. The ad group ID used in the share key encoding. AdGroupId int64 `protobuf:"varint,6,opt,name=ad_group_id,json=adGroupId,proto3" json:"ad_group_id,omitempty"` // Output only. 128 bit hex string of the encoded shared ad group key, @@ -68,7 +68,7 @@ type AndroidPrivacySharedKeyGoogleAdGroup struct { func (x *AndroidPrivacySharedKeyGoogleAdGroup) Reset() { *x = AndroidPrivacySharedKeyGoogleAdGroup{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad_group_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_ad_group_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81,7 +81,7 @@ func (x *AndroidPrivacySharedKeyGoogleAdGroup) String() string { func (*AndroidPrivacySharedKeyGoogleAdGroup) ProtoMessage() {} func (x *AndroidPrivacySharedKeyGoogleAdGroup) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad_group_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_ad_group_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 *AndroidPrivacySharedKeyGoogleAdGroup) ProtoReflect() protoreflect.Messa // Deprecated: Use AndroidPrivacySharedKeyGoogleAdGroup.ProtoReflect.Descriptor instead. func (*AndroidPrivacySharedKeyGoogleAdGroup) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad_group_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_ad_group_proto_rawDescGZIP(), []int{0} } func (x *AndroidPrivacySharedKeyGoogleAdGroup) GetResourceName() string { @@ -146,23 +146,23 @@ func (x *AndroidPrivacySharedKeyGoogleAdGroup) GetSharedAdGroupKey() string { return "" } -var File_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad_group_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_android_privacy_shared_key_google_ad_group_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad_group_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_ad_group_proto_rawDesc = []byte{ 0x0a, 0x53, 0x67, 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, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x5f, 0x70, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x6b, 0x65, 0x79, 0x5f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5f, 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, + 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, 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, 0x61, 0x6e, 0x64, 0x72, 0x6f, 0x69, + 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, 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, + 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, @@ -184,7 +184,7 @@ var file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad 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, 0x18, 0x03, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x41, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, @@ -200,7 +200,7 @@ var file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad 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, 0x18, 0x05, 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, 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, 0x2e, 0x41, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x4e, 0x65, 0x74, @@ -230,46 +230,46 @@ var file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x7d, 0x42, 0x9b, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x29, 0x41, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x4b, 0x65, 0x79, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 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, 0x73, 0x6f, 0x75, 0x72, + 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, + 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, 0x26, + 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, + 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_android_privacy_shared_key_google_ad_group_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad_group_proto_rawDescData = file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad_group_proto_rawDesc + file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_ad_group_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_ad_group_proto_rawDescData = file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_ad_group_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad_group_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad_group_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad_group_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad_group_proto_rawDescData) +func file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_ad_group_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_ad_group_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_ad_group_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_ad_group_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad_group_proto_rawDescData + return file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_ad_group_proto_rawDescData } -var file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad_group_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad_group_proto_goTypes = []interface{}{ - (*AndroidPrivacySharedKeyGoogleAdGroup)(nil), // 0: google.ads.googleads.v16.resources.AndroidPrivacySharedKeyGoogleAdGroup - (enums.AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType)(0), // 1: google.ads.googleads.v16.enums.AndroidPrivacyInteractionTypeEnum.AndroidPrivacyInteractionType - (enums.AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType)(0), // 2: google.ads.googleads.v16.enums.AndroidPrivacyNetworkTypeEnum.AndroidPrivacyNetworkType +var file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_ad_group_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_ad_group_proto_goTypes = []interface{}{ + (*AndroidPrivacySharedKeyGoogleAdGroup)(nil), // 0: google.ads.googleads.v17.resources.AndroidPrivacySharedKeyGoogleAdGroup + (enums.AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType)(0), // 1: google.ads.googleads.v17.enums.AndroidPrivacyInteractionTypeEnum.AndroidPrivacyInteractionType + (enums.AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType)(0), // 2: google.ads.googleads.v17.enums.AndroidPrivacyNetworkTypeEnum.AndroidPrivacyNetworkType } -var file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad_group_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.AndroidPrivacySharedKeyGoogleAdGroup.android_privacy_interaction_type:type_name -> google.ads.googleads.v16.enums.AndroidPrivacyInteractionTypeEnum.AndroidPrivacyInteractionType - 2, // 1: google.ads.googleads.v16.resources.AndroidPrivacySharedKeyGoogleAdGroup.android_privacy_network_type:type_name -> google.ads.googleads.v16.enums.AndroidPrivacyNetworkTypeEnum.AndroidPrivacyNetworkType +var file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_ad_group_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.AndroidPrivacySharedKeyGoogleAdGroup.android_privacy_interaction_type:type_name -> google.ads.googleads.v17.enums.AndroidPrivacyInteractionTypeEnum.AndroidPrivacyInteractionType + 2, // 1: google.ads.googleads.v17.resources.AndroidPrivacySharedKeyGoogleAdGroup.android_privacy_network_type:type_name -> google.ads.googleads.v17.enums.AndroidPrivacyNetworkTypeEnum.AndroidPrivacyNetworkType 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 @@ -278,14 +278,14 @@ var file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad } func init() { - file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad_group_proto_init() + file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_ad_group_proto_init() } -func file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad_group_proto_init() { - if File_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad_group_proto != nil { +func file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_ad_group_proto_init() { + if File_google_ads_googleads_v17_resources_android_privacy_shared_key_google_ad_group_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad_group_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_ad_group_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AndroidPrivacySharedKeyGoogleAdGroup); i { case 0: return &v.state @@ -302,18 +302,18 @@ func file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_a out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad_group_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_ad_group_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad_group_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad_group_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad_group_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_ad_group_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_ad_group_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_ad_group_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad_group_proto = out.File - file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad_group_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad_group_proto_goTypes = nil - file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ad_group_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_android_privacy_shared_key_google_ad_group_proto = out.File + file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_ad_group_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_ad_group_proto_goTypes = nil + file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_ad_group_proto_depIdxs = nil } diff --git a/resources/android_privacy_shared_key_google_campaign.pb.go b/resources/android_privacy_shared_key_google_campaign.pb.go index 62515397..88eb9bf1 100644 --- a/resources/android_privacy_shared_key_google_campaign.pb.go +++ b/resources/android_privacy_shared_key_google_campaign.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/android_privacy_shared_key_google_campaign.proto +// source: google/ads/googleads/v17/resources/android_privacy_shared_key_google_campaign.proto package resources @@ -50,7 +50,7 @@ type AndroidPrivacySharedKeyGoogleCampaign struct { // Output only. The campaign ID used in the share key encoding. CampaignId int64 `protobuf:"varint,2,opt,name=campaign_id,json=campaignId,proto3" json:"campaign_id,omitempty"` // Output only. The interaction type enum used in the share key encoding. - AndroidPrivacyInteractionType enums.AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType `protobuf:"varint,3,opt,name=android_privacy_interaction_type,json=androidPrivacyInteractionType,proto3,enum=google.ads.googleads.v16.enums.AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType" json:"android_privacy_interaction_type,omitempty"` + AndroidPrivacyInteractionType enums.AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType `protobuf:"varint,3,opt,name=android_privacy_interaction_type,json=androidPrivacyInteractionType,proto3,enum=google.ads.googleads.v17.enums.AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType" json:"android_privacy_interaction_type,omitempty"` // Output only. The interaction date used in the shared key encoding in the // format of "YYYY-MM-DD" in UTC timezone. AndroidPrivacyInteractionDate string `protobuf:"bytes,4,opt,name=android_privacy_interaction_date,json=androidPrivacyInteractionDate,proto3" json:"android_privacy_interaction_date,omitempty"` @@ -64,7 +64,7 @@ type AndroidPrivacySharedKeyGoogleCampaign struct { func (x *AndroidPrivacySharedKeyGoogleCampaign) Reset() { *x = AndroidPrivacySharedKeyGoogleCampaign{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_campaign_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_campaign_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *AndroidPrivacySharedKeyGoogleCampaign) String() string { func (*AndroidPrivacySharedKeyGoogleCampaign) ProtoMessage() {} func (x *AndroidPrivacySharedKeyGoogleCampaign) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_campaign_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_campaign_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *AndroidPrivacySharedKeyGoogleCampaign) ProtoReflect() protoreflect.Mess // Deprecated: Use AndroidPrivacySharedKeyGoogleCampaign.ProtoReflect.Descriptor instead. func (*AndroidPrivacySharedKeyGoogleCampaign) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_campaign_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_campaign_proto_rawDescGZIP(), []int{0} } func (x *AndroidPrivacySharedKeyGoogleCampaign) GetResourceName() string { @@ -128,19 +128,19 @@ func (x *AndroidPrivacySharedKeyGoogleCampaign) GetSharedCampaignKey() string { return "" } -var File_google_ads_googleads_v16_resources_android_privacy_shared_key_google_campaign_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_android_privacy_shared_key_google_campaign_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_campaign_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_campaign_proto_rawDesc = []byte{ 0x0a, 0x53, 0x67, 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, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x5f, 0x70, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x6b, 0x65, 0x79, 0x5f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 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, + 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, 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, 0x61, 0x6e, 0x64, 0x72, 0x6f, 0x69, + 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, @@ -162,7 +162,7 @@ var file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ca 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, 0x18, 0x03, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x41, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x50, @@ -193,44 +193,44 @@ var file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ca 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x7d, 0x42, 0x9c, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x2a, 0x41, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x4b, 0x65, 0x79, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 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_android_privacy_shared_key_google_campaign_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_campaign_proto_rawDescData = file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_campaign_proto_rawDesc + file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_campaign_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_campaign_proto_rawDescData = file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_campaign_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_campaign_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_campaign_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_campaign_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_campaign_proto_rawDescData) +func file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_campaign_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_campaign_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_campaign_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_campaign_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_campaign_proto_rawDescData + return file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_campaign_proto_rawDescData } -var file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_campaign_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_campaign_proto_goTypes = []interface{}{ - (*AndroidPrivacySharedKeyGoogleCampaign)(nil), // 0: google.ads.googleads.v16.resources.AndroidPrivacySharedKeyGoogleCampaign - (enums.AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType)(0), // 1: google.ads.googleads.v16.enums.AndroidPrivacyInteractionTypeEnum.AndroidPrivacyInteractionType +var file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_campaign_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_campaign_proto_goTypes = []interface{}{ + (*AndroidPrivacySharedKeyGoogleCampaign)(nil), // 0: google.ads.googleads.v17.resources.AndroidPrivacySharedKeyGoogleCampaign + (enums.AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType)(0), // 1: google.ads.googleads.v17.enums.AndroidPrivacyInteractionTypeEnum.AndroidPrivacyInteractionType } -var file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_campaign_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.AndroidPrivacySharedKeyGoogleCampaign.android_privacy_interaction_type:type_name -> google.ads.googleads.v16.enums.AndroidPrivacyInteractionTypeEnum.AndroidPrivacyInteractionType +var file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_campaign_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.AndroidPrivacySharedKeyGoogleCampaign.android_privacy_interaction_type:type_name -> google.ads.googleads.v17.enums.AndroidPrivacyInteractionTypeEnum.AndroidPrivacyInteractionType 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 @@ -239,14 +239,14 @@ var file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ca } func init() { - file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_campaign_proto_init() + file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_campaign_proto_init() } -func file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_campaign_proto_init() { - if File_google_ads_googleads_v16_resources_android_privacy_shared_key_google_campaign_proto != nil { +func file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_campaign_proto_init() { + if File_google_ads_googleads_v17_resources_android_privacy_shared_key_google_campaign_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_campaign_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_campaign_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AndroidPrivacySharedKeyGoogleCampaign); i { case 0: return &v.state @@ -263,18 +263,18 @@ func file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_c out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_campaign_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_campaign_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_campaign_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_campaign_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_campaign_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_campaign_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_campaign_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_campaign_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_android_privacy_shared_key_google_campaign_proto = out.File - file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_campaign_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_campaign_proto_goTypes = nil - file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_campaign_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_android_privacy_shared_key_google_campaign_proto = out.File + file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_campaign_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_campaign_proto_goTypes = nil + file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_campaign_proto_depIdxs = nil } diff --git a/resources/android_privacy_shared_key_google_network_type.pb.go b/resources/android_privacy_shared_key_google_network_type.pb.go index 1dd3c4d6..897d67d2 100644 --- a/resources/android_privacy_shared_key_google_network_type.pb.go +++ b/resources/android_privacy_shared_key_google_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/resources/android_privacy_shared_key_google_network_type.proto +// source: google/ads/googleads/v17/resources/android_privacy_shared_key_google_network_type.proto package resources @@ -50,12 +50,12 @@ type AndroidPrivacySharedKeyGoogleNetworkType struct { // Output only. The campaign ID used in the share key encoding. CampaignId int64 `protobuf:"varint,2,opt,name=campaign_id,json=campaignId,proto3" json:"campaign_id,omitempty"` // Output only. The interaction type enum used in the share key encoding. - AndroidPrivacyInteractionType enums.AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType `protobuf:"varint,3,opt,name=android_privacy_interaction_type,json=androidPrivacyInteractionType,proto3,enum=google.ads.googleads.v16.enums.AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType" json:"android_privacy_interaction_type,omitempty"` + AndroidPrivacyInteractionType enums.AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType `protobuf:"varint,3,opt,name=android_privacy_interaction_type,json=androidPrivacyInteractionType,proto3,enum=google.ads.googleads.v17.enums.AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType" json:"android_privacy_interaction_type,omitempty"` // Output only. The interaction date used in the shared key encoding in the // format of "YYYY-MM-DD" in UTC timezone. AndroidPrivacyInteractionDate string `protobuf:"bytes,4,opt,name=android_privacy_interaction_date,json=androidPrivacyInteractionDate,proto3" json:"android_privacy_interaction_date,omitempty"` // Output only. The network type enum used in the share key encoding. - AndroidPrivacyNetworkType enums.AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType `protobuf:"varint,5,opt,name=android_privacy_network_type,json=androidPrivacyNetworkType,proto3,enum=google.ads.googleads.v16.enums.AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType" json:"android_privacy_network_type,omitempty"` + AndroidPrivacyNetworkType enums.AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType `protobuf:"varint,5,opt,name=android_privacy_network_type,json=androidPrivacyNetworkType,proto3,enum=google.ads.googleads.v17.enums.AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType" json:"android_privacy_network_type,omitempty"` // Output only. 128 bit hex string of the encoded shared network type key, // including a '0x' prefix. This key can be used to do a bitwise OR operator // with the aggregate conversion key to create a full aggregation key to @@ -66,7 +66,7 @@ type AndroidPrivacySharedKeyGoogleNetworkType struct { func (x *AndroidPrivacySharedKeyGoogleNetworkType) Reset() { *x = AndroidPrivacySharedKeyGoogleNetworkType{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_network_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_network_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *AndroidPrivacySharedKeyGoogleNetworkType) String() string { func (*AndroidPrivacySharedKeyGoogleNetworkType) ProtoMessage() {} func (x *AndroidPrivacySharedKeyGoogleNetworkType) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_network_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_network_type_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *AndroidPrivacySharedKeyGoogleNetworkType) ProtoReflect() protoreflect.M // Deprecated: Use AndroidPrivacySharedKeyGoogleNetworkType.ProtoReflect.Descriptor instead. func (*AndroidPrivacySharedKeyGoogleNetworkType) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_network_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_network_type_proto_rawDescGZIP(), []int{0} } func (x *AndroidPrivacySharedKeyGoogleNetworkType) GetResourceName() string { @@ -137,23 +137,23 @@ func (x *AndroidPrivacySharedKeyGoogleNetworkType) GetSharedNetworkTypeKey() str return "" } -var File_google_ads_googleads_v16_resources_android_privacy_shared_key_google_network_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_android_privacy_shared_key_google_network_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_network_type_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_network_type_proto_rawDesc = []byte{ 0x0a, 0x57, 0x67, 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, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x5f, 0x70, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x6b, 0x65, 0x79, 0x5f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 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, 0x45, 0x67, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x61, 0x6e, + 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, 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, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, @@ -176,7 +176,7 @@ var file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ne 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, 0x18, 0x03, 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, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x41, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x50, 0x72, 0x69, 0x76, @@ -192,7 +192,7 @@ var file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ne 0x5f, 0x70, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x6e, 0x64, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x41, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, @@ -220,46 +220,46 @@ var file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ne 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x7d, 0x42, 0x9f, 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, 0x2d, 0x41, 0x6e, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x2d, 0x41, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x4b, 0x65, 0x79, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x54, 0x79, 0x70, 0x65, 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_android_privacy_shared_key_google_network_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_network_type_proto_rawDescData = file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_network_type_proto_rawDesc + file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_network_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_network_type_proto_rawDescData = file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_network_type_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_network_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_network_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_network_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_network_type_proto_rawDescData) +func file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_network_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_network_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_network_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_network_type_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_network_type_proto_rawDescData + return file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_network_type_proto_rawDescData } -var file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_network_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_network_type_proto_goTypes = []interface{}{ - (*AndroidPrivacySharedKeyGoogleNetworkType)(nil), // 0: google.ads.googleads.v16.resources.AndroidPrivacySharedKeyGoogleNetworkType - (enums.AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType)(0), // 1: google.ads.googleads.v16.enums.AndroidPrivacyInteractionTypeEnum.AndroidPrivacyInteractionType - (enums.AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType)(0), // 2: google.ads.googleads.v16.enums.AndroidPrivacyNetworkTypeEnum.AndroidPrivacyNetworkType +var file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_network_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_network_type_proto_goTypes = []interface{}{ + (*AndroidPrivacySharedKeyGoogleNetworkType)(nil), // 0: google.ads.googleads.v17.resources.AndroidPrivacySharedKeyGoogleNetworkType + (enums.AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType)(0), // 1: google.ads.googleads.v17.enums.AndroidPrivacyInteractionTypeEnum.AndroidPrivacyInteractionType + (enums.AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType)(0), // 2: google.ads.googleads.v17.enums.AndroidPrivacyNetworkTypeEnum.AndroidPrivacyNetworkType } -var file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_network_type_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.AndroidPrivacySharedKeyGoogleNetworkType.android_privacy_interaction_type:type_name -> google.ads.googleads.v16.enums.AndroidPrivacyInteractionTypeEnum.AndroidPrivacyInteractionType - 2, // 1: google.ads.googleads.v16.resources.AndroidPrivacySharedKeyGoogleNetworkType.android_privacy_network_type:type_name -> google.ads.googleads.v16.enums.AndroidPrivacyNetworkTypeEnum.AndroidPrivacyNetworkType +var file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_network_type_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.AndroidPrivacySharedKeyGoogleNetworkType.android_privacy_interaction_type:type_name -> google.ads.googleads.v17.enums.AndroidPrivacyInteractionTypeEnum.AndroidPrivacyInteractionType + 2, // 1: google.ads.googleads.v17.resources.AndroidPrivacySharedKeyGoogleNetworkType.android_privacy_network_type:type_name -> google.ads.googleads.v17.enums.AndroidPrivacyNetworkTypeEnum.AndroidPrivacyNetworkType 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 @@ -268,14 +268,14 @@ var file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_ne } func init() { - file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_network_type_proto_init() + file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_network_type_proto_init() } -func file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_network_type_proto_init() { - if File_google_ads_googleads_v16_resources_android_privacy_shared_key_google_network_type_proto != nil { +func file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_network_type_proto_init() { + if File_google_ads_googleads_v17_resources_android_privacy_shared_key_google_network_type_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_network_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_network_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AndroidPrivacySharedKeyGoogleNetworkType); i { case 0: return &v.state @@ -292,18 +292,18 @@ func file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_n out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_network_type_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_network_type_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_network_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_network_type_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_network_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_network_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_network_type_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_network_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_android_privacy_shared_key_google_network_type_proto = out.File - file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_network_type_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_network_type_proto_goTypes = nil - file_google_ads_googleads_v16_resources_android_privacy_shared_key_google_network_type_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_android_privacy_shared_key_google_network_type_proto = out.File + file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_network_type_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_network_type_proto_goTypes = nil + file_google_ads_googleads_v17_resources_android_privacy_shared_key_google_network_type_proto_depIdxs = nil } diff --git a/resources/asset.pb.go b/resources/asset.pb.go index eb2a2318..8aea9193 100644 --- a/resources/asset.pb.go +++ b/resources/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/resources/asset.proto +// source: google/ads/googleads/v17/resources/asset.proto package resources @@ -56,7 +56,7 @@ type Asset struct { // Optional name of the asset. Name *string `protobuf:"bytes,12,opt,name=name,proto3,oneof" json:"name,omitempty"` // Output only. Type of the asset. - Type enums.AssetTypeEnum_AssetType `protobuf:"varint,4,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.AssetTypeEnum_AssetType" json:"type,omitempty"` + Type enums.AssetTypeEnum_AssetType `protobuf:"varint,4,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.AssetTypeEnum_AssetType" json:"type,omitempty"` // A list of possible final URLs after all cross domain redirects. FinalUrls []string `protobuf:"bytes,14,rep,name=final_urls,json=finalUrls,proto3" json:"final_urls,omitempty"` // A list of possible final mobile URLs after all cross domain redirects. @@ -70,7 +70,7 @@ type Asset struct { // tracking. FinalUrlSuffix *string `protobuf:"bytes,19,opt,name=final_url_suffix,json=finalUrlSuffix,proto3,oneof" json:"final_url_suffix,omitempty"` // Output only. Source of the asset. - Source enums.AssetSourceEnum_AssetSource `protobuf:"varint,38,opt,name=source,proto3,enum=google.ads.googleads.v16.enums.AssetSourceEnum_AssetSource" json:"source,omitempty"` + Source enums.AssetSourceEnum_AssetSource `protobuf:"varint,38,opt,name=source,proto3,enum=google.ads.googleads.v17.enums.AssetSourceEnum_AssetSource" json:"source,omitempty"` // Output only. Policy information for the asset. PolicySummary *AssetPolicySummary `protobuf:"bytes,13,opt,name=policy_summary,json=policySummary,proto3" json:"policy_summary,omitempty"` // Output only. Policy information for the asset for each FieldType. @@ -100,7 +100,7 @@ type Asset struct { // *Asset_DynamicCustomAsset // *Asset_DynamicHotelsAndRentalsAsset // *Asset_DynamicFlightsAsset - // *Asset_DiscoveryCarouselCardAsset + // *Asset_DemandGenCarouselCardAsset // *Asset_DynamicTravelAsset // *Asset_DynamicLocalAsset // *Asset_DynamicJobsAsset @@ -112,7 +112,7 @@ type Asset struct { func (x *Asset) Reset() { *x = Asset{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_asset_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_asset_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -125,7 +125,7 @@ func (x *Asset) String() string { func (*Asset) ProtoMessage() {} func (x *Asset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_asset_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_asset_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138,7 +138,7 @@ func (x *Asset) ProtoReflect() protoreflect.Message { // Deprecated: Use Asset.ProtoReflect.Descriptor instead. func (*Asset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_asset_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_asset_proto_rawDescGZIP(), []int{0} } func (x *Asset) GetResourceName() string { @@ -379,9 +379,9 @@ func (x *Asset) GetDynamicFlightsAsset() *common.DynamicFlightsAsset { return nil } -func (x *Asset) GetDiscoveryCarouselCardAsset() *common.DiscoveryCarouselCardAsset { - if x, ok := x.GetAssetData().(*Asset_DiscoveryCarouselCardAsset); ok { - return x.DiscoveryCarouselCardAsset +func (x *Asset) GetDemandGenCarouselCardAsset() *common.DemandGenCarouselCardAsset { + if x, ok := x.GetAssetData().(*Asset_DemandGenCarouselCardAsset); ok { + return x.DemandGenCarouselCardAsset } return nil } @@ -530,9 +530,9 @@ type Asset_DynamicFlightsAsset struct { DynamicFlightsAsset *common.DynamicFlightsAsset `protobuf:"bytes,33,opt,name=dynamic_flights_asset,json=dynamicFlightsAsset,proto3,oneof"` } -type Asset_DiscoveryCarouselCardAsset struct { - // Immutable. A discovery carousel card asset. - DiscoveryCarouselCardAsset *common.DiscoveryCarouselCardAsset `protobuf:"bytes,34,opt,name=discovery_carousel_card_asset,json=discoveryCarouselCardAsset,proto3,oneof"` +type Asset_DemandGenCarouselCardAsset struct { + // Immutable. A Demand Gen carousel card asset. + DemandGenCarouselCardAsset *common.DemandGenCarouselCardAsset `protobuf:"bytes,50,opt,name=demand_gen_carousel_card_asset,json=demandGenCarouselCardAsset,proto3,oneof"` } type Asset_DynamicTravelAsset struct { @@ -602,7 +602,7 @@ func (*Asset_DynamicHotelsAndRentalsAsset) isAsset_AssetData() {} func (*Asset_DynamicFlightsAsset) isAsset_AssetData() {} -func (*Asset_DiscoveryCarouselCardAsset) isAsset_AssetData() {} +func (*Asset_DemandGenCarouselCardAsset) isAsset_AssetData() {} func (*Asset_DynamicTravelAsset) isAsset_AssetData() {} @@ -621,9 +621,9 @@ type AssetFieldTypePolicySummary struct { unknownFields protoimpl.UnknownFields // Output only. FieldType of this asset. - AssetFieldType *enums.AssetFieldTypeEnum_AssetFieldType `protobuf:"varint,1,opt,name=asset_field_type,json=assetFieldType,proto3,enum=google.ads.googleads.v16.enums.AssetFieldTypeEnum_AssetFieldType,oneof" json:"asset_field_type,omitempty"` + AssetFieldType *enums.AssetFieldTypeEnum_AssetFieldType `protobuf:"varint,1,opt,name=asset_field_type,json=assetFieldType,proto3,enum=google.ads.googleads.v17.enums.AssetFieldTypeEnum_AssetFieldType,oneof" json:"asset_field_type,omitempty"` // Output only. Source of this asset. - AssetSource *enums.AssetSourceEnum_AssetSource `protobuf:"varint,2,opt,name=asset_source,json=assetSource,proto3,enum=google.ads.googleads.v16.enums.AssetSourceEnum_AssetSource,oneof" json:"asset_source,omitempty"` + AssetSource *enums.AssetSourceEnum_AssetSource `protobuf:"varint,2,opt,name=asset_source,json=assetSource,proto3,enum=google.ads.googleads.v17.enums.AssetSourceEnum_AssetSource,oneof" json:"asset_source,omitempty"` // Output only. Policy summary. PolicySummaryInfo *AssetPolicySummary `protobuf:"bytes,3,opt,name=policy_summary_info,json=policySummaryInfo,proto3,oneof" json:"policy_summary_info,omitempty"` } @@ -631,7 +631,7 @@ type AssetFieldTypePolicySummary struct { func (x *AssetFieldTypePolicySummary) Reset() { *x = AssetFieldTypePolicySummary{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_asset_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_asset_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -644,7 +644,7 @@ func (x *AssetFieldTypePolicySummary) String() string { func (*AssetFieldTypePolicySummary) ProtoMessage() {} func (x *AssetFieldTypePolicySummary) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_asset_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_asset_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -657,7 +657,7 @@ func (x *AssetFieldTypePolicySummary) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetFieldTypePolicySummary.ProtoReflect.Descriptor instead. func (*AssetFieldTypePolicySummary) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_asset_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_resources_asset_proto_rawDescGZIP(), []int{1} } func (x *AssetFieldTypePolicySummary) GetAssetFieldType() enums.AssetFieldTypeEnum_AssetFieldType { @@ -690,16 +690,16 @@ type AssetPolicySummary struct { // Output only. The list of policy findings for this asset. 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 asset 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 asset, 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 *AssetPolicySummary) Reset() { *x = AssetPolicySummary{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_asset_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_asset_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -712,7 +712,7 @@ func (x *AssetPolicySummary) String() string { func (*AssetPolicySummary) ProtoMessage() {} func (x *AssetPolicySummary) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_asset_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_asset_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -725,7 +725,7 @@ func (x *AssetPolicySummary) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetPolicySummary.ProtoReflect.Descriptor instead. func (*AssetPolicySummary) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_asset_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_resources_asset_proto_rawDescGZIP(), []int{2} } func (x *AssetPolicySummary) GetPolicyTopicEntries() []*common.PolicyTopicEntry { @@ -749,45 +749,45 @@ func (x *AssetPolicySummary) GetApprovalStatus() enums.PolicyApprovalStatusEnum_ return enums.PolicyApprovalStatusEnum_PolicyApprovalStatus(0) } -var File_google_ads_googleads_v16_resources_asset_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_asset_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_asset_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_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, 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, 0x73, 0x73, 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, + 0x67, 0x6c, 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, + 0x2f, 0x67, 0x6f, 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, 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, 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, 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, 0x61, 0x73, + 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, 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, + 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, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x74, 0x79, + 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 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, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, + 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, + 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, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 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, 0x81, 0x1d, 0x0a, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x82, 0x1d, 0x0a, 0x05, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x4b, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x26, 0xe0, 0x41, 0x05, 0xfa, 0x41, 0x20, 0x0a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, @@ -798,7 +798,7 @@ var file_google_ads_googleads_v16_resources_asset_proto_rawDesc = []byte{ 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x50, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 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, 0x41, 0x73, 0x73, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x6e, 0x61, @@ -813,7 +813,7 @@ var file_google_ads_googleads_v16_resources_asset_proto_rawDesc = []byte{ 0x75, 0x72, 0x6c, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x18, 0x12, 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, + 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, 0x2d, 0x0a, 0x10, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x5f, @@ -821,20 +821,20 @@ var file_google_ads_googleads_v16_resources_asset_proto_rawDesc = []byte{ 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x53, 0x75, 0x66, 0x66, 0x69, 0x78, 0x88, 0x01, 0x01, 0x12, 0x58, 0x0a, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x26, 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, 0x73, 0x73, 0x65, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x62, 0x0a, 0x0e, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x0d, 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, 0x72, + 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, 0x73, 0x73, 0x65, 0x74, 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, 0x83, 0x01, 0x0a, 0x1b, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x69, 0x65, 0x73, 0x18, 0x28, 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, + 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, 0x73, 0x73, 0x65, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x18, 0x66, 0x69, 0x65, @@ -842,123 +842,123 @@ var file_google_ads_googleads_v16_resources_asset_proto_rawDesc = []byte{ 0x61, 0x72, 0x69, 0x65, 0x73, 0x12, 0x69, 0x0a, 0x13, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 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, 0x59, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x73, 0x73, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x11, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x66, 0x0a, 0x12, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x06, 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, 0x4d, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x10, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x53, 0x0a, 0x0b, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x07, 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, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x0a, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x50, 0x0a, 0x0a, 0x74, 0x65, 0x78, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x08, 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, 0x54, 0x65, 0x78, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x09, 0x74, 0x65, 0x78, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x58, 0x0a, 0x0f, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x09, 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, 0x4c, 0x65, 0x61, 0x64, 0x46, + 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x0d, 0x6c, 0x65, 0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x65, 0x0a, 0x14, 0x62, 0x6f, 0x6f, 0x6b, 0x5f, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x0a, 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, 0x42, 0x6f, 0x6f, 0x6b, 0x4f, 0x6e, + 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x42, 0x6f, 0x6f, 0x6b, 0x4f, 0x6e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x11, 0x62, 0x6f, 0x6f, 0x6b, 0x4f, 0x6e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x5a, 0x0a, 0x0f, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x0f, 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, 0x50, 0x72, 0x6f, 0x6d, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x54, 0x0a, 0x0d, 0x63, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x14, 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, 0x43, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x0c, 0x63, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x73, 0x0a, 0x18, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x75, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x6e, 0x69, 0x70, 0x70, 0x65, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x15, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x75, 0x72, 0x65, 0x64, 0x53, 0x6e, 0x69, 0x70, 0x70, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x16, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x75, 0x72, 0x65, 0x64, 0x53, 0x6e, 0x69, 0x70, 0x70, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x57, 0x0a, 0x0e, 0x73, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x16, 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, 0x53, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x0d, 0x73, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x58, 0x0a, 0x0f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x17, 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, 0x50, 0x61, 0x67, 0x65, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x65, 0x46, 0x65, 0x65, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x0d, 0x70, 0x61, 0x67, 0x65, 0x46, 0x65, 0x65, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x70, 0x0a, 0x17, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x5f, 0x65, 0x64, 0x75, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x18, 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, 0x44, 0x79, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x45, 0x64, 0x75, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x15, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x45, 0x64, 0x75, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x5b, 0x0a, 0x10, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x19, 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, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x41, + 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x0e, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x64, 0x0a, 0x13, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x1a, 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, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x43, 0x61, + 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x43, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x11, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x43, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x4b, 0x0a, 0x0a, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x1b, 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, + 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, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x09, 0x63, 0x61, 0x6c, 0x6c, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x4e, 0x0a, 0x0b, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x1c, 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, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x0a, 0x70, 0x72, 0x69, 0x63, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x6a, 0x0a, 0x14, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x74, 0x6f, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x1d, 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, 0x43, 0x61, 0x6c, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x6f, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x11, 0x63, 0x61, 0x6c, 0x6c, 0x54, 0x6f, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x74, 0x0a, 0x19, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x5f, 0x72, 0x65, 0x61, 0x6c, 0x5f, 0x65, 0x73, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 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, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x79, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x52, 0x65, 0x61, 0x6c, 0x45, 0x73, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x16, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x52, 0x65, 0x61, 0x6c, 0x45, 0x73, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x67, 0x0a, 0x14, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x1f, 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, 0x44, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x12, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x87, 0x01, 0x0a, 0x20, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x5f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x73, 0x5f, 0x61, 0x6e, 0x64, 0x5f, 0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x73, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x20, 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, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x73, 0x41, 0x6e, 0x64, 0x52, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x73, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x1c, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x48, 0x6f, 0x74, 0x65, @@ -966,220 +966,220 @@ var file_google_ads_googleads_v16_resources_asset_proto_rawDesc = []byte{ 0x74, 0x12, 0x6a, 0x0a, 0x15, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x5f, 0x66, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 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, 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, 0x46, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x13, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, - 0x63, 0x46, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x85, 0x01, - 0x0a, 0x1d, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x5f, 0x63, 0x61, 0x72, 0x6f, - 0x75, 0x73, 0x65, 0x6c, 0x5f, 0x63, 0x61, 0x72, 0x64, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, - 0x22, 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, 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, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x1a, 0x64, 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, 0x67, 0x0a, 0x14, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, - 0x5f, 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x23, 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, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x54, 0x72, 0x61, - 0x76, 0x65, 0x6c, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x12, 0x64, 0x79, 0x6e, 0x61, - 0x6d, 0x69, 0x63, 0x54, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x64, - 0x0a, 0x13, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, - 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x24, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x67, 0x6f, + 0x63, 0x46, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x86, 0x01, + 0x0a, 0x1e, 0x64, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x63, 0x61, 0x72, + 0x6f, 0x75, 0x73, 0x65, 0x6c, 0x5f, 0x63, 0x61, 0x72, 0x64, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, + 0x18, 0x32, 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, + 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, 0x43, 0x61, 0x72, 0x64, 0x41, 0x73, + 0x73, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x1a, 0x64, 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, 0x67, 0x0a, 0x14, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, + 0x63, 0x5f, 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x23, + 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, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x54, 0x72, + 0x61, 0x76, 0x65, 0x6c, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x12, 0x64, 0x79, 0x6e, + 0x61, 0x6d, 0x69, 0x63, 0x54, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, + 0x64, 0x0a, 0x13, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, + 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x24, 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, 0x44, + 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x41, 0x73, 0x73, 0x65, 0x74, + 0x48, 0x00, 0x52, 0x11, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x4c, 0x6f, 0x63, 0x61, 0x6c, + 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x61, 0x0a, 0x12, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, + 0x5f, 0x6a, 0x6f, 0x62, 0x73, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x25, 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, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x4a, 0x6f, 0x62, 0x73, 0x41, + 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x10, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x4a, + 0x6f, 0x62, 0x73, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x5c, 0x0a, 0x0e, 0x6c, 0x6f, 0x63, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x27, 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, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, + 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x0d, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x6c, 0x0a, 0x14, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, + 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x29, + 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, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x50, 0x72, 0x6f, 0x70, + 0x65, 0x72, 0x74, 0x79, 0x41, 0x73, 0x73, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, + 0x52, 0x12, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x41, + 0x73, 0x73, 0x65, 0x74, 0x3a, 0x4e, 0xea, 0x41, 0x4b, 0x0a, 0x1e, 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, 0x73, 0x73, 0x65, 0x74, 0x12, 0x29, 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, 0x73, 0x73, 0x65, 0x74, 0x73, 0x2f, 0x7b, 0x61, 0x73, 0x73, 0x65, 0x74, + 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x0c, 0x0a, 0x0a, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x64, 0x61, + 0x74, 0x61, 0x42, 0x05, 0x0a, 0x03, 0x5f, 0x69, 0x64, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6e, 0x61, + 0x6d, 0x65, 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, 0x22, 0xae, 0x03, 0x0a, 0x1b, 0x41, 0x73, 0x73, 0x65, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, + 0x54, 0x79, 0x70, 0x65, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, + 0x79, 0x12, 0x75, 0x0a, 0x10, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, + 0x5f, 0x74, 0x79, 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, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x79, - 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, - 0x00, 0x52, 0x11, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x41, - 0x73, 0x73, 0x65, 0x74, 0x12, 0x61, 0x0a, 0x12, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x5f, - 0x6a, 0x6f, 0x62, 0x73, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x25, 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, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x4a, 0x6f, 0x62, 0x73, 0x41, 0x73, - 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x10, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x4a, 0x6f, - 0x62, 0x73, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x5c, 0x0a, 0x0e, 0x6c, 0x6f, 0x63, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x27, 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, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x42, - 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x0d, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x6c, 0x0a, 0x14, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x70, - 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x29, 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, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x50, 0x72, 0x6f, 0x70, 0x65, - 0x72, 0x74, 0x79, 0x41, 0x73, 0x73, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, - 0x12, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x41, 0x73, - 0x73, 0x65, 0x74, 0x3a, 0x4e, 0xea, 0x41, 0x4b, 0x0a, 0x1e, 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, 0x73, 0x73, 0x65, 0x74, 0x12, 0x29, 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, 0x73, 0x73, 0x65, 0x74, 0x73, 0x2f, 0x7b, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, - 0x69, 0x64, 0x7d, 0x42, 0x0c, 0x0a, 0x0a, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x64, 0x61, 0x74, - 0x61, 0x42, 0x05, 0x0a, 0x03, 0x5f, 0x69, 0x64, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6e, 0x61, 0x6d, - 0x65, 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, - 0x22, 0xae, 0x03, 0x0a, 0x1b, 0x41, 0x73, 0x73, 0x65, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, - 0x79, 0x70, 0x65, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, - 0x12, 0x75, 0x0a, 0x10, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, - 0x74, 0x79, 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, 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, 0x42, 0x03, 0xe0, - 0x41, 0x03, 0x48, 0x00, 0x52, 0x0e, 0x61, 0x73, 0x73, 0x65, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, - 0x54, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x68, 0x0a, 0x0c, 0x61, 0x73, 0x73, 0x65, 0x74, - 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x2e, 0x41, - 0x73, 0x73, 0x65, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, - 0x73, 0x73, 0x65, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, - 0x01, 0x52, 0x0b, 0x61, 0x73, 0x73, 0x65, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x88, 0x01, - 0x01, 0x12, 0x70, 0x0a, 0x13, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x73, 0x75, 0x6d, 0x6d, - 0x61, 0x72, 0x79, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x36, + 0x64, 0x73, 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, 0x42, 0x03, + 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x0e, 0x61, 0x73, 0x73, 0x65, 0x74, 0x46, 0x69, 0x65, 0x6c, + 0x64, 0x54, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x68, 0x0a, 0x0c, 0x61, 0x73, 0x73, 0x65, + 0x74, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x53, - 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x02, 0x52, 0x11, 0x70, - 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x49, 0x6e, 0x66, 0x6f, - 0x88, 0x01, 0x01, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x66, 0x69, - 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x61, 0x73, 0x73, - 0x65, 0x74, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x70, 0x6f, - 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x69, 0x6e, 0x66, - 0x6f, 0x22, 0xf0, 0x02, 0x0a, 0x12, 0x41, 0x73, 0x73, 0x65, 0x74, 0x50, 0x6f, 0x6c, 0x69, 0x63, - 0x79, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x12, 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, 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, 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, 0x52, 0x0c, 0x72, 0x65, 0x76, 0x69, 0x65, - 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x7b, 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, 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, 0xfc, 0x01, 0x0a, 0x26, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, + 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, + 0x48, 0x01, 0x52, 0x0b, 0x61, 0x73, 0x73, 0x65, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x88, + 0x01, 0x01, 0x12, 0x70, 0x0a, 0x13, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x73, 0x75, 0x6d, + 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x03, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, + 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x02, 0x52, 0x11, + 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x49, 0x6e, 0x66, + 0x6f, 0x88, 0x01, 0x01, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x66, + 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x61, 0x73, + 0x73, 0x65, 0x74, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x70, + 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x69, 0x6e, + 0x66, 0x6f, 0x22, 0xf0, 0x02, 0x0a, 0x12, 0x41, 0x73, 0x73, 0x65, 0x74, 0x50, 0x6f, 0x6c, 0x69, + 0x63, 0x79, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x12, 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, - 0x0a, 0x41, 0x73, 0x73, 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, 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, + 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, 0x52, 0x0c, 0x72, 0x65, 0x76, 0x69, + 0x65, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x7b, 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, 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, 0xfc, 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, 0x0a, 0x41, 0x73, 0x73, 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, 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_asset_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_asset_proto_rawDescData = file_google_ads_googleads_v16_resources_asset_proto_rawDesc + file_google_ads_googleads_v17_resources_asset_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_asset_proto_rawDescData = file_google_ads_googleads_v17_resources_asset_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_asset_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_asset_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_asset_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_asset_proto_rawDescData) +func file_google_ads_googleads_v17_resources_asset_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_asset_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_asset_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_asset_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_asset_proto_rawDescData -} - -var file_google_ads_googleads_v16_resources_asset_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_google_ads_googleads_v16_resources_asset_proto_goTypes = []interface{}{ - (*Asset)(nil), // 0: google.ads.googleads.v16.resources.Asset - (*AssetFieldTypePolicySummary)(nil), // 1: google.ads.googleads.v16.resources.AssetFieldTypePolicySummary - (*AssetPolicySummary)(nil), // 2: google.ads.googleads.v16.resources.AssetPolicySummary - (enums.AssetTypeEnum_AssetType)(0), // 3: google.ads.googleads.v16.enums.AssetTypeEnum.AssetType - (*common.CustomParameter)(nil), // 4: google.ads.googleads.v16.common.CustomParameter - (enums.AssetSourceEnum_AssetSource)(0), // 5: google.ads.googleads.v16.enums.AssetSourceEnum.AssetSource - (*common.YoutubeVideoAsset)(nil), // 6: google.ads.googleads.v16.common.YoutubeVideoAsset - (*common.MediaBundleAsset)(nil), // 7: google.ads.googleads.v16.common.MediaBundleAsset - (*common.ImageAsset)(nil), // 8: google.ads.googleads.v16.common.ImageAsset - (*common.TextAsset)(nil), // 9: google.ads.googleads.v16.common.TextAsset - (*common.LeadFormAsset)(nil), // 10: google.ads.googleads.v16.common.LeadFormAsset - (*common.BookOnGoogleAsset)(nil), // 11: google.ads.googleads.v16.common.BookOnGoogleAsset - (*common.PromotionAsset)(nil), // 12: google.ads.googleads.v16.common.PromotionAsset - (*common.CalloutAsset)(nil), // 13: google.ads.googleads.v16.common.CalloutAsset - (*common.StructuredSnippetAsset)(nil), // 14: google.ads.googleads.v16.common.StructuredSnippetAsset - (*common.SitelinkAsset)(nil), // 15: google.ads.googleads.v16.common.SitelinkAsset - (*common.PageFeedAsset)(nil), // 16: google.ads.googleads.v16.common.PageFeedAsset - (*common.DynamicEducationAsset)(nil), // 17: google.ads.googleads.v16.common.DynamicEducationAsset - (*common.MobileAppAsset)(nil), // 18: google.ads.googleads.v16.common.MobileAppAsset - (*common.HotelCalloutAsset)(nil), // 19: google.ads.googleads.v16.common.HotelCalloutAsset - (*common.CallAsset)(nil), // 20: google.ads.googleads.v16.common.CallAsset - (*common.PriceAsset)(nil), // 21: google.ads.googleads.v16.common.PriceAsset - (*common.CallToActionAsset)(nil), // 22: google.ads.googleads.v16.common.CallToActionAsset - (*common.DynamicRealEstateAsset)(nil), // 23: google.ads.googleads.v16.common.DynamicRealEstateAsset - (*common.DynamicCustomAsset)(nil), // 24: google.ads.googleads.v16.common.DynamicCustomAsset - (*common.DynamicHotelsAndRentalsAsset)(nil), // 25: google.ads.googleads.v16.common.DynamicHotelsAndRentalsAsset - (*common.DynamicFlightsAsset)(nil), // 26: google.ads.googleads.v16.common.DynamicFlightsAsset - (*common.DiscoveryCarouselCardAsset)(nil), // 27: google.ads.googleads.v16.common.DiscoveryCarouselCardAsset - (*common.DynamicTravelAsset)(nil), // 28: google.ads.googleads.v16.common.DynamicTravelAsset - (*common.DynamicLocalAsset)(nil), // 29: google.ads.googleads.v16.common.DynamicLocalAsset - (*common.DynamicJobsAsset)(nil), // 30: google.ads.googleads.v16.common.DynamicJobsAsset - (*common.LocationAsset)(nil), // 31: google.ads.googleads.v16.common.LocationAsset - (*common.HotelPropertyAsset)(nil), // 32: google.ads.googleads.v16.common.HotelPropertyAsset - (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 33: google.ads.googleads.v16.enums.AssetFieldTypeEnum.AssetFieldType - (*common.PolicyTopicEntry)(nil), // 34: google.ads.googleads.v16.common.PolicyTopicEntry - (enums.PolicyReviewStatusEnum_PolicyReviewStatus)(0), // 35: google.ads.googleads.v16.enums.PolicyReviewStatusEnum.PolicyReviewStatus - (enums.PolicyApprovalStatusEnum_PolicyApprovalStatus)(0), // 36: google.ads.googleads.v16.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus -} -var file_google_ads_googleads_v16_resources_asset_proto_depIdxs = []int32{ - 3, // 0: google.ads.googleads.v16.resources.Asset.type:type_name -> google.ads.googleads.v16.enums.AssetTypeEnum.AssetType - 4, // 1: google.ads.googleads.v16.resources.Asset.url_custom_parameters:type_name -> google.ads.googleads.v16.common.CustomParameter - 5, // 2: google.ads.googleads.v16.resources.Asset.source:type_name -> google.ads.googleads.v16.enums.AssetSourceEnum.AssetSource - 2, // 3: google.ads.googleads.v16.resources.Asset.policy_summary:type_name -> google.ads.googleads.v16.resources.AssetPolicySummary - 1, // 4: google.ads.googleads.v16.resources.Asset.field_type_policy_summaries:type_name -> google.ads.googleads.v16.resources.AssetFieldTypePolicySummary - 6, // 5: google.ads.googleads.v16.resources.Asset.youtube_video_asset:type_name -> google.ads.googleads.v16.common.YoutubeVideoAsset - 7, // 6: google.ads.googleads.v16.resources.Asset.media_bundle_asset:type_name -> google.ads.googleads.v16.common.MediaBundleAsset - 8, // 7: google.ads.googleads.v16.resources.Asset.image_asset:type_name -> google.ads.googleads.v16.common.ImageAsset - 9, // 8: google.ads.googleads.v16.resources.Asset.text_asset:type_name -> google.ads.googleads.v16.common.TextAsset - 10, // 9: google.ads.googleads.v16.resources.Asset.lead_form_asset:type_name -> google.ads.googleads.v16.common.LeadFormAsset - 11, // 10: google.ads.googleads.v16.resources.Asset.book_on_google_asset:type_name -> google.ads.googleads.v16.common.BookOnGoogleAsset - 12, // 11: google.ads.googleads.v16.resources.Asset.promotion_asset:type_name -> google.ads.googleads.v16.common.PromotionAsset - 13, // 12: google.ads.googleads.v16.resources.Asset.callout_asset:type_name -> google.ads.googleads.v16.common.CalloutAsset - 14, // 13: google.ads.googleads.v16.resources.Asset.structured_snippet_asset:type_name -> google.ads.googleads.v16.common.StructuredSnippetAsset - 15, // 14: google.ads.googleads.v16.resources.Asset.sitelink_asset:type_name -> google.ads.googleads.v16.common.SitelinkAsset - 16, // 15: google.ads.googleads.v16.resources.Asset.page_feed_asset:type_name -> google.ads.googleads.v16.common.PageFeedAsset - 17, // 16: google.ads.googleads.v16.resources.Asset.dynamic_education_asset:type_name -> google.ads.googleads.v16.common.DynamicEducationAsset - 18, // 17: google.ads.googleads.v16.resources.Asset.mobile_app_asset:type_name -> google.ads.googleads.v16.common.MobileAppAsset - 19, // 18: google.ads.googleads.v16.resources.Asset.hotel_callout_asset:type_name -> google.ads.googleads.v16.common.HotelCalloutAsset - 20, // 19: google.ads.googleads.v16.resources.Asset.call_asset:type_name -> google.ads.googleads.v16.common.CallAsset - 21, // 20: google.ads.googleads.v16.resources.Asset.price_asset:type_name -> google.ads.googleads.v16.common.PriceAsset - 22, // 21: google.ads.googleads.v16.resources.Asset.call_to_action_asset:type_name -> google.ads.googleads.v16.common.CallToActionAsset - 23, // 22: google.ads.googleads.v16.resources.Asset.dynamic_real_estate_asset:type_name -> google.ads.googleads.v16.common.DynamicRealEstateAsset - 24, // 23: google.ads.googleads.v16.resources.Asset.dynamic_custom_asset:type_name -> google.ads.googleads.v16.common.DynamicCustomAsset - 25, // 24: google.ads.googleads.v16.resources.Asset.dynamic_hotels_and_rentals_asset:type_name -> google.ads.googleads.v16.common.DynamicHotelsAndRentalsAsset - 26, // 25: google.ads.googleads.v16.resources.Asset.dynamic_flights_asset:type_name -> google.ads.googleads.v16.common.DynamicFlightsAsset - 27, // 26: google.ads.googleads.v16.resources.Asset.discovery_carousel_card_asset:type_name -> google.ads.googleads.v16.common.DiscoveryCarouselCardAsset - 28, // 27: google.ads.googleads.v16.resources.Asset.dynamic_travel_asset:type_name -> google.ads.googleads.v16.common.DynamicTravelAsset - 29, // 28: google.ads.googleads.v16.resources.Asset.dynamic_local_asset:type_name -> google.ads.googleads.v16.common.DynamicLocalAsset - 30, // 29: google.ads.googleads.v16.resources.Asset.dynamic_jobs_asset:type_name -> google.ads.googleads.v16.common.DynamicJobsAsset - 31, // 30: google.ads.googleads.v16.resources.Asset.location_asset:type_name -> google.ads.googleads.v16.common.LocationAsset - 32, // 31: google.ads.googleads.v16.resources.Asset.hotel_property_asset:type_name -> google.ads.googleads.v16.common.HotelPropertyAsset - 33, // 32: google.ads.googleads.v16.resources.AssetFieldTypePolicySummary.asset_field_type:type_name -> google.ads.googleads.v16.enums.AssetFieldTypeEnum.AssetFieldType - 5, // 33: google.ads.googleads.v16.resources.AssetFieldTypePolicySummary.asset_source:type_name -> google.ads.googleads.v16.enums.AssetSourceEnum.AssetSource - 2, // 34: google.ads.googleads.v16.resources.AssetFieldTypePolicySummary.policy_summary_info:type_name -> google.ads.googleads.v16.resources.AssetPolicySummary - 34, // 35: google.ads.googleads.v16.resources.AssetPolicySummary.policy_topic_entries:type_name -> google.ads.googleads.v16.common.PolicyTopicEntry - 35, // 36: google.ads.googleads.v16.resources.AssetPolicySummary.review_status:type_name -> google.ads.googleads.v16.enums.PolicyReviewStatusEnum.PolicyReviewStatus - 36, // 37: google.ads.googleads.v16.resources.AssetPolicySummary.approval_status:type_name -> google.ads.googleads.v16.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus + return file_google_ads_googleads_v17_resources_asset_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_asset_proto_msgTypes = make([]protoimpl.MessageInfo, 3) +var file_google_ads_googleads_v17_resources_asset_proto_goTypes = []interface{}{ + (*Asset)(nil), // 0: google.ads.googleads.v17.resources.Asset + (*AssetFieldTypePolicySummary)(nil), // 1: google.ads.googleads.v17.resources.AssetFieldTypePolicySummary + (*AssetPolicySummary)(nil), // 2: google.ads.googleads.v17.resources.AssetPolicySummary + (enums.AssetTypeEnum_AssetType)(0), // 3: google.ads.googleads.v17.enums.AssetTypeEnum.AssetType + (*common.CustomParameter)(nil), // 4: google.ads.googleads.v17.common.CustomParameter + (enums.AssetSourceEnum_AssetSource)(0), // 5: google.ads.googleads.v17.enums.AssetSourceEnum.AssetSource + (*common.YoutubeVideoAsset)(nil), // 6: google.ads.googleads.v17.common.YoutubeVideoAsset + (*common.MediaBundleAsset)(nil), // 7: google.ads.googleads.v17.common.MediaBundleAsset + (*common.ImageAsset)(nil), // 8: google.ads.googleads.v17.common.ImageAsset + (*common.TextAsset)(nil), // 9: google.ads.googleads.v17.common.TextAsset + (*common.LeadFormAsset)(nil), // 10: google.ads.googleads.v17.common.LeadFormAsset + (*common.BookOnGoogleAsset)(nil), // 11: google.ads.googleads.v17.common.BookOnGoogleAsset + (*common.PromotionAsset)(nil), // 12: google.ads.googleads.v17.common.PromotionAsset + (*common.CalloutAsset)(nil), // 13: google.ads.googleads.v17.common.CalloutAsset + (*common.StructuredSnippetAsset)(nil), // 14: google.ads.googleads.v17.common.StructuredSnippetAsset + (*common.SitelinkAsset)(nil), // 15: google.ads.googleads.v17.common.SitelinkAsset + (*common.PageFeedAsset)(nil), // 16: google.ads.googleads.v17.common.PageFeedAsset + (*common.DynamicEducationAsset)(nil), // 17: google.ads.googleads.v17.common.DynamicEducationAsset + (*common.MobileAppAsset)(nil), // 18: google.ads.googleads.v17.common.MobileAppAsset + (*common.HotelCalloutAsset)(nil), // 19: google.ads.googleads.v17.common.HotelCalloutAsset + (*common.CallAsset)(nil), // 20: google.ads.googleads.v17.common.CallAsset + (*common.PriceAsset)(nil), // 21: google.ads.googleads.v17.common.PriceAsset + (*common.CallToActionAsset)(nil), // 22: google.ads.googleads.v17.common.CallToActionAsset + (*common.DynamicRealEstateAsset)(nil), // 23: google.ads.googleads.v17.common.DynamicRealEstateAsset + (*common.DynamicCustomAsset)(nil), // 24: google.ads.googleads.v17.common.DynamicCustomAsset + (*common.DynamicHotelsAndRentalsAsset)(nil), // 25: google.ads.googleads.v17.common.DynamicHotelsAndRentalsAsset + (*common.DynamicFlightsAsset)(nil), // 26: google.ads.googleads.v17.common.DynamicFlightsAsset + (*common.DemandGenCarouselCardAsset)(nil), // 27: google.ads.googleads.v17.common.DemandGenCarouselCardAsset + (*common.DynamicTravelAsset)(nil), // 28: google.ads.googleads.v17.common.DynamicTravelAsset + (*common.DynamicLocalAsset)(nil), // 29: google.ads.googleads.v17.common.DynamicLocalAsset + (*common.DynamicJobsAsset)(nil), // 30: google.ads.googleads.v17.common.DynamicJobsAsset + (*common.LocationAsset)(nil), // 31: google.ads.googleads.v17.common.LocationAsset + (*common.HotelPropertyAsset)(nil), // 32: google.ads.googleads.v17.common.HotelPropertyAsset + (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 33: google.ads.googleads.v17.enums.AssetFieldTypeEnum.AssetFieldType + (*common.PolicyTopicEntry)(nil), // 34: google.ads.googleads.v17.common.PolicyTopicEntry + (enums.PolicyReviewStatusEnum_PolicyReviewStatus)(0), // 35: google.ads.googleads.v17.enums.PolicyReviewStatusEnum.PolicyReviewStatus + (enums.PolicyApprovalStatusEnum_PolicyApprovalStatus)(0), // 36: google.ads.googleads.v17.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus +} +var file_google_ads_googleads_v17_resources_asset_proto_depIdxs = []int32{ + 3, // 0: google.ads.googleads.v17.resources.Asset.type:type_name -> google.ads.googleads.v17.enums.AssetTypeEnum.AssetType + 4, // 1: google.ads.googleads.v17.resources.Asset.url_custom_parameters:type_name -> google.ads.googleads.v17.common.CustomParameter + 5, // 2: google.ads.googleads.v17.resources.Asset.source:type_name -> google.ads.googleads.v17.enums.AssetSourceEnum.AssetSource + 2, // 3: google.ads.googleads.v17.resources.Asset.policy_summary:type_name -> google.ads.googleads.v17.resources.AssetPolicySummary + 1, // 4: google.ads.googleads.v17.resources.Asset.field_type_policy_summaries:type_name -> google.ads.googleads.v17.resources.AssetFieldTypePolicySummary + 6, // 5: google.ads.googleads.v17.resources.Asset.youtube_video_asset:type_name -> google.ads.googleads.v17.common.YoutubeVideoAsset + 7, // 6: google.ads.googleads.v17.resources.Asset.media_bundle_asset:type_name -> google.ads.googleads.v17.common.MediaBundleAsset + 8, // 7: google.ads.googleads.v17.resources.Asset.image_asset:type_name -> google.ads.googleads.v17.common.ImageAsset + 9, // 8: google.ads.googleads.v17.resources.Asset.text_asset:type_name -> google.ads.googleads.v17.common.TextAsset + 10, // 9: google.ads.googleads.v17.resources.Asset.lead_form_asset:type_name -> google.ads.googleads.v17.common.LeadFormAsset + 11, // 10: google.ads.googleads.v17.resources.Asset.book_on_google_asset:type_name -> google.ads.googleads.v17.common.BookOnGoogleAsset + 12, // 11: google.ads.googleads.v17.resources.Asset.promotion_asset:type_name -> google.ads.googleads.v17.common.PromotionAsset + 13, // 12: google.ads.googleads.v17.resources.Asset.callout_asset:type_name -> google.ads.googleads.v17.common.CalloutAsset + 14, // 13: google.ads.googleads.v17.resources.Asset.structured_snippet_asset:type_name -> google.ads.googleads.v17.common.StructuredSnippetAsset + 15, // 14: google.ads.googleads.v17.resources.Asset.sitelink_asset:type_name -> google.ads.googleads.v17.common.SitelinkAsset + 16, // 15: google.ads.googleads.v17.resources.Asset.page_feed_asset:type_name -> google.ads.googleads.v17.common.PageFeedAsset + 17, // 16: google.ads.googleads.v17.resources.Asset.dynamic_education_asset:type_name -> google.ads.googleads.v17.common.DynamicEducationAsset + 18, // 17: google.ads.googleads.v17.resources.Asset.mobile_app_asset:type_name -> google.ads.googleads.v17.common.MobileAppAsset + 19, // 18: google.ads.googleads.v17.resources.Asset.hotel_callout_asset:type_name -> google.ads.googleads.v17.common.HotelCalloutAsset + 20, // 19: google.ads.googleads.v17.resources.Asset.call_asset:type_name -> google.ads.googleads.v17.common.CallAsset + 21, // 20: google.ads.googleads.v17.resources.Asset.price_asset:type_name -> google.ads.googleads.v17.common.PriceAsset + 22, // 21: google.ads.googleads.v17.resources.Asset.call_to_action_asset:type_name -> google.ads.googleads.v17.common.CallToActionAsset + 23, // 22: google.ads.googleads.v17.resources.Asset.dynamic_real_estate_asset:type_name -> google.ads.googleads.v17.common.DynamicRealEstateAsset + 24, // 23: google.ads.googleads.v17.resources.Asset.dynamic_custom_asset:type_name -> google.ads.googleads.v17.common.DynamicCustomAsset + 25, // 24: google.ads.googleads.v17.resources.Asset.dynamic_hotels_and_rentals_asset:type_name -> google.ads.googleads.v17.common.DynamicHotelsAndRentalsAsset + 26, // 25: google.ads.googleads.v17.resources.Asset.dynamic_flights_asset:type_name -> google.ads.googleads.v17.common.DynamicFlightsAsset + 27, // 26: google.ads.googleads.v17.resources.Asset.demand_gen_carousel_card_asset:type_name -> google.ads.googleads.v17.common.DemandGenCarouselCardAsset + 28, // 27: google.ads.googleads.v17.resources.Asset.dynamic_travel_asset:type_name -> google.ads.googleads.v17.common.DynamicTravelAsset + 29, // 28: google.ads.googleads.v17.resources.Asset.dynamic_local_asset:type_name -> google.ads.googleads.v17.common.DynamicLocalAsset + 30, // 29: google.ads.googleads.v17.resources.Asset.dynamic_jobs_asset:type_name -> google.ads.googleads.v17.common.DynamicJobsAsset + 31, // 30: google.ads.googleads.v17.resources.Asset.location_asset:type_name -> google.ads.googleads.v17.common.LocationAsset + 32, // 31: google.ads.googleads.v17.resources.Asset.hotel_property_asset:type_name -> google.ads.googleads.v17.common.HotelPropertyAsset + 33, // 32: google.ads.googleads.v17.resources.AssetFieldTypePolicySummary.asset_field_type:type_name -> google.ads.googleads.v17.enums.AssetFieldTypeEnum.AssetFieldType + 5, // 33: google.ads.googleads.v17.resources.AssetFieldTypePolicySummary.asset_source:type_name -> google.ads.googleads.v17.enums.AssetSourceEnum.AssetSource + 2, // 34: google.ads.googleads.v17.resources.AssetFieldTypePolicySummary.policy_summary_info:type_name -> google.ads.googleads.v17.resources.AssetPolicySummary + 34, // 35: google.ads.googleads.v17.resources.AssetPolicySummary.policy_topic_entries:type_name -> google.ads.googleads.v17.common.PolicyTopicEntry + 35, // 36: google.ads.googleads.v17.resources.AssetPolicySummary.review_status:type_name -> google.ads.googleads.v17.enums.PolicyReviewStatusEnum.PolicyReviewStatus + 36, // 37: google.ads.googleads.v17.resources.AssetPolicySummary.approval_status:type_name -> google.ads.googleads.v17.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus 38, // [38:38] is the sub-list for method output_type 38, // [38:38] is the sub-list for method input_type 38, // [38:38] is the sub-list for extension type_name @@ -1187,13 +1187,13 @@ var file_google_ads_googleads_v16_resources_asset_proto_depIdxs = []int32{ 0, // [0:38] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_asset_proto_init() } -func file_google_ads_googleads_v16_resources_asset_proto_init() { - if File_google_ads_googleads_v16_resources_asset_proto != nil { +func init() { file_google_ads_googleads_v17_resources_asset_proto_init() } +func file_google_ads_googleads_v17_resources_asset_proto_init() { + if File_google_ads_googleads_v17_resources_asset_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_asset_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_asset_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Asset); i { case 0: return &v.state @@ -1205,7 +1205,7 @@ func file_google_ads_googleads_v16_resources_asset_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_asset_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_asset_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AssetFieldTypePolicySummary); i { case 0: return &v.state @@ -1217,7 +1217,7 @@ func file_google_ads_googleads_v16_resources_asset_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_asset_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_asset_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AssetPolicySummary); i { case 0: return &v.state @@ -1230,7 +1230,7 @@ func file_google_ads_googleads_v16_resources_asset_proto_init() { } } } - file_google_ads_googleads_v16_resources_asset_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_asset_proto_msgTypes[0].OneofWrappers = []interface{}{ (*Asset_YoutubeVideoAsset)(nil), (*Asset_MediaBundleAsset)(nil), (*Asset_ImageAsset)(nil), @@ -1252,30 +1252,30 @@ func file_google_ads_googleads_v16_resources_asset_proto_init() { (*Asset_DynamicCustomAsset)(nil), (*Asset_DynamicHotelsAndRentalsAsset)(nil), (*Asset_DynamicFlightsAsset)(nil), - (*Asset_DiscoveryCarouselCardAsset)(nil), + (*Asset_DemandGenCarouselCardAsset)(nil), (*Asset_DynamicTravelAsset)(nil), (*Asset_DynamicLocalAsset)(nil), (*Asset_DynamicJobsAsset)(nil), (*Asset_LocationAsset)(nil), (*Asset_HotelPropertyAsset)(nil), } - file_google_ads_googleads_v16_resources_asset_proto_msgTypes[1].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_asset_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_asset_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_asset_proto_rawDesc, NumEnums: 0, NumMessages: 3, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_asset_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_asset_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_asset_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_asset_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_asset_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_asset_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_asset_proto = out.File - file_google_ads_googleads_v16_resources_asset_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_asset_proto_goTypes = nil - file_google_ads_googleads_v16_resources_asset_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_asset_proto = out.File + file_google_ads_googleads_v17_resources_asset_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_asset_proto_goTypes = nil + file_google_ads_googleads_v17_resources_asset_proto_depIdxs = nil } diff --git a/resources/asset_field_type_view.pb.go b/resources/asset_field_type_view.pb.go index 1dea1584..d0480bca 100644 --- a/resources/asset_field_type_view.pb.go +++ b/resources/asset_field_type_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/asset_field_type_view.proto +// source: google/ads/googleads/v17/resources/asset_field_type_view.proto package resources @@ -50,13 +50,13 @@ type AssetFieldTypeView struct { // `customers/{customer_id}/assetFieldTypeViews/{field_type}` ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` // Output only. The asset field type of the asset field type view. - FieldType enums.AssetFieldTypeEnum_AssetFieldType `protobuf:"varint,3,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,3,opt,name=field_type,json=fieldType,proto3,enum=google.ads.googleads.v17.enums.AssetFieldTypeEnum_AssetFieldType" json:"field_type,omitempty"` } func (x *AssetFieldTypeView) Reset() { *x = AssetFieldTypeView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_asset_field_type_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_asset_field_type_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -69,7 +69,7 @@ func (x *AssetFieldTypeView) String() string { func (*AssetFieldTypeView) ProtoMessage() {} func (x *AssetFieldTypeView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_asset_field_type_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_asset_field_type_view_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 *AssetFieldTypeView) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetFieldTypeView.ProtoReflect.Descriptor instead. func (*AssetFieldTypeView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_asset_field_type_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_asset_field_type_view_proto_rawDescGZIP(), []int{0} } func (x *AssetFieldTypeView) GetResourceName() string { @@ -99,17 +99,17 @@ func (x *AssetFieldTypeView) GetFieldType() enums.AssetFieldTypeEnum_AssetFieldT return enums.AssetFieldTypeEnum_AssetFieldType(0) } -var File_google_ads_googleads_v16_resources_asset_field_type_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_asset_field_type_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_asset_field_type_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_asset_field_type_view_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, 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, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 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, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, + 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, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, @@ -125,7 +125,7 @@ var file_google_ads_googleads_v16_resources_asset_field_type_view_proto_rawDesc 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x65, 0x0a, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 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, 0x41, 0x73, + 0x61, 0x64, 0x73, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x09, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x3a, @@ -137,43 +137,43 @@ var file_google_ads_googleads_v16_resources_asset_field_type_view_proto_rawDesc 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x56, 0x69, 0x65, 0x77, 0x73, 0x2f, 0x7b, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x7d, 0x42, 0x89, 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, 0x17, 0x41, 0x73, 0x73, 0x65, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 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, 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_asset_field_type_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_asset_field_type_view_proto_rawDescData = file_google_ads_googleads_v16_resources_asset_field_type_view_proto_rawDesc + file_google_ads_googleads_v17_resources_asset_field_type_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_asset_field_type_view_proto_rawDescData = file_google_ads_googleads_v17_resources_asset_field_type_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_asset_field_type_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_asset_field_type_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_asset_field_type_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_asset_field_type_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_asset_field_type_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_asset_field_type_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_asset_field_type_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_asset_field_type_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_asset_field_type_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_asset_field_type_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_asset_field_type_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_asset_field_type_view_proto_goTypes = []interface{}{ - (*AssetFieldTypeView)(nil), // 0: google.ads.googleads.v16.resources.AssetFieldTypeView - (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 1: google.ads.googleads.v16.enums.AssetFieldTypeEnum.AssetFieldType +var file_google_ads_googleads_v17_resources_asset_field_type_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_asset_field_type_view_proto_goTypes = []interface{}{ + (*AssetFieldTypeView)(nil), // 0: google.ads.googleads.v17.resources.AssetFieldTypeView + (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 1: google.ads.googleads.v17.enums.AssetFieldTypeEnum.AssetFieldType } -var file_google_ads_googleads_v16_resources_asset_field_type_view_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.AssetFieldTypeView.field_type:type_name -> google.ads.googleads.v16.enums.AssetFieldTypeEnum.AssetFieldType +var file_google_ads_googleads_v17_resources_asset_field_type_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.AssetFieldTypeView.field_type:type_name -> google.ads.googleads.v17.enums.AssetFieldTypeEnum.AssetFieldType 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 @@ -181,13 +181,13 @@ var file_google_ads_googleads_v16_resources_asset_field_type_view_proto_depIdxs 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_asset_field_type_view_proto_init() } -func file_google_ads_googleads_v16_resources_asset_field_type_view_proto_init() { - if File_google_ads_googleads_v16_resources_asset_field_type_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_asset_field_type_view_proto_init() } +func file_google_ads_googleads_v17_resources_asset_field_type_view_proto_init() { + if File_google_ads_googleads_v17_resources_asset_field_type_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_asset_field_type_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_asset_field_type_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AssetFieldTypeView); i { case 0: return &v.state @@ -204,18 +204,18 @@ func file_google_ads_googleads_v16_resources_asset_field_type_view_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_asset_field_type_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_asset_field_type_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_asset_field_type_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_asset_field_type_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_asset_field_type_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_asset_field_type_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_asset_field_type_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_asset_field_type_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_asset_field_type_view_proto = out.File - file_google_ads_googleads_v16_resources_asset_field_type_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_asset_field_type_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_asset_field_type_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_asset_field_type_view_proto = out.File + file_google_ads_googleads_v17_resources_asset_field_type_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_asset_field_type_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_asset_field_type_view_proto_depIdxs = nil } diff --git a/resources/asset_group.pb.go b/resources/asset_group.pb.go index b64b4eda..256b06f2 100644 --- a/resources/asset_group.pb.go +++ b/resources/asset_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/asset_group.proto +// source: google/ads/googleads/v17/resources/asset_group.proto package resources @@ -65,14 +65,14 @@ type AssetGroup struct { // unless opted out. FinalMobileUrls []string `protobuf:"bytes,5,rep,name=final_mobile_urls,json=finalMobileUrls,proto3" json:"final_mobile_urls,omitempty"` // The status of the asset group. - Status enums.AssetGroupStatusEnum_AssetGroupStatus `protobuf:"varint,6,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.AssetGroupStatusEnum_AssetGroupStatus" json:"status,omitempty"` + Status enums.AssetGroupStatusEnum_AssetGroupStatus `protobuf:"varint,6,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.AssetGroupStatusEnum_AssetGroupStatus" json:"status,omitempty"` // Output only. The primary status of the asset group. Provides insights into // why an asset group is not serving or not serving optimally. - PrimaryStatus enums.AssetGroupPrimaryStatusEnum_AssetGroupPrimaryStatus `protobuf:"varint,11,opt,name=primary_status,json=primaryStatus,proto3,enum=google.ads.googleads.v16.enums.AssetGroupPrimaryStatusEnum_AssetGroupPrimaryStatus" json:"primary_status,omitempty"` + PrimaryStatus enums.AssetGroupPrimaryStatusEnum_AssetGroupPrimaryStatus `protobuf:"varint,11,opt,name=primary_status,json=primaryStatus,proto3,enum=google.ads.googleads.v17.enums.AssetGroupPrimaryStatusEnum_AssetGroupPrimaryStatus" json:"primary_status,omitempty"` // Output only. Provides reasons into why an asset group is not serving or not // serving optimally. It will be empty when the asset group is serving without // issues. - PrimaryStatusReasons []enums.AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason `protobuf:"varint,12,rep,packed,name=primary_status_reasons,json=primaryStatusReasons,proto3,enum=google.ads.googleads.v16.enums.AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason" json:"primary_status_reasons,omitempty"` + PrimaryStatusReasons []enums.AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason `protobuf:"varint,12,rep,packed,name=primary_status_reasons,json=primaryStatusReasons,proto3,enum=google.ads.googleads.v17.enums.AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason" json:"primary_status_reasons,omitempty"` // First part of text that may appear appended to the url displayed in // the ad. Path1 string `protobuf:"bytes,7,opt,name=path1,proto3" json:"path1,omitempty"` @@ -80,13 +80,13 @@ type AssetGroup struct { // the ad. This field can only be set when path1 is set. Path2 string `protobuf:"bytes,8,opt,name=path2,proto3" json:"path2,omitempty"` // Output only. Overall ad strength of this asset group. - AdStrength enums.AdStrengthEnum_AdStrength `protobuf:"varint,10,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,10,opt,name=ad_strength,json=adStrength,proto3,enum=google.ads.googleads.v17.enums.AdStrengthEnum_AdStrength" json:"ad_strength,omitempty"` } func (x *AssetGroup) Reset() { *x = AssetGroup{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_asset_group_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_asset_group_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -99,7 +99,7 @@ func (x *AssetGroup) String() string { func (*AssetGroup) ProtoMessage() {} func (x *AssetGroup) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_asset_group_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_asset_group_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -112,7 +112,7 @@ func (x *AssetGroup) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetGroup.ProtoReflect.Descriptor instead. func (*AssetGroup) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_asset_group_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_asset_group_proto_rawDescGZIP(), []int{0} } func (x *AssetGroup) GetResourceName() string { @@ -199,28 +199,28 @@ func (x *AssetGroup) GetAdStrength() enums.AdStrengthEnum_AdStrength { return enums.AdStrengthEnum_AdStrength(0) } -var File_google_ads_googleads_v16_resources_asset_group_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_asset_group_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_asset_group_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_asset_group_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, 0x73, 0x73, 0x65, 0x74, 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, + 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, 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, 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, 0x73, 0x73, + 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, 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, 0x73, + 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, 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, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, @@ -247,13 +247,13 @@ var file_google_ads_googleads_v16_resources_asset_group_proto_rawDesc = []byte{ 0x6c, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x55, 0x72, 0x6c, 0x73, 0x12, 0x5d, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x06, 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, 0x41, 0x73, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x7f, 0x0a, 0x0e, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x0b, 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, + 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, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, @@ -262,7 +262,7 @@ var file_google_ads_googleads_v16_resources_asset_group_proto_rawDesc = []byte{ 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x73, 0x18, 0x0c, 0x20, 0x03, 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, 0x41, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, @@ -274,7 +274,7 @@ var file_google_ads_googleads_v16_resources_asset_group_proto_rawDesc = []byte{ 0x61, 0x74, 0x68, 0x32, 0x12, 0x5f, 0x0a, 0x0b, 0x61, 0x64, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x18, 0x0a, 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, 0x64, 0x53, 0x74, 0x72, + 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, 0x3a, 0x5e, 0xea, 0x41, 0x5b, 0x0a, 0x23, 0x67, 0x6f, 0x6f, 0x67, @@ -285,49 +285,49 @@ var file_google_ads_googleads_v16_resources_asset_group_proto_rawDesc = []byte{ 0x6f, 0x75, 0x70, 0x73, 0x2f, 0x7b, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x81, 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, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x0f, 0x41, 0x73, 0x73, 0x65, 0x74, 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, 0x73, + 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, 0x6f, + 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, + 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_asset_group_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_asset_group_proto_rawDescData = file_google_ads_googleads_v16_resources_asset_group_proto_rawDesc + file_google_ads_googleads_v17_resources_asset_group_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_asset_group_proto_rawDescData = file_google_ads_googleads_v17_resources_asset_group_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_asset_group_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_asset_group_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_asset_group_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_asset_group_proto_rawDescData) +func file_google_ads_googleads_v17_resources_asset_group_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_asset_group_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_asset_group_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_asset_group_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_asset_group_proto_rawDescData + return file_google_ads_googleads_v17_resources_asset_group_proto_rawDescData } -var file_google_ads_googleads_v16_resources_asset_group_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_asset_group_proto_goTypes = []interface{}{ - (*AssetGroup)(nil), // 0: google.ads.googleads.v16.resources.AssetGroup - (enums.AssetGroupStatusEnum_AssetGroupStatus)(0), // 1: google.ads.googleads.v16.enums.AssetGroupStatusEnum.AssetGroupStatus - (enums.AssetGroupPrimaryStatusEnum_AssetGroupPrimaryStatus)(0), // 2: google.ads.googleads.v16.enums.AssetGroupPrimaryStatusEnum.AssetGroupPrimaryStatus - (enums.AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason)(0), // 3: google.ads.googleads.v16.enums.AssetGroupPrimaryStatusReasonEnum.AssetGroupPrimaryStatusReason - (enums.AdStrengthEnum_AdStrength)(0), // 4: google.ads.googleads.v16.enums.AdStrengthEnum.AdStrength +var file_google_ads_googleads_v17_resources_asset_group_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_asset_group_proto_goTypes = []interface{}{ + (*AssetGroup)(nil), // 0: google.ads.googleads.v17.resources.AssetGroup + (enums.AssetGroupStatusEnum_AssetGroupStatus)(0), // 1: google.ads.googleads.v17.enums.AssetGroupStatusEnum.AssetGroupStatus + (enums.AssetGroupPrimaryStatusEnum_AssetGroupPrimaryStatus)(0), // 2: google.ads.googleads.v17.enums.AssetGroupPrimaryStatusEnum.AssetGroupPrimaryStatus + (enums.AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason)(0), // 3: google.ads.googleads.v17.enums.AssetGroupPrimaryStatusReasonEnum.AssetGroupPrimaryStatusReason + (enums.AdStrengthEnum_AdStrength)(0), // 4: google.ads.googleads.v17.enums.AdStrengthEnum.AdStrength } -var file_google_ads_googleads_v16_resources_asset_group_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.AssetGroup.status:type_name -> google.ads.googleads.v16.enums.AssetGroupStatusEnum.AssetGroupStatus - 2, // 1: google.ads.googleads.v16.resources.AssetGroup.primary_status:type_name -> google.ads.googleads.v16.enums.AssetGroupPrimaryStatusEnum.AssetGroupPrimaryStatus - 3, // 2: google.ads.googleads.v16.resources.AssetGroup.primary_status_reasons:type_name -> google.ads.googleads.v16.enums.AssetGroupPrimaryStatusReasonEnum.AssetGroupPrimaryStatusReason - 4, // 3: google.ads.googleads.v16.resources.AssetGroup.ad_strength:type_name -> google.ads.googleads.v16.enums.AdStrengthEnum.AdStrength +var file_google_ads_googleads_v17_resources_asset_group_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.AssetGroup.status:type_name -> google.ads.googleads.v17.enums.AssetGroupStatusEnum.AssetGroupStatus + 2, // 1: google.ads.googleads.v17.resources.AssetGroup.primary_status:type_name -> google.ads.googleads.v17.enums.AssetGroupPrimaryStatusEnum.AssetGroupPrimaryStatus + 3, // 2: google.ads.googleads.v17.resources.AssetGroup.primary_status_reasons:type_name -> google.ads.googleads.v17.enums.AssetGroupPrimaryStatusReasonEnum.AssetGroupPrimaryStatusReason + 4, // 3: google.ads.googleads.v17.resources.AssetGroup.ad_strength:type_name -> google.ads.googleads.v17.enums.AdStrengthEnum.AdStrength 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 @@ -335,13 +335,13 @@ var file_google_ads_googleads_v16_resources_asset_group_proto_depIdxs = []int32{ 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_asset_group_proto_init() } -func file_google_ads_googleads_v16_resources_asset_group_proto_init() { - if File_google_ads_googleads_v16_resources_asset_group_proto != nil { +func init() { file_google_ads_googleads_v17_resources_asset_group_proto_init() } +func file_google_ads_googleads_v17_resources_asset_group_proto_init() { + if File_google_ads_googleads_v17_resources_asset_group_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_asset_group_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_asset_group_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AssetGroup); i { case 0: return &v.state @@ -358,18 +358,18 @@ func file_google_ads_googleads_v16_resources_asset_group_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_asset_group_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_asset_group_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_asset_group_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_asset_group_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_asset_group_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_asset_group_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_asset_group_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_asset_group_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_asset_group_proto = out.File - file_google_ads_googleads_v16_resources_asset_group_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_asset_group_proto_goTypes = nil - file_google_ads_googleads_v16_resources_asset_group_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_asset_group_proto = out.File + file_google_ads_googleads_v17_resources_asset_group_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_asset_group_proto_goTypes = nil + file_google_ads_googleads_v17_resources_asset_group_proto_depIdxs = nil } diff --git a/resources/asset_group_asset.pb.go b/resources/asset_group_asset.pb.go index 9cc93bea..db5ac271 100644 --- a/resources/asset_group_asset.pb.go +++ b/resources/asset_group_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/resources/asset_group_asset.proto +// source: google/ads/googleads/v17/resources/asset_group_asset.proto package resources @@ -55,34 +55,34 @@ type AssetGroupAsset struct { Asset string `protobuf:"bytes,3,opt,name=asset,proto3" json:"asset,omitempty"` // The description of the placement of the asset within the asset group. For // example: HEADLINE, YOUTUBE_VIDEO etc - FieldType enums.AssetFieldTypeEnum_AssetFieldType `protobuf:"varint,4,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,4,opt,name=field_type,json=fieldType,proto3,enum=google.ads.googleads.v17.enums.AssetFieldTypeEnum_AssetFieldType" json:"field_type,omitempty"` // The status of the link between an asset and asset group. - Status enums.AssetLinkStatusEnum_AssetLinkStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.AssetLinkStatusEnum_AssetLinkStatus" json:"status,omitempty"` + Status enums.AssetLinkStatusEnum_AssetLinkStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.AssetLinkStatusEnum_AssetLinkStatus" json:"status,omitempty"` // Output only. Provides the PrimaryStatus of this asset link. // Primary status is meant essentially to differentiate between the plain // "status" field, which has advertiser set values of enabled, paused, or // removed. The primary status takes into account other signals (for assets // its mainly policy and quality approvals) to come up with a more // comprehensive status to indicate its serving state. - PrimaryStatus enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus `protobuf:"varint,8,opt,name=primary_status,json=primaryStatus,proto3,enum=google.ads.googleads.v16.enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus" json:"primary_status,omitempty"` + PrimaryStatus enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus `protobuf:"varint,8,opt,name=primary_status,json=primaryStatus,proto3,enum=google.ads.googleads.v17.enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus" json:"primary_status,omitempty"` // Output only. Provides a list of reasons for why an asset is not serving or // not serving at full capacity. - PrimaryStatusReasons []enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason `protobuf:"varint,9,rep,packed,name=primary_status_reasons,json=primaryStatusReasons,proto3,enum=google.ads.googleads.v16.enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason" json:"primary_status_reasons,omitempty"` + PrimaryStatusReasons []enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason `protobuf:"varint,9,rep,packed,name=primary_status_reasons,json=primaryStatusReasons,proto3,enum=google.ads.googleads.v17.enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason" json:"primary_status_reasons,omitempty"` // Output only. Provides the details of the primary status and its associated // reasons. PrimaryStatusDetails []*common.AssetLinkPrimaryStatusDetails `protobuf:"bytes,10,rep,name=primary_status_details,json=primaryStatusDetails,proto3" json:"primary_status_details,omitempty"` // Output only. The performance of this asset group asset. - PerformanceLabel enums.AssetPerformanceLabelEnum_AssetPerformanceLabel `protobuf:"varint,6,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,6,opt,name=performance_label,json=performanceLabel,proto3,enum=google.ads.googleads.v17.enums.AssetPerformanceLabelEnum_AssetPerformanceLabel" json:"performance_label,omitempty"` // Output only. The policy information for this asset group asset. PolicySummary *common.PolicySummary `protobuf:"bytes,7,opt,name=policy_summary,json=policySummary,proto3" json:"policy_summary,omitempty"` // Output only. Source of the asset group asset. - Source enums.AssetSourceEnum_AssetSource `protobuf:"varint,11,opt,name=source,proto3,enum=google.ads.googleads.v16.enums.AssetSourceEnum_AssetSource" json:"source,omitempty"` + Source enums.AssetSourceEnum_AssetSource `protobuf:"varint,11,opt,name=source,proto3,enum=google.ads.googleads.v17.enums.AssetSourceEnum_AssetSource" json:"source,omitempty"` } func (x *AssetGroupAsset) Reset() { *x = AssetGroupAsset{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_asset_group_asset_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_asset_group_asset_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -95,7 +95,7 @@ func (x *AssetGroupAsset) String() string { func (*AssetGroupAsset) ProtoMessage() {} func (x *AssetGroupAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_asset_group_asset_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_asset_group_asset_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -108,7 +108,7 @@ func (x *AssetGroupAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetGroupAsset.ProtoReflect.Descriptor instead. func (*AssetGroupAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_asset_group_asset_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_asset_group_asset_proto_rawDescGZIP(), []int{0} } func (x *AssetGroupAsset) GetResourceName() string { @@ -188,43 +188,43 @@ func (x *AssetGroupAsset) GetSource() enums.AssetSourceEnum_AssetSource { return enums.AssetSourceEnum_AssetSource(0) } -var File_google_ads_googleads_v16_resources_asset_group_asset_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_asset_group_asset_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_asset_group_asset_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_asset_group_asset_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, 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, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x73, 0x73, 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, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 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, + 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, 0x5f, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 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, 0x61, 0x73, 0x73, 0x65, 0x74, + 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, 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, + 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, 0x75, 0x6d, + 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, 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, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, + 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, 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, 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, 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, 0x2f, 0x61, + 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, 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, @@ -248,19 +248,19 @@ var file_google_ads_googleads_v16_resources_asset_group_asset_proto_rawDesc = [] 0x73, 0x73, 0x65, 0x74, 0x12, 0x60, 0x0a, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 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, 0x41, 0x73, 0x73, 0x65, 0x74, 0x46, + 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, 0x09, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x5b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 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, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, + 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x7d, 0x0a, 0x0e, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x08, 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, 0x41, 0x73, 0x73, + 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, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, @@ -268,7 +268,7 @@ var file_google_ads_googleads_v16_resources_asset_group_asset_proto_rawDesc = [] 0x75, 0x73, 0x12, 0x98, 0x01, 0x0a, 0x16, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x73, 0x18, 0x09, 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, + 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, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x50, @@ -278,14 +278,14 @@ var file_google_ads_googleads_v16_resources_asset_group_asset_proto_rawDesc = [] 0x16, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x18, 0x0a, 0x20, 0x03, 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, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x14, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x12, 0x81, 0x01, 0x0a, 0x11, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x06, 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, + 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, 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, @@ -293,13 +293,13 @@ var file_google_ads_googleads_v16_resources_asset_group_asset_proto_rawDesc = [] 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x5a, 0x0a, 0x0e, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x07, 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, 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, 0x58, 0x0a, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x0b, 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, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, + 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x3a, 0x80, 0x01, 0xea, 0x41, 0x7d, 0x0a, 0x28, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, @@ -312,57 +312,57 @@ var file_google_ads_googleads_v16_resources_asset_group_asset_proto_rawDesc = [] 0x73, 0x73, 0x65, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x7d, 0x42, 0x86, 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, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x14, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 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, 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_asset_group_asset_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_asset_group_asset_proto_rawDescData = file_google_ads_googleads_v16_resources_asset_group_asset_proto_rawDesc + file_google_ads_googleads_v17_resources_asset_group_asset_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_asset_group_asset_proto_rawDescData = file_google_ads_googleads_v17_resources_asset_group_asset_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_asset_group_asset_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_asset_group_asset_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_asset_group_asset_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_asset_group_asset_proto_rawDescData) +func file_google_ads_googleads_v17_resources_asset_group_asset_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_asset_group_asset_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_asset_group_asset_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_asset_group_asset_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_asset_group_asset_proto_rawDescData + return file_google_ads_googleads_v17_resources_asset_group_asset_proto_rawDescData } -var file_google_ads_googleads_v16_resources_asset_group_asset_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_asset_group_asset_proto_goTypes = []interface{}{ - (*AssetGroupAsset)(nil), // 0: google.ads.googleads.v16.resources.AssetGroupAsset - (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 1: google.ads.googleads.v16.enums.AssetFieldTypeEnum.AssetFieldType - (enums.AssetLinkStatusEnum_AssetLinkStatus)(0), // 2: google.ads.googleads.v16.enums.AssetLinkStatusEnum.AssetLinkStatus - (enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus)(0), // 3: google.ads.googleads.v16.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus - (enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason)(0), // 4: google.ads.googleads.v16.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason - (*common.AssetLinkPrimaryStatusDetails)(nil), // 5: google.ads.googleads.v16.common.AssetLinkPrimaryStatusDetails - (enums.AssetPerformanceLabelEnum_AssetPerformanceLabel)(0), // 6: google.ads.googleads.v16.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel - (*common.PolicySummary)(nil), // 7: google.ads.googleads.v16.common.PolicySummary - (enums.AssetSourceEnum_AssetSource)(0), // 8: google.ads.googleads.v16.enums.AssetSourceEnum.AssetSource +var file_google_ads_googleads_v17_resources_asset_group_asset_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_asset_group_asset_proto_goTypes = []interface{}{ + (*AssetGroupAsset)(nil), // 0: google.ads.googleads.v17.resources.AssetGroupAsset + (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 1: google.ads.googleads.v17.enums.AssetFieldTypeEnum.AssetFieldType + (enums.AssetLinkStatusEnum_AssetLinkStatus)(0), // 2: google.ads.googleads.v17.enums.AssetLinkStatusEnum.AssetLinkStatus + (enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus)(0), // 3: google.ads.googleads.v17.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus + (enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason)(0), // 4: google.ads.googleads.v17.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason + (*common.AssetLinkPrimaryStatusDetails)(nil), // 5: google.ads.googleads.v17.common.AssetLinkPrimaryStatusDetails + (enums.AssetPerformanceLabelEnum_AssetPerformanceLabel)(0), // 6: google.ads.googleads.v17.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel + (*common.PolicySummary)(nil), // 7: google.ads.googleads.v17.common.PolicySummary + (enums.AssetSourceEnum_AssetSource)(0), // 8: google.ads.googleads.v17.enums.AssetSourceEnum.AssetSource } -var file_google_ads_googleads_v16_resources_asset_group_asset_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.AssetGroupAsset.field_type:type_name -> google.ads.googleads.v16.enums.AssetFieldTypeEnum.AssetFieldType - 2, // 1: google.ads.googleads.v16.resources.AssetGroupAsset.status:type_name -> google.ads.googleads.v16.enums.AssetLinkStatusEnum.AssetLinkStatus - 3, // 2: google.ads.googleads.v16.resources.AssetGroupAsset.primary_status:type_name -> google.ads.googleads.v16.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus - 4, // 3: google.ads.googleads.v16.resources.AssetGroupAsset.primary_status_reasons:type_name -> google.ads.googleads.v16.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason - 5, // 4: google.ads.googleads.v16.resources.AssetGroupAsset.primary_status_details:type_name -> google.ads.googleads.v16.common.AssetLinkPrimaryStatusDetails - 6, // 5: google.ads.googleads.v16.resources.AssetGroupAsset.performance_label:type_name -> google.ads.googleads.v16.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel - 7, // 6: google.ads.googleads.v16.resources.AssetGroupAsset.policy_summary:type_name -> google.ads.googleads.v16.common.PolicySummary - 8, // 7: google.ads.googleads.v16.resources.AssetGroupAsset.source:type_name -> google.ads.googleads.v16.enums.AssetSourceEnum.AssetSource +var file_google_ads_googleads_v17_resources_asset_group_asset_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.AssetGroupAsset.field_type:type_name -> google.ads.googleads.v17.enums.AssetFieldTypeEnum.AssetFieldType + 2, // 1: google.ads.googleads.v17.resources.AssetGroupAsset.status:type_name -> google.ads.googleads.v17.enums.AssetLinkStatusEnum.AssetLinkStatus + 3, // 2: google.ads.googleads.v17.resources.AssetGroupAsset.primary_status:type_name -> google.ads.googleads.v17.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus + 4, // 3: google.ads.googleads.v17.resources.AssetGroupAsset.primary_status_reasons:type_name -> google.ads.googleads.v17.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason + 5, // 4: google.ads.googleads.v17.resources.AssetGroupAsset.primary_status_details:type_name -> google.ads.googleads.v17.common.AssetLinkPrimaryStatusDetails + 6, // 5: google.ads.googleads.v17.resources.AssetGroupAsset.performance_label:type_name -> google.ads.googleads.v17.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel + 7, // 6: google.ads.googleads.v17.resources.AssetGroupAsset.policy_summary:type_name -> google.ads.googleads.v17.common.PolicySummary + 8, // 7: google.ads.googleads.v17.resources.AssetGroupAsset.source:type_name -> google.ads.googleads.v17.enums.AssetSourceEnum.AssetSource 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 @@ -370,13 +370,13 @@ var file_google_ads_googleads_v16_resources_asset_group_asset_proto_depIdxs = [] 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_asset_group_asset_proto_init() } -func file_google_ads_googleads_v16_resources_asset_group_asset_proto_init() { - if File_google_ads_googleads_v16_resources_asset_group_asset_proto != nil { +func init() { file_google_ads_googleads_v17_resources_asset_group_asset_proto_init() } +func file_google_ads_googleads_v17_resources_asset_group_asset_proto_init() { + if File_google_ads_googleads_v17_resources_asset_group_asset_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_asset_group_asset_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_asset_group_asset_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AssetGroupAsset); i { case 0: return &v.state @@ -393,18 +393,18 @@ func file_google_ads_googleads_v16_resources_asset_group_asset_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_asset_group_asset_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_asset_group_asset_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_asset_group_asset_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_asset_group_asset_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_asset_group_asset_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_asset_group_asset_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_asset_group_asset_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_asset_group_asset_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_asset_group_asset_proto = out.File - file_google_ads_googleads_v16_resources_asset_group_asset_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_asset_group_asset_proto_goTypes = nil - file_google_ads_googleads_v16_resources_asset_group_asset_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_asset_group_asset_proto = out.File + file_google_ads_googleads_v17_resources_asset_group_asset_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_asset_group_asset_proto_goTypes = nil + file_google_ads_googleads_v17_resources_asset_group_asset_proto_depIdxs = nil } diff --git a/resources/asset_group_listing_group_filter.pb.go b/resources/asset_group_listing_group_filter.pb.go index 4888cd7b..90a9b3b5 100644 --- a/resources/asset_group_listing_group_filter.pb.go +++ b/resources/asset_group_listing_group_filter.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/asset_group_listing_group_filter.proto +// source: google/ads/googleads/v17/resources/asset_group_listing_group_filter.proto package resources @@ -54,9 +54,9 @@ type AssetGroupListingGroupFilter struct { // Output only. The ID of the ListingGroupFilter. Id int64 `protobuf:"varint,3,opt,name=id,proto3" json:"id,omitempty"` // Immutable. Type of a listing group filter node. - Type enums.ListingGroupFilterTypeEnum_ListingGroupFilterType `protobuf:"varint,4,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.ListingGroupFilterTypeEnum_ListingGroupFilterType" json:"type,omitempty"` + Type enums.ListingGroupFilterTypeEnum_ListingGroupFilterType `protobuf:"varint,4,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.ListingGroupFilterTypeEnum_ListingGroupFilterType" json:"type,omitempty"` // Immutable. The source of listings filtered by this listing group filter. - ListingSource enums.ListingGroupFilterListingSourceEnum_ListingGroupFilterListingSource `protobuf:"varint,9,opt,name=listing_source,json=listingSource,proto3,enum=google.ads.googleads.v16.enums.ListingGroupFilterListingSourceEnum_ListingGroupFilterListingSource" json:"listing_source,omitempty"` + ListingSource enums.ListingGroupFilterListingSourceEnum_ListingGroupFilterListingSource `protobuf:"varint,9,opt,name=listing_source,json=listingSource,proto3,enum=google.ads.googleads.v17.enums.ListingGroupFilterListingSourceEnum_ListingGroupFilterListingSource" json:"listing_source,omitempty"` // Dimension value with which this listing group is refining its parent. // Undefined for the root group. CaseValue *ListingGroupFilterDimension `protobuf:"bytes,6,opt,name=case_value,json=caseValue,proto3" json:"case_value,omitempty"` @@ -70,7 +70,7 @@ type AssetGroupListingGroupFilter struct { func (x *AssetGroupListingGroupFilter) Reset() { *x = AssetGroupListingGroupFilter{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -83,7 +83,7 @@ func (x *AssetGroupListingGroupFilter) String() string { func (*AssetGroupListingGroupFilter) ProtoMessage() {} func (x *AssetGroupListingGroupFilter) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_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 *AssetGroupListingGroupFilter) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetGroupListingGroupFilter.ProtoReflect.Descriptor instead. func (*AssetGroupListingGroupFilter) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{0} } func (x *AssetGroupListingGroupFilter) GetResourceName() string { @@ -169,7 +169,7 @@ type ListingGroupFilterDimensionPath struct { func (x *ListingGroupFilterDimensionPath) Reset() { *x = ListingGroupFilterDimensionPath{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -182,7 +182,7 @@ func (x *ListingGroupFilterDimensionPath) String() string { func (*ListingGroupFilterDimensionPath) ProtoMessage() {} func (x *ListingGroupFilterDimensionPath) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -195,7 +195,7 @@ func (x *ListingGroupFilterDimensionPath) ProtoReflect() protoreflect.Message { // Deprecated: Use ListingGroupFilterDimensionPath.ProtoReflect.Descriptor instead. func (*ListingGroupFilterDimensionPath) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{1} } func (x *ListingGroupFilterDimensionPath) GetDimensions() []*ListingGroupFilterDimension { @@ -229,7 +229,7 @@ type ListingGroupFilterDimension struct { func (x *ListingGroupFilterDimension) Reset() { *x = ListingGroupFilterDimension{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -242,7 +242,7 @@ func (x *ListingGroupFilterDimension) String() string { func (*ListingGroupFilterDimension) ProtoMessage() {} func (x *ListingGroupFilterDimension) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -255,7 +255,7 @@ func (x *ListingGroupFilterDimension) ProtoReflect() protoreflect.Message { // Deprecated: Use ListingGroupFilterDimension.ProtoReflect.Descriptor instead. func (*ListingGroupFilterDimension) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2} } func (m *ListingGroupFilterDimension) GetDimension() isListingGroupFilterDimension_Dimension { @@ -398,13 +398,13 @@ type ListingGroupFilterDimension_ProductCategory 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"` // Indicates the level of the category in the taxonomy. - Level enums.ListingGroupFilterProductCategoryLevelEnum_ListingGroupFilterProductCategoryLevel `protobuf:"varint,2,opt,name=level,proto3,enum=google.ads.googleads.v16.enums.ListingGroupFilterProductCategoryLevelEnum_ListingGroupFilterProductCategoryLevel" json:"level,omitempty"` + Level enums.ListingGroupFilterProductCategoryLevelEnum_ListingGroupFilterProductCategoryLevel `protobuf:"varint,2,opt,name=level,proto3,enum=google.ads.googleads.v17.enums.ListingGroupFilterProductCategoryLevelEnum_ListingGroupFilterProductCategoryLevel" json:"level,omitempty"` } func (x *ListingGroupFilterDimension_ProductCategory) Reset() { *x = ListingGroupFilterDimension_ProductCategory{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -417,7 +417,7 @@ func (x *ListingGroupFilterDimension_ProductCategory) String() string { func (*ListingGroupFilterDimension_ProductCategory) ProtoMessage() {} func (x *ListingGroupFilterDimension_ProductCategory) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -430,7 +430,7 @@ func (x *ListingGroupFilterDimension_ProductCategory) ProtoReflect() protoreflec // Deprecated: Use ListingGroupFilterDimension_ProductCategory.ProtoReflect.Descriptor instead. func (*ListingGroupFilterDimension_ProductCategory) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 0} + return file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 0} } func (x *ListingGroupFilterDimension_ProductCategory) GetCategoryId() int64 { @@ -460,7 +460,7 @@ type ListingGroupFilterDimension_ProductBrand struct { func (x *ListingGroupFilterDimension_ProductBrand) Reset() { *x = ListingGroupFilterDimension_ProductBrand{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -473,7 +473,7 @@ func (x *ListingGroupFilterDimension_ProductBrand) String() string { func (*ListingGroupFilterDimension_ProductBrand) ProtoMessage() {} func (x *ListingGroupFilterDimension_ProductBrand) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -486,7 +486,7 @@ func (x *ListingGroupFilterDimension_ProductBrand) ProtoReflect() protoreflect.M // Deprecated: Use ListingGroupFilterDimension_ProductBrand.ProtoReflect.Descriptor instead. func (*ListingGroupFilterDimension_ProductBrand) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 1} + return file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 1} } func (x *ListingGroupFilterDimension_ProductBrand) GetValue() string { @@ -503,13 +503,13 @@ type ListingGroupFilterDimension_ProductChannel struct { unknownFields protoimpl.UnknownFields // Value of the locality. - Channel enums.ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel `protobuf:"varint,1,opt,name=channel,proto3,enum=google.ads.googleads.v16.enums.ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel" json:"channel,omitempty"` + Channel enums.ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel `protobuf:"varint,1,opt,name=channel,proto3,enum=google.ads.googleads.v17.enums.ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel" json:"channel,omitempty"` } func (x *ListingGroupFilterDimension_ProductChannel) Reset() { *x = ListingGroupFilterDimension_ProductChannel{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -522,7 +522,7 @@ func (x *ListingGroupFilterDimension_ProductChannel) String() string { func (*ListingGroupFilterDimension_ProductChannel) ProtoMessage() {} func (x *ListingGroupFilterDimension_ProductChannel) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -535,7 +535,7 @@ func (x *ListingGroupFilterDimension_ProductChannel) ProtoReflect() protoreflect // Deprecated: Use ListingGroupFilterDimension_ProductChannel.ProtoReflect.Descriptor instead. func (*ListingGroupFilterDimension_ProductChannel) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 2} + return file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 2} } func (x *ListingGroupFilterDimension_ProductChannel) GetChannel() enums.ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel { @@ -552,13 +552,13 @@ type ListingGroupFilterDimension_ProductCondition struct { unknownFields protoimpl.UnknownFields // Value of the condition. - Condition enums.ListingGroupFilterProductConditionEnum_ListingGroupFilterProductCondition `protobuf:"varint,1,opt,name=condition,proto3,enum=google.ads.googleads.v16.enums.ListingGroupFilterProductConditionEnum_ListingGroupFilterProductCondition" json:"condition,omitempty"` + Condition enums.ListingGroupFilterProductConditionEnum_ListingGroupFilterProductCondition `protobuf:"varint,1,opt,name=condition,proto3,enum=google.ads.googleads.v17.enums.ListingGroupFilterProductConditionEnum_ListingGroupFilterProductCondition" json:"condition,omitempty"` } func (x *ListingGroupFilterDimension_ProductCondition) Reset() { *x = ListingGroupFilterDimension_ProductCondition{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -571,7 +571,7 @@ func (x *ListingGroupFilterDimension_ProductCondition) String() string { func (*ListingGroupFilterDimension_ProductCondition) ProtoMessage() {} func (x *ListingGroupFilterDimension_ProductCondition) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[6] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -584,7 +584,7 @@ func (x *ListingGroupFilterDimension_ProductCondition) ProtoReflect() protorefle // Deprecated: Use ListingGroupFilterDimension_ProductCondition.ProtoReflect.Descriptor instead. func (*ListingGroupFilterDimension_ProductCondition) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 3} + return file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 3} } func (x *ListingGroupFilterDimension_ProductCondition) GetCondition() enums.ListingGroupFilterProductConditionEnum_ListingGroupFilterProductCondition { @@ -603,13 +603,13 @@ type ListingGroupFilterDimension_ProductCustomAttribute struct { // String value of the product custom attribute. Value *string `protobuf:"bytes,1,opt,name=value,proto3,oneof" json:"value,omitempty"` // Indicates the index of the custom attribute. - Index enums.ListingGroupFilterCustomAttributeIndexEnum_ListingGroupFilterCustomAttributeIndex `protobuf:"varint,2,opt,name=index,proto3,enum=google.ads.googleads.v16.enums.ListingGroupFilterCustomAttributeIndexEnum_ListingGroupFilterCustomAttributeIndex" json:"index,omitempty"` + Index enums.ListingGroupFilterCustomAttributeIndexEnum_ListingGroupFilterCustomAttributeIndex `protobuf:"varint,2,opt,name=index,proto3,enum=google.ads.googleads.v17.enums.ListingGroupFilterCustomAttributeIndexEnum_ListingGroupFilterCustomAttributeIndex" json:"index,omitempty"` } func (x *ListingGroupFilterDimension_ProductCustomAttribute) Reset() { *x = ListingGroupFilterDimension_ProductCustomAttribute{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -622,7 +622,7 @@ func (x *ListingGroupFilterDimension_ProductCustomAttribute) String() string { func (*ListingGroupFilterDimension_ProductCustomAttribute) ProtoMessage() {} func (x *ListingGroupFilterDimension_ProductCustomAttribute) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[7] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -635,7 +635,7 @@ func (x *ListingGroupFilterDimension_ProductCustomAttribute) ProtoReflect() prot // Deprecated: Use ListingGroupFilterDimension_ProductCustomAttribute.ProtoReflect.Descriptor instead. func (*ListingGroupFilterDimension_ProductCustomAttribute) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 4} + return file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 4} } func (x *ListingGroupFilterDimension_ProductCustomAttribute) GetValue() string { @@ -665,7 +665,7 @@ type ListingGroupFilterDimension_ProductItemId struct { func (x *ListingGroupFilterDimension_ProductItemId) Reset() { *x = ListingGroupFilterDimension_ProductItemId{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[8] + mi := &file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -678,7 +678,7 @@ func (x *ListingGroupFilterDimension_ProductItemId) String() string { func (*ListingGroupFilterDimension_ProductItemId) ProtoMessage() {} func (x *ListingGroupFilterDimension_ProductItemId) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[8] + mi := &file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[8] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -691,7 +691,7 @@ func (x *ListingGroupFilterDimension_ProductItemId) ProtoReflect() protoreflect. // Deprecated: Use ListingGroupFilterDimension_ProductItemId.ProtoReflect.Descriptor instead. func (*ListingGroupFilterDimension_ProductItemId) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 5} + return file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 5} } func (x *ListingGroupFilterDimension_ProductItemId) GetValue() string { @@ -710,13 +710,13 @@ type ListingGroupFilterDimension_ProductType struct { // Value of the type. Value *string `protobuf:"bytes,1,opt,name=value,proto3,oneof" json:"value,omitempty"` // Level of the type. - Level enums.ListingGroupFilterProductTypeLevelEnum_ListingGroupFilterProductTypeLevel `protobuf:"varint,2,opt,name=level,proto3,enum=google.ads.googleads.v16.enums.ListingGroupFilterProductTypeLevelEnum_ListingGroupFilterProductTypeLevel" json:"level,omitempty"` + Level enums.ListingGroupFilterProductTypeLevelEnum_ListingGroupFilterProductTypeLevel `protobuf:"varint,2,opt,name=level,proto3,enum=google.ads.googleads.v17.enums.ListingGroupFilterProductTypeLevelEnum_ListingGroupFilterProductTypeLevel" json:"level,omitempty"` } func (x *ListingGroupFilterDimension_ProductType) Reset() { *x = ListingGroupFilterDimension_ProductType{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[9] + mi := &file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -729,7 +729,7 @@ func (x *ListingGroupFilterDimension_ProductType) String() string { func (*ListingGroupFilterDimension_ProductType) ProtoMessage() {} func (x *ListingGroupFilterDimension_ProductType) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[9] + mi := &file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[9] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -742,7 +742,7 @@ func (x *ListingGroupFilterDimension_ProductType) ProtoReflect() protoreflect.Me // Deprecated: Use ListingGroupFilterDimension_ProductType.ProtoReflect.Descriptor instead. func (*ListingGroupFilterDimension_ProductType) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 6} + return file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 6} } func (x *ListingGroupFilterDimension_ProductType) GetValue() string { @@ -785,7 +785,7 @@ type ListingGroupFilterDimension_Webpage struct { func (x *ListingGroupFilterDimension_Webpage) Reset() { *x = ListingGroupFilterDimension_Webpage{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[10] + mi := &file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -798,7 +798,7 @@ func (x *ListingGroupFilterDimension_Webpage) String() string { func (*ListingGroupFilterDimension_Webpage) ProtoMessage() {} func (x *ListingGroupFilterDimension_Webpage) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[10] + mi := &file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[10] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -811,7 +811,7 @@ func (x *ListingGroupFilterDimension_Webpage) ProtoReflect() protoreflect.Messag // Deprecated: Use ListingGroupFilterDimension_Webpage.ProtoReflect.Descriptor instead. func (*ListingGroupFilterDimension_Webpage) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 7} + return file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 7} } func (x *ListingGroupFilterDimension_Webpage) GetConditions() []*ListingGroupFilterDimension_WebpageCondition { @@ -839,7 +839,7 @@ type ListingGroupFilterDimension_WebpageCondition struct { func (x *ListingGroupFilterDimension_WebpageCondition) Reset() { *x = ListingGroupFilterDimension_WebpageCondition{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[11] + mi := &file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -852,7 +852,7 @@ func (x *ListingGroupFilterDimension_WebpageCondition) String() string { func (*ListingGroupFilterDimension_WebpageCondition) ProtoMessage() {} func (x *ListingGroupFilterDimension_WebpageCondition) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[11] + mi := &file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[11] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -865,7 +865,7 @@ func (x *ListingGroupFilterDimension_WebpageCondition) ProtoReflect() protorefle // Deprecated: Use ListingGroupFilterDimension_WebpageCondition.ProtoReflect.Descriptor instead. func (*ListingGroupFilterDimension_WebpageCondition) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 8} + return file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 8} } func (m *ListingGroupFilterDimension_WebpageCondition) GetCondition() isListingGroupFilterDimension_WebpageCondition_Condition { @@ -912,47 +912,47 @@ func (*ListingGroupFilterDimension_WebpageCondition_CustomLabel) isListingGroupF func (*ListingGroupFilterDimension_WebpageCondition_UrlContains) isListingGroupFilterDimension_WebpageCondition_Condition() { } -var File_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_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, 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, 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, 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, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, + 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, 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, + 0x6f, 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, 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, 0x6c, 0x69, 0x73, 0x74, + 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, 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, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x69, + 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, 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, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, + 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, 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, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 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, 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, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, @@ -976,14 +976,14 @@ var file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pro 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x6a, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 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, 0x4c, 0x69, 0x73, 0x74, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x8f, 0x01, 0x0a, 0x0e, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x09, 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, + 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, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, @@ -992,7 +992,7 @@ var file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pro 0x74, 0x69, 0x6e, 0x67, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x5e, 0x0a, 0x0a, 0x63, 0x61, 0x73, 0x65, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x06, 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, 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, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x09, 0x63, 0x61, 0x73, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x7c, 0x0a, 0x1b, 0x70, 0x61, @@ -1006,7 +1006,7 @@ var file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pro 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x5c, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x74, 0x68, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x3a, 0x9d, 0x01, 0xea, 0x41, 0x99, 0x01, 0x0a, 0x35, 0x67, @@ -1024,7 +1024,7 @@ var file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pro 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x74, 0x68, 0x12, 0x64, 0x0a, 0x0a, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 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, 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, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0a, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, @@ -1033,14 +1033,14 @@ var file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pro 0x12, 0x7c, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 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, 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, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x48, 0x00, 0x52, 0x0f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x12, 0x73, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x18, 0x02, 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, + 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, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x42, 0x72, @@ -1048,7 +1048,7 @@ var file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pro 0x61, 0x6e, 0x64, 0x12, 0x79, 0x0a, 0x0f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x18, 0x03, 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, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x48, 0x00, 0x52, 0x0e, @@ -1056,7 +1056,7 @@ var file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pro 0x0a, 0x11, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4c, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x10, 0x70, @@ -1064,7 +1064,7 @@ var file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pro 0x92, 0x01, 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, 0x05, 0x20, 0x01, 0x28, 0x0b, 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, 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, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, @@ -1073,21 +1073,21 @@ var file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pro 0x62, 0x75, 0x74, 0x65, 0x12, 0x77, 0x0a, 0x0f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 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, 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, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x49, 0x74, 0x65, 0x6d, 0x49, 0x64, 0x48, 0x00, 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x49, 0x74, 0x65, 0x6d, 0x49, 0x64, 0x12, 0x70, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 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, 0x72, + 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, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x48, 0x00, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x63, 0x0a, 0x07, 0x77, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 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, 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, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x57, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x48, 0x00, 0x52, 0x07, 0x77, 0x65, 0x62, @@ -1097,7 +1097,7 @@ var file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pro 0x0a, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x87, 0x01, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x71, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 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, 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, 0x6d, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x69, @@ -1111,7 +1111,7 @@ var file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pro 0x0a, 0x0e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x12, 0x7f, 0x0a, 0x07, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x18, 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, + 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, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, @@ -1121,7 +1121,7 @@ var file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pro 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x87, 0x01, 0x0a, 0x09, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 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, 0x4c, 0x69, 0x73, 0x74, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, @@ -1133,7 +1133,7 @@ var file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pro 0x6c, 0x75, 0x65, 0x88, 0x01, 0x01, 0x12, 0x87, 0x01, 0x0a, 0x05, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x71, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 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, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, + 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x6d, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, @@ -1148,7 +1148,7 @@ var file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pro 0x00, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x88, 0x01, 0x01, 0x12, 0x7f, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 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, 0x4c, 0x69, 0x73, 0x74, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, @@ -1157,7 +1157,7 @@ var file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pro 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x1a, 0x7b, 0x0a, 0x07, 0x57, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x12, 0x70, 0x0a, 0x0a, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 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, + 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, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x57, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x43, 0x6f, @@ -1171,79 +1171,79 @@ var file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pro 0x73, 0x42, 0x0b, 0x0a, 0x09, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x0b, 0x0a, 0x09, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x93, 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, 0x21, 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, 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, + 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, + 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, + 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, 0x63, 0x65, + 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_asset_group_listing_group_filter_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_rawDescData = file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_rawDesc + file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_rawDescData = file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_rawDescData) +func file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_rawDescData -} - -var file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes = make([]protoimpl.MessageInfo, 12) -var file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_goTypes = []interface{}{ - (*AssetGroupListingGroupFilter)(nil), // 0: google.ads.googleads.v16.resources.AssetGroupListingGroupFilter - (*ListingGroupFilterDimensionPath)(nil), // 1: google.ads.googleads.v16.resources.ListingGroupFilterDimensionPath - (*ListingGroupFilterDimension)(nil), // 2: google.ads.googleads.v16.resources.ListingGroupFilterDimension - (*ListingGroupFilterDimension_ProductCategory)(nil), // 3: google.ads.googleads.v16.resources.ListingGroupFilterDimension.ProductCategory - (*ListingGroupFilterDimension_ProductBrand)(nil), // 4: google.ads.googleads.v16.resources.ListingGroupFilterDimension.ProductBrand - (*ListingGroupFilterDimension_ProductChannel)(nil), // 5: google.ads.googleads.v16.resources.ListingGroupFilterDimension.ProductChannel - (*ListingGroupFilterDimension_ProductCondition)(nil), // 6: google.ads.googleads.v16.resources.ListingGroupFilterDimension.ProductCondition - (*ListingGroupFilterDimension_ProductCustomAttribute)(nil), // 7: google.ads.googleads.v16.resources.ListingGroupFilterDimension.ProductCustomAttribute - (*ListingGroupFilterDimension_ProductItemId)(nil), // 8: google.ads.googleads.v16.resources.ListingGroupFilterDimension.ProductItemId - (*ListingGroupFilterDimension_ProductType)(nil), // 9: google.ads.googleads.v16.resources.ListingGroupFilterDimension.ProductType - (*ListingGroupFilterDimension_Webpage)(nil), // 10: google.ads.googleads.v16.resources.ListingGroupFilterDimension.Webpage - (*ListingGroupFilterDimension_WebpageCondition)(nil), // 11: google.ads.googleads.v16.resources.ListingGroupFilterDimension.WebpageCondition - (enums.ListingGroupFilterTypeEnum_ListingGroupFilterType)(0), // 12: google.ads.googleads.v16.enums.ListingGroupFilterTypeEnum.ListingGroupFilterType - (enums.ListingGroupFilterListingSourceEnum_ListingGroupFilterListingSource)(0), // 13: google.ads.googleads.v16.enums.ListingGroupFilterListingSourceEnum.ListingGroupFilterListingSource - (enums.ListingGroupFilterProductCategoryLevelEnum_ListingGroupFilterProductCategoryLevel)(0), // 14: google.ads.googleads.v16.enums.ListingGroupFilterProductCategoryLevelEnum.ListingGroupFilterProductCategoryLevel - (enums.ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel)(0), // 15: google.ads.googleads.v16.enums.ListingGroupFilterProductChannelEnum.ListingGroupFilterProductChannel - (enums.ListingGroupFilterProductConditionEnum_ListingGroupFilterProductCondition)(0), // 16: google.ads.googleads.v16.enums.ListingGroupFilterProductConditionEnum.ListingGroupFilterProductCondition - (enums.ListingGroupFilterCustomAttributeIndexEnum_ListingGroupFilterCustomAttributeIndex)(0), // 17: google.ads.googleads.v16.enums.ListingGroupFilterCustomAttributeIndexEnum.ListingGroupFilterCustomAttributeIndex - (enums.ListingGroupFilterProductTypeLevelEnum_ListingGroupFilterProductTypeLevel)(0), // 18: google.ads.googleads.v16.enums.ListingGroupFilterProductTypeLevelEnum.ListingGroupFilterProductTypeLevel -} -var file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_depIdxs = []int32{ - 12, // 0: google.ads.googleads.v16.resources.AssetGroupListingGroupFilter.type:type_name -> google.ads.googleads.v16.enums.ListingGroupFilterTypeEnum.ListingGroupFilterType - 13, // 1: google.ads.googleads.v16.resources.AssetGroupListingGroupFilter.listing_source:type_name -> google.ads.googleads.v16.enums.ListingGroupFilterListingSourceEnum.ListingGroupFilterListingSource - 2, // 2: google.ads.googleads.v16.resources.AssetGroupListingGroupFilter.case_value:type_name -> google.ads.googleads.v16.resources.ListingGroupFilterDimension - 1, // 3: google.ads.googleads.v16.resources.AssetGroupListingGroupFilter.path:type_name -> google.ads.googleads.v16.resources.ListingGroupFilterDimensionPath - 2, // 4: google.ads.googleads.v16.resources.ListingGroupFilterDimensionPath.dimensions:type_name -> google.ads.googleads.v16.resources.ListingGroupFilterDimension - 3, // 5: google.ads.googleads.v16.resources.ListingGroupFilterDimension.product_category:type_name -> google.ads.googleads.v16.resources.ListingGroupFilterDimension.ProductCategory - 4, // 6: google.ads.googleads.v16.resources.ListingGroupFilterDimension.product_brand:type_name -> google.ads.googleads.v16.resources.ListingGroupFilterDimension.ProductBrand - 5, // 7: google.ads.googleads.v16.resources.ListingGroupFilterDimension.product_channel:type_name -> google.ads.googleads.v16.resources.ListingGroupFilterDimension.ProductChannel - 6, // 8: google.ads.googleads.v16.resources.ListingGroupFilterDimension.product_condition:type_name -> google.ads.googleads.v16.resources.ListingGroupFilterDimension.ProductCondition - 7, // 9: google.ads.googleads.v16.resources.ListingGroupFilterDimension.product_custom_attribute:type_name -> google.ads.googleads.v16.resources.ListingGroupFilterDimension.ProductCustomAttribute - 8, // 10: google.ads.googleads.v16.resources.ListingGroupFilterDimension.product_item_id:type_name -> google.ads.googleads.v16.resources.ListingGroupFilterDimension.ProductItemId - 9, // 11: google.ads.googleads.v16.resources.ListingGroupFilterDimension.product_type:type_name -> google.ads.googleads.v16.resources.ListingGroupFilterDimension.ProductType - 10, // 12: google.ads.googleads.v16.resources.ListingGroupFilterDimension.webpage:type_name -> google.ads.googleads.v16.resources.ListingGroupFilterDimension.Webpage - 14, // 13: google.ads.googleads.v16.resources.ListingGroupFilterDimension.ProductCategory.level:type_name -> google.ads.googleads.v16.enums.ListingGroupFilterProductCategoryLevelEnum.ListingGroupFilterProductCategoryLevel - 15, // 14: google.ads.googleads.v16.resources.ListingGroupFilterDimension.ProductChannel.channel:type_name -> google.ads.googleads.v16.enums.ListingGroupFilterProductChannelEnum.ListingGroupFilterProductChannel - 16, // 15: google.ads.googleads.v16.resources.ListingGroupFilterDimension.ProductCondition.condition:type_name -> google.ads.googleads.v16.enums.ListingGroupFilterProductConditionEnum.ListingGroupFilterProductCondition - 17, // 16: google.ads.googleads.v16.resources.ListingGroupFilterDimension.ProductCustomAttribute.index:type_name -> google.ads.googleads.v16.enums.ListingGroupFilterCustomAttributeIndexEnum.ListingGroupFilterCustomAttributeIndex - 18, // 17: google.ads.googleads.v16.resources.ListingGroupFilterDimension.ProductType.level:type_name -> google.ads.googleads.v16.enums.ListingGroupFilterProductTypeLevelEnum.ListingGroupFilterProductTypeLevel - 11, // 18: google.ads.googleads.v16.resources.ListingGroupFilterDimension.Webpage.conditions:type_name -> google.ads.googleads.v16.resources.ListingGroupFilterDimension.WebpageCondition + return file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes = make([]protoimpl.MessageInfo, 12) +var file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_goTypes = []interface{}{ + (*AssetGroupListingGroupFilter)(nil), // 0: google.ads.googleads.v17.resources.AssetGroupListingGroupFilter + (*ListingGroupFilterDimensionPath)(nil), // 1: google.ads.googleads.v17.resources.ListingGroupFilterDimensionPath + (*ListingGroupFilterDimension)(nil), // 2: google.ads.googleads.v17.resources.ListingGroupFilterDimension + (*ListingGroupFilterDimension_ProductCategory)(nil), // 3: google.ads.googleads.v17.resources.ListingGroupFilterDimension.ProductCategory + (*ListingGroupFilterDimension_ProductBrand)(nil), // 4: google.ads.googleads.v17.resources.ListingGroupFilterDimension.ProductBrand + (*ListingGroupFilterDimension_ProductChannel)(nil), // 5: google.ads.googleads.v17.resources.ListingGroupFilterDimension.ProductChannel + (*ListingGroupFilterDimension_ProductCondition)(nil), // 6: google.ads.googleads.v17.resources.ListingGroupFilterDimension.ProductCondition + (*ListingGroupFilterDimension_ProductCustomAttribute)(nil), // 7: google.ads.googleads.v17.resources.ListingGroupFilterDimension.ProductCustomAttribute + (*ListingGroupFilterDimension_ProductItemId)(nil), // 8: google.ads.googleads.v17.resources.ListingGroupFilterDimension.ProductItemId + (*ListingGroupFilterDimension_ProductType)(nil), // 9: google.ads.googleads.v17.resources.ListingGroupFilterDimension.ProductType + (*ListingGroupFilterDimension_Webpage)(nil), // 10: google.ads.googleads.v17.resources.ListingGroupFilterDimension.Webpage + (*ListingGroupFilterDimension_WebpageCondition)(nil), // 11: google.ads.googleads.v17.resources.ListingGroupFilterDimension.WebpageCondition + (enums.ListingGroupFilterTypeEnum_ListingGroupFilterType)(0), // 12: google.ads.googleads.v17.enums.ListingGroupFilterTypeEnum.ListingGroupFilterType + (enums.ListingGroupFilterListingSourceEnum_ListingGroupFilterListingSource)(0), // 13: google.ads.googleads.v17.enums.ListingGroupFilterListingSourceEnum.ListingGroupFilterListingSource + (enums.ListingGroupFilterProductCategoryLevelEnum_ListingGroupFilterProductCategoryLevel)(0), // 14: google.ads.googleads.v17.enums.ListingGroupFilterProductCategoryLevelEnum.ListingGroupFilterProductCategoryLevel + (enums.ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel)(0), // 15: google.ads.googleads.v17.enums.ListingGroupFilterProductChannelEnum.ListingGroupFilterProductChannel + (enums.ListingGroupFilterProductConditionEnum_ListingGroupFilterProductCondition)(0), // 16: google.ads.googleads.v17.enums.ListingGroupFilterProductConditionEnum.ListingGroupFilterProductCondition + (enums.ListingGroupFilterCustomAttributeIndexEnum_ListingGroupFilterCustomAttributeIndex)(0), // 17: google.ads.googleads.v17.enums.ListingGroupFilterCustomAttributeIndexEnum.ListingGroupFilterCustomAttributeIndex + (enums.ListingGroupFilterProductTypeLevelEnum_ListingGroupFilterProductTypeLevel)(0), // 18: google.ads.googleads.v17.enums.ListingGroupFilterProductTypeLevelEnum.ListingGroupFilterProductTypeLevel +} +var file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_depIdxs = []int32{ + 12, // 0: google.ads.googleads.v17.resources.AssetGroupListingGroupFilter.type:type_name -> google.ads.googleads.v17.enums.ListingGroupFilterTypeEnum.ListingGroupFilterType + 13, // 1: google.ads.googleads.v17.resources.AssetGroupListingGroupFilter.listing_source:type_name -> google.ads.googleads.v17.enums.ListingGroupFilterListingSourceEnum.ListingGroupFilterListingSource + 2, // 2: google.ads.googleads.v17.resources.AssetGroupListingGroupFilter.case_value:type_name -> google.ads.googleads.v17.resources.ListingGroupFilterDimension + 1, // 3: google.ads.googleads.v17.resources.AssetGroupListingGroupFilter.path:type_name -> google.ads.googleads.v17.resources.ListingGroupFilterDimensionPath + 2, // 4: google.ads.googleads.v17.resources.ListingGroupFilterDimensionPath.dimensions:type_name -> google.ads.googleads.v17.resources.ListingGroupFilterDimension + 3, // 5: google.ads.googleads.v17.resources.ListingGroupFilterDimension.product_category:type_name -> google.ads.googleads.v17.resources.ListingGroupFilterDimension.ProductCategory + 4, // 6: google.ads.googleads.v17.resources.ListingGroupFilterDimension.product_brand:type_name -> google.ads.googleads.v17.resources.ListingGroupFilterDimension.ProductBrand + 5, // 7: google.ads.googleads.v17.resources.ListingGroupFilterDimension.product_channel:type_name -> google.ads.googleads.v17.resources.ListingGroupFilterDimension.ProductChannel + 6, // 8: google.ads.googleads.v17.resources.ListingGroupFilterDimension.product_condition:type_name -> google.ads.googleads.v17.resources.ListingGroupFilterDimension.ProductCondition + 7, // 9: google.ads.googleads.v17.resources.ListingGroupFilterDimension.product_custom_attribute:type_name -> google.ads.googleads.v17.resources.ListingGroupFilterDimension.ProductCustomAttribute + 8, // 10: google.ads.googleads.v17.resources.ListingGroupFilterDimension.product_item_id:type_name -> google.ads.googleads.v17.resources.ListingGroupFilterDimension.ProductItemId + 9, // 11: google.ads.googleads.v17.resources.ListingGroupFilterDimension.product_type:type_name -> google.ads.googleads.v17.resources.ListingGroupFilterDimension.ProductType + 10, // 12: google.ads.googleads.v17.resources.ListingGroupFilterDimension.webpage:type_name -> google.ads.googleads.v17.resources.ListingGroupFilterDimension.Webpage + 14, // 13: google.ads.googleads.v17.resources.ListingGroupFilterDimension.ProductCategory.level:type_name -> google.ads.googleads.v17.enums.ListingGroupFilterProductCategoryLevelEnum.ListingGroupFilterProductCategoryLevel + 15, // 14: google.ads.googleads.v17.resources.ListingGroupFilterDimension.ProductChannel.channel:type_name -> google.ads.googleads.v17.enums.ListingGroupFilterProductChannelEnum.ListingGroupFilterProductChannel + 16, // 15: google.ads.googleads.v17.resources.ListingGroupFilterDimension.ProductCondition.condition:type_name -> google.ads.googleads.v17.enums.ListingGroupFilterProductConditionEnum.ListingGroupFilterProductCondition + 17, // 16: google.ads.googleads.v17.resources.ListingGroupFilterDimension.ProductCustomAttribute.index:type_name -> google.ads.googleads.v17.enums.ListingGroupFilterCustomAttributeIndexEnum.ListingGroupFilterCustomAttributeIndex + 18, // 17: google.ads.googleads.v17.resources.ListingGroupFilterDimension.ProductType.level:type_name -> google.ads.googleads.v17.enums.ListingGroupFilterProductTypeLevelEnum.ListingGroupFilterProductTypeLevel + 11, // 18: google.ads.googleads.v17.resources.ListingGroupFilterDimension.Webpage.conditions:type_name -> google.ads.googleads.v17.resources.ListingGroupFilterDimension.WebpageCondition 19, // [19:19] is the sub-list for method output_type 19, // [19:19] is the sub-list for method input_type 19, // [19:19] is the sub-list for extension type_name @@ -1251,13 +1251,13 @@ var file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pro 0, // [0:19] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_init() } -func file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_init() { - if File_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto != nil { +func init() { file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_init() } +func file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_init() { + if File_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AssetGroupListingGroupFilter); i { case 0: return &v.state @@ -1269,7 +1269,7 @@ func file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pr return nil } } - file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListingGroupFilterDimensionPath); i { case 0: return &v.state @@ -1281,7 +1281,7 @@ func file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pr return nil } } - file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListingGroupFilterDimension); i { case 0: return &v.state @@ -1293,7 +1293,7 @@ func file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pr return nil } } - file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListingGroupFilterDimension_ProductCategory); i { case 0: return &v.state @@ -1305,7 +1305,7 @@ func file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pr return nil } } - file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListingGroupFilterDimension_ProductBrand); i { case 0: return &v.state @@ -1317,7 +1317,7 @@ func file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pr return nil } } - file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListingGroupFilterDimension_ProductChannel); i { case 0: return &v.state @@ -1329,7 +1329,7 @@ func file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pr return nil } } - file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListingGroupFilterDimension_ProductCondition); i { case 0: return &v.state @@ -1341,7 +1341,7 @@ func file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pr return nil } } - file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListingGroupFilterDimension_ProductCustomAttribute); i { case 0: return &v.state @@ -1353,7 +1353,7 @@ func file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pr return nil } } - file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListingGroupFilterDimension_ProductItemId); i { case 0: return &v.state @@ -1365,7 +1365,7 @@ func file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pr return nil } } - file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListingGroupFilterDimension_ProductType); i { case 0: return &v.state @@ -1377,7 +1377,7 @@ func file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pr return nil } } - file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListingGroupFilterDimension_Webpage); i { case 0: return &v.state @@ -1389,7 +1389,7 @@ func file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pr return nil } } - file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListingGroupFilterDimension_WebpageCondition); i { case 0: return &v.state @@ -1402,7 +1402,7 @@ func file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pr } } } - file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[2].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[2].OneofWrappers = []interface{}{ (*ListingGroupFilterDimension_ProductCategory_)(nil), (*ListingGroupFilterDimension_ProductBrand_)(nil), (*ListingGroupFilterDimension_ProductChannel_)(nil), @@ -1412,12 +1412,12 @@ func file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pr (*ListingGroupFilterDimension_ProductType_)(nil), (*ListingGroupFilterDimension_Webpage_)(nil), } - file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[3].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[4].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[7].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[8].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[9].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes[11].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[3].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[4].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[7].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[8].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[9].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes[11].OneofWrappers = []interface{}{ (*ListingGroupFilterDimension_WebpageCondition_CustomLabel)(nil), (*ListingGroupFilterDimension_WebpageCondition_UrlContains)(nil), } @@ -1425,18 +1425,18 @@ func file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_pr out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_rawDesc, NumEnums: 0, NumMessages: 12, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto = out.File - file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_goTypes = nil - file_google_ads_googleads_v16_resources_asset_group_listing_group_filter_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto = out.File + file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_goTypes = nil + file_google_ads_googleads_v17_resources_asset_group_listing_group_filter_proto_depIdxs = nil } diff --git a/resources/asset_group_product_group_view.pb.go b/resources/asset_group_product_group_view.pb.go index 67dd3197..3f63de33 100644 --- a/resources/asset_group_product_group_view.pb.go +++ b/resources/asset_group_product_group_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/asset_group_product_group_view.proto +// source: google/ads/googleads/v17/resources/asset_group_product_group_view.proto package resources @@ -55,7 +55,7 @@ type AssetGroupProductGroupView struct { func (x *AssetGroupProductGroupView) Reset() { *x = AssetGroupProductGroupView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_asset_group_product_group_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_asset_group_product_group_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68,7 +68,7 @@ func (x *AssetGroupProductGroupView) String() string { func (*AssetGroupProductGroupView) ProtoMessage() {} func (x *AssetGroupProductGroupView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_asset_group_product_group_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_asset_group_product_group_view_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 *AssetGroupProductGroupView) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetGroupProductGroupView.ProtoReflect.Descriptor instead. func (*AssetGroupProductGroupView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_asset_group_product_group_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_asset_group_product_group_view_proto_rawDescGZIP(), []int{0} } func (x *AssetGroupProductGroupView) GetResourceName() string { @@ -105,16 +105,16 @@ func (x *AssetGroupProductGroupView) GetAssetGroupListingGroupFilter() string { return "" } -var File_google_ads_googleads_v16_resources_asset_group_product_group_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_asset_group_product_group_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_asset_group_product_group_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_asset_group_product_group_view_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, 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, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 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, 0x73, 0x1a, 0x1f, 0x67, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -151,42 +151,42 @@ var file_google_ads_googleads_v16_resources_asset_group_product_group_view_proto 0x64, 0x7d, 0x7e, 0x7b, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x91, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x1f, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 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, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, + 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, 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, + 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, 0x63, 0x65, 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_asset_group_product_group_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_asset_group_product_group_view_proto_rawDescData = file_google_ads_googleads_v16_resources_asset_group_product_group_view_proto_rawDesc + file_google_ads_googleads_v17_resources_asset_group_product_group_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_asset_group_product_group_view_proto_rawDescData = file_google_ads_googleads_v17_resources_asset_group_product_group_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_asset_group_product_group_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_asset_group_product_group_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_asset_group_product_group_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_asset_group_product_group_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_asset_group_product_group_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_asset_group_product_group_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_asset_group_product_group_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_asset_group_product_group_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_asset_group_product_group_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_asset_group_product_group_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_asset_group_product_group_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_asset_group_product_group_view_proto_goTypes = []interface{}{ - (*AssetGroupProductGroupView)(nil), // 0: google.ads.googleads.v16.resources.AssetGroupProductGroupView +var file_google_ads_googleads_v17_resources_asset_group_product_group_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_asset_group_product_group_view_proto_goTypes = []interface{}{ + (*AssetGroupProductGroupView)(nil), // 0: google.ads.googleads.v17.resources.AssetGroupProductGroupView } -var file_google_ads_googleads_v16_resources_asset_group_product_group_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_asset_group_product_group_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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_resources_asset_group_product_group_view_proto 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_asset_group_product_group_view_proto_init() } -func file_google_ads_googleads_v16_resources_asset_group_product_group_view_proto_init() { - if File_google_ads_googleads_v16_resources_asset_group_product_group_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_asset_group_product_group_view_proto_init() } +func file_google_ads_googleads_v17_resources_asset_group_product_group_view_proto_init() { + if File_google_ads_googleads_v17_resources_asset_group_product_group_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_asset_group_product_group_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_asset_group_product_group_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AssetGroupProductGroupView); i { case 0: return &v.state @@ -217,18 +217,18 @@ func file_google_ads_googleads_v16_resources_asset_group_product_group_view_prot out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_asset_group_product_group_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_asset_group_product_group_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_asset_group_product_group_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_asset_group_product_group_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_asset_group_product_group_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_asset_group_product_group_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_asset_group_product_group_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_asset_group_product_group_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_asset_group_product_group_view_proto = out.File - file_google_ads_googleads_v16_resources_asset_group_product_group_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_asset_group_product_group_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_asset_group_product_group_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_asset_group_product_group_view_proto = out.File + file_google_ads_googleads_v17_resources_asset_group_product_group_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_asset_group_product_group_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_asset_group_product_group_view_proto_depIdxs = nil } diff --git a/resources/asset_group_signal.pb.go b/resources/asset_group_signal.pb.go index f64b19e2..1d9ae4d4 100644 --- a/resources/asset_group_signal.pb.go +++ b/resources/asset_group_signal.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/asset_group_signal.proto +// source: google/ads/googleads/v17/resources/asset_group_signal.proto package resources @@ -56,7 +56,7 @@ type AssetGroupSignal struct { // Output only. Approval status is the output value for search theme signal // after Google ads policy review. When using Audience signal, this field is // not used and will be absent. - ApprovalStatus enums.AssetGroupSignalApprovalStatusEnum_AssetGroupSignalApprovalStatus `protobuf:"varint,6,opt,name=approval_status,json=approvalStatus,proto3,enum=google.ads.googleads.v16.enums.AssetGroupSignalApprovalStatusEnum_AssetGroupSignalApprovalStatus" json:"approval_status,omitempty"` + ApprovalStatus enums.AssetGroupSignalApprovalStatusEnum_AssetGroupSignalApprovalStatus `protobuf:"varint,6,opt,name=approval_status,json=approvalStatus,proto3,enum=google.ads.googleads.v17.enums.AssetGroupSignalApprovalStatusEnum_AssetGroupSignalApprovalStatus" json:"approval_status,omitempty"` // Output only. Computed for SearchTheme signals. // When using Audience signal, this field is not used and will be absent. DisapprovalReasons []string `protobuf:"bytes,7,rep,name=disapproval_reasons,json=disapprovalReasons,proto3" json:"disapproval_reasons,omitempty"` @@ -72,7 +72,7 @@ type AssetGroupSignal struct { func (x *AssetGroupSignal) Reset() { *x = AssetGroupSignal{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_asset_group_signal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_asset_group_signal_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -85,7 +85,7 @@ func (x *AssetGroupSignal) String() string { func (*AssetGroupSignal) ProtoMessage() {} func (x *AssetGroupSignal) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_asset_group_signal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_asset_group_signal_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -98,7 +98,7 @@ func (x *AssetGroupSignal) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetGroupSignal.ProtoReflect.Descriptor instead. func (*AssetGroupSignal) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_asset_group_signal_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_asset_group_signal_proto_rawDescGZIP(), []int{0} } func (x *AssetGroupSignal) GetResourceName() string { @@ -179,20 +179,20 @@ func (*AssetGroupSignal_Audience) isAssetGroupSignal_Signal() {} func (*AssetGroupSignal_SearchTheme) isAssetGroupSignal_Signal() {} -var File_google_ads_googleads_v16_resources_asset_group_signal_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_asset_group_signal_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_asset_group_signal_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_asset_group_signal_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, 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, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x69, 0x67, 0x6e, 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, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 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, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, @@ -214,7 +214,7 @@ var file_google_ads_googleads_v16_resources_asset_group_signal_proto_rawDesc = [ 0x70, 0x12, 0x8f, 0x01, 0x0a, 0x0f, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x06, 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, 0x41, 0x73, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, @@ -226,12 +226,12 @@ var file_google_ads_googleads_v16_resources_asset_group_signal_proto_rawDesc = [ 0x61, 0x6c, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x73, 0x12, 0x50, 0x0a, 0x08, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x04, 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, 0x75, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x08, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x5a, 0x0a, 0x0c, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x68, 0x65, 0x6d, 0x65, 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, 0x6d, + 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, 0x54, 0x68, 0x65, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0b, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x68, 0x65, 0x6d, 0x65, 0x3a, 0x79, 0xea, 0x41, 0x76, 0x0a, 0x29, 0x67, 0x6f, @@ -244,47 +244,47 @@ var file_google_ads_googleads_v16_resources_asset_group_signal_proto_rawDesc = [ 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x08, 0x0a, 0x06, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x42, 0x87, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x15, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69, 0x67, 0x6e, 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, + 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, + 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, 0x26, + 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, + 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_asset_group_signal_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_asset_group_signal_proto_rawDescData = file_google_ads_googleads_v16_resources_asset_group_signal_proto_rawDesc + file_google_ads_googleads_v17_resources_asset_group_signal_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_asset_group_signal_proto_rawDescData = file_google_ads_googleads_v17_resources_asset_group_signal_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_asset_group_signal_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_asset_group_signal_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_asset_group_signal_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_asset_group_signal_proto_rawDescData) +func file_google_ads_googleads_v17_resources_asset_group_signal_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_asset_group_signal_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_asset_group_signal_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_asset_group_signal_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_asset_group_signal_proto_rawDescData + return file_google_ads_googleads_v17_resources_asset_group_signal_proto_rawDescData } -var file_google_ads_googleads_v16_resources_asset_group_signal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_asset_group_signal_proto_goTypes = []interface{}{ - (*AssetGroupSignal)(nil), // 0: google.ads.googleads.v16.resources.AssetGroupSignal - (enums.AssetGroupSignalApprovalStatusEnum_AssetGroupSignalApprovalStatus)(0), // 1: google.ads.googleads.v16.enums.AssetGroupSignalApprovalStatusEnum.AssetGroupSignalApprovalStatus - (*common.AudienceInfo)(nil), // 2: google.ads.googleads.v16.common.AudienceInfo - (*common.SearchThemeInfo)(nil), // 3: google.ads.googleads.v16.common.SearchThemeInfo +var file_google_ads_googleads_v17_resources_asset_group_signal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_asset_group_signal_proto_goTypes = []interface{}{ + (*AssetGroupSignal)(nil), // 0: google.ads.googleads.v17.resources.AssetGroupSignal + (enums.AssetGroupSignalApprovalStatusEnum_AssetGroupSignalApprovalStatus)(0), // 1: google.ads.googleads.v17.enums.AssetGroupSignalApprovalStatusEnum.AssetGroupSignalApprovalStatus + (*common.AudienceInfo)(nil), // 2: google.ads.googleads.v17.common.AudienceInfo + (*common.SearchThemeInfo)(nil), // 3: google.ads.googleads.v17.common.SearchThemeInfo } -var file_google_ads_googleads_v16_resources_asset_group_signal_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.AssetGroupSignal.approval_status:type_name -> google.ads.googleads.v16.enums.AssetGroupSignalApprovalStatusEnum.AssetGroupSignalApprovalStatus - 2, // 1: google.ads.googleads.v16.resources.AssetGroupSignal.audience:type_name -> google.ads.googleads.v16.common.AudienceInfo - 3, // 2: google.ads.googleads.v16.resources.AssetGroupSignal.search_theme:type_name -> google.ads.googleads.v16.common.SearchThemeInfo +var file_google_ads_googleads_v17_resources_asset_group_signal_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.AssetGroupSignal.approval_status:type_name -> google.ads.googleads.v17.enums.AssetGroupSignalApprovalStatusEnum.AssetGroupSignalApprovalStatus + 2, // 1: google.ads.googleads.v17.resources.AssetGroupSignal.audience:type_name -> google.ads.googleads.v17.common.AudienceInfo + 3, // 2: google.ads.googleads.v17.resources.AssetGroupSignal.search_theme:type_name -> google.ads.googleads.v17.common.SearchThemeInfo 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_resources_asset_group_signal_proto_depIdxs = [ 0, // [0:3] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_asset_group_signal_proto_init() } -func file_google_ads_googleads_v16_resources_asset_group_signal_proto_init() { - if File_google_ads_googleads_v16_resources_asset_group_signal_proto != nil { +func init() { file_google_ads_googleads_v17_resources_asset_group_signal_proto_init() } +func file_google_ads_googleads_v17_resources_asset_group_signal_proto_init() { + if File_google_ads_googleads_v17_resources_asset_group_signal_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_asset_group_signal_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_asset_group_signal_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AssetGroupSignal); i { case 0: return &v.state @@ -311,7 +311,7 @@ func file_google_ads_googleads_v16_resources_asset_group_signal_proto_init() { } } } - file_google_ads_googleads_v16_resources_asset_group_signal_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_asset_group_signal_proto_msgTypes[0].OneofWrappers = []interface{}{ (*AssetGroupSignal_Audience)(nil), (*AssetGroupSignal_SearchTheme)(nil), } @@ -319,18 +319,18 @@ func file_google_ads_googleads_v16_resources_asset_group_signal_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_asset_group_signal_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_asset_group_signal_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_asset_group_signal_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_asset_group_signal_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_asset_group_signal_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_asset_group_signal_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_asset_group_signal_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_asset_group_signal_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_asset_group_signal_proto = out.File - file_google_ads_googleads_v16_resources_asset_group_signal_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_asset_group_signal_proto_goTypes = nil - file_google_ads_googleads_v16_resources_asset_group_signal_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_asset_group_signal_proto = out.File + file_google_ads_googleads_v17_resources_asset_group_signal_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_asset_group_signal_proto_goTypes = nil + file_google_ads_googleads_v17_resources_asset_group_signal_proto_depIdxs = nil } diff --git a/resources/asset_group_top_combination_view.pb.go b/resources/asset_group_top_combination_view.pb.go index acbaaf66..38db94b8 100644 --- a/resources/asset_group_top_combination_view.pb.go +++ b/resources/asset_group_top_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/asset_group_top_combination_view.proto +// source: google/ads/googleads/v17/resources/asset_group_top_combination_view.proto package resources @@ -53,7 +53,7 @@ type AssetGroupTopCombinationView struct { func (x *AssetGroupTopCombinationView) Reset() { *x = AssetGroupTopCombinationView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_asset_group_top_combination_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -66,7 +66,7 @@ func (x *AssetGroupTopCombinationView) String() string { func (*AssetGroupTopCombinationView) ProtoMessage() {} func (x *AssetGroupTopCombinationView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_asset_group_top_combination_view_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 *AssetGroupTopCombinationView) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetGroupTopCombinationView.ProtoReflect.Descriptor instead. func (*AssetGroupTopCombinationView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_asset_group_top_combination_view_proto_rawDescGZIP(), []int{0} } func (x *AssetGroupTopCombinationView) GetResourceName() string { @@ -109,7 +109,7 @@ type AssetGroupAssetCombinationData struct { func (x *AssetGroupAssetCombinationData) Reset() { *x = AssetGroupAssetCombinationData{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_asset_group_top_combination_view_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -122,7 +122,7 @@ func (x *AssetGroupAssetCombinationData) String() string { func (*AssetGroupAssetCombinationData) ProtoMessage() {} func (x *AssetGroupAssetCombinationData) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_asset_group_top_combination_view_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 *AssetGroupAssetCombinationData) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetGroupAssetCombinationData.ProtoReflect.Descriptor instead. func (*AssetGroupAssetCombinationData) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_resources_asset_group_top_combination_view_proto_rawDescGZIP(), []int{1} } func (x *AssetGroupAssetCombinationData) GetAssetCombinationServedAssets() []*common.AssetUsage { @@ -145,18 +145,18 @@ func (x *AssetGroupAssetCombinationData) GetAssetCombinationServedAssets() []*co return nil } -var File_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_asset_group_top_combination_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_asset_group_top_combination_view_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, 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, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x74, 0x6f, 0x70, 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, 0x73, 0x1a, + 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, 0x6e, + 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, 0x70, 0x72, @@ -174,7 +174,7 @@ var file_google_ads_googleads_v16_resources_asset_group_top_combination_view_pro 0x6f, 0x75, 0x70, 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 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, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x43, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x19, 0x61, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x54, @@ -195,51 +195,51 @@ var file_google_ads_googleads_v16_resources_asset_group_top_combination_view_pro 0x6d, 0x62, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x64, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 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, 0x6d, 0x6f, 0x6e, 0x2e, + 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, 0x1c, 0x61, 0x73, 0x73, 0x65, 0x74, 0x43, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x42, 0x93, 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, + 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, 0x21, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x54, 0x6f, 0x70, 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, 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_asset_group_top_combination_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto_rawDescData = file_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto_rawDesc + file_google_ads_googleads_v17_resources_asset_group_top_combination_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_asset_group_top_combination_view_proto_rawDescData = file_google_ads_googleads_v17_resources_asset_group_top_combination_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_asset_group_top_combination_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_asset_group_top_combination_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_asset_group_top_combination_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_asset_group_top_combination_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_asset_group_top_combination_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto_goTypes = []interface{}{ - (*AssetGroupTopCombinationView)(nil), // 0: google.ads.googleads.v16.resources.AssetGroupTopCombinationView - (*AssetGroupAssetCombinationData)(nil), // 1: google.ads.googleads.v16.resources.AssetGroupAssetCombinationData - (*common.AssetUsage)(nil), // 2: google.ads.googleads.v16.common.AssetUsage +var file_google_ads_googleads_v17_resources_asset_group_top_combination_view_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v17_resources_asset_group_top_combination_view_proto_goTypes = []interface{}{ + (*AssetGroupTopCombinationView)(nil), // 0: google.ads.googleads.v17.resources.AssetGroupTopCombinationView + (*AssetGroupAssetCombinationData)(nil), // 1: google.ads.googleads.v17.resources.AssetGroupAssetCombinationData + (*common.AssetUsage)(nil), // 2: google.ads.googleads.v17.common.AssetUsage } -var file_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.AssetGroupTopCombinationView.asset_group_top_combinations:type_name -> google.ads.googleads.v16.resources.AssetGroupAssetCombinationData - 2, // 1: google.ads.googleads.v16.resources.AssetGroupAssetCombinationData.asset_combination_served_assets:type_name -> google.ads.googleads.v16.common.AssetUsage +var file_google_ads_googleads_v17_resources_asset_group_top_combination_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.AssetGroupTopCombinationView.asset_group_top_combinations:type_name -> google.ads.googleads.v17.resources.AssetGroupAssetCombinationData + 2, // 1: google.ads.googleads.v17.resources.AssetGroupAssetCombinationData.asset_combination_served_assets:type_name -> google.ads.googleads.v17.common.AssetUsage 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 @@ -247,13 +247,13 @@ var file_google_ads_googleads_v16_resources_asset_group_top_combination_view_pro 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto_init() } -func file_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto_init() { - if File_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_asset_group_top_combination_view_proto_init() } +func file_google_ads_googleads_v17_resources_asset_group_top_combination_view_proto_init() { + if File_google_ads_googleads_v17_resources_asset_group_top_combination_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_asset_group_top_combination_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AssetGroupTopCombinationView); i { case 0: return &v.state @@ -265,7 +265,7 @@ func file_google_ads_googleads_v16_resources_asset_group_top_combination_view_pr return nil } } - file_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_asset_group_top_combination_view_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AssetGroupAssetCombinationData); i { case 0: return &v.state @@ -282,18 +282,18 @@ func file_google_ads_googleads_v16_resources_asset_group_top_combination_view_pr out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_asset_group_top_combination_view_proto_rawDesc, NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_asset_group_top_combination_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_asset_group_top_combination_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_asset_group_top_combination_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto = out.File - file_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_asset_group_top_combination_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_asset_group_top_combination_view_proto = out.File + file_google_ads_googleads_v17_resources_asset_group_top_combination_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_asset_group_top_combination_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_asset_group_top_combination_view_proto_depIdxs = nil } diff --git a/resources/asset_set.pb.go b/resources/asset_set.pb.go index 87580b30..6e6e9902 100644 --- a/resources/asset_set.pb.go +++ b/resources/asset_set.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/asset_set.proto +// source: google/ads/googleads/v17/resources/asset_set.proto package resources @@ -55,9 +55,9 @@ type AssetSet struct { // 1 and maximum length of 128. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` // Required. Immutable. The type of the asset set. Required. - Type enums.AssetSetTypeEnum_AssetSetType `protobuf:"varint,3,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.AssetSetTypeEnum_AssetSetType" json:"type,omitempty"` + Type enums.AssetSetTypeEnum_AssetSetType `protobuf:"varint,3,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.AssetSetTypeEnum_AssetSetType" json:"type,omitempty"` // Output only. The status of the asset set. Read-only. - Status enums.AssetSetStatusEnum_AssetSetStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.AssetSetStatusEnum_AssetSetStatus" json:"status,omitempty"` + Status enums.AssetSetStatusEnum_AssetSetStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.AssetSetStatusEnum_AssetSetStatus" json:"status,omitempty"` // Merchant ID and Feed Label from Google Merchant Center. MerchantCenterFeed *AssetSet_MerchantCenterFeed `protobuf:"bytes,5,opt,name=merchant_center_feed,json=merchantCenterFeed,proto3" json:"merchant_center_feed,omitempty"` // Immutable. Parent asset set id for the asset set where the elements of this @@ -82,7 +82,7 @@ type AssetSet struct { func (x *AssetSet) Reset() { *x = AssetSet{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_asset_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_asset_set_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -95,7 +95,7 @@ func (x *AssetSet) String() string { func (*AssetSet) ProtoMessage() {} func (x *AssetSet) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_asset_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_asset_set_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -108,7 +108,7 @@ func (x *AssetSet) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetSet.ProtoReflect.Descriptor instead. func (*AssetSet) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_asset_set_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_asset_set_proto_rawDescGZIP(), []int{0} } func (x *AssetSet) GetId() int64 { @@ -238,7 +238,7 @@ type AssetSet_MerchantCenterFeed struct { func (x *AssetSet_MerchantCenterFeed) Reset() { *x = AssetSet_MerchantCenterFeed{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_asset_set_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_asset_set_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -251,7 +251,7 @@ func (x *AssetSet_MerchantCenterFeed) String() string { func (*AssetSet_MerchantCenterFeed) ProtoMessage() {} func (x *AssetSet_MerchantCenterFeed) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_asset_set_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_asset_set_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -264,7 +264,7 @@ func (x *AssetSet_MerchantCenterFeed) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetSet_MerchantCenterFeed.ProtoReflect.Descriptor instead. func (*AssetSet_MerchantCenterFeed) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_asset_set_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v17_resources_asset_set_proto_rawDescGZIP(), []int{0, 0} } func (x *AssetSet_MerchantCenterFeed) GetMerchantId() int64 { @@ -297,7 +297,7 @@ type AssetSet_HotelPropertyData struct { func (x *AssetSet_HotelPropertyData) Reset() { *x = AssetSet_HotelPropertyData{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_asset_set_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_asset_set_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -310,7 +310,7 @@ func (x *AssetSet_HotelPropertyData) String() string { func (*AssetSet_HotelPropertyData) ProtoMessage() {} func (x *AssetSet_HotelPropertyData) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_asset_set_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_asset_set_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -323,7 +323,7 @@ func (x *AssetSet_HotelPropertyData) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetSet_HotelPropertyData.ProtoReflect.Descriptor instead. func (*AssetSet_HotelPropertyData) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_asset_set_proto_rawDescGZIP(), []int{0, 1} + return file_google_ads_googleads_v17_resources_asset_set_proto_rawDescGZIP(), []int{0, 1} } func (x *AssetSet_HotelPropertyData) GetHotelCenterId() int64 { @@ -340,23 +340,23 @@ func (x *AssetSet_HotelPropertyData) GetPartnerName() string { return "" } -var File_google_ads_googleads_v16_resources_asset_set_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_asset_set_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_asset_set_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_asset_set_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, 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, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 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, + 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, 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, 0x6e, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, + 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, 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, + 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, 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, + 0x64, 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, 0x73, 0x65, 0x74, 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, @@ -373,20 +373,20 @@ var file_google_ads_googleads_v16_resources_asset_set_proto_rawDesc = []byte{ 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x59, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 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, 0x6e, 0x75, 0x6d, + 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, 0x42, 0x06, 0xe0, 0x41, 0x02, 0xe0, 0x41, 0x05, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x5e, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 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, 0x41, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x71, 0x0a, 0x14, 0x6d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x5f, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x18, 0x05, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x2e, 0x4d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, 0x52, 0x12, 0x6d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, @@ -398,20 +398,20 @@ var file_google_ads_googleads_v16_resources_asset_set_proto_rawDesc = []byte{ 0x12, 0x73, 0x0a, 0x13, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0x0b, 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, 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, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x2e, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x44, 0x61, 0x74, 0x61, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x11, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x44, 0x61, 0x74, 0x61, 0x12, 0x51, 0x0a, 0x0c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x18, 0x07, 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, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x48, 0x00, 0x52, 0x0b, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x12, 0x86, 0x01, 0x0a, 0x1f, 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, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x08, 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, 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, 0x48, 0x00, 0x52, 0x1c, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x50, 0x72, 0x6f, @@ -419,7 +419,7 @@ var file_google_ads_googleads_v16_resources_asset_set_proto_rawDesc = []byte{ 0x70, 0x12, 0x67, 0x0a, 0x14, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x09, 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, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x48, 0x00, 0x52, 0x12, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x1a, 0x72, 0x0a, 0x12, 0x4d, 0x65, @@ -448,54 +448,54 @@ var file_google_ads_googleads_v16_resources_asset_set_proto_rawDesc = []byte{ 0x64, 0x7d, 0x42, 0x12, 0x0a, 0x10, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x42, 0xff, 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, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x0d, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 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, 0x65, 0x73, 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, + 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, 0x36, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 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, + 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_asset_set_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_asset_set_proto_rawDescData = file_google_ads_googleads_v16_resources_asset_set_proto_rawDesc + file_google_ads_googleads_v17_resources_asset_set_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_asset_set_proto_rawDescData = file_google_ads_googleads_v17_resources_asset_set_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_asset_set_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_asset_set_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_asset_set_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_asset_set_proto_rawDescData) +func file_google_ads_googleads_v17_resources_asset_set_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_asset_set_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_asset_set_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_asset_set_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_asset_set_proto_rawDescData -} - -var file_google_ads_googleads_v16_resources_asset_set_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_google_ads_googleads_v16_resources_asset_set_proto_goTypes = []interface{}{ - (*AssetSet)(nil), // 0: google.ads.googleads.v16.resources.AssetSet - (*AssetSet_MerchantCenterFeed)(nil), // 1: google.ads.googleads.v16.resources.AssetSet.MerchantCenterFeed - (*AssetSet_HotelPropertyData)(nil), // 2: google.ads.googleads.v16.resources.AssetSet.HotelPropertyData - (enums.AssetSetTypeEnum_AssetSetType)(0), // 3: google.ads.googleads.v16.enums.AssetSetTypeEnum.AssetSetType - (enums.AssetSetStatusEnum_AssetSetStatus)(0), // 4: google.ads.googleads.v16.enums.AssetSetStatusEnum.AssetSetStatus - (*common.LocationSet)(nil), // 5: google.ads.googleads.v16.common.LocationSet - (*common.BusinessProfileLocationGroup)(nil), // 6: google.ads.googleads.v16.common.BusinessProfileLocationGroup - (*common.ChainLocationGroup)(nil), // 7: google.ads.googleads.v16.common.ChainLocationGroup -} -var file_google_ads_googleads_v16_resources_asset_set_proto_depIdxs = []int32{ - 3, // 0: google.ads.googleads.v16.resources.AssetSet.type:type_name -> google.ads.googleads.v16.enums.AssetSetTypeEnum.AssetSetType - 4, // 1: google.ads.googleads.v16.resources.AssetSet.status:type_name -> google.ads.googleads.v16.enums.AssetSetStatusEnum.AssetSetStatus - 1, // 2: google.ads.googleads.v16.resources.AssetSet.merchant_center_feed:type_name -> google.ads.googleads.v16.resources.AssetSet.MerchantCenterFeed - 2, // 3: google.ads.googleads.v16.resources.AssetSet.hotel_property_data:type_name -> google.ads.googleads.v16.resources.AssetSet.HotelPropertyData - 5, // 4: google.ads.googleads.v16.resources.AssetSet.location_set:type_name -> google.ads.googleads.v16.common.LocationSet - 6, // 5: google.ads.googleads.v16.resources.AssetSet.business_profile_location_group:type_name -> google.ads.googleads.v16.common.BusinessProfileLocationGroup - 7, // 6: google.ads.googleads.v16.resources.AssetSet.chain_location_group:type_name -> google.ads.googleads.v16.common.ChainLocationGroup + return file_google_ads_googleads_v17_resources_asset_set_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_asset_set_proto_msgTypes = make([]protoimpl.MessageInfo, 3) +var file_google_ads_googleads_v17_resources_asset_set_proto_goTypes = []interface{}{ + (*AssetSet)(nil), // 0: google.ads.googleads.v17.resources.AssetSet + (*AssetSet_MerchantCenterFeed)(nil), // 1: google.ads.googleads.v17.resources.AssetSet.MerchantCenterFeed + (*AssetSet_HotelPropertyData)(nil), // 2: google.ads.googleads.v17.resources.AssetSet.HotelPropertyData + (enums.AssetSetTypeEnum_AssetSetType)(0), // 3: google.ads.googleads.v17.enums.AssetSetTypeEnum.AssetSetType + (enums.AssetSetStatusEnum_AssetSetStatus)(0), // 4: google.ads.googleads.v17.enums.AssetSetStatusEnum.AssetSetStatus + (*common.LocationSet)(nil), // 5: google.ads.googleads.v17.common.LocationSet + (*common.BusinessProfileLocationGroup)(nil), // 6: google.ads.googleads.v17.common.BusinessProfileLocationGroup + (*common.ChainLocationGroup)(nil), // 7: google.ads.googleads.v17.common.ChainLocationGroup +} +var file_google_ads_googleads_v17_resources_asset_set_proto_depIdxs = []int32{ + 3, // 0: google.ads.googleads.v17.resources.AssetSet.type:type_name -> google.ads.googleads.v17.enums.AssetSetTypeEnum.AssetSetType + 4, // 1: google.ads.googleads.v17.resources.AssetSet.status:type_name -> google.ads.googleads.v17.enums.AssetSetStatusEnum.AssetSetStatus + 1, // 2: google.ads.googleads.v17.resources.AssetSet.merchant_center_feed:type_name -> google.ads.googleads.v17.resources.AssetSet.MerchantCenterFeed + 2, // 3: google.ads.googleads.v17.resources.AssetSet.hotel_property_data:type_name -> google.ads.googleads.v17.resources.AssetSet.HotelPropertyData + 5, // 4: google.ads.googleads.v17.resources.AssetSet.location_set:type_name -> google.ads.googleads.v17.common.LocationSet + 6, // 5: google.ads.googleads.v17.resources.AssetSet.business_profile_location_group:type_name -> google.ads.googleads.v17.common.BusinessProfileLocationGroup + 7, // 6: google.ads.googleads.v17.resources.AssetSet.chain_location_group:type_name -> google.ads.googleads.v17.common.ChainLocationGroup 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 @@ -503,13 +503,13 @@ var file_google_ads_googleads_v16_resources_asset_set_proto_depIdxs = []int32{ 0, // [0:7] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_asset_set_proto_init() } -func file_google_ads_googleads_v16_resources_asset_set_proto_init() { - if File_google_ads_googleads_v16_resources_asset_set_proto != nil { +func init() { file_google_ads_googleads_v17_resources_asset_set_proto_init() } +func file_google_ads_googleads_v17_resources_asset_set_proto_init() { + if File_google_ads_googleads_v17_resources_asset_set_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_asset_set_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_asset_set_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AssetSet); i { case 0: return &v.state @@ -521,7 +521,7 @@ func file_google_ads_googleads_v16_resources_asset_set_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_asset_set_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_asset_set_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AssetSet_MerchantCenterFeed); i { case 0: return &v.state @@ -533,7 +533,7 @@ func file_google_ads_googleads_v16_resources_asset_set_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_asset_set_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_asset_set_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AssetSet_HotelPropertyData); i { case 0: return &v.state @@ -546,29 +546,29 @@ func file_google_ads_googleads_v16_resources_asset_set_proto_init() { } } } - file_google_ads_googleads_v16_resources_asset_set_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_asset_set_proto_msgTypes[0].OneofWrappers = []interface{}{ (*AssetSet_LocationSet)(nil), (*AssetSet_BusinessProfileLocationGroup)(nil), (*AssetSet_ChainLocationGroup)(nil), } - file_google_ads_googleads_v16_resources_asset_set_proto_msgTypes[1].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_asset_set_proto_msgTypes[2].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_asset_set_proto_msgTypes[1].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_asset_set_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_resources_asset_set_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_asset_set_proto_rawDesc, NumEnums: 0, NumMessages: 3, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_asset_set_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_asset_set_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_asset_set_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_asset_set_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_asset_set_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_asset_set_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_asset_set_proto = out.File - file_google_ads_googleads_v16_resources_asset_set_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_asset_set_proto_goTypes = nil - file_google_ads_googleads_v16_resources_asset_set_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_asset_set_proto = out.File + file_google_ads_googleads_v17_resources_asset_set_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_asset_set_proto_goTypes = nil + file_google_ads_googleads_v17_resources_asset_set_proto_depIdxs = nil } diff --git a/resources/asset_set_asset.pb.go b/resources/asset_set_asset.pb.go index 0351b493..2d03ff83 100644 --- a/resources/asset_set_asset.pb.go +++ b/resources/asset_set_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/resources/asset_set_asset.proto +// source: google/ads/googleads/v17/resources/asset_set_asset.proto package resources @@ -53,13 +53,13 @@ type AssetSetAsset struct { // Immutable. The asset which this asset set asset is linking to. Asset string `protobuf:"bytes,3,opt,name=asset,proto3" json:"asset,omitempty"` // Output only. The status of the asset set asset. Read-only. - Status enums.AssetSetAssetStatusEnum_AssetSetAssetStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.AssetSetAssetStatusEnum_AssetSetAssetStatus" json:"status,omitempty"` + Status enums.AssetSetAssetStatusEnum_AssetSetAssetStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.AssetSetAssetStatusEnum_AssetSetAssetStatus" json:"status,omitempty"` } func (x *AssetSetAsset) Reset() { *x = AssetSetAsset{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_asset_set_asset_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_asset_set_asset_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -72,7 +72,7 @@ func (x *AssetSetAsset) String() string { func (*AssetSetAsset) ProtoMessage() {} func (x *AssetSetAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_asset_set_asset_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_asset_set_asset_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85,7 +85,7 @@ func (x *AssetSetAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetSetAsset.ProtoReflect.Descriptor instead. func (*AssetSetAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_asset_set_asset_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_asset_set_asset_proto_rawDescGZIP(), []int{0} } func (x *AssetSetAsset) GetResourceName() string { @@ -116,17 +116,17 @@ func (x *AssetSetAsset) GetStatus() enums.AssetSetAssetStatusEnum_AssetSetAssetS return enums.AssetSetAssetStatusEnum_AssetSetAssetStatus(0) } -var File_google_ads_googleads_v16_resources_asset_set_asset_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_asset_set_asset_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_asset_set_asset_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_asset_set_asset_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, 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, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x61, 0x73, 0x73, 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, 0x3b, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x61, + 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, @@ -149,7 +149,7 @@ var file_google_ads_googleads_v16_resources_asset_set_asset_proto_rawDesc = []by 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, 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, + 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, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, @@ -162,43 +162,43 @@ var file_google_ads_googleads_v16_resources_asset_set_asset_proto_rawDesc = []by 0x65, 0x74, 0x73, 0x2f, 0x7b, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x69, 0x64, 0x7d, 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, + 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, 0x12, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 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, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 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, 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, 0x26, 0x47, 0x6f, + 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, + 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_asset_set_asset_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_asset_set_asset_proto_rawDescData = file_google_ads_googleads_v16_resources_asset_set_asset_proto_rawDesc + file_google_ads_googleads_v17_resources_asset_set_asset_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_asset_set_asset_proto_rawDescData = file_google_ads_googleads_v17_resources_asset_set_asset_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_asset_set_asset_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_asset_set_asset_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_asset_set_asset_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_asset_set_asset_proto_rawDescData) +func file_google_ads_googleads_v17_resources_asset_set_asset_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_asset_set_asset_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_asset_set_asset_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_asset_set_asset_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_asset_set_asset_proto_rawDescData + return file_google_ads_googleads_v17_resources_asset_set_asset_proto_rawDescData } -var file_google_ads_googleads_v16_resources_asset_set_asset_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_asset_set_asset_proto_goTypes = []interface{}{ - (*AssetSetAsset)(nil), // 0: google.ads.googleads.v16.resources.AssetSetAsset - (enums.AssetSetAssetStatusEnum_AssetSetAssetStatus)(0), // 1: google.ads.googleads.v16.enums.AssetSetAssetStatusEnum.AssetSetAssetStatus +var file_google_ads_googleads_v17_resources_asset_set_asset_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_asset_set_asset_proto_goTypes = []interface{}{ + (*AssetSetAsset)(nil), // 0: google.ads.googleads.v17.resources.AssetSetAsset + (enums.AssetSetAssetStatusEnum_AssetSetAssetStatus)(0), // 1: google.ads.googleads.v17.enums.AssetSetAssetStatusEnum.AssetSetAssetStatus } -var file_google_ads_googleads_v16_resources_asset_set_asset_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.AssetSetAsset.status:type_name -> google.ads.googleads.v16.enums.AssetSetAssetStatusEnum.AssetSetAssetStatus +var file_google_ads_googleads_v17_resources_asset_set_asset_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.AssetSetAsset.status:type_name -> google.ads.googleads.v17.enums.AssetSetAssetStatusEnum.AssetSetAssetStatus 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_asset_set_asset_proto_depIdxs = []in 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_asset_set_asset_proto_init() } -func file_google_ads_googleads_v16_resources_asset_set_asset_proto_init() { - if File_google_ads_googleads_v16_resources_asset_set_asset_proto != nil { +func init() { file_google_ads_googleads_v17_resources_asset_set_asset_proto_init() } +func file_google_ads_googleads_v17_resources_asset_set_asset_proto_init() { + if File_google_ads_googleads_v17_resources_asset_set_asset_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_asset_set_asset_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_asset_set_asset_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AssetSetAsset); i { case 0: return &v.state @@ -229,18 +229,18 @@ func file_google_ads_googleads_v16_resources_asset_set_asset_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_asset_set_asset_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_asset_set_asset_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_asset_set_asset_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_asset_set_asset_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_asset_set_asset_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_asset_set_asset_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_asset_set_asset_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_asset_set_asset_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_asset_set_asset_proto = out.File - file_google_ads_googleads_v16_resources_asset_set_asset_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_asset_set_asset_proto_goTypes = nil - file_google_ads_googleads_v16_resources_asset_set_asset_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_asset_set_asset_proto = out.File + file_google_ads_googleads_v17_resources_asset_set_asset_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_asset_set_asset_proto_goTypes = nil + file_google_ads_googleads_v17_resources_asset_set_asset_proto_depIdxs = nil } diff --git a/resources/asset_set_type_view.pb.go b/resources/asset_set_type_view.pb.go index 485b45a9..04692772 100644 --- a/resources/asset_set_type_view.pb.go +++ b/resources/asset_set_type_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/asset_set_type_view.proto +// source: google/ads/googleads/v17/resources/asset_set_type_view.proto package resources @@ -51,13 +51,13 @@ type AssetSetTypeView struct { // `customers/{customer_id}/assetSetTypeViews/{asset_set_type}` ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` // Output only. The asset set type of the asset set type view. - AssetSetType enums.AssetSetTypeEnum_AssetSetType `protobuf:"varint,3,opt,name=asset_set_type,json=assetSetType,proto3,enum=google.ads.googleads.v16.enums.AssetSetTypeEnum_AssetSetType" json:"asset_set_type,omitempty"` + AssetSetType enums.AssetSetTypeEnum_AssetSetType `protobuf:"varint,3,opt,name=asset_set_type,json=assetSetType,proto3,enum=google.ads.googleads.v17.enums.AssetSetTypeEnum_AssetSetType" json:"asset_set_type,omitempty"` } func (x *AssetSetTypeView) Reset() { *x = AssetSetTypeView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_asset_set_type_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_asset_set_type_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -70,7 +70,7 @@ func (x *AssetSetTypeView) String() string { func (*AssetSetTypeView) ProtoMessage() {} func (x *AssetSetTypeView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_asset_set_type_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_asset_set_type_view_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 *AssetSetTypeView) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetSetTypeView.ProtoReflect.Descriptor instead. func (*AssetSetTypeView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_asset_set_type_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_asset_set_type_view_proto_rawDescGZIP(), []int{0} } func (x *AssetSetTypeView) GetResourceName() string { @@ -100,17 +100,17 @@ func (x *AssetSetTypeView) GetAssetSetType() enums.AssetSetTypeEnum_AssetSetType return enums.AssetSetTypeEnum_AssetSetType(0) } -var File_google_ads_googleads_v16_resources_asset_set_type_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_asset_set_type_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_asset_set_type_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_asset_set_type_view_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, 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, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 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, 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, + 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, 0x73, 0x65, 0x74, 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, @@ -126,7 +126,7 @@ var file_google_ads_googleads_v16_resources_asset_set_type_view_proto_rawDesc = 0x12, 0x68, 0x0a, 0x0e, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 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, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, + 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0c, 0x61, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x3a, 0x6a, 0xea, 0x41, 0x67, 0x0a, @@ -138,43 +138,43 @@ var file_google_ads_googleads_v16_resources_asset_set_type_view_proto_rawDesc = 0x56, 0x69, 0x65, 0x77, 0x73, 0x2f, 0x7b, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x7d, 0x42, 0x87, 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, 0x15, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 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, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, + 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, 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, + 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, 0x63, 0x65, 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_asset_set_type_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_asset_set_type_view_proto_rawDescData = file_google_ads_googleads_v16_resources_asset_set_type_view_proto_rawDesc + file_google_ads_googleads_v17_resources_asset_set_type_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_asset_set_type_view_proto_rawDescData = file_google_ads_googleads_v17_resources_asset_set_type_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_asset_set_type_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_asset_set_type_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_asset_set_type_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_asset_set_type_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_asset_set_type_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_asset_set_type_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_asset_set_type_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_asset_set_type_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_asset_set_type_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_asset_set_type_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_asset_set_type_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_asset_set_type_view_proto_goTypes = []interface{}{ - (*AssetSetTypeView)(nil), // 0: google.ads.googleads.v16.resources.AssetSetTypeView - (enums.AssetSetTypeEnum_AssetSetType)(0), // 1: google.ads.googleads.v16.enums.AssetSetTypeEnum.AssetSetType +var file_google_ads_googleads_v17_resources_asset_set_type_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_asset_set_type_view_proto_goTypes = []interface{}{ + (*AssetSetTypeView)(nil), // 0: google.ads.googleads.v17.resources.AssetSetTypeView + (enums.AssetSetTypeEnum_AssetSetType)(0), // 1: google.ads.googleads.v17.enums.AssetSetTypeEnum.AssetSetType } -var file_google_ads_googleads_v16_resources_asset_set_type_view_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.AssetSetTypeView.asset_set_type:type_name -> google.ads.googleads.v16.enums.AssetSetTypeEnum.AssetSetType +var file_google_ads_googleads_v17_resources_asset_set_type_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.AssetSetTypeView.asset_set_type:type_name -> google.ads.googleads.v17.enums.AssetSetTypeEnum.AssetSetType 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 @@ -182,13 +182,13 @@ var file_google_ads_googleads_v16_resources_asset_set_type_view_proto_depIdxs = 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_asset_set_type_view_proto_init() } -func file_google_ads_googleads_v16_resources_asset_set_type_view_proto_init() { - if File_google_ads_googleads_v16_resources_asset_set_type_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_asset_set_type_view_proto_init() } +func file_google_ads_googleads_v17_resources_asset_set_type_view_proto_init() { + if File_google_ads_googleads_v17_resources_asset_set_type_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_asset_set_type_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_asset_set_type_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AssetSetTypeView); i { case 0: return &v.state @@ -205,18 +205,18 @@ func file_google_ads_googleads_v16_resources_asset_set_type_view_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_asset_set_type_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_asset_set_type_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_asset_set_type_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_asset_set_type_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_asset_set_type_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_asset_set_type_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_asset_set_type_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_asset_set_type_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_asset_set_type_view_proto = out.File - file_google_ads_googleads_v16_resources_asset_set_type_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_asset_set_type_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_asset_set_type_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_asset_set_type_view_proto = out.File + file_google_ads_googleads_v17_resources_asset_set_type_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_asset_set_type_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_asset_set_type_view_proto_depIdxs = nil } diff --git a/resources/audience.pb.go b/resources/audience.pb.go index db86ff71..9172d119 100644 --- a/resources/audience.pb.go +++ b/resources/audience.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/audience.proto +// source: google/ads/googleads/v17/resources/audience.proto package resources @@ -55,7 +55,7 @@ type Audience struct { Id int64 `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"` // Output only. Status of this audience. Indicates whether the audience // is enabled or removed. - Status enums.AudienceStatusEnum_AudienceStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.AudienceStatusEnum_AudienceStatus" json:"status,omitempty"` + Status enums.AudienceStatusEnum_AudienceStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.AudienceStatusEnum_AudienceStatus" json:"status,omitempty"` // Name of the audience. It should be unique across all audiences within the // account. It must have a minimum length of 1 and maximum length of 255. // Required when scope is not set or is set to CUSTOMER. Cannot be set or @@ -71,7 +71,7 @@ type Audience struct { // CUSTOMER. Audiences can be created with a scope of ASSET_GROUP for // exclusive use by a single asset_group. Scope may change from ASSET_GROUP to // CUSTOMER but not from CUSTOMER to ASSET_GROUP. - Scope enums.AudienceScopeEnum_AudienceScope `protobuf:"varint,8,opt,name=scope,proto3,enum=google.ads.googleads.v16.enums.AudienceScopeEnum_AudienceScope" json:"scope,omitempty"` + Scope enums.AudienceScopeEnum_AudienceScope `protobuf:"varint,8,opt,name=scope,proto3,enum=google.ads.googleads.v17.enums.AudienceScopeEnum_AudienceScope" json:"scope,omitempty"` // Immutable. The asset group that this audience is scoped under. Must be set // if and only if scope is ASSET_GROUP. Immutable after creation. If an // audience with ASSET_GROUP scope is upgraded to CUSTOMER scope, this field @@ -82,7 +82,7 @@ type Audience struct { func (x *Audience) Reset() { *x = Audience{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_audience_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_audience_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -95,7 +95,7 @@ func (x *Audience) String() string { func (*Audience) ProtoMessage() {} func (x *Audience) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_audience_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_audience_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -108,7 +108,7 @@ func (x *Audience) ProtoReflect() protoreflect.Message { // Deprecated: Use Audience.ProtoReflect.Descriptor instead. func (*Audience) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_audience_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_audience_proto_rawDescGZIP(), []int{0} } func (x *Audience) GetResourceName() string { @@ -174,23 +174,23 @@ func (x *Audience) GetAssetGroup() string { return "" } -var File_google_ads_googleads_v16_resources_audience_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_audience_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_audience_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_audience_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, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 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, 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, 0x6e, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, + 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 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, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, + 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, 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, 0x75, + 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, 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, @@ -205,7 +205,7 @@ var file_google_ads_googleads_v16_resources_audience_proto_rawDesc = []byte{ 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x5e, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 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, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, @@ -215,19 +215,19 @@ var file_google_ads_googleads_v16_resources_audience_proto_rawDesc = []byte{ 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x52, 0x0a, 0x0a, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x06, 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, 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, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x0a, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x6c, 0x0a, 0x13, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x07, 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, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x12, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x55, 0x0a, 0x05, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x18, 0x08, 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, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x52, 0x05, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x12, 0x4c, 0x0a, 0x0b, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, @@ -243,48 +243,48 @@ var file_google_ads_googleads_v16_resources_audience_proto_rawDesc = []byte{ 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0xff, 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, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x0d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 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_audience_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_audience_proto_rawDescData = file_google_ads_googleads_v16_resources_audience_proto_rawDesc + file_google_ads_googleads_v17_resources_audience_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_audience_proto_rawDescData = file_google_ads_googleads_v17_resources_audience_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_audience_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_audience_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_audience_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_audience_proto_rawDescData) +func file_google_ads_googleads_v17_resources_audience_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_audience_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_audience_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_audience_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_audience_proto_rawDescData + return file_google_ads_googleads_v17_resources_audience_proto_rawDescData } -var file_google_ads_googleads_v16_resources_audience_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_audience_proto_goTypes = []interface{}{ - (*Audience)(nil), // 0: google.ads.googleads.v16.resources.Audience - (enums.AudienceStatusEnum_AudienceStatus)(0), // 1: google.ads.googleads.v16.enums.AudienceStatusEnum.AudienceStatus - (*common.AudienceDimension)(nil), // 2: google.ads.googleads.v16.common.AudienceDimension - (*common.AudienceExclusionDimension)(nil), // 3: google.ads.googleads.v16.common.AudienceExclusionDimension - (enums.AudienceScopeEnum_AudienceScope)(0), // 4: google.ads.googleads.v16.enums.AudienceScopeEnum.AudienceScope +var file_google_ads_googleads_v17_resources_audience_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_audience_proto_goTypes = []interface{}{ + (*Audience)(nil), // 0: google.ads.googleads.v17.resources.Audience + (enums.AudienceStatusEnum_AudienceStatus)(0), // 1: google.ads.googleads.v17.enums.AudienceStatusEnum.AudienceStatus + (*common.AudienceDimension)(nil), // 2: google.ads.googleads.v17.common.AudienceDimension + (*common.AudienceExclusionDimension)(nil), // 3: google.ads.googleads.v17.common.AudienceExclusionDimension + (enums.AudienceScopeEnum_AudienceScope)(0), // 4: google.ads.googleads.v17.enums.AudienceScopeEnum.AudienceScope } -var file_google_ads_googleads_v16_resources_audience_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.Audience.status:type_name -> google.ads.googleads.v16.enums.AudienceStatusEnum.AudienceStatus - 2, // 1: google.ads.googleads.v16.resources.Audience.dimensions:type_name -> google.ads.googleads.v16.common.AudienceDimension - 3, // 2: google.ads.googleads.v16.resources.Audience.exclusion_dimension:type_name -> google.ads.googleads.v16.common.AudienceExclusionDimension - 4, // 3: google.ads.googleads.v16.resources.Audience.scope:type_name -> google.ads.googleads.v16.enums.AudienceScopeEnum.AudienceScope +var file_google_ads_googleads_v17_resources_audience_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.Audience.status:type_name -> google.ads.googleads.v17.enums.AudienceStatusEnum.AudienceStatus + 2, // 1: google.ads.googleads.v17.resources.Audience.dimensions:type_name -> google.ads.googleads.v17.common.AudienceDimension + 3, // 2: google.ads.googleads.v17.resources.Audience.exclusion_dimension:type_name -> google.ads.googleads.v17.common.AudienceExclusionDimension + 4, // 3: google.ads.googleads.v17.resources.Audience.scope:type_name -> google.ads.googleads.v17.enums.AudienceScopeEnum.AudienceScope 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 @@ -292,13 +292,13 @@ var file_google_ads_googleads_v16_resources_audience_proto_depIdxs = []int32{ 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_audience_proto_init() } -func file_google_ads_googleads_v16_resources_audience_proto_init() { - if File_google_ads_googleads_v16_resources_audience_proto != nil { +func init() { file_google_ads_googleads_v17_resources_audience_proto_init() } +func file_google_ads_googleads_v17_resources_audience_proto_init() { + if File_google_ads_googleads_v17_resources_audience_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_audience_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_audience_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Audience); i { case 0: return &v.state @@ -311,23 +311,23 @@ func file_google_ads_googleads_v16_resources_audience_proto_init() { } } } - file_google_ads_googleads_v16_resources_audience_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_audience_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_audience_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_audience_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_audience_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_audience_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_audience_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_audience_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_audience_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_audience_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_audience_proto = out.File - file_google_ads_googleads_v16_resources_audience_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_audience_proto_goTypes = nil - file_google_ads_googleads_v16_resources_audience_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_audience_proto = out.File + file_google_ads_googleads_v17_resources_audience_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_audience_proto_goTypes = nil + file_google_ads_googleads_v17_resources_audience_proto_depIdxs = nil } diff --git a/resources/batch_job.pb.go b/resources/batch_job.pb.go index 9e6361c7..171e9fc5 100644 --- a/resources/batch_job.pb.go +++ b/resources/batch_job.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/batch_job.proto +// source: google/ads/googleads/v17/resources/batch_job.proto package resources @@ -57,7 +57,7 @@ type BatchJob struct { // Output only. Contains additional information about this batch job. Metadata *BatchJob_BatchJobMetadata `protobuf:"bytes,4,opt,name=metadata,proto3" json:"metadata,omitempty"` // Output only. Status of this batch job. - Status enums.BatchJobStatusEnum_BatchJobStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.BatchJobStatusEnum_BatchJobStatus" json:"status,omitempty"` + Status enums.BatchJobStatusEnum_BatchJobStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.BatchJobStatusEnum_BatchJobStatus" json:"status,omitempty"` // Output only. The resource name of the long-running operation that can be // used to poll for completion. Only set when the batch job status is RUNNING // or DONE. @@ -67,7 +67,7 @@ type BatchJob struct { func (x *BatchJob) Reset() { *x = BatchJob{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_batch_job_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_batch_job_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80,7 +80,7 @@ func (x *BatchJob) String() string { func (*BatchJob) ProtoMessage() {} func (x *BatchJob) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_batch_job_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_batch_job_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93,7 +93,7 @@ func (x *BatchJob) ProtoReflect() protoreflect.Message { // Deprecated: Use BatchJob.ProtoReflect.Descriptor instead. func (*BatchJob) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_batch_job_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_batch_job_proto_rawDescGZIP(), []int{0} } func (x *BatchJob) GetResourceName() string { @@ -171,7 +171,7 @@ type BatchJob_BatchJobMetadata struct { func (x *BatchJob_BatchJobMetadata) Reset() { *x = BatchJob_BatchJobMetadata{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_batch_job_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_batch_job_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -184,7 +184,7 @@ func (x *BatchJob_BatchJobMetadata) String() string { func (*BatchJob_BatchJobMetadata) ProtoMessage() {} func (x *BatchJob_BatchJobMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_batch_job_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_batch_job_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -197,7 +197,7 @@ func (x *BatchJob_BatchJobMetadata) ProtoReflect() protoreflect.Message { // Deprecated: Use BatchJob_BatchJobMetadata.ProtoReflect.Descriptor instead. func (*BatchJob_BatchJobMetadata) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_batch_job_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v17_resources_batch_job_proto_rawDescGZIP(), []int{0, 0} } func (x *BatchJob_BatchJobMetadata) GetCreationDateTime() string { @@ -249,17 +249,17 @@ func (x *BatchJob_BatchJobMetadata) GetExecutionLimitSeconds() int32 { return 0 } -var File_google_ads_googleads_v16_resources_batch_job_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_batch_job_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_batch_job_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_batch_job_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, 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, 0x62, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x6a, 0x6f, 0x62, 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, + 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, 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, 0x62, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x6a, + 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, 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, @@ -278,13 +278,13 @@ var file_google_ads_googleads_v16_resources_batch_job_proto_rawDesc = []byte{ 0x41, 0x64, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x5e, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 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, + 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, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x5e, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 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, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, @@ -342,45 +342,45 @@ var file_google_ads_googleads_v16_resources_batch_job_proto_rawDesc = []byte{ 0x5f, 0x6c, 0x6f, 0x6e, 0x67, 0x5f, 0x72, 0x75, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0xff, 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, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x0d, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 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, 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, 0x6f, + 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, + 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_batch_job_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_batch_job_proto_rawDescData = file_google_ads_googleads_v16_resources_batch_job_proto_rawDesc + file_google_ads_googleads_v17_resources_batch_job_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_batch_job_proto_rawDescData = file_google_ads_googleads_v17_resources_batch_job_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_batch_job_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_batch_job_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_batch_job_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_batch_job_proto_rawDescData) +func file_google_ads_googleads_v17_resources_batch_job_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_batch_job_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_batch_job_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_batch_job_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_batch_job_proto_rawDescData + return file_google_ads_googleads_v17_resources_batch_job_proto_rawDescData } -var file_google_ads_googleads_v16_resources_batch_job_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v16_resources_batch_job_proto_goTypes = []interface{}{ - (*BatchJob)(nil), // 0: google.ads.googleads.v16.resources.BatchJob - (*BatchJob_BatchJobMetadata)(nil), // 1: google.ads.googleads.v16.resources.BatchJob.BatchJobMetadata - (enums.BatchJobStatusEnum_BatchJobStatus)(0), // 2: google.ads.googleads.v16.enums.BatchJobStatusEnum.BatchJobStatus +var file_google_ads_googleads_v17_resources_batch_job_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v17_resources_batch_job_proto_goTypes = []interface{}{ + (*BatchJob)(nil), // 0: google.ads.googleads.v17.resources.BatchJob + (*BatchJob_BatchJobMetadata)(nil), // 1: google.ads.googleads.v17.resources.BatchJob.BatchJobMetadata + (enums.BatchJobStatusEnum_BatchJobStatus)(0), // 2: google.ads.googleads.v17.enums.BatchJobStatusEnum.BatchJobStatus } -var file_google_ads_googleads_v16_resources_batch_job_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.BatchJob.metadata:type_name -> google.ads.googleads.v16.resources.BatchJob.BatchJobMetadata - 2, // 1: google.ads.googleads.v16.resources.BatchJob.status:type_name -> google.ads.googleads.v16.enums.BatchJobStatusEnum.BatchJobStatus +var file_google_ads_googleads_v17_resources_batch_job_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.BatchJob.metadata:type_name -> google.ads.googleads.v17.resources.BatchJob.BatchJobMetadata + 2, // 1: google.ads.googleads.v17.resources.BatchJob.status:type_name -> google.ads.googleads.v17.enums.BatchJobStatusEnum.BatchJobStatus 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 @@ -388,13 +388,13 @@ var file_google_ads_googleads_v16_resources_batch_job_proto_depIdxs = []int32{ 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_batch_job_proto_init() } -func file_google_ads_googleads_v16_resources_batch_job_proto_init() { - if File_google_ads_googleads_v16_resources_batch_job_proto != nil { +func init() { file_google_ads_googleads_v17_resources_batch_job_proto_init() } +func file_google_ads_googleads_v17_resources_batch_job_proto_init() { + if File_google_ads_googleads_v17_resources_batch_job_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_batch_job_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_batch_job_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BatchJob); i { case 0: return &v.state @@ -406,7 +406,7 @@ func file_google_ads_googleads_v16_resources_batch_job_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_batch_job_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_batch_job_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BatchJob_BatchJobMetadata); i { case 0: return &v.state @@ -419,24 +419,24 @@ func file_google_ads_googleads_v16_resources_batch_job_proto_init() { } } } - file_google_ads_googleads_v16_resources_batch_job_proto_msgTypes[0].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_batch_job_proto_msgTypes[1].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_batch_job_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_batch_job_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_batch_job_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_batch_job_proto_rawDesc, NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_batch_job_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_batch_job_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_batch_job_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_batch_job_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_batch_job_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_batch_job_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_batch_job_proto = out.File - file_google_ads_googleads_v16_resources_batch_job_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_batch_job_proto_goTypes = nil - file_google_ads_googleads_v16_resources_batch_job_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_batch_job_proto = out.File + file_google_ads_googleads_v17_resources_batch_job_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_batch_job_proto_goTypes = nil + file_google_ads_googleads_v17_resources_batch_job_proto_depIdxs = nil } diff --git a/resources/bidding_data_exclusion.pb.go b/resources/bidding_data_exclusion.pb.go index 73939af0..2faefb4e 100644 --- a/resources/bidding_data_exclusion.pb.go +++ b/resources/bidding_data_exclusion.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/bidding_data_exclusion.proto +// source: google/ads/googleads/v17/resources/bidding_data_exclusion.proto package resources @@ -53,9 +53,9 @@ type BiddingDataExclusion struct { // Output only. The ID of the data exclusion. DataExclusionId int64 `protobuf:"varint,2,opt,name=data_exclusion_id,json=dataExclusionId,proto3" json:"data_exclusion_id,omitempty"` // The scope of the data exclusion. - Scope enums.SeasonalityEventScopeEnum_SeasonalityEventScope `protobuf:"varint,3,opt,name=scope,proto3,enum=google.ads.googleads.v16.enums.SeasonalityEventScopeEnum_SeasonalityEventScope" json:"scope,omitempty"` + Scope enums.SeasonalityEventScopeEnum_SeasonalityEventScope `protobuf:"varint,3,opt,name=scope,proto3,enum=google.ads.googleads.v17.enums.SeasonalityEventScopeEnum_SeasonalityEventScope" json:"scope,omitempty"` // Output only. The status of the data exclusion. - Status enums.SeasonalityEventStatusEnum_SeasonalityEventStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.SeasonalityEventStatusEnum_SeasonalityEventStatus" json:"status,omitempty"` + Status enums.SeasonalityEventStatusEnum_SeasonalityEventStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.SeasonalityEventStatusEnum_SeasonalityEventStatus" json:"status,omitempty"` // Required. The inclusive start time of the data exclusion in yyyy-MM-dd // HH:mm:ss format. // @@ -77,7 +77,7 @@ type BiddingDataExclusion struct { // If not specified, all devices will be included in this exclusion. // Otherwise, only the specified targeted devices will be included in this // exclusion. - Devices []enums.DeviceEnum_Device `protobuf:"varint,9,rep,packed,name=devices,proto3,enum=google.ads.googleads.v16.enums.DeviceEnum_Device" json:"devices,omitempty"` + Devices []enums.DeviceEnum_Device `protobuf:"varint,9,rep,packed,name=devices,proto3,enum=google.ads.googleads.v17.enums.DeviceEnum_Device" json:"devices,omitempty"` // The data exclusion will apply to the campaigns listed when the scope of // this exclusion is CAMPAIGN. The maximum number of campaigns per event is // 2000. @@ -90,13 +90,13 @@ type BiddingDataExclusion struct { // The supported advertising channel types are DISPLAY, SEARCH and SHOPPING. // Note: a data exclusion with both advertising_channel_types and // campaign_ids is not supported. - AdvertisingChannelTypes []enums.AdvertisingChannelTypeEnum_AdvertisingChannelType `protobuf:"varint,11,rep,packed,name=advertising_channel_types,json=advertisingChannelTypes,proto3,enum=google.ads.googleads.v16.enums.AdvertisingChannelTypeEnum_AdvertisingChannelType" json:"advertising_channel_types,omitempty"` + AdvertisingChannelTypes []enums.AdvertisingChannelTypeEnum_AdvertisingChannelType `protobuf:"varint,11,rep,packed,name=advertising_channel_types,json=advertisingChannelTypes,proto3,enum=google.ads.googleads.v17.enums.AdvertisingChannelTypeEnum_AdvertisingChannelType" json:"advertising_channel_types,omitempty"` } func (x *BiddingDataExclusion) Reset() { *x = BiddingDataExclusion{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_bidding_data_exclusion_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *BiddingDataExclusion) String() string { func (*BiddingDataExclusion) ProtoMessage() {} func (x *BiddingDataExclusion) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_bidding_data_exclusion_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,7 +122,7 @@ func (x *BiddingDataExclusion) ProtoReflect() protoreflect.Message { // Deprecated: Use BiddingDataExclusion.ProtoReflect.Descriptor instead. func (*BiddingDataExclusion) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_bidding_data_exclusion_proto_rawDescGZIP(), []int{0} } func (x *BiddingDataExclusion) GetResourceName() string { @@ -202,28 +202,28 @@ func (x *BiddingDataExclusion) GetAdvertisingChannelTypes() []enums.AdvertisingC return nil } -var File_google_ads_googleads_v16_resources_bidding_data_exclusion_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_bidding_data_exclusion_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_bidding_data_exclusion_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, 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, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 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, 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, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 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, 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, + 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, 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, + 0x6f, 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, 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, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, @@ -242,14 +242,14 @@ var file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_rawDesc 0x0f, 0x64, 0x61, 0x74, 0x61, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x65, 0x0a, 0x05, 0x73, 0x63, 0x6f, 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, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x52, 0x05, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x12, 0x6e, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 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, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, + 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, @@ -264,7 +264,7 @@ var file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_rawDesc 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4b, 0x0a, 0x07, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x73, 0x18, 0x09, 0x20, 0x03, 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, 0x07, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x73, 0x12, 0x44, 0x0a, 0x09, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x73, 0x18, 0x0a, 0x20, @@ -275,7 +275,7 @@ var file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_rawDesc 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x0b, 0x20, 0x03, 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, 0x41, 0x64, 0x76, 0x65, + 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, 0x54, 0x79, 0x70, 0x65, 0x52, 0x17, 0x61, @@ -290,49 +290,49 @@ var file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_rawDesc 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x8b, 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, 0x19, 0x42, 0x69, 0x64, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x19, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 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_bidding_data_exclusion_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_rawDescData = file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_rawDesc + file_google_ads_googleads_v17_resources_bidding_data_exclusion_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_bidding_data_exclusion_proto_rawDescData = file_google_ads_googleads_v17_resources_bidding_data_exclusion_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_rawDescData) +func file_google_ads_googleads_v17_resources_bidding_data_exclusion_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_bidding_data_exclusion_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_bidding_data_exclusion_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_bidding_data_exclusion_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_rawDescData + return file_google_ads_googleads_v17_resources_bidding_data_exclusion_proto_rawDescData } -var file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_goTypes = []interface{}{ - (*BiddingDataExclusion)(nil), // 0: google.ads.googleads.v16.resources.BiddingDataExclusion - (enums.SeasonalityEventScopeEnum_SeasonalityEventScope)(0), // 1: google.ads.googleads.v16.enums.SeasonalityEventScopeEnum.SeasonalityEventScope - (enums.SeasonalityEventStatusEnum_SeasonalityEventStatus)(0), // 2: google.ads.googleads.v16.enums.SeasonalityEventStatusEnum.SeasonalityEventStatus - (enums.DeviceEnum_Device)(0), // 3: google.ads.googleads.v16.enums.DeviceEnum.Device - (enums.AdvertisingChannelTypeEnum_AdvertisingChannelType)(0), // 4: google.ads.googleads.v16.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType +var file_google_ads_googleads_v17_resources_bidding_data_exclusion_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_bidding_data_exclusion_proto_goTypes = []interface{}{ + (*BiddingDataExclusion)(nil), // 0: google.ads.googleads.v17.resources.BiddingDataExclusion + (enums.SeasonalityEventScopeEnum_SeasonalityEventScope)(0), // 1: google.ads.googleads.v17.enums.SeasonalityEventScopeEnum.SeasonalityEventScope + (enums.SeasonalityEventStatusEnum_SeasonalityEventStatus)(0), // 2: google.ads.googleads.v17.enums.SeasonalityEventStatusEnum.SeasonalityEventStatus + (enums.DeviceEnum_Device)(0), // 3: google.ads.googleads.v17.enums.DeviceEnum.Device + (enums.AdvertisingChannelTypeEnum_AdvertisingChannelType)(0), // 4: google.ads.googleads.v17.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType } -var file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.BiddingDataExclusion.scope:type_name -> google.ads.googleads.v16.enums.SeasonalityEventScopeEnum.SeasonalityEventScope - 2, // 1: google.ads.googleads.v16.resources.BiddingDataExclusion.status:type_name -> google.ads.googleads.v16.enums.SeasonalityEventStatusEnum.SeasonalityEventStatus - 3, // 2: google.ads.googleads.v16.resources.BiddingDataExclusion.devices:type_name -> google.ads.googleads.v16.enums.DeviceEnum.Device - 4, // 3: google.ads.googleads.v16.resources.BiddingDataExclusion.advertising_channel_types:type_name -> google.ads.googleads.v16.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType +var file_google_ads_googleads_v17_resources_bidding_data_exclusion_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.BiddingDataExclusion.scope:type_name -> google.ads.googleads.v17.enums.SeasonalityEventScopeEnum.SeasonalityEventScope + 2, // 1: google.ads.googleads.v17.resources.BiddingDataExclusion.status:type_name -> google.ads.googleads.v17.enums.SeasonalityEventStatusEnum.SeasonalityEventStatus + 3, // 2: google.ads.googleads.v17.resources.BiddingDataExclusion.devices:type_name -> google.ads.googleads.v17.enums.DeviceEnum.Device + 4, // 3: google.ads.googleads.v17.resources.BiddingDataExclusion.advertising_channel_types:type_name -> google.ads.googleads.v17.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType 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 @@ -340,13 +340,13 @@ var file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_depIdxs 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_init() } -func file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_init() { - if File_google_ads_googleads_v16_resources_bidding_data_exclusion_proto != nil { +func init() { file_google_ads_googleads_v17_resources_bidding_data_exclusion_proto_init() } +func file_google_ads_googleads_v17_resources_bidding_data_exclusion_proto_init() { + if File_google_ads_googleads_v17_resources_bidding_data_exclusion_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_bidding_data_exclusion_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BiddingDataExclusion); i { case 0: return &v.state @@ -363,18 +363,18 @@ func file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_bidding_data_exclusion_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_bidding_data_exclusion_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_bidding_data_exclusion_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_bidding_data_exclusion_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_bidding_data_exclusion_proto = out.File - file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_goTypes = nil - file_google_ads_googleads_v16_resources_bidding_data_exclusion_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_bidding_data_exclusion_proto = out.File + file_google_ads_googleads_v17_resources_bidding_data_exclusion_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_bidding_data_exclusion_proto_goTypes = nil + file_google_ads_googleads_v17_resources_bidding_data_exclusion_proto_depIdxs = nil } diff --git a/resources/bidding_seasonality_adjustment.pb.go b/resources/bidding_seasonality_adjustment.pb.go index 0dd1c300..b57e0a58 100644 --- a/resources/bidding_seasonality_adjustment.pb.go +++ b/resources/bidding_seasonality_adjustment.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/bidding_seasonality_adjustment.proto +// source: google/ads/googleads/v17/resources/bidding_seasonality_adjustment.proto package resources @@ -53,9 +53,9 @@ type BiddingSeasonalityAdjustment struct { // Output only. The ID of the seasonality adjustment. SeasonalityAdjustmentId int64 `protobuf:"varint,2,opt,name=seasonality_adjustment_id,json=seasonalityAdjustmentId,proto3" json:"seasonality_adjustment_id,omitempty"` // The scope of the seasonality adjustment. - Scope enums.SeasonalityEventScopeEnum_SeasonalityEventScope `protobuf:"varint,3,opt,name=scope,proto3,enum=google.ads.googleads.v16.enums.SeasonalityEventScopeEnum_SeasonalityEventScope" json:"scope,omitempty"` + Scope enums.SeasonalityEventScopeEnum_SeasonalityEventScope `protobuf:"varint,3,opt,name=scope,proto3,enum=google.ads.googleads.v17.enums.SeasonalityEventScopeEnum_SeasonalityEventScope" json:"scope,omitempty"` // Output only. The status of the seasonality adjustment. - Status enums.SeasonalityEventStatusEnum_SeasonalityEventStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.SeasonalityEventStatusEnum_SeasonalityEventStatus" json:"status,omitempty"` + Status enums.SeasonalityEventStatusEnum_SeasonalityEventStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.SeasonalityEventStatusEnum_SeasonalityEventStatus" json:"status,omitempty"` // Required. The inclusive start time of the seasonality adjustment in // yyyy-MM-dd HH:mm:ss format. // @@ -77,7 +77,7 @@ type BiddingSeasonalityAdjustment struct { // If not specified, all devices will be included in this adjustment. // Otherwise, only the specified targeted devices will be included in this // adjustment. - Devices []enums.DeviceEnum_Device `protobuf:"varint,9,rep,packed,name=devices,proto3,enum=google.ads.googleads.v16.enums.DeviceEnum_Device" json:"devices,omitempty"` + Devices []enums.DeviceEnum_Device `protobuf:"varint,9,rep,packed,name=devices,proto3,enum=google.ads.googleads.v17.enums.DeviceEnum_Device" json:"devices,omitempty"` // Conversion rate modifier estimated based on expected conversion rate // changes. When this field is unset or set to 1.0 no adjustment will be // applied to traffic. The allowed range is 0.1 to 10.0. @@ -94,13 +94,13 @@ type BiddingSeasonalityAdjustment struct { // The supported advertising channel types are DISPLAY, SEARCH and SHOPPING. // Note: a seasonality adjustment with both advertising_channel_types and // campaign_ids is not supported. - AdvertisingChannelTypes []enums.AdvertisingChannelTypeEnum_AdvertisingChannelType `protobuf:"varint,12,rep,packed,name=advertising_channel_types,json=advertisingChannelTypes,proto3,enum=google.ads.googleads.v16.enums.AdvertisingChannelTypeEnum_AdvertisingChannelType" json:"advertising_channel_types,omitempty"` + AdvertisingChannelTypes []enums.AdvertisingChannelTypeEnum_AdvertisingChannelType `protobuf:"varint,12,rep,packed,name=advertising_channel_types,json=advertisingChannelTypes,proto3,enum=google.ads.googleads.v17.enums.AdvertisingChannelTypeEnum_AdvertisingChannelType" json:"advertising_channel_types,omitempty"` } func (x *BiddingSeasonalityAdjustment) Reset() { *x = BiddingSeasonalityAdjustment{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_bidding_seasonality_adjustment_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *BiddingSeasonalityAdjustment) String() string { func (*BiddingSeasonalityAdjustment) ProtoMessage() {} func (x *BiddingSeasonalityAdjustment) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_bidding_seasonality_adjustment_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,7 +126,7 @@ func (x *BiddingSeasonalityAdjustment) ProtoReflect() protoreflect.Message { // Deprecated: Use BiddingSeasonalityAdjustment.ProtoReflect.Descriptor instead. func (*BiddingSeasonalityAdjustment) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_bidding_seasonality_adjustment_proto_rawDescGZIP(), []int{0} } func (x *BiddingSeasonalityAdjustment) GetResourceName() string { @@ -213,29 +213,29 @@ func (x *BiddingSeasonalityAdjustment) GetAdvertisingChannelTypes() []enums.Adve return nil } -var File_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_bidding_seasonality_adjustment_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_bidding_seasonality_adjustment_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, 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, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 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, 0x3d, 0x67, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, + 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, 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, + 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, 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, 0x73, 0x65, 0x61, 0x73, 0x6f, 0x6e, + 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, 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, 0x73, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, + 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, 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, @@ -256,13 +256,13 @@ var file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x65, 0x0a, 0x05, 0x73, 0x63, 0x6f, 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, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, + 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x52, 0x05, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x12, 0x6e, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 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, 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, 0x2e, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, @@ -278,7 +278,7 @@ var file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4b, 0x0a, 0x07, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x73, 0x18, 0x09, 0x20, 0x03, 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, + 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, 0x07, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x73, 0x12, 0x38, 0x0a, 0x18, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x6f, 0x64, 0x69, @@ -292,7 +292,7 @@ var file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x0c, 0x20, 0x03, 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, 0x41, 0x64, + 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, 0x54, 0x79, 0x70, 0x65, 0x52, @@ -308,50 +308,50 @@ var file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x93, 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, 0x21, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 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, 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_bidding_seasonality_adjustment_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto_rawDescData = file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto_rawDesc + file_google_ads_googleads_v17_resources_bidding_seasonality_adjustment_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_bidding_seasonality_adjustment_proto_rawDescData = file_google_ads_googleads_v17_resources_bidding_seasonality_adjustment_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto_rawDescData) +func file_google_ads_googleads_v17_resources_bidding_seasonality_adjustment_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_bidding_seasonality_adjustment_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_bidding_seasonality_adjustment_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_bidding_seasonality_adjustment_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto_rawDescData + return file_google_ads_googleads_v17_resources_bidding_seasonality_adjustment_proto_rawDescData } -var file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto_goTypes = []interface{}{ - (*BiddingSeasonalityAdjustment)(nil), // 0: google.ads.googleads.v16.resources.BiddingSeasonalityAdjustment - (enums.SeasonalityEventScopeEnum_SeasonalityEventScope)(0), // 1: google.ads.googleads.v16.enums.SeasonalityEventScopeEnum.SeasonalityEventScope - (enums.SeasonalityEventStatusEnum_SeasonalityEventStatus)(0), // 2: google.ads.googleads.v16.enums.SeasonalityEventStatusEnum.SeasonalityEventStatus - (enums.DeviceEnum_Device)(0), // 3: google.ads.googleads.v16.enums.DeviceEnum.Device - (enums.AdvertisingChannelTypeEnum_AdvertisingChannelType)(0), // 4: google.ads.googleads.v16.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType +var file_google_ads_googleads_v17_resources_bidding_seasonality_adjustment_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_bidding_seasonality_adjustment_proto_goTypes = []interface{}{ + (*BiddingSeasonalityAdjustment)(nil), // 0: google.ads.googleads.v17.resources.BiddingSeasonalityAdjustment + (enums.SeasonalityEventScopeEnum_SeasonalityEventScope)(0), // 1: google.ads.googleads.v17.enums.SeasonalityEventScopeEnum.SeasonalityEventScope + (enums.SeasonalityEventStatusEnum_SeasonalityEventStatus)(0), // 2: google.ads.googleads.v17.enums.SeasonalityEventStatusEnum.SeasonalityEventStatus + (enums.DeviceEnum_Device)(0), // 3: google.ads.googleads.v17.enums.DeviceEnum.Device + (enums.AdvertisingChannelTypeEnum_AdvertisingChannelType)(0), // 4: google.ads.googleads.v17.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType } -var file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.BiddingSeasonalityAdjustment.scope:type_name -> google.ads.googleads.v16.enums.SeasonalityEventScopeEnum.SeasonalityEventScope - 2, // 1: google.ads.googleads.v16.resources.BiddingSeasonalityAdjustment.status:type_name -> google.ads.googleads.v16.enums.SeasonalityEventStatusEnum.SeasonalityEventStatus - 3, // 2: google.ads.googleads.v16.resources.BiddingSeasonalityAdjustment.devices:type_name -> google.ads.googleads.v16.enums.DeviceEnum.Device - 4, // 3: google.ads.googleads.v16.resources.BiddingSeasonalityAdjustment.advertising_channel_types:type_name -> google.ads.googleads.v16.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType +var file_google_ads_googleads_v17_resources_bidding_seasonality_adjustment_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.BiddingSeasonalityAdjustment.scope:type_name -> google.ads.googleads.v17.enums.SeasonalityEventScopeEnum.SeasonalityEventScope + 2, // 1: google.ads.googleads.v17.resources.BiddingSeasonalityAdjustment.status:type_name -> google.ads.googleads.v17.enums.SeasonalityEventStatusEnum.SeasonalityEventStatus + 3, // 2: google.ads.googleads.v17.resources.BiddingSeasonalityAdjustment.devices:type_name -> google.ads.googleads.v17.enums.DeviceEnum.Device + 4, // 3: google.ads.googleads.v17.resources.BiddingSeasonalityAdjustment.advertising_channel_types:type_name -> google.ads.googleads.v17.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType 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 @@ -359,13 +359,13 @@ var file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto_init() } -func file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto_init() { - if File_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto != nil { +func init() { file_google_ads_googleads_v17_resources_bidding_seasonality_adjustment_proto_init() } +func file_google_ads_googleads_v17_resources_bidding_seasonality_adjustment_proto_init() { + if File_google_ads_googleads_v17_resources_bidding_seasonality_adjustment_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_bidding_seasonality_adjustment_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BiddingSeasonalityAdjustment); i { case 0: return &v.state @@ -382,18 +382,18 @@ func file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_prot out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_bidding_seasonality_adjustment_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_bidding_seasonality_adjustment_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_bidding_seasonality_adjustment_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_bidding_seasonality_adjustment_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto = out.File - file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto_goTypes = nil - file_google_ads_googleads_v16_resources_bidding_seasonality_adjustment_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_bidding_seasonality_adjustment_proto = out.File + file_google_ads_googleads_v17_resources_bidding_seasonality_adjustment_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_bidding_seasonality_adjustment_proto_goTypes = nil + file_google_ads_googleads_v17_resources_bidding_seasonality_adjustment_proto_depIdxs = nil } diff --git a/resources/bidding_strategy.pb.go b/resources/bidding_strategy.pb.go index 9a1ff846..2cfc7cbc 100644 --- a/resources/bidding_strategy.pb.go +++ b/resources/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/bidding_strategy.proto +// source: google/ads/googleads/v17/resources/bidding_strategy.proto package resources @@ -59,12 +59,12 @@ type BiddingStrategy struct { // Output only. The status of the bidding strategy. // // This field is read-only. - Status enums.BiddingStrategyStatusEnum_BiddingStrategyStatus `protobuf:"varint,15,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.BiddingStrategyStatusEnum_BiddingStrategyStatus" json:"status,omitempty"` + Status enums.BiddingStrategyStatusEnum_BiddingStrategyStatus `protobuf:"varint,15,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.BiddingStrategyStatusEnum_BiddingStrategyStatus" json:"status,omitempty"` // Output only. The type of the bidding strategy. // Create a bidding strategy by setting the bidding scheme. // // This field is read-only. - Type enums.BiddingStrategyTypeEnum_BiddingStrategyType `protobuf:"varint,5,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.BiddingStrategyTypeEnum_BiddingStrategyType" json:"type,omitempty"` + Type enums.BiddingStrategyTypeEnum_BiddingStrategyType `protobuf:"varint,5,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.BiddingStrategyTypeEnum_BiddingStrategyType" json:"type,omitempty"` // Immutable. The currency used by the bidding strategy (ISO 4217 three-letter // code). // @@ -119,7 +119,7 @@ type BiddingStrategy struct { func (x *BiddingStrategy) Reset() { *x = BiddingStrategy{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_bidding_strategy_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_bidding_strategy_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -132,7 +132,7 @@ func (x *BiddingStrategy) String() string { func (*BiddingStrategy) ProtoMessage() {} func (x *BiddingStrategy) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_bidding_strategy_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_bidding_strategy_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -145,7 +145,7 @@ func (x *BiddingStrategy) ProtoReflect() protoreflect.Message { // Deprecated: Use BiddingStrategy.ProtoReflect.Descriptor instead. func (*BiddingStrategy) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_bidding_strategy_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_bidding_strategy_proto_rawDescGZIP(), []int{0} } func (x *BiddingStrategy) GetResourceName() string { @@ -335,24 +335,24 @@ func (*BiddingStrategy_TargetRoas) isBiddingStrategy_Scheme() {} func (*BiddingStrategy_TargetSpend) isBiddingStrategy_Scheme() {} -var File_google_ads_googleads_v16_resources_bidding_strategy_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_bidding_strategy_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_bidding_strategy_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_bidding_strategy_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, 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, 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, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, + 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, 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, 0x62, + 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, 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, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76, @@ -370,14 +370,14 @@ var file_google_ads_googleads_v16_resources_bidding_strategy_proto_rawDesc = []b 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x6c, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x0f, 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, 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, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x64, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 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, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, @@ -402,43 +402,43 @@ var file_google_ads_googleads_v16_resources_bidding_strategy_proto_rawDesc = []b 0x6f, 0x75, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x51, 0x0a, 0x0c, 0x65, 0x6e, 0x68, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x5f, 0x63, 0x70, 0x63, 0x18, 0x07, 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, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x45, 0x6e, 0x68, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x43, 0x70, 0x63, 0x48, 0x00, 0x52, 0x0b, 0x65, 0x6e, 0x68, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x43, 0x70, 0x63, 0x12, 0x76, 0x0a, 0x19, 0x6d, 0x61, 0x78, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x15, 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, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x78, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x48, 0x00, 0x52, 0x17, 0x6d, 0x61, 0x78, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x69, 0x0a, 0x14, 0x6d, 0x61, 0x78, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x16, 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, 0x4d, 0x61, 0x78, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x48, 0x00, 0x52, 0x13, 0x6d, 0x61, 0x78, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x4b, 0x0a, 0x0a, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x70, 0x61, 0x18, 0x09, 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, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x61, 0x48, 0x00, 0x52, 0x09, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x61, 0x12, 0x70, 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, 0x30, 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, 0x54, 0x61, + 0x64, 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, 0x48, 0x00, 0x52, 0x15, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x12, 0x4e, 0x0a, 0x0b, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x6f, 0x61, 0x73, 0x18, 0x0b, 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, + 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, 0x48, 0x00, 0x52, 0x0a, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x6f, 0x61, 0x73, 0x12, 0x51, 0x0a, 0x0c, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x73, 0x70, 0x65, 0x6e, 0x64, 0x18, 0x0c, 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, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x53, 0x70, 0x65, 0x6e, 0x64, 0x48, 0x00, 0x52, 0x0b, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x53, 0x70, 0x65, 0x6e, 0x64, 0x3a, 0x6e, 0xea, 0x41, 0x6b, 0x0a, 0x28, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, @@ -456,59 +456,59 @@ var file_google_ads_googleads_v16_resources_bidding_strategy_proto_rawDesc = []b 0x5f, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x64, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x86, 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, 0x14, 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, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, + 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, 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, + 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, 0x63, 0x65, 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_bidding_strategy_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_bidding_strategy_proto_rawDescData = file_google_ads_googleads_v16_resources_bidding_strategy_proto_rawDesc + file_google_ads_googleads_v17_resources_bidding_strategy_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_bidding_strategy_proto_rawDescData = file_google_ads_googleads_v17_resources_bidding_strategy_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_bidding_strategy_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_bidding_strategy_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_bidding_strategy_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_bidding_strategy_proto_rawDescData) +func file_google_ads_googleads_v17_resources_bidding_strategy_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_bidding_strategy_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_bidding_strategy_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_bidding_strategy_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_bidding_strategy_proto_rawDescData -} - -var file_google_ads_googleads_v16_resources_bidding_strategy_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_bidding_strategy_proto_goTypes = []interface{}{ - (*BiddingStrategy)(nil), // 0: google.ads.googleads.v16.resources.BiddingStrategy - (enums.BiddingStrategyStatusEnum_BiddingStrategyStatus)(0), // 1: google.ads.googleads.v16.enums.BiddingStrategyStatusEnum.BiddingStrategyStatus - (enums.BiddingStrategyTypeEnum_BiddingStrategyType)(0), // 2: google.ads.googleads.v16.enums.BiddingStrategyTypeEnum.BiddingStrategyType - (*common.EnhancedCpc)(nil), // 3: google.ads.googleads.v16.common.EnhancedCpc - (*common.MaximizeConversionValue)(nil), // 4: google.ads.googleads.v16.common.MaximizeConversionValue - (*common.MaximizeConversions)(nil), // 5: google.ads.googleads.v16.common.MaximizeConversions - (*common.TargetCpa)(nil), // 6: google.ads.googleads.v16.common.TargetCpa - (*common.TargetImpressionShare)(nil), // 7: google.ads.googleads.v16.common.TargetImpressionShare - (*common.TargetRoas)(nil), // 8: google.ads.googleads.v16.common.TargetRoas - (*common.TargetSpend)(nil), // 9: google.ads.googleads.v16.common.TargetSpend -} -var file_google_ads_googleads_v16_resources_bidding_strategy_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.BiddingStrategy.status:type_name -> google.ads.googleads.v16.enums.BiddingStrategyStatusEnum.BiddingStrategyStatus - 2, // 1: google.ads.googleads.v16.resources.BiddingStrategy.type:type_name -> google.ads.googleads.v16.enums.BiddingStrategyTypeEnum.BiddingStrategyType - 3, // 2: google.ads.googleads.v16.resources.BiddingStrategy.enhanced_cpc:type_name -> google.ads.googleads.v16.common.EnhancedCpc - 4, // 3: google.ads.googleads.v16.resources.BiddingStrategy.maximize_conversion_value:type_name -> google.ads.googleads.v16.common.MaximizeConversionValue - 5, // 4: google.ads.googleads.v16.resources.BiddingStrategy.maximize_conversions:type_name -> google.ads.googleads.v16.common.MaximizeConversions - 6, // 5: google.ads.googleads.v16.resources.BiddingStrategy.target_cpa:type_name -> google.ads.googleads.v16.common.TargetCpa - 7, // 6: google.ads.googleads.v16.resources.BiddingStrategy.target_impression_share:type_name -> google.ads.googleads.v16.common.TargetImpressionShare - 8, // 7: google.ads.googleads.v16.resources.BiddingStrategy.target_roas:type_name -> google.ads.googleads.v16.common.TargetRoas - 9, // 8: google.ads.googleads.v16.resources.BiddingStrategy.target_spend:type_name -> google.ads.googleads.v16.common.TargetSpend + return file_google_ads_googleads_v17_resources_bidding_strategy_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_bidding_strategy_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_bidding_strategy_proto_goTypes = []interface{}{ + (*BiddingStrategy)(nil), // 0: google.ads.googleads.v17.resources.BiddingStrategy + (enums.BiddingStrategyStatusEnum_BiddingStrategyStatus)(0), // 1: google.ads.googleads.v17.enums.BiddingStrategyStatusEnum.BiddingStrategyStatus + (enums.BiddingStrategyTypeEnum_BiddingStrategyType)(0), // 2: google.ads.googleads.v17.enums.BiddingStrategyTypeEnum.BiddingStrategyType + (*common.EnhancedCpc)(nil), // 3: google.ads.googleads.v17.common.EnhancedCpc + (*common.MaximizeConversionValue)(nil), // 4: google.ads.googleads.v17.common.MaximizeConversionValue + (*common.MaximizeConversions)(nil), // 5: google.ads.googleads.v17.common.MaximizeConversions + (*common.TargetCpa)(nil), // 6: google.ads.googleads.v17.common.TargetCpa + (*common.TargetImpressionShare)(nil), // 7: google.ads.googleads.v17.common.TargetImpressionShare + (*common.TargetRoas)(nil), // 8: google.ads.googleads.v17.common.TargetRoas + (*common.TargetSpend)(nil), // 9: google.ads.googleads.v17.common.TargetSpend +} +var file_google_ads_googleads_v17_resources_bidding_strategy_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.BiddingStrategy.status:type_name -> google.ads.googleads.v17.enums.BiddingStrategyStatusEnum.BiddingStrategyStatus + 2, // 1: google.ads.googleads.v17.resources.BiddingStrategy.type:type_name -> google.ads.googleads.v17.enums.BiddingStrategyTypeEnum.BiddingStrategyType + 3, // 2: google.ads.googleads.v17.resources.BiddingStrategy.enhanced_cpc:type_name -> google.ads.googleads.v17.common.EnhancedCpc + 4, // 3: google.ads.googleads.v17.resources.BiddingStrategy.maximize_conversion_value:type_name -> google.ads.googleads.v17.common.MaximizeConversionValue + 5, // 4: google.ads.googleads.v17.resources.BiddingStrategy.maximize_conversions:type_name -> google.ads.googleads.v17.common.MaximizeConversions + 6, // 5: google.ads.googleads.v17.resources.BiddingStrategy.target_cpa:type_name -> google.ads.googleads.v17.common.TargetCpa + 7, // 6: google.ads.googleads.v17.resources.BiddingStrategy.target_impression_share:type_name -> google.ads.googleads.v17.common.TargetImpressionShare + 8, // 7: google.ads.googleads.v17.resources.BiddingStrategy.target_roas:type_name -> google.ads.googleads.v17.common.TargetRoas + 9, // 8: google.ads.googleads.v17.resources.BiddingStrategy.target_spend:type_name -> google.ads.googleads.v17.common.TargetSpend 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 @@ -516,13 +516,13 @@ var file_google_ads_googleads_v16_resources_bidding_strategy_proto_depIdxs = []i 0, // [0:9] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_bidding_strategy_proto_init() } -func file_google_ads_googleads_v16_resources_bidding_strategy_proto_init() { - if File_google_ads_googleads_v16_resources_bidding_strategy_proto != nil { +func init() { file_google_ads_googleads_v17_resources_bidding_strategy_proto_init() } +func file_google_ads_googleads_v17_resources_bidding_strategy_proto_init() { + if File_google_ads_googleads_v17_resources_bidding_strategy_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_bidding_strategy_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_bidding_strategy_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BiddingStrategy); i { case 0: return &v.state @@ -535,7 +535,7 @@ func file_google_ads_googleads_v16_resources_bidding_strategy_proto_init() { } } } - file_google_ads_googleads_v16_resources_bidding_strategy_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_bidding_strategy_proto_msgTypes[0].OneofWrappers = []interface{}{ (*BiddingStrategy_EnhancedCpc)(nil), (*BiddingStrategy_MaximizeConversionValue)(nil), (*BiddingStrategy_MaximizeConversions)(nil), @@ -548,18 +548,18 @@ func file_google_ads_googleads_v16_resources_bidding_strategy_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_bidding_strategy_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_bidding_strategy_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_bidding_strategy_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_bidding_strategy_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_bidding_strategy_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_bidding_strategy_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_bidding_strategy_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_bidding_strategy_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_bidding_strategy_proto = out.File - file_google_ads_googleads_v16_resources_bidding_strategy_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_bidding_strategy_proto_goTypes = nil - file_google_ads_googleads_v16_resources_bidding_strategy_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_bidding_strategy_proto = out.File + file_google_ads_googleads_v17_resources_bidding_strategy_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_bidding_strategy_proto_goTypes = nil + file_google_ads_googleads_v17_resources_bidding_strategy_proto_depIdxs = nil } diff --git a/resources/bidding_strategy_simulation.pb.go b/resources/bidding_strategy_simulation.pb.go index 1acb7d50..287c510f 100644 --- a/resources/bidding_strategy_simulation.pb.go +++ b/resources/bidding_strategy_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/resources/bidding_strategy_simulation.proto +// source: google/ads/googleads/v17/resources/bidding_strategy_simulation.proto package resources @@ -55,9 +55,9 @@ type BiddingStrategySimulation struct { // Output only. Bidding strategy shared set id of the simulation. BiddingStrategyId int64 `protobuf:"varint,2,opt,name=bidding_strategy_id,json=biddingStrategyId,proto3" json:"bidding_strategy_id,omitempty"` // Output only. The field that the simulation modifies. - Type enums.SimulationTypeEnum_SimulationType `protobuf:"varint,3,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.SimulationTypeEnum_SimulationType" json:"type,omitempty"` + Type enums.SimulationTypeEnum_SimulationType `protobuf:"varint,3,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.SimulationTypeEnum_SimulationType" json:"type,omitempty"` // Output only. How the simulation modifies the field. - ModificationMethod enums.SimulationModificationMethodEnum_SimulationModificationMethod `protobuf:"varint,4,opt,name=modification_method,json=modificationMethod,proto3,enum=google.ads.googleads.v16.enums.SimulationModificationMethodEnum_SimulationModificationMethod" json:"modification_method,omitempty"` + ModificationMethod enums.SimulationModificationMethodEnum_SimulationModificationMethod `protobuf:"varint,4,opt,name=modification_method,json=modificationMethod,proto3,enum=google.ads.googleads.v17.enums.SimulationModificationMethodEnum_SimulationModificationMethod" json:"modification_method,omitempty"` // Output only. First day on which the simulation is based, in YYYY-MM-DD // format. StartDate string `protobuf:"bytes,5,opt,name=start_date,json=startDate,proto3" json:"start_date,omitempty"` @@ -76,7 +76,7 @@ type BiddingStrategySimulation struct { func (x *BiddingStrategySimulation) Reset() { *x = BiddingStrategySimulation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_bidding_strategy_simulation_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -89,7 +89,7 @@ func (x *BiddingStrategySimulation) String() string { func (*BiddingStrategySimulation) ProtoMessage() {} func (x *BiddingStrategySimulation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_bidding_strategy_simulation_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -102,7 +102,7 @@ func (x *BiddingStrategySimulation) ProtoReflect() protoreflect.Message { // Deprecated: Use BiddingStrategySimulation.ProtoReflect.Descriptor instead. func (*BiddingStrategySimulation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_bidding_strategy_simulation_proto_rawDescGZIP(), []int{0} } func (x *BiddingStrategySimulation) GetResourceName() string { @@ -186,25 +186,25 @@ func (*BiddingStrategySimulation_TargetCpaPointList) isBiddingStrategySimulation func (*BiddingStrategySimulation_TargetRoasPointList) isBiddingStrategySimulation_PointList() {} -var File_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_bidding_strategy_simulation_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_bidding_strategy_simulation_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, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x5f, 0x73, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 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, 0x6e, 0x2f, 0x73, 0x69, 0x6d, 0x75, + 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, 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, 0x73, 0x69, 0x6d, + 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, 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, + 0x6f, 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, 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, @@ -223,14 +223,14 @@ var file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_ra 0x03, 0xe0, 0x41, 0x03, 0x52, 0x11, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x49, 0x64, 0x12, 0x5a, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x93, 0x01, 0x0a, 0x13, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x04, 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, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, @@ -244,7 +244,7 @@ var file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_ra 0x15, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x70, 0x61, 0x5f, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x07, 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, 0x54, + 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, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x12, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x61, 0x50, 0x6f, 0x69, @@ -252,7 +252,7 @@ var file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_ra 0x5f, 0x72, 0x6f, 0x61, 0x73, 0x5f, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x08, 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, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, + 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, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x13, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x6f, 0x61, 0x73, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x4c, 0x69, @@ -270,50 +270,50 @@ var file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_ra 0x7d, 0x7e, 0x7b, 0x65, 0x6e, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x7d, 0x42, 0x0c, 0x0a, 0x0a, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x73, 0x74, 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, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x1e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, + 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, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, + 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, + 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, 0x70, + 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_bidding_strategy_simulation_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_rawDescData = file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_rawDesc + file_google_ads_googleads_v17_resources_bidding_strategy_simulation_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_bidding_strategy_simulation_proto_rawDescData = file_google_ads_googleads_v17_resources_bidding_strategy_simulation_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_rawDescData) +func file_google_ads_googleads_v17_resources_bidding_strategy_simulation_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_bidding_strategy_simulation_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_bidding_strategy_simulation_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_bidding_strategy_simulation_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_rawDescData + return file_google_ads_googleads_v17_resources_bidding_strategy_simulation_proto_rawDescData } -var file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_goTypes = []interface{}{ - (*BiddingStrategySimulation)(nil), // 0: google.ads.googleads.v16.resources.BiddingStrategySimulation - (enums.SimulationTypeEnum_SimulationType)(0), // 1: google.ads.googleads.v16.enums.SimulationTypeEnum.SimulationType - (enums.SimulationModificationMethodEnum_SimulationModificationMethod)(0), // 2: google.ads.googleads.v16.enums.SimulationModificationMethodEnum.SimulationModificationMethod - (*common.TargetCpaSimulationPointList)(nil), // 3: google.ads.googleads.v16.common.TargetCpaSimulationPointList - (*common.TargetRoasSimulationPointList)(nil), // 4: google.ads.googleads.v16.common.TargetRoasSimulationPointList +var file_google_ads_googleads_v17_resources_bidding_strategy_simulation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_bidding_strategy_simulation_proto_goTypes = []interface{}{ + (*BiddingStrategySimulation)(nil), // 0: google.ads.googleads.v17.resources.BiddingStrategySimulation + (enums.SimulationTypeEnum_SimulationType)(0), // 1: google.ads.googleads.v17.enums.SimulationTypeEnum.SimulationType + (enums.SimulationModificationMethodEnum_SimulationModificationMethod)(0), // 2: google.ads.googleads.v17.enums.SimulationModificationMethodEnum.SimulationModificationMethod + (*common.TargetCpaSimulationPointList)(nil), // 3: google.ads.googleads.v17.common.TargetCpaSimulationPointList + (*common.TargetRoasSimulationPointList)(nil), // 4: google.ads.googleads.v17.common.TargetRoasSimulationPointList } -var file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.BiddingStrategySimulation.type:type_name -> google.ads.googleads.v16.enums.SimulationTypeEnum.SimulationType - 2, // 1: google.ads.googleads.v16.resources.BiddingStrategySimulation.modification_method:type_name -> google.ads.googleads.v16.enums.SimulationModificationMethodEnum.SimulationModificationMethod - 3, // 2: google.ads.googleads.v16.resources.BiddingStrategySimulation.target_cpa_point_list:type_name -> google.ads.googleads.v16.common.TargetCpaSimulationPointList - 4, // 3: google.ads.googleads.v16.resources.BiddingStrategySimulation.target_roas_point_list:type_name -> google.ads.googleads.v16.common.TargetRoasSimulationPointList +var file_google_ads_googleads_v17_resources_bidding_strategy_simulation_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.BiddingStrategySimulation.type:type_name -> google.ads.googleads.v17.enums.SimulationTypeEnum.SimulationType + 2, // 1: google.ads.googleads.v17.resources.BiddingStrategySimulation.modification_method:type_name -> google.ads.googleads.v17.enums.SimulationModificationMethodEnum.SimulationModificationMethod + 3, // 2: google.ads.googleads.v17.resources.BiddingStrategySimulation.target_cpa_point_list:type_name -> google.ads.googleads.v17.common.TargetCpaSimulationPointList + 4, // 3: google.ads.googleads.v17.resources.BiddingStrategySimulation.target_roas_point_list:type_name -> google.ads.googleads.v17.common.TargetRoasSimulationPointList 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 @@ -321,13 +321,13 @@ var file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_de 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_init() } -func file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_init() { - if File_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto != nil { +func init() { file_google_ads_googleads_v17_resources_bidding_strategy_simulation_proto_init() } +func file_google_ads_googleads_v17_resources_bidding_strategy_simulation_proto_init() { + if File_google_ads_googleads_v17_resources_bidding_strategy_simulation_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_bidding_strategy_simulation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BiddingStrategySimulation); i { case 0: return &v.state @@ -340,7 +340,7 @@ func file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_i } } } - file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_bidding_strategy_simulation_proto_msgTypes[0].OneofWrappers = []interface{}{ (*BiddingStrategySimulation_TargetCpaPointList)(nil), (*BiddingStrategySimulation_TargetRoasPointList)(nil), } @@ -348,18 +348,18 @@ func file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_i out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_bidding_strategy_simulation_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_bidding_strategy_simulation_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_bidding_strategy_simulation_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_bidding_strategy_simulation_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto = out.File - file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_goTypes = nil - file_google_ads_googleads_v16_resources_bidding_strategy_simulation_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_bidding_strategy_simulation_proto = out.File + file_google_ads_googleads_v17_resources_bidding_strategy_simulation_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_bidding_strategy_simulation_proto_goTypes = nil + file_google_ads_googleads_v17_resources_bidding_strategy_simulation_proto_depIdxs = nil } diff --git a/resources/billing_setup.pb.go b/resources/billing_setup.pb.go index 87f4fa39..abccbf03 100644 --- a/resources/billing_setup.pb.go +++ b/resources/billing_setup.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/billing_setup.proto +// source: google/ads/googleads/v17/resources/billing_setup.proto package resources @@ -51,7 +51,7 @@ type BillingSetup struct { // Output only. The ID of the billing setup. Id *int64 `protobuf:"varint,15,opt,name=id,proto3,oneof" json:"id,omitempty"` // Output only. The status of the billing setup. - Status enums.BillingSetupStatusEnum_BillingSetupStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.BillingSetupStatusEnum_BillingSetupStatus" json:"status,omitempty"` + Status enums.BillingSetupStatusEnum_BillingSetupStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.BillingSetupStatusEnum_BillingSetupStatus" json:"status,omitempty"` // Immutable. The resource name of the payments account associated with this // billing setup. Payments resource names have the form: // @@ -92,7 +92,7 @@ type BillingSetup struct { func (x *BillingSetup) Reset() { *x = BillingSetup{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_billing_setup_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_billing_setup_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -105,7 +105,7 @@ func (x *BillingSetup) String() string { func (*BillingSetup) ProtoMessage() {} func (x *BillingSetup) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_billing_setup_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_billing_setup_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -118,7 +118,7 @@ func (x *BillingSetup) ProtoReflect() protoreflect.Message { // Deprecated: Use BillingSetup.ProtoReflect.Descriptor instead. func (*BillingSetup) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_billing_setup_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_billing_setup_proto_rawDescGZIP(), []int{0} } func (x *BillingSetup) GetResourceName() string { @@ -210,7 +210,7 @@ type BillingSetup_StartDateTime struct { type BillingSetup_StartTimeType struct { // Immutable. The start time as a type. Only NOW is allowed. - StartTimeType enums.TimeTypeEnum_TimeType `protobuf:"varint,10,opt,name=start_time_type,json=startTimeType,proto3,enum=google.ads.googleads.v16.enums.TimeTypeEnum_TimeType,oneof"` + StartTimeType enums.TimeTypeEnum_TimeType `protobuf:"varint,10,opt,name=start_time_type,json=startTimeType,proto3,enum=google.ads.googleads.v17.enums.TimeTypeEnum_TimeType,oneof"` } func (*BillingSetup_StartDateTime) isBillingSetup_StartTime() {} @@ -229,7 +229,7 @@ type BillingSetup_EndDateTime struct { type BillingSetup_EndTimeType struct { // Output only. The end time as a type. The only possible value is FOREVER. - EndTimeType enums.TimeTypeEnum_TimeType `protobuf:"varint,14,opt,name=end_time_type,json=endTimeType,proto3,enum=google.ads.googleads.v16.enums.TimeTypeEnum_TimeType,oneof"` + EndTimeType enums.TimeTypeEnum_TimeType `protobuf:"varint,14,opt,name=end_time_type,json=endTimeType,proto3,enum=google.ads.googleads.v17.enums.TimeTypeEnum_TimeType,oneof"` } func (*BillingSetup_EndDateTime) isBillingSetup_EndTime() {} @@ -274,7 +274,7 @@ type BillingSetup_PaymentsAccountInfo struct { func (x *BillingSetup_PaymentsAccountInfo) Reset() { *x = BillingSetup_PaymentsAccountInfo{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_billing_setup_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_billing_setup_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -287,7 +287,7 @@ func (x *BillingSetup_PaymentsAccountInfo) String() string { func (*BillingSetup_PaymentsAccountInfo) ProtoMessage() {} func (x *BillingSetup_PaymentsAccountInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_billing_setup_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_billing_setup_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -300,7 +300,7 @@ func (x *BillingSetup_PaymentsAccountInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use BillingSetup_PaymentsAccountInfo.ProtoReflect.Descriptor instead. func (*BillingSetup_PaymentsAccountInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_billing_setup_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v17_resources_billing_setup_proto_rawDescGZIP(), []int{0, 0} } func (x *BillingSetup_PaymentsAccountInfo) GetPaymentsAccountId() string { @@ -338,21 +338,21 @@ func (x *BillingSetup_PaymentsAccountInfo) GetSecondaryPaymentsProfileId() strin return "" } -var File_google_ads_googleads_v16_resources_billing_setup_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_billing_setup_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_billing_setup_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_billing_setup_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, 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, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x74, 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, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x39, 0x67, 0x6f, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x62, 0x69, 0x6c, + 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, 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, 0x70, + 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, 0x65, @@ -367,7 +367,7 @@ var file_google_ads_googleads_v16_resources_billing_setup_proto_rawDesc = []byte 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x02, 0x52, 0x02, 0x69, 0x64, 0x88, 0x01, 0x01, 0x12, 0x66, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 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, 0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x75, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x75, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, @@ -381,7 +381,7 @@ var file_google_ads_googleads_v16_resources_billing_setup_proto_rawDesc = []byte 0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x0c, 0x20, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x75, 0x70, 0x2e, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x52, 0x13, 0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, @@ -391,7 +391,7 @@ var file_google_ads_googleads_v16_resources_billing_setup_proto_rawDesc = []byte 0x72, 0x74, 0x44, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x64, 0x0a, 0x0f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 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, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x00, 0x52, 0x0d, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x54, 0x79, 0x70, 0x65, @@ -400,7 +400,7 @@ var file_google_ads_googleads_v16_resources_billing_setup_proto_rawDesc = []byte 0x65, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x60, 0x0a, 0x0d, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0e, 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, 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, 0x0b, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x54, 0x79, 0x70, 0x65, 0x1a, 0xd8, 0x03, @@ -445,48 +445,48 @@ var file_google_ads_googleads_v16_resources_billing_setup_proto_rawDesc = []byte 0x13, 0x0a, 0x11, 0x5f, 0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x83, 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, 0x11, 0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 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_billing_setup_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_billing_setup_proto_rawDescData = file_google_ads_googleads_v16_resources_billing_setup_proto_rawDesc + file_google_ads_googleads_v17_resources_billing_setup_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_billing_setup_proto_rawDescData = file_google_ads_googleads_v17_resources_billing_setup_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_billing_setup_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_billing_setup_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_billing_setup_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_billing_setup_proto_rawDescData) +func file_google_ads_googleads_v17_resources_billing_setup_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_billing_setup_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_billing_setup_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_billing_setup_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_billing_setup_proto_rawDescData + return file_google_ads_googleads_v17_resources_billing_setup_proto_rawDescData } -var file_google_ads_googleads_v16_resources_billing_setup_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v16_resources_billing_setup_proto_goTypes = []interface{}{ - (*BillingSetup)(nil), // 0: google.ads.googleads.v16.resources.BillingSetup - (*BillingSetup_PaymentsAccountInfo)(nil), // 1: google.ads.googleads.v16.resources.BillingSetup.PaymentsAccountInfo - (enums.BillingSetupStatusEnum_BillingSetupStatus)(0), // 2: google.ads.googleads.v16.enums.BillingSetupStatusEnum.BillingSetupStatus - (enums.TimeTypeEnum_TimeType)(0), // 3: google.ads.googleads.v16.enums.TimeTypeEnum.TimeType +var file_google_ads_googleads_v17_resources_billing_setup_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v17_resources_billing_setup_proto_goTypes = []interface{}{ + (*BillingSetup)(nil), // 0: google.ads.googleads.v17.resources.BillingSetup + (*BillingSetup_PaymentsAccountInfo)(nil), // 1: google.ads.googleads.v17.resources.BillingSetup.PaymentsAccountInfo + (enums.BillingSetupStatusEnum_BillingSetupStatus)(0), // 2: google.ads.googleads.v17.enums.BillingSetupStatusEnum.BillingSetupStatus + (enums.TimeTypeEnum_TimeType)(0), // 3: google.ads.googleads.v17.enums.TimeTypeEnum.TimeType } -var file_google_ads_googleads_v16_resources_billing_setup_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v16.resources.BillingSetup.status:type_name -> google.ads.googleads.v16.enums.BillingSetupStatusEnum.BillingSetupStatus - 1, // 1: google.ads.googleads.v16.resources.BillingSetup.payments_account_info:type_name -> google.ads.googleads.v16.resources.BillingSetup.PaymentsAccountInfo - 3, // 2: google.ads.googleads.v16.resources.BillingSetup.start_time_type:type_name -> google.ads.googleads.v16.enums.TimeTypeEnum.TimeType - 3, // 3: google.ads.googleads.v16.resources.BillingSetup.end_time_type:type_name -> google.ads.googleads.v16.enums.TimeTypeEnum.TimeType +var file_google_ads_googleads_v17_resources_billing_setup_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v17.resources.BillingSetup.status:type_name -> google.ads.googleads.v17.enums.BillingSetupStatusEnum.BillingSetupStatus + 1, // 1: google.ads.googleads.v17.resources.BillingSetup.payments_account_info:type_name -> google.ads.googleads.v17.resources.BillingSetup.PaymentsAccountInfo + 3, // 2: google.ads.googleads.v17.resources.BillingSetup.start_time_type:type_name -> google.ads.googleads.v17.enums.TimeTypeEnum.TimeType + 3, // 3: google.ads.googleads.v17.resources.BillingSetup.end_time_type:type_name -> google.ads.googleads.v17.enums.TimeTypeEnum.TimeType 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 @@ -494,13 +494,13 @@ var file_google_ads_googleads_v16_resources_billing_setup_proto_depIdxs = []int3 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_billing_setup_proto_init() } -func file_google_ads_googleads_v16_resources_billing_setup_proto_init() { - if File_google_ads_googleads_v16_resources_billing_setup_proto != nil { +func init() { file_google_ads_googleads_v17_resources_billing_setup_proto_init() } +func file_google_ads_googleads_v17_resources_billing_setup_proto_init() { + if File_google_ads_googleads_v17_resources_billing_setup_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_billing_setup_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_billing_setup_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BillingSetup); i { case 0: return &v.state @@ -512,7 +512,7 @@ func file_google_ads_googleads_v16_resources_billing_setup_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_billing_setup_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_billing_setup_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BillingSetup_PaymentsAccountInfo); i { case 0: return &v.state @@ -525,29 +525,29 @@ func file_google_ads_googleads_v16_resources_billing_setup_proto_init() { } } } - file_google_ads_googleads_v16_resources_billing_setup_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_billing_setup_proto_msgTypes[0].OneofWrappers = []interface{}{ (*BillingSetup_StartDateTime)(nil), (*BillingSetup_StartTimeType)(nil), (*BillingSetup_EndDateTime)(nil), (*BillingSetup_EndTimeType)(nil), } - file_google_ads_googleads_v16_resources_billing_setup_proto_msgTypes[1].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_billing_setup_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_billing_setup_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_billing_setup_proto_rawDesc, NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_billing_setup_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_billing_setup_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_billing_setup_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_billing_setup_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_billing_setup_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_billing_setup_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_billing_setup_proto = out.File - file_google_ads_googleads_v16_resources_billing_setup_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_billing_setup_proto_goTypes = nil - file_google_ads_googleads_v16_resources_billing_setup_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_billing_setup_proto = out.File + file_google_ads_googleads_v17_resources_billing_setup_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_billing_setup_proto_goTypes = nil + file_google_ads_googleads_v17_resources_billing_setup_proto_depIdxs = nil } diff --git a/resources/call_view.pb.go b/resources/call_view.pb.go index a4e7c1fe..33019a64 100644 --- a/resources/call_view.pb.go +++ b/resources/call_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/call_view.proto +// source: google/ads/googleads/v17/resources/call_view.proto package resources @@ -60,17 +60,17 @@ type CallView struct { // Output only. The advertiser-provided call end date time. EndCallDateTime string `protobuf:"bytes,6,opt,name=end_call_date_time,json=endCallDateTime,proto3" json:"end_call_date_time,omitempty"` // Output only. The call tracking display location. - CallTrackingDisplayLocation enums.CallTrackingDisplayLocationEnum_CallTrackingDisplayLocation `protobuf:"varint,7,opt,name=call_tracking_display_location,json=callTrackingDisplayLocation,proto3,enum=google.ads.googleads.v16.enums.CallTrackingDisplayLocationEnum_CallTrackingDisplayLocation" json:"call_tracking_display_location,omitempty"` + CallTrackingDisplayLocation enums.CallTrackingDisplayLocationEnum_CallTrackingDisplayLocation `protobuf:"varint,7,opt,name=call_tracking_display_location,json=callTrackingDisplayLocation,proto3,enum=google.ads.googleads.v17.enums.CallTrackingDisplayLocationEnum_CallTrackingDisplayLocation" json:"call_tracking_display_location,omitempty"` // Output only. The type of the call. - Type enums.CallTypeEnum_CallType `protobuf:"varint,8,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.CallTypeEnum_CallType" json:"type,omitempty"` + Type enums.CallTypeEnum_CallType `protobuf:"varint,8,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.CallTypeEnum_CallType" json:"type,omitempty"` // Output only. The status of the call. - CallStatus enums.GoogleVoiceCallStatusEnum_GoogleVoiceCallStatus `protobuf:"varint,9,opt,name=call_status,json=callStatus,proto3,enum=google.ads.googleads.v16.enums.GoogleVoiceCallStatusEnum_GoogleVoiceCallStatus" json:"call_status,omitempty"` + CallStatus enums.GoogleVoiceCallStatusEnum_GoogleVoiceCallStatus `protobuf:"varint,9,opt,name=call_status,json=callStatus,proto3,enum=google.ads.googleads.v17.enums.GoogleVoiceCallStatusEnum_GoogleVoiceCallStatus" json:"call_status,omitempty"` } func (x *CallView) Reset() { *x = CallView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_call_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_call_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -83,7 +83,7 @@ func (x *CallView) String() string { func (*CallView) ProtoMessage() {} func (x *CallView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_call_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_call_view_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 *CallView) ProtoReflect() protoreflect.Message { // Deprecated: Use CallView.ProtoReflect.Descriptor instead. func (*CallView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_call_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_call_view_proto_rawDescGZIP(), []int{0} } func (x *CallView) GetResourceName() string { @@ -162,24 +162,24 @@ func (x *CallView) GetCallStatus() enums.GoogleVoiceCallStatusEnum_GoogleVoiceCa return enums.GoogleVoiceCallStatusEnum_GoogleVoiceCallStatus(0) } -var File_google_ads_googleads_v16_resources_call_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_call_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_call_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_call_view_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, 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, 0x63, 0x61, 0x6c, 0x6c, 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, + 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, 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, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x74, 0x72, + 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, 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, 0x63, 0x61, + 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, 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, 0x67, 0x6f, + 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, @@ -211,7 +211,7 @@ var file_google_ads_googleads_v16_resources_call_view_proto_rawDesc = []byte{ 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, 0x18, 0x07, 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, 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, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, @@ -220,13 +220,13 @@ var file_google_ads_googleads_v16_resources_call_view_proto_rawDesc = []byte{ 0x69, 0x6e, 0x67, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4e, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x08, 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, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x75, 0x0a, 0x0b, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x09, 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, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x56, + 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x43, 0x61, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0a, 0x63, @@ -238,46 +238,46 @@ var file_google_ads_googleads_v16_resources_call_view_proto_rawDesc = []byte{ 0x69, 0x65, 0x77, 0x73, 0x2f, 0x7b, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0xff, 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, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x0d, 0x43, 0x61, 0x6c, 0x6c, 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, 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_call_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_call_view_proto_rawDescData = file_google_ads_googleads_v16_resources_call_view_proto_rawDesc + file_google_ads_googleads_v17_resources_call_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_call_view_proto_rawDescData = file_google_ads_googleads_v17_resources_call_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_call_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_call_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_call_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_call_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_call_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_call_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_call_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_call_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_call_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_call_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_call_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_call_view_proto_goTypes = []interface{}{ - (*CallView)(nil), // 0: google.ads.googleads.v16.resources.CallView - (enums.CallTrackingDisplayLocationEnum_CallTrackingDisplayLocation)(0), // 1: google.ads.googleads.v16.enums.CallTrackingDisplayLocationEnum.CallTrackingDisplayLocation - (enums.CallTypeEnum_CallType)(0), // 2: google.ads.googleads.v16.enums.CallTypeEnum.CallType - (enums.GoogleVoiceCallStatusEnum_GoogleVoiceCallStatus)(0), // 3: google.ads.googleads.v16.enums.GoogleVoiceCallStatusEnum.GoogleVoiceCallStatus +var file_google_ads_googleads_v17_resources_call_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_call_view_proto_goTypes = []interface{}{ + (*CallView)(nil), // 0: google.ads.googleads.v17.resources.CallView + (enums.CallTrackingDisplayLocationEnum_CallTrackingDisplayLocation)(0), // 1: google.ads.googleads.v17.enums.CallTrackingDisplayLocationEnum.CallTrackingDisplayLocation + (enums.CallTypeEnum_CallType)(0), // 2: google.ads.googleads.v17.enums.CallTypeEnum.CallType + (enums.GoogleVoiceCallStatusEnum_GoogleVoiceCallStatus)(0), // 3: google.ads.googleads.v17.enums.GoogleVoiceCallStatusEnum.GoogleVoiceCallStatus } -var file_google_ads_googleads_v16_resources_call_view_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CallView.call_tracking_display_location:type_name -> google.ads.googleads.v16.enums.CallTrackingDisplayLocationEnum.CallTrackingDisplayLocation - 2, // 1: google.ads.googleads.v16.resources.CallView.type:type_name -> google.ads.googleads.v16.enums.CallTypeEnum.CallType - 3, // 2: google.ads.googleads.v16.resources.CallView.call_status:type_name -> google.ads.googleads.v16.enums.GoogleVoiceCallStatusEnum.GoogleVoiceCallStatus +var file_google_ads_googleads_v17_resources_call_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CallView.call_tracking_display_location:type_name -> google.ads.googleads.v17.enums.CallTrackingDisplayLocationEnum.CallTrackingDisplayLocation + 2, // 1: google.ads.googleads.v17.resources.CallView.type:type_name -> google.ads.googleads.v17.enums.CallTypeEnum.CallType + 3, // 2: google.ads.googleads.v17.resources.CallView.call_status:type_name -> google.ads.googleads.v17.enums.GoogleVoiceCallStatusEnum.GoogleVoiceCallStatus 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 @@ -285,13 +285,13 @@ var file_google_ads_googleads_v16_resources_call_view_proto_depIdxs = []int32{ 0, // [0:3] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_call_view_proto_init() } -func file_google_ads_googleads_v16_resources_call_view_proto_init() { - if File_google_ads_googleads_v16_resources_call_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_call_view_proto_init() } +func file_google_ads_googleads_v17_resources_call_view_proto_init() { + if File_google_ads_googleads_v17_resources_call_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_call_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_call_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CallView); i { case 0: return &v.state @@ -308,18 +308,18 @@ func file_google_ads_googleads_v16_resources_call_view_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_call_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_call_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_call_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_call_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_call_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_call_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_call_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_call_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_call_view_proto = out.File - file_google_ads_googleads_v16_resources_call_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_call_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_call_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_call_view_proto = out.File + file_google_ads_googleads_v17_resources_call_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_call_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_call_view_proto_depIdxs = nil } diff --git a/resources/campaign.pb.go b/resources/campaign.pb.go index 9252f46b..2bb728f6 100644 --- a/resources/campaign.pb.go +++ b/resources/campaign.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/campaign.proto +// source: google/ads/googleads/v17/resources/campaign.proto package resources @@ -63,23 +63,23 @@ type Campaign struct { // Provides insight into why a campaign is not serving or not serving // optimally. Modification to the campaign and its related entities might take // a while to be reflected in this status. - PrimaryStatus enums.CampaignPrimaryStatusEnum_CampaignPrimaryStatus `protobuf:"varint,81,opt,name=primary_status,json=primaryStatus,proto3,enum=google.ads.googleads.v16.enums.CampaignPrimaryStatusEnum_CampaignPrimaryStatus" json:"primary_status,omitempty"` + PrimaryStatus enums.CampaignPrimaryStatusEnum_CampaignPrimaryStatus `protobuf:"varint,81,opt,name=primary_status,json=primaryStatus,proto3,enum=google.ads.googleads.v17.enums.CampaignPrimaryStatusEnum_CampaignPrimaryStatus" json:"primary_status,omitempty"` // Output only. The primary status reasons of the campaign. // // Provides insight into why a campaign is not serving or not serving // optimally. These reasons are aggregated to determine an overall // CampaignPrimaryStatus. - PrimaryStatusReasons []enums.CampaignPrimaryStatusReasonEnum_CampaignPrimaryStatusReason `protobuf:"varint,82,rep,packed,name=primary_status_reasons,json=primaryStatusReasons,proto3,enum=google.ads.googleads.v16.enums.CampaignPrimaryStatusReasonEnum_CampaignPrimaryStatusReason" json:"primary_status_reasons,omitempty"` + PrimaryStatusReasons []enums.CampaignPrimaryStatusReasonEnum_CampaignPrimaryStatusReason `protobuf:"varint,82,rep,packed,name=primary_status_reasons,json=primaryStatusReasons,proto3,enum=google.ads.googleads.v17.enums.CampaignPrimaryStatusReasonEnum_CampaignPrimaryStatusReason" json:"primary_status_reasons,omitempty"` // The status of the campaign. // // When a new campaign is added, the status defaults to ENABLED. - Status enums.CampaignStatusEnum_CampaignStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.CampaignStatusEnum_CampaignStatus" json:"status,omitempty"` + Status enums.CampaignStatusEnum_CampaignStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.CampaignStatusEnum_CampaignStatus" json:"status,omitempty"` // Output only. The ad serving status of the campaign. - ServingStatus enums.CampaignServingStatusEnum_CampaignServingStatus `protobuf:"varint,21,opt,name=serving_status,json=servingStatus,proto3,enum=google.ads.googleads.v16.enums.CampaignServingStatusEnum_CampaignServingStatus" json:"serving_status,omitempty"` + ServingStatus enums.CampaignServingStatusEnum_CampaignServingStatus `protobuf:"varint,21,opt,name=serving_status,json=servingStatus,proto3,enum=google.ads.googleads.v17.enums.CampaignServingStatusEnum_CampaignServingStatus" json:"serving_status,omitempty"` // Output only. The system status of the campaign's bidding strategy. - BiddingStrategySystemStatus enums.BiddingStrategySystemStatusEnum_BiddingStrategySystemStatus `protobuf:"varint,78,opt,name=bidding_strategy_system_status,json=biddingStrategySystemStatus,proto3,enum=google.ads.googleads.v16.enums.BiddingStrategySystemStatusEnum_BiddingStrategySystemStatus" json:"bidding_strategy_system_status,omitempty"` + BiddingStrategySystemStatus enums.BiddingStrategySystemStatusEnum_BiddingStrategySystemStatus `protobuf:"varint,78,opt,name=bidding_strategy_system_status,json=biddingStrategySystemStatus,proto3,enum=google.ads.googleads.v17.enums.BiddingStrategySystemStatusEnum_BiddingStrategySystemStatus" json:"bidding_strategy_system_status,omitempty"` // The ad serving optimization status of the campaign. - AdServingOptimizationStatus enums.AdServingOptimizationStatusEnum_AdServingOptimizationStatus `protobuf:"varint,8,opt,name=ad_serving_optimization_status,json=adServingOptimizationStatus,proto3,enum=google.ads.googleads.v16.enums.AdServingOptimizationStatusEnum_AdServingOptimizationStatus" json:"ad_serving_optimization_status,omitempty"` + AdServingOptimizationStatus enums.AdServingOptimizationStatusEnum_AdServingOptimizationStatus `protobuf:"varint,8,opt,name=ad_serving_optimization_status,json=adServingOptimizationStatus,proto3,enum=google.ads.googleads.v17.enums.AdServingOptimizationStatusEnum_AdServingOptimizationStatus" json:"ad_serving_optimization_status,omitempty"` // Immutable. The primary serving target for ads within the campaign. // The targeting options can be refined in `network_settings`. // @@ -88,13 +88,13 @@ type Campaign struct { // // Can be set only when creating campaigns. // After the campaign is created, the field can not be changed. - AdvertisingChannelType enums.AdvertisingChannelTypeEnum_AdvertisingChannelType `protobuf:"varint,9,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,9,opt,name=advertising_channel_type,json=advertisingChannelType,proto3,enum=google.ads.googleads.v17.enums.AdvertisingChannelTypeEnum_AdvertisingChannelType" json:"advertising_channel_type,omitempty"` // Immutable. Optional refinement to `advertising_channel_type`. // Must be a valid sub-type of the parent channel type. // // Can be set only when creating campaigns. // After campaign is created, the field can not be changed. - AdvertisingChannelSubType enums.AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType `protobuf:"varint,10,opt,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,10,opt,name=advertising_channel_sub_type,json=advertisingChannelSubType,proto3,enum=google.ads.googleads.v17.enums.AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType" json:"advertising_channel_sub_type,omitempty"` // The URL template for constructing a tracking URL. TrackingUrlTemplate *string `protobuf:"bytes,60,opt,name=tracking_url_template,json=trackingUrlTemplate,proto3,oneof" json:"tracking_url_template,omitempty"` // The list of mappings used to substitute custom parameter tags in a @@ -104,8 +104,8 @@ type Campaign struct { LocalServicesCampaignSettings *Campaign_LocalServicesCampaignSettings `protobuf:"bytes,75,opt,name=local_services_campaign_settings,json=localServicesCampaignSettings,proto3" json:"local_services_campaign_settings,omitempty"` // Settings for Travel campaign. TravelCampaignSettings *Campaign_TravelCampaignSettings `protobuf:"bytes,85,opt,name=travel_campaign_settings,json=travelCampaignSettings,proto3" json:"travel_campaign_settings,omitempty"` - // Settings for Discovery campaign. - DiscoveryCampaignSettings *Campaign_DiscoveryCampaignSettings `protobuf:"bytes,87,opt,name=discovery_campaign_settings,json=discoveryCampaignSettings,proto3" json:"discovery_campaign_settings,omitempty"` + // Settings for Demand Gen campaign. + DemandGenCampaignSettings *Campaign_DemandGenCampaignSettings `protobuf:"bytes,91,opt,name=demand_gen_campaign_settings,json=demandGenCampaignSettings,proto3" json:"demand_gen_campaign_settings,omitempty"` // Settings for Real-Time Bidding, a feature only available for campaigns // targeting the Ad Exchange network. RealTimeBiddingSetting *common.RealTimeBiddingSetting `protobuf:"bytes,39,opt,name=real_time_bidding_setting,json=realTimeBiddingSetting,proto3" json:"real_time_bidding_setting,omitempty"` @@ -130,7 +130,7 @@ type Campaign struct { // Output only. The resource names of labels attached to this campaign. Labels []string `protobuf:"bytes,61,rep,name=labels,proto3" json:"labels,omitempty"` // Output only. The type of campaign: normal, draft, or experiment. - ExperimentType enums.CampaignExperimentTypeEnum_CampaignExperimentType `protobuf:"varint,17,opt,name=experiment_type,json=experimentType,proto3,enum=google.ads.googleads.v16.enums.CampaignExperimentTypeEnum_CampaignExperimentType" json:"experiment_type,omitempty"` + ExperimentType enums.CampaignExperimentTypeEnum_CampaignExperimentType `protobuf:"varint,17,opt,name=experiment_type,json=experimentType,proto3,enum=google.ads.googleads.v17.enums.CampaignExperimentTypeEnum_CampaignExperimentType" json:"experiment_type,omitempty"` // Output only. The resource name of the base campaign of a draft or // experiment campaign. For base campaigns, this is equal to `resource_name`. // @@ -145,7 +145,7 @@ type Campaign struct { // create a portfolio bidding strategy. // // This field is read-only. - BiddingStrategyType enums.BiddingStrategyTypeEnum_BiddingStrategyType `protobuf:"varint,22,opt,name=bidding_strategy_type,json=biddingStrategyType,proto3,enum=google.ads.googleads.v16.enums.BiddingStrategyTypeEnum_BiddingStrategyType" json:"bidding_strategy_type,omitempty"` + BiddingStrategyType enums.BiddingStrategyTypeEnum_BiddingStrategyType `protobuf:"varint,22,opt,name=bidding_strategy_type,json=biddingStrategyType,proto3,enum=google.ads.googleads.v17.enums.BiddingStrategyTypeEnum_BiddingStrategyType" json:"bidding_strategy_type,omitempty"` // Output only. Resource name of AccessibleBiddingStrategy, a read-only view // of the unrestricted attributes of the attached portfolio bidding strategy // identified by 'bidding_strategy'. Empty, if the campaign does not use a @@ -170,11 +170,10 @@ type Campaign struct { FinalUrlSuffix *string `protobuf:"bytes,65,opt,name=final_url_suffix,json=finalUrlSuffix,proto3,oneof" json:"final_url_suffix,omitempty"` // A list that limits how often each user will see this campaign's ads. FrequencyCaps []*common.FrequencyCapEntry `protobuf:"bytes,40,rep,name=frequency_caps,json=frequencyCaps,proto3" json:"frequency_caps,omitempty"` - // Output only. Brand Safety setting at the individual campaign level. Allows - // for selecting an inventory type to show your ads on content that is the - // right fit for your brand. See - // https://support.google.com/google-ads/answer/7515513. - VideoBrandSafetySuitability enums.BrandSafetySuitabilityEnum_BrandSafetySuitability `protobuf:"varint,42,opt,name=video_brand_safety_suitability,json=videoBrandSafetySuitability,proto3,enum=google.ads.googleads.v16.enums.BrandSafetySuitabilityEnum_BrandSafetySuitability" json:"video_brand_safety_suitability,omitempty"` + // Brand Safety setting at the individual campaign level. Allows for selecting + // an inventory type to show your ads on content that is the right fit for + // your brand. See https://support.google.com/google-ads/answer/7515513. + VideoBrandSafetySuitability enums.BrandSafetySuitabilityEnum_BrandSafetySuitability `protobuf:"varint,42,opt,name=video_brand_safety_suitability,json=videoBrandSafetySuitability,proto3,enum=google.ads.googleads.v17.enums.BrandSafetySuitabilityEnum_BrandSafetySuitability" json:"video_brand_safety_suitability,omitempty"` // Describes how unbranded pharma ads will be displayed. VanityPharma *Campaign_VanityPharma `protobuf:"bytes,44,opt,name=vanity_pharma,json=vanityPharma,proto3" json:"vanity_pharma,omitempty"` // Selective optimization setting for this campaign, which includes a set of @@ -189,7 +188,7 @@ type Campaign struct { // Output only. Campaign-level settings for tracking information. TrackingSetting *Campaign_TrackingSetting `protobuf:"bytes,46,opt,name=tracking_setting,json=trackingSetting,proto3" json:"tracking_setting,omitempty"` // Payment mode for the campaign. - PaymentMode enums.PaymentModeEnum_PaymentMode `protobuf:"varint,52,opt,name=payment_mode,json=paymentMode,proto3,enum=google.ads.googleads.v16.enums.PaymentModeEnum_PaymentMode" json:"payment_mode,omitempty"` + PaymentMode enums.PaymentModeEnum_PaymentMode `protobuf:"varint,52,opt,name=payment_mode,json=paymentMode,proto3,enum=google.ads.googleads.v17.enums.PaymentModeEnum_PaymentMode" json:"payment_mode,omitempty"` // Output only. Optimization score of the campaign. // // Optimization score is an estimate of how well a campaign is set to perform. @@ -205,7 +204,7 @@ type Campaign struct { // The asset field types that should be excluded from this campaign. Asset // links with these field types will not be inherited by this campaign from // the upper level. - ExcludedParentAssetFieldTypes []enums.AssetFieldTypeEnum_AssetFieldType `protobuf:"varint,69,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,69,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 campaign. Asset set // links with these types will not be inherited by this campaign from // the upper level. @@ -216,7 +215,7 @@ type Campaign struct { // and all Location Extension (LE) and Affiliate Location Extensions (ALE) // will not be served under this campaign. // Only LOCATION_SYNC is currently supported. - ExcludedParentAssetSetTypes []enums.AssetSetTypeEnum_AssetSetType `protobuf:"varint,80,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,80,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"` // Represents opting out of URL expansion to more targeted URLs. If opted out // (true), only the final URLs in the asset group or URLs specified in the // advertiser's Google Merchant Center or business data feeds are targeted. @@ -231,11 +230,14 @@ type Campaign struct { HotelPropertyAssetSet *string `protobuf:"bytes,83,opt,name=hotel_property_asset_set,json=hotelPropertyAssetSet,proto3,oneof" json:"hotel_property_asset_set,omitempty"` // Immutable. Listing type of ads served for this campaign. // Field is restricted for usage with Performance Max campaigns. - ListingType *enums.ListingTypeEnum_ListingType `protobuf:"varint,86,opt,name=listing_type,json=listingType,proto3,enum=google.ads.googleads.v16.enums.ListingTypeEnum_ListingType,oneof" json:"listing_type,omitempty"` + ListingType *enums.ListingTypeEnum_ListingType `protobuf:"varint,86,opt,name=listing_type,json=listingType,proto3,enum=google.ads.googleads.v17.enums.ListingTypeEnum_ListingType,oneof" json:"listing_type,omitempty"` // Contains the opt-in/out status of each AssetAutomationType. // See documentation of each asset automation type enum for default // opt in/out behavior. AssetAutomationSettings []*Campaign_AssetAutomationSetting `protobuf:"bytes,88,rep,name=asset_automation_settings,json=assetAutomationSettings,proto3" json:"asset_automation_settings,omitempty"` + // Keyword match type of Campaign. Set to BROAD to set broad matching for all + // keywords in a campaign. + KeywordMatchType enums.CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType `protobuf:"varint,90,opt,name=keyword_match_type,json=keywordMatchType,proto3,enum=google.ads.googleads.v17.enums.CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType" json:"keyword_match_type,omitempty"` // The bidding strategy for the campaign. // // Must be either portfolio (created through BiddingStrategy service) or @@ -263,7 +265,7 @@ type Campaign struct { func (x *Campaign) Reset() { *x = Campaign{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -276,7 +278,7 @@ func (x *Campaign) String() string { func (*Campaign) ProtoMessage() {} func (x *Campaign) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -289,7 +291,7 @@ func (x *Campaign) ProtoReflect() protoreflect.Message { // Deprecated: Use Campaign.ProtoReflect.Descriptor instead. func (*Campaign) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_campaign_proto_rawDescGZIP(), []int{0} } func (x *Campaign) GetResourceName() string { @@ -397,9 +399,9 @@ func (x *Campaign) GetTravelCampaignSettings() *Campaign_TravelCampaignSettings return nil } -func (x *Campaign) GetDiscoveryCampaignSettings() *Campaign_DiscoveryCampaignSettings { +func (x *Campaign) GetDemandGenCampaignSettings() *Campaign_DemandGenCampaignSettings { if x != nil { - return x.DiscoveryCampaignSettings + return x.DemandGenCampaignSettings } return nil } @@ -649,6 +651,13 @@ func (x *Campaign) GetAssetAutomationSettings() []*Campaign_AssetAutomationSetti return nil } +func (x *Campaign) GetKeywordMatchType() enums.CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType { + if x != nil { + return x.KeywordMatchType + } + return enums.CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType(0) +} + func (m *Campaign) GetCampaignBiddingStrategy() isCampaign_CampaignBiddingStrategy { if m != nil { return m.CampaignBiddingStrategy @@ -884,13 +893,13 @@ type Campaign_PerformanceMaxUpgrade struct { PreUpgradeCampaign string `protobuf:"bytes,2,opt,name=pre_upgrade_campaign,json=preUpgradeCampaign,proto3" json:"pre_upgrade_campaign,omitempty"` // Output only. The upgrade status of a campaign requested to be upgraded to // Performance Max. - Status enums.PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus" json:"status,omitempty"` + Status enums.PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus" json:"status,omitempty"` } func (x *Campaign_PerformanceMaxUpgrade) Reset() { *x = Campaign_PerformanceMaxUpgrade{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -903,7 +912,7 @@ func (x *Campaign_PerformanceMaxUpgrade) String() string { func (*Campaign_PerformanceMaxUpgrade) ProtoMessage() {} func (x *Campaign_PerformanceMaxUpgrade) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -916,7 +925,7 @@ func (x *Campaign_PerformanceMaxUpgrade) ProtoReflect() protoreflect.Message { // Deprecated: Use Campaign_PerformanceMaxUpgrade.ProtoReflect.Descriptor instead. func (*Campaign_PerformanceMaxUpgrade) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v17_resources_campaign_proto_rawDescGZIP(), []int{0, 0} } func (x *Campaign_PerformanceMaxUpgrade) GetPerformanceMaxCampaign() string { @@ -966,7 +975,7 @@ type Campaign_NetworkSettings struct { func (x *Campaign_NetworkSettings) Reset() { *x = Campaign_NetworkSettings{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -979,7 +988,7 @@ func (x *Campaign_NetworkSettings) String() string { func (*Campaign_NetworkSettings) ProtoMessage() {} func (x *Campaign_NetworkSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -992,7 +1001,7 @@ func (x *Campaign_NetworkSettings) ProtoReflect() protoreflect.Message { // Deprecated: Use Campaign_NetworkSettings.ProtoReflect.Descriptor instead. func (*Campaign_NetworkSettings) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_proto_rawDescGZIP(), []int{0, 1} + return file_google_ads_googleads_v17_resources_campaign_proto_rawDescGZIP(), []int{0, 1} } func (x *Campaign_NetworkSettings) GetTargetGoogleSearch() bool { @@ -1050,7 +1059,7 @@ type Campaign_HotelSettingInfo struct { func (x *Campaign_HotelSettingInfo) Reset() { *x = Campaign_HotelSettingInfo{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1063,7 +1072,7 @@ func (x *Campaign_HotelSettingInfo) String() string { func (*Campaign_HotelSettingInfo) ProtoMessage() {} func (x *Campaign_HotelSettingInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1076,7 +1085,7 @@ func (x *Campaign_HotelSettingInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use Campaign_HotelSettingInfo.ProtoReflect.Descriptor instead. func (*Campaign_HotelSettingInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_proto_rawDescGZIP(), []int{0, 2} + return file_google_ads_googleads_v17_resources_campaign_proto_rawDescGZIP(), []int{0, 2} } func (x *Campaign_HotelSettingInfo) GetHotelCenterId() int64 { @@ -1107,7 +1116,7 @@ type Campaign_DynamicSearchAdsSetting struct { func (x *Campaign_DynamicSearchAdsSetting) Reset() { *x = Campaign_DynamicSearchAdsSetting{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1120,7 +1129,7 @@ func (x *Campaign_DynamicSearchAdsSetting) String() string { func (*Campaign_DynamicSearchAdsSetting) ProtoMessage() {} func (x *Campaign_DynamicSearchAdsSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1133,7 +1142,7 @@ func (x *Campaign_DynamicSearchAdsSetting) ProtoReflect() protoreflect.Message { // Deprecated: Use Campaign_DynamicSearchAdsSetting.ProtoReflect.Descriptor instead. func (*Campaign_DynamicSearchAdsSetting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_proto_rawDescGZIP(), []int{0, 3} + return file_google_ads_googleads_v17_resources_campaign_proto_rawDescGZIP(), []int{0, 3} } func (x *Campaign_DynamicSearchAdsSetting) GetDomainName() string { @@ -1209,7 +1218,7 @@ type Campaign_ShoppingSetting struct { func (x *Campaign_ShoppingSetting) Reset() { *x = Campaign_ShoppingSetting{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1222,7 +1231,7 @@ func (x *Campaign_ShoppingSetting) String() string { func (*Campaign_ShoppingSetting) ProtoMessage() {} func (x *Campaign_ShoppingSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1235,7 +1244,7 @@ func (x *Campaign_ShoppingSetting) ProtoReflect() protoreflect.Message { // Deprecated: Use Campaign_ShoppingSetting.ProtoReflect.Descriptor instead. func (*Campaign_ShoppingSetting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_proto_rawDescGZIP(), []int{0, 4} + return file_google_ads_googleads_v17_resources_campaign_proto_rawDescGZIP(), []int{0, 4} } func (x *Campaign_ShoppingSetting) GetMerchantId() int64 { @@ -1300,7 +1309,7 @@ type Campaign_TrackingSetting struct { func (x *Campaign_TrackingSetting) Reset() { *x = Campaign_TrackingSetting{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1313,7 +1322,7 @@ func (x *Campaign_TrackingSetting) String() string { func (*Campaign_TrackingSetting) ProtoMessage() {} func (x *Campaign_TrackingSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[6] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1326,7 +1335,7 @@ func (x *Campaign_TrackingSetting) ProtoReflect() protoreflect.Message { // Deprecated: Use Campaign_TrackingSetting.ProtoReflect.Descriptor instead. func (*Campaign_TrackingSetting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_proto_rawDescGZIP(), []int{0, 5} + return file_google_ads_googleads_v17_resources_campaign_proto_rawDescGZIP(), []int{0, 5} } func (x *Campaign_TrackingSetting) GetTrackingUrl() string { @@ -1343,15 +1352,15 @@ type Campaign_GeoTargetTypeSetting struct { unknownFields protoimpl.UnknownFields // The setting used for positive geotargeting in this particular campaign. - PositiveGeoTargetType enums.PositiveGeoTargetTypeEnum_PositiveGeoTargetType `protobuf:"varint,1,opt,name=positive_geo_target_type,json=positiveGeoTargetType,proto3,enum=google.ads.googleads.v16.enums.PositiveGeoTargetTypeEnum_PositiveGeoTargetType" json:"positive_geo_target_type,omitempty"` + PositiveGeoTargetType enums.PositiveGeoTargetTypeEnum_PositiveGeoTargetType `protobuf:"varint,1,opt,name=positive_geo_target_type,json=positiveGeoTargetType,proto3,enum=google.ads.googleads.v17.enums.PositiveGeoTargetTypeEnum_PositiveGeoTargetType" json:"positive_geo_target_type,omitempty"` // The setting used for negative geotargeting in this particular campaign. - NegativeGeoTargetType enums.NegativeGeoTargetTypeEnum_NegativeGeoTargetType `protobuf:"varint,2,opt,name=negative_geo_target_type,json=negativeGeoTargetType,proto3,enum=google.ads.googleads.v16.enums.NegativeGeoTargetTypeEnum_NegativeGeoTargetType" json:"negative_geo_target_type,omitempty"` + NegativeGeoTargetType enums.NegativeGeoTargetTypeEnum_NegativeGeoTargetType `protobuf:"varint,2,opt,name=negative_geo_target_type,json=negativeGeoTargetType,proto3,enum=google.ads.googleads.v17.enums.NegativeGeoTargetTypeEnum_NegativeGeoTargetType" json:"negative_geo_target_type,omitempty"` } func (x *Campaign_GeoTargetTypeSetting) Reset() { *x = Campaign_GeoTargetTypeSetting{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1364,7 +1373,7 @@ func (x *Campaign_GeoTargetTypeSetting) String() string { func (*Campaign_GeoTargetTypeSetting) ProtoMessage() {} func (x *Campaign_GeoTargetTypeSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[7] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1377,7 +1386,7 @@ func (x *Campaign_GeoTargetTypeSetting) ProtoReflect() protoreflect.Message { // Deprecated: Use Campaign_GeoTargetTypeSetting.ProtoReflect.Descriptor instead. func (*Campaign_GeoTargetTypeSetting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_proto_rawDescGZIP(), []int{0, 6} + return file_google_ads_googleads_v17_resources_campaign_proto_rawDescGZIP(), []int{0, 6} } func (x *Campaign_GeoTargetTypeSetting) GetPositiveGeoTargetType() enums.PositiveGeoTargetTypeEnum_PositiveGeoTargetType { @@ -1401,13 +1410,13 @@ type Campaign_LocalCampaignSetting struct { unknownFields protoimpl.UnknownFields // The location source type for this local campaign. - LocationSourceType enums.LocationSourceTypeEnum_LocationSourceType `protobuf:"varint,1,opt,name=location_source_type,json=locationSourceType,proto3,enum=google.ads.googleads.v16.enums.LocationSourceTypeEnum_LocationSourceType" json:"location_source_type,omitempty"` + LocationSourceType enums.LocationSourceTypeEnum_LocationSourceType `protobuf:"varint,1,opt,name=location_source_type,json=locationSourceType,proto3,enum=google.ads.googleads.v17.enums.LocationSourceTypeEnum_LocationSourceType" json:"location_source_type,omitempty"` } func (x *Campaign_LocalCampaignSetting) Reset() { *x = Campaign_LocalCampaignSetting{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[8] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1420,7 +1429,7 @@ func (x *Campaign_LocalCampaignSetting) String() string { func (*Campaign_LocalCampaignSetting) ProtoMessage() {} func (x *Campaign_LocalCampaignSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[8] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[8] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1433,7 +1442,7 @@ func (x *Campaign_LocalCampaignSetting) ProtoReflect() protoreflect.Message { // Deprecated: Use Campaign_LocalCampaignSetting.ProtoReflect.Descriptor instead. func (*Campaign_LocalCampaignSetting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_proto_rawDescGZIP(), []int{0, 7} + return file_google_ads_googleads_v17_resources_campaign_proto_rawDescGZIP(), []int{0, 7} } func (x *Campaign_LocalCampaignSetting) GetLocationSourceType() enums.LocationSourceTypeEnum_LocationSourceType { @@ -1451,17 +1460,17 @@ type Campaign_AppCampaignSetting struct { // Represents the goal which the bidding strategy of this app campaign // should optimize towards. - BiddingStrategyGoalType enums.AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType `protobuf:"varint,1,opt,name=bidding_strategy_goal_type,json=biddingStrategyGoalType,proto3,enum=google.ads.googleads.v16.enums.AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType" json:"bidding_strategy_goal_type,omitempty"` + BiddingStrategyGoalType enums.AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType `protobuf:"varint,1,opt,name=bidding_strategy_goal_type,json=biddingStrategyGoalType,proto3,enum=google.ads.googleads.v17.enums.AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType" json:"bidding_strategy_goal_type,omitempty"` // Immutable. A string that uniquely identifies a mobile application. AppId *string `protobuf:"bytes,4,opt,name=app_id,json=appId,proto3,oneof" json:"app_id,omitempty"` // Immutable. The application store that distributes this specific app. - AppStore enums.AppCampaignAppStoreEnum_AppCampaignAppStore `protobuf:"varint,3,opt,name=app_store,json=appStore,proto3,enum=google.ads.googleads.v16.enums.AppCampaignAppStoreEnum_AppCampaignAppStore" json:"app_store,omitempty"` + AppStore enums.AppCampaignAppStoreEnum_AppCampaignAppStore `protobuf:"varint,3,opt,name=app_store,json=appStore,proto3,enum=google.ads.googleads.v17.enums.AppCampaignAppStoreEnum_AppCampaignAppStore" json:"app_store,omitempty"` } func (x *Campaign_AppCampaignSetting) Reset() { *x = Campaign_AppCampaignSetting{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[9] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1474,7 +1483,7 @@ func (x *Campaign_AppCampaignSetting) String() string { func (*Campaign_AppCampaignSetting) ProtoMessage() {} func (x *Campaign_AppCampaignSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[9] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[9] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1487,7 +1496,7 @@ func (x *Campaign_AppCampaignSetting) ProtoReflect() protoreflect.Message { // Deprecated: Use Campaign_AppCampaignSetting.ProtoReflect.Descriptor instead. func (*Campaign_AppCampaignSetting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_proto_rawDescGZIP(), []int{0, 8} + return file_google_ads_googleads_v17_resources_campaign_proto_rawDescGZIP(), []int{0, 8} } func (x *Campaign_AppCampaignSetting) GetBiddingStrategyGoalType() enums.AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType { @@ -1518,16 +1527,16 @@ type Campaign_VanityPharma struct { unknownFields protoimpl.UnknownFields // The display mode for vanity pharma URLs. - VanityPharmaDisplayUrlMode enums.VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode `protobuf:"varint,1,opt,name=vanity_pharma_display_url_mode,json=vanityPharmaDisplayUrlMode,proto3,enum=google.ads.googleads.v16.enums.VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode" json:"vanity_pharma_display_url_mode,omitempty"` + VanityPharmaDisplayUrlMode enums.VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode `protobuf:"varint,1,opt,name=vanity_pharma_display_url_mode,json=vanityPharmaDisplayUrlMode,proto3,enum=google.ads.googleads.v17.enums.VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode" json:"vanity_pharma_display_url_mode,omitempty"` // The text that will be displayed in display URL of the text ad when // website description is the selected display mode for vanity pharma URLs. - VanityPharmaText enums.VanityPharmaTextEnum_VanityPharmaText `protobuf:"varint,2,opt,name=vanity_pharma_text,json=vanityPharmaText,proto3,enum=google.ads.googleads.v16.enums.VanityPharmaTextEnum_VanityPharmaText" json:"vanity_pharma_text,omitempty"` + VanityPharmaText enums.VanityPharmaTextEnum_VanityPharmaText `protobuf:"varint,2,opt,name=vanity_pharma_text,json=vanityPharmaText,proto3,enum=google.ads.googleads.v17.enums.VanityPharmaTextEnum_VanityPharmaText" json:"vanity_pharma_text,omitempty"` } func (x *Campaign_VanityPharma) Reset() { *x = Campaign_VanityPharma{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[10] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1540,7 +1549,7 @@ func (x *Campaign_VanityPharma) String() string { func (*Campaign_VanityPharma) ProtoMessage() {} func (x *Campaign_VanityPharma) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[10] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[10] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1553,7 +1562,7 @@ func (x *Campaign_VanityPharma) ProtoReflect() protoreflect.Message { // Deprecated: Use Campaign_VanityPharma.ProtoReflect.Descriptor instead. func (*Campaign_VanityPharma) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_proto_rawDescGZIP(), []int{0, 9} + return file_google_ads_googleads_v17_resources_campaign_proto_rawDescGZIP(), []int{0, 9} } func (x *Campaign_VanityPharma) GetVanityPharmaDisplayUrlMode() enums.VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode { @@ -1587,7 +1596,7 @@ type Campaign_SelectiveOptimization struct { func (x *Campaign_SelectiveOptimization) Reset() { *x = Campaign_SelectiveOptimization{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[11] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1600,7 +1609,7 @@ func (x *Campaign_SelectiveOptimization) String() string { func (*Campaign_SelectiveOptimization) ProtoMessage() {} func (x *Campaign_SelectiveOptimization) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[11] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[11] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1613,7 +1622,7 @@ func (x *Campaign_SelectiveOptimization) ProtoReflect() protoreflect.Message { // Deprecated: Use Campaign_SelectiveOptimization.ProtoReflect.Descriptor instead. func (*Campaign_SelectiveOptimization) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_proto_rawDescGZIP(), []int{0, 10} + return file_google_ads_googleads_v17_resources_campaign_proto_rawDescGZIP(), []int{0, 10} } func (x *Campaign_SelectiveOptimization) GetConversionActions() []string { @@ -1631,13 +1640,13 @@ type Campaign_OptimizationGoalSetting struct { unknownFields protoimpl.UnknownFields // The list of optimization goal types. - OptimizationGoalTypes []enums.OptimizationGoalTypeEnum_OptimizationGoalType `protobuf:"varint,1,rep,packed,name=optimization_goal_types,json=optimizationGoalTypes,proto3,enum=google.ads.googleads.v16.enums.OptimizationGoalTypeEnum_OptimizationGoalType" json:"optimization_goal_types,omitempty"` + OptimizationGoalTypes []enums.OptimizationGoalTypeEnum_OptimizationGoalType `protobuf:"varint,1,rep,packed,name=optimization_goal_types,json=optimizationGoalTypes,proto3,enum=google.ads.googleads.v17.enums.OptimizationGoalTypeEnum_OptimizationGoalType" json:"optimization_goal_types,omitempty"` } func (x *Campaign_OptimizationGoalSetting) Reset() { *x = Campaign_OptimizationGoalSetting{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[12] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1650,7 +1659,7 @@ func (x *Campaign_OptimizationGoalSetting) String() string { func (*Campaign_OptimizationGoalSetting) ProtoMessage() {} func (x *Campaign_OptimizationGoalSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[12] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[12] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1663,7 +1672,7 @@ func (x *Campaign_OptimizationGoalSetting) ProtoReflect() protoreflect.Message { // Deprecated: Use Campaign_OptimizationGoalSetting.ProtoReflect.Descriptor instead. func (*Campaign_OptimizationGoalSetting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_proto_rawDescGZIP(), []int{0, 11} + return file_google_ads_googleads_v17_resources_campaign_proto_rawDescGZIP(), []int{0, 11} } func (x *Campaign_OptimizationGoalSetting) GetOptimizationGoalTypes() []enums.OptimizationGoalTypeEnum_OptimizationGoalType { @@ -1688,7 +1697,7 @@ type Campaign_AudienceSetting struct { func (x *Campaign_AudienceSetting) Reset() { *x = Campaign_AudienceSetting{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[13] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1701,7 +1710,7 @@ func (x *Campaign_AudienceSetting) String() string { func (*Campaign_AudienceSetting) ProtoMessage() {} func (x *Campaign_AudienceSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[13] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[13] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1714,7 +1723,7 @@ func (x *Campaign_AudienceSetting) ProtoReflect() protoreflect.Message { // Deprecated: Use Campaign_AudienceSetting.ProtoReflect.Descriptor instead. func (*Campaign_AudienceSetting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_proto_rawDescGZIP(), []int{0, 12} + return file_google_ads_googleads_v17_resources_campaign_proto_rawDescGZIP(), []int{0, 12} } func (x *Campaign_AudienceSetting) GetUseAudienceGrouped() bool { @@ -1737,7 +1746,7 @@ type Campaign_LocalServicesCampaignSettings struct { func (x *Campaign_LocalServicesCampaignSettings) Reset() { *x = Campaign_LocalServicesCampaignSettings{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[14] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1750,7 +1759,7 @@ func (x *Campaign_LocalServicesCampaignSettings) String() string { func (*Campaign_LocalServicesCampaignSettings) ProtoMessage() {} func (x *Campaign_LocalServicesCampaignSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[14] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[14] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1763,7 +1772,7 @@ func (x *Campaign_LocalServicesCampaignSettings) ProtoReflect() protoreflect.Mes // Deprecated: Use Campaign_LocalServicesCampaignSettings.ProtoReflect.Descriptor instead. func (*Campaign_LocalServicesCampaignSettings) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_proto_rawDescGZIP(), []int{0, 13} + return file_google_ads_googleads_v17_resources_campaign_proto_rawDescGZIP(), []int{0, 13} } func (x *Campaign_LocalServicesCampaignSettings) GetCategoryBids() []*Campaign_CategoryBid { @@ -1791,7 +1800,7 @@ type Campaign_CategoryBid struct { func (x *Campaign_CategoryBid) Reset() { *x = Campaign_CategoryBid{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[15] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1804,7 +1813,7 @@ func (x *Campaign_CategoryBid) String() string { func (*Campaign_CategoryBid) ProtoMessage() {} func (x *Campaign_CategoryBid) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[15] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[15] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1817,7 +1826,7 @@ func (x *Campaign_CategoryBid) ProtoReflect() protoreflect.Message { // Deprecated: Use Campaign_CategoryBid.ProtoReflect.Descriptor instead. func (*Campaign_CategoryBid) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_proto_rawDescGZIP(), []int{0, 14} + return file_google_ads_googleads_v17_resources_campaign_proto_rawDescGZIP(), []int{0, 14} } func (x *Campaign_CategoryBid) GetCategoryId() string { @@ -1847,7 +1856,7 @@ type Campaign_TravelCampaignSettings struct { func (x *Campaign_TravelCampaignSettings) Reset() { *x = Campaign_TravelCampaignSettings{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[16] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1860,7 +1869,7 @@ func (x *Campaign_TravelCampaignSettings) String() string { func (*Campaign_TravelCampaignSettings) ProtoMessage() {} func (x *Campaign_TravelCampaignSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[16] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[16] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1873,7 +1882,7 @@ func (x *Campaign_TravelCampaignSettings) ProtoReflect() protoreflect.Message { // Deprecated: Use Campaign_TravelCampaignSettings.ProtoReflect.Descriptor instead. func (*Campaign_TravelCampaignSettings) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_proto_rawDescGZIP(), []int{0, 15} + return file_google_ads_googleads_v17_resources_campaign_proto_rawDescGZIP(), []int{0, 15} } func (x *Campaign_TravelCampaignSettings) GetTravelAccountId() int64 { @@ -1883,8 +1892,8 @@ func (x *Campaign_TravelCampaignSettings) GetTravelAccountId() int64 { return 0 } -// Settings for Discovery campaign. -type Campaign_DiscoveryCampaignSettings struct { +// Settings for Demand Gen campaign. +type Campaign_DemandGenCampaignSettings struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields @@ -1897,23 +1906,23 @@ type Campaign_DiscoveryCampaignSettings struct { UpgradedTargeting *bool `protobuf:"varint,1,opt,name=upgraded_targeting,json=upgradedTargeting,proto3,oneof" json:"upgraded_targeting,omitempty"` } -func (x *Campaign_DiscoveryCampaignSettings) Reset() { - *x = Campaign_DiscoveryCampaignSettings{} +func (x *Campaign_DemandGenCampaignSettings) Reset() { + *x = Campaign_DemandGenCampaignSettings{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[17] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } -func (x *Campaign_DiscoveryCampaignSettings) String() string { +func (x *Campaign_DemandGenCampaignSettings) String() string { return protoimpl.X.MessageStringOf(x) } -func (*Campaign_DiscoveryCampaignSettings) ProtoMessage() {} +func (*Campaign_DemandGenCampaignSettings) ProtoMessage() {} -func (x *Campaign_DiscoveryCampaignSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[17] +func (x *Campaign_DemandGenCampaignSettings) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[17] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1924,12 +1933,12 @@ func (x *Campaign_DiscoveryCampaignSettings) ProtoReflect() protoreflect.Message return mi.MessageOf(x) } -// Deprecated: Use Campaign_DiscoveryCampaignSettings.ProtoReflect.Descriptor instead. -func (*Campaign_DiscoveryCampaignSettings) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_proto_rawDescGZIP(), []int{0, 16} +// Deprecated: Use Campaign_DemandGenCampaignSettings.ProtoReflect.Descriptor instead. +func (*Campaign_DemandGenCampaignSettings) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v17_resources_campaign_proto_rawDescGZIP(), []int{0, 16} } -func (x *Campaign_DiscoveryCampaignSettings) GetUpgradedTargeting() bool { +func (x *Campaign_DemandGenCampaignSettings) GetUpgradedTargeting() bool { if x != nil && x.UpgradedTargeting != nil { return *x.UpgradedTargeting } @@ -1944,15 +1953,15 @@ type Campaign_AssetAutomationSetting struct { unknownFields protoimpl.UnknownFields // The asset automation type advertiser would like to opt-in/out. - AssetAutomationType *enums.AssetAutomationTypeEnum_AssetAutomationType `protobuf:"varint,1,opt,name=asset_automation_type,json=assetAutomationType,proto3,enum=google.ads.googleads.v16.enums.AssetAutomationTypeEnum_AssetAutomationType,oneof" json:"asset_automation_type,omitempty"` + AssetAutomationType *enums.AssetAutomationTypeEnum_AssetAutomationType `protobuf:"varint,1,opt,name=asset_automation_type,json=assetAutomationType,proto3,enum=google.ads.googleads.v17.enums.AssetAutomationTypeEnum_AssetAutomationType,oneof" json:"asset_automation_type,omitempty"` // The opt-in/out status of asset automation type. - AssetAutomationStatus *enums.AssetAutomationStatusEnum_AssetAutomationStatus `protobuf:"varint,2,opt,name=asset_automation_status,json=assetAutomationStatus,proto3,enum=google.ads.googleads.v16.enums.AssetAutomationStatusEnum_AssetAutomationStatus,oneof" json:"asset_automation_status,omitempty"` + AssetAutomationStatus *enums.AssetAutomationStatusEnum_AssetAutomationStatus `protobuf:"varint,2,opt,name=asset_automation_status,json=assetAutomationStatus,proto3,enum=google.ads.googleads.v17.enums.AssetAutomationStatusEnum_AssetAutomationStatus,oneof" json:"asset_automation_status,omitempty"` } func (x *Campaign_AssetAutomationSetting) Reset() { *x = Campaign_AssetAutomationSetting{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[18] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1965,7 +1974,7 @@ func (x *Campaign_AssetAutomationSetting) String() string { func (*Campaign_AssetAutomationSetting) ProtoMessage() {} func (x *Campaign_AssetAutomationSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[18] + mi := &file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[18] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1978,7 +1987,7 @@ func (x *Campaign_AssetAutomationSetting) ProtoReflect() protoreflect.Message { // Deprecated: Use Campaign_AssetAutomationSetting.ProtoReflect.Descriptor instead. func (*Campaign_AssetAutomationSetting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_proto_rawDescGZIP(), []int{0, 17} + return file_google_ads_googleads_v17_resources_campaign_proto_rawDescGZIP(), []int{0, 17} } func (x *Campaign_AssetAutomationSetting) GetAssetAutomationType() enums.AssetAutomationTypeEnum_AssetAutomationType { @@ -1995,1005 +2004,1019 @@ func (x *Campaign_AssetAutomationSetting) GetAssetAutomationStatus() enums.Asset return enums.AssetAutomationStatusEnum_AssetAutomationStatus(0) } -var File_google_ads_googleads_v16_resources_campaign_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_campaign_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_campaign_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_campaign_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, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 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, 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, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, + 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 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, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x63, 0x61, 0x70, 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, 0x63, 0x6f, + 0x67, 0x6f, 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, 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, + 0x2f, 0x67, 0x6f, 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, 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, 0x61, 0x64, + 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, 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, 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, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 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, 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, 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, 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, + 0x6f, 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, 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, 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, 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, 0x61, 0x73, + 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, 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, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, + 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, + 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, 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, 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, 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, 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, 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, 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, + 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, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 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, + 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, 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, 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, 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, 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, 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, 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, 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, 0x1a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, + 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, 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, 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, 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, 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, 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, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, - 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x31, 0x67, 0x6f, 0x6f, + 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, 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, 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, + 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, 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, 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, 0x69, 0x73, 0x74, - 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x39, + 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, 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, 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, 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, + 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, 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, 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, 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, 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, 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, - 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, 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, 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, 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, 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, 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, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x6d, 0x6f, - 0x64, 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, 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, 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, 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, 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, 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, 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, 0x76, 0x61, 0x6e, 0x69, 0x74, 0x79, 0x5f, 0x70, 0x68, 0x61, 0x72, 0x6d, 0x61, 0x5f, - 0x74, 0x65, 0x78, 0x74, 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, 0x82, 0x57, 0x0a, 0x08, 0x43, 0x61, 0x6d, 0x70, 0x61, - 0x69, 0x67, 0x6e, 0x12, 0x4e, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, - 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x29, 0xe0, 0x41, 0x05, 0xfa, - 0x41, 0x23, 0x0a, 0x21, 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, 0x43, 0x61, 0x6d, - 0x70, 0x61, 0x69, 0x67, 0x6e, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, - 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x3b, 0x20, 0x01, 0x28, 0x03, 0x42, - 0x03, 0xe0, 0x41, 0x03, 0x48, 0x01, 0x52, 0x02, 0x69, 0x64, 0x88, 0x01, 0x01, 0x12, 0x17, 0x0a, - 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x3a, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x04, 0x6e, - 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x7b, 0x0a, 0x0e, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, - 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x51, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4f, + 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, 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, 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, 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, 0x84, 0x58, 0x0a, 0x08, 0x43, 0x61, 0x6d, + 0x70, 0x61, 0x69, 0x67, 0x6e, 0x12, 0x4e, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x29, 0xe0, 0x41, + 0x05, 0xfa, 0x41, 0x23, 0x0a, 0x21, 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, 0x43, + 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x3b, 0x20, 0x01, 0x28, + 0x03, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x01, 0x52, 0x02, 0x69, 0x64, 0x88, 0x01, 0x01, 0x12, + 0x17, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x3a, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, + 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x7b, 0x0a, 0x0e, 0x70, 0x72, 0x69, 0x6d, + 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x51, 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, 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, 0x2e, 0x43, 0x61, 0x6d, 0x70, + 0x61, 0x69, 0x67, 0x6e, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, + 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0d, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, + 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x96, 0x01, 0x0a, 0x16, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, + 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x73, + 0x18, 0x52, 0x20, 0x03, 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, + 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x14, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, + 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x73, 0x12, 0x59, + 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 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, - 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, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, - 0x67, 0x6e, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, - 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0d, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, - 0x74, 0x75, 0x73, 0x12, 0x96, 0x01, 0x0a, 0x16, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, - 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x73, 0x18, 0x52, - 0x20, 0x03, 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, 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, 0x2e, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x14, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, - 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x73, 0x12, 0x59, 0x0a, 0x06, - 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x41, 0x2e, 0x67, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, + 0x75, 0x6d, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, + 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x7b, 0x0a, 0x0e, 0x73, 0x65, 0x72, + 0x76, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 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, 0x37, 0x2e, 0x65, 0x6e, 0x75, + 0x6d, 0x73, 0x2e, 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, 0x2e, 0x43, 0x61, 0x6d, + 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, + 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0d, 0x73, 0x65, 0x72, 0x76, 0x69, 0x6e, 0x67, + 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0xa5, 0x01, 0x0a, 0x1e, 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, 0x18, 0x4e, 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, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x2e, 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, + 0x2e, 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, 0x42, 0x03, 0xe0, 0x41, + 0x03, 0x52, 0x1b, 0x62, 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, 0x12, 0xa0, + 0x01, 0x0a, 0x1e, 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, 0x18, 0x08, 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, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 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, 0x52, 0x1b, 0x61, 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, 0x12, 0x90, 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, 0x09, + 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, 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, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x52, 0x16, 0x61, 0x64, + 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, + 0x54, 0x79, 0x70, 0x65, 0x12, 0x9d, 0x01, 0x0a, 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, 0x0a, 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, 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, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x53, 0x75, 0x62, + 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x52, 0x19, 0x61, 0x64, 0x76, 0x65, 0x72, + 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x53, 0x75, 0x62, + 0x54, 0x79, 0x70, 0x65, 0x12, 0x37, 0x0a, 0x15, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, + 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x18, 0x3c, 0x20, + 0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x13, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x55, + 0x72, 0x6c, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 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, 0x0c, 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, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x61, - 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, - 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, - 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x7b, 0x0a, 0x0e, 0x73, 0x65, 0x72, 0x76, 0x69, - 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 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, 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, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, - 0x69, 0x67, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, - 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0d, 0x73, 0x65, 0x72, 0x76, 0x69, 0x6e, 0x67, 0x53, 0x74, - 0x61, 0x74, 0x75, 0x73, 0x12, 0xa5, 0x01, 0x0a, 0x1e, 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, 0x18, 0x4e, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5b, 0x2e, + 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, 0x93, 0x01, 0x0a, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, + 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, + 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x4b, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x4c, 0x6f, 0x63, + 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, + 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x1d, 0x6c, 0x6f, 0x63, 0x61, + 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, + 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x7d, 0x0a, 0x18, 0x74, 0x72, 0x61, + 0x76, 0x65, 0x6c, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x74, + 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x55, 0x20, 0x01, 0x28, 0x0b, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x54, 0x72, 0x61, 0x76, 0x65, 0x6c, + 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, + 0x52, 0x16, 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, + 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x87, 0x01, 0x0a, 0x1c, 0x64, 0x65, 0x6d, + 0x61, 0x6e, 0x64, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, + 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x5b, 0x20, 0x01, 0x28, 0x0b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x44, 0x65, + 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, + 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x19, 0x64, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, + 0x65, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, + 0x67, 0x73, 0x12, 0x72, 0x0a, 0x19, 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, 0x18, + 0x27, 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, 0x52, 0x65, 0x61, 0x6c, 0x54, 0x69, 0x6d, 0x65, + 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x16, + 0x72, 0x65, 0x61, 0x6c, 0x54, 0x69, 0x6d, 0x65, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, + 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x67, 0x0a, 0x10, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, + 0x6b, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x4e, + 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x0f, + 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, + 0x67, 0x0a, 0x0d, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, + 0x18, 0x20, 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, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, + 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, + 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x52, 0x0c, 0x68, 0x6f, 0x74, 0x65, + 0x6c, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x81, 0x01, 0x0a, 0x1a, 0x64, 0x79, 0x6e, + 0x61, 0x6d, 0x69, 0x63, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x61, 0x64, 0x73, 0x5f, + 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x21, 0x20, 0x01, 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, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, - 0x1b, 0x62, 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, 0x12, 0xa0, 0x01, 0x0a, - 0x1e, 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, 0x18, - 0x08, 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, 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, 0x2e, 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, 0x52, 0x1b, 0x61, 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, 0x12, - 0x90, 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, 0x09, 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, 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, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x52, 0x16, 0x61, 0x64, 0x76, 0x65, - 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x54, 0x79, - 0x70, 0x65, 0x12, 0x9d, 0x01, 0x0a, 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, 0x0a, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x57, 0x2e, 0x67, 0x6f, 0x6f, 0x67, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x44, 0x79, 0x6e, 0x61, + 0x6d, 0x69, 0x63, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x64, 0x73, 0x53, 0x65, 0x74, 0x74, + 0x69, 0x6e, 0x67, 0x52, 0x17, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x53, 0x65, 0x61, 0x72, + 0x63, 0x68, 0x41, 0x64, 0x73, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x67, 0x0a, 0x10, + 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, + 0x18, 0x24, 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, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, + 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, + 0x74, 0x69, 0x6e, 0x67, 0x52, 0x0f, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x53, 0x65, + 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x5e, 0x0a, 0x11, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, + 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x2b, 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, 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, 0x71, 0x0a, 0x10, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, + 0x65, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x49, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x41, 0x75, + 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x42, 0x03, 0xe0, + 0x41, 0x05, 0x48, 0x04, 0x52, 0x0f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x65, + 0x74, 0x74, 0x69, 0x6e, 0x67, 0x88, 0x01, 0x01, 0x12, 0x78, 0x0a, 0x17, 0x67, 0x65, 0x6f, 0x5f, + 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x74, + 0x69, 0x6e, 0x67, 0x18, 0x2f, 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, 0x36, 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, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x53, 0x75, 0x62, 0x54, 0x79, - 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x52, 0x19, 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, - 0x73, 0x69, 0x6e, 0x67, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x53, 0x75, 0x62, 0x54, 0x79, - 0x70, 0x65, 0x12, 0x37, 0x0a, 0x15, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x75, - 0x72, 0x6c, 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x18, 0x3c, 0x20, 0x01, 0x28, - 0x09, 0x48, 0x03, 0x52, 0x13, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x72, 0x6c, - 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 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, 0x0c, 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, 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, 0x93, 0x01, 0x0a, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, - 0x69, 0x63, 0x65, 0x73, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, - 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x4b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x6c, - 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, - 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x1d, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x53, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, - 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x7d, 0x0a, 0x18, 0x74, 0x72, 0x61, 0x76, 0x65, - 0x6c, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, - 0x6e, 0x67, 0x73, 0x18, 0x55, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x43, 0x2e, 0x67, 0x6f, 0x6f, 0x67, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, + 0x74, 0x54, 0x79, 0x70, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x14, 0x67, 0x65, + 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, + 0x6e, 0x67, 0x12, 0x77, 0x0a, 0x16, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x63, 0x61, 0x6d, 0x70, + 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x32, 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, 0x72, 0x65, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, + 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, + 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x14, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x43, 0x61, 0x6d, 0x70, + 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x71, 0x0a, 0x14, 0x61, + 0x70, 0x70, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, + 0x69, 0x6e, 0x67, 0x18, 0x33, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, - 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x54, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x43, 0x61, - 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x16, - 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, - 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x86, 0x01, 0x0a, 0x1b, 0x64, 0x69, 0x73, 0x63, 0x6f, - 0x76, 0x65, 0x72, 0x79, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, - 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x57, 0x20, 0x01, 0x28, 0x0b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x44, 0x69, 0x73, 0x63, 0x6f, - 0x76, 0x65, 0x72, 0x79, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, - 0x69, 0x6e, 0x67, 0x73, 0x52, 0x19, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x43, - 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, - 0x72, 0x0a, 0x19, 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, 0x18, 0x27, 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, 0x61, 0x6c, 0x54, 0x69, 0x6d, 0x65, 0x42, 0x69, 0x64, - 0x64, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x16, 0x72, 0x65, 0x61, - 0x6c, 0x54, 0x69, 0x6d, 0x65, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, - 0x69, 0x6e, 0x67, 0x12, 0x67, 0x0a, 0x10, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x73, - 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, - 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x4e, 0x65, 0x74, 0x77, - 0x6f, 0x72, 0x6b, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x0f, 0x6e, 0x65, 0x74, - 0x77, 0x6f, 0x72, 0x6b, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x67, 0x0a, 0x0d, - 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x20, 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, 0x72, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, - 0x6e, 0x2e, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x49, 0x6e, - 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x52, 0x0c, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x53, 0x65, - 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x81, 0x01, 0x0a, 0x1a, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, - 0x63, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x61, 0x64, 0x73, 0x5f, 0x73, 0x65, 0x74, - 0x74, 0x69, 0x6e, 0x67, 0x18, 0x21, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x44, 0x2e, 0x67, 0x6f, 0x6f, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x41, 0x70, 0x70, 0x43, 0x61, 0x6d, 0x70, 0x61, + 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x12, 0x61, 0x70, 0x70, 0x43, + 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x46, + 0x0a, 0x06, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x18, 0x3d, 0x20, 0x03, 0x28, 0x09, 0x42, 0x2e, + 0xe0, 0x41, 0x03, 0xfa, 0x41, 0x28, 0x0a, 0x26, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x06, + 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x12, 0x7f, 0x0a, 0x0f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, + 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x11, 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, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x2e, 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, 0x2e, 0x43, 0x61, 0x6d, 0x70, + 0x61, 0x69, 0x67, 0x6e, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, + 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, + 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x53, 0x0a, 0x0d, 0x62, 0x61, 0x73, 0x65, 0x5f, + 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x18, 0x38, 0x20, 0x01, 0x28, 0x09, 0x42, 0x29, + 0xe0, 0x41, 0x03, 0xfa, 0x41, 0x23, 0x0a, 0x21, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x48, 0x05, 0x52, 0x0c, 0x62, 0x61, 0x73, + 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x5a, 0x0a, 0x0f, + 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x18, + 0x3e, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2c, 0xfa, 0x41, 0x29, 0x0a, 0x27, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, + 0x67, 0x65, 0x74, 0x48, 0x06, 0x52, 0x0e, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, + 0x75, 0x64, 0x67, 0x65, 0x74, 0x88, 0x01, 0x01, 0x12, 0x84, 0x01, 0x0a, 0x15, 0x62, 0x69, 0x64, + 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 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, 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, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x13, 0x62, 0x69, 0x64, 0x64, + 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, + 0x7a, 0x0a, 0x1b, 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, 0x18, 0x47, + 0x20, 0x01, 0x28, 0x09, 0x42, 0x3a, 0xe0, 0x41, 0x03, 0xfa, 0x41, 0x34, 0x0a, 0x32, 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, 0x63, 0x63, 0x65, 0x73, 0x73, 0x69, 0x62, 0x6c, + 0x65, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, + 0x52, 0x19, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x42, 0x69, 0x64, 0x64, + 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x12, 0x22, 0x0a, 0x0a, 0x73, + 0x74, 0x61, 0x72, 0x74, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x3f, 0x20, 0x01, 0x28, 0x09, 0x48, + 0x07, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, + 0x57, 0x0a, 0x0e, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x67, 0x72, 0x6f, 0x75, + 0x70, 0x18, 0x4c, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2b, 0xfa, 0x41, 0x28, 0x0a, 0x26, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, + 0x72, 0x6f, 0x75, 0x70, 0x48, 0x08, 0x52, 0x0d, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, + 0x47, 0x72, 0x6f, 0x75, 0x70, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, + 0x64, 0x61, 0x74, 0x65, 0x18, 0x40, 0x20, 0x01, 0x28, 0x09, 0x48, 0x09, 0x52, 0x07, 0x65, 0x6e, + 0x64, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x2d, 0x0a, 0x10, 0x66, 0x69, 0x6e, 0x61, + 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x73, 0x75, 0x66, 0x66, 0x69, 0x78, 0x18, 0x41, 0x20, 0x01, + 0x28, 0x09, 0x48, 0x0a, 0x52, 0x0e, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x53, 0x75, + 0x66, 0x66, 0x69, 0x78, 0x88, 0x01, 0x01, 0x12, 0x59, 0x0a, 0x0e, 0x66, 0x72, 0x65, 0x71, 0x75, + 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x63, 0x61, 0x70, 0x73, 0x18, 0x28, 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, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x6e, 0x2e, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x61, 0x70, 0x45, 0x6e, + 0x74, 0x72, 0x79, 0x52, 0x0d, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x61, + 0x70, 0x73, 0x12, 0x96, 0x01, 0x0a, 0x1e, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x62, 0x72, 0x61, + 0x6e, 0x64, 0x5f, 0x73, 0x61, 0x66, 0x65, 0x74, 0x79, 0x5f, 0x73, 0x75, 0x69, 0x74, 0x61, 0x62, + 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x2a, 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, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x53, 0x61, 0x66, + 0x65, 0x74, 0x79, 0x53, 0x75, 0x69, 0x74, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x52, 0x1b, + 0x76, 0x69, 0x64, 0x65, 0x6f, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x53, 0x61, 0x66, 0x65, 0x74, 0x79, + 0x53, 0x75, 0x69, 0x74, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x5e, 0x0a, 0x0d, 0x76, + 0x61, 0x6e, 0x69, 0x74, 0x79, 0x5f, 0x70, 0x68, 0x61, 0x72, 0x6d, 0x61, 0x18, 0x2c, 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, 0x37, 0x2e, 0x72, 0x65, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, + 0x2e, 0x56, 0x61, 0x6e, 0x69, 0x74, 0x79, 0x50, 0x68, 0x61, 0x72, 0x6d, 0x61, 0x52, 0x0c, 0x76, + 0x61, 0x6e, 0x69, 0x74, 0x79, 0x50, 0x68, 0x61, 0x72, 0x6d, 0x61, 0x12, 0x79, 0x0a, 0x16, 0x73, + 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x2d, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, + 0x69, 0x76, 0x65, 0x4f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, + 0x15, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x4f, 0x70, 0x74, 0x69, 0x6d, 0x69, + 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x80, 0x01, 0x0a, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6d, + 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x74, + 0x74, 0x69, 0x6e, 0x67, 0x18, 0x36, 0x20, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, - 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, - 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x64, 0x73, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, - 0x52, 0x17, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, - 0x64, 0x73, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x67, 0x0a, 0x10, 0x73, 0x68, 0x6f, - 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x24, 0x20, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x4f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, + 0x52, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x6f, + 0x61, 0x6c, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x6c, 0x0a, 0x10, 0x74, 0x72, 0x61, + 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x2e, 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, 0x72, + 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, - 0x6e, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, - 0x67, 0x52, 0x0f, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, - 0x6e, 0x67, 0x12, 0x5e, 0x0a, 0x11, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, - 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x2b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, + 0x6e, 0x2e, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, + 0x67, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0f, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, + 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x5e, 0x0a, 0x0c, 0x70, 0x61, 0x79, 0x6d, 0x65, + 0x6e, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x18, 0x34, 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, 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, 0x71, 0x0a, 0x10, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x73, - 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x49, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, - 0x6e, 0x63, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, - 0x04, 0x52, 0x0f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, - 0x6e, 0x67, 0x88, 0x01, 0x01, 0x12, 0x78, 0x0a, 0x17, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, - 0x67, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, - 0x18, 0x2f, 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, - 0x36, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, - 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x54, 0x79, - 0x70, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x14, 0x67, 0x65, 0x6f, 0x54, 0x61, - 0x72, 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, - 0x77, 0x0a, 0x16, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, - 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x32, 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, 0x36, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x4c, 0x6f, - 0x63, 0x61, 0x6c, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, - 0x6e, 0x67, 0x52, 0x14, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, - 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x71, 0x0a, 0x14, 0x61, 0x70, 0x70, 0x5f, - 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, - 0x18, 0x33, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, - 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x41, 0x70, 0x70, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, - 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x12, 0x61, 0x70, 0x70, 0x43, 0x61, 0x6d, 0x70, - 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x46, 0x0a, 0x06, 0x6c, - 0x61, 0x62, 0x65, 0x6c, 0x73, 0x18, 0x3d, 0x20, 0x03, 0x28, 0x09, 0x42, 0x2e, 0xe0, 0x41, 0x03, - 0xfa, 0x41, 0x28, 0x0a, 0x26, 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, 0x43, 0x61, - 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x06, 0x6c, 0x61, 0x62, - 0x65, 0x6c, 0x73, 0x12, 0x7f, 0x0a, 0x0f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, - 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x11, 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, 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, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, - 0x6e, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x42, - 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, - 0x54, 0x79, 0x70, 0x65, 0x12, 0x53, 0x0a, 0x0d, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x63, 0x61, 0x6d, - 0x70, 0x61, 0x69, 0x67, 0x6e, 0x18, 0x38, 0x20, 0x01, 0x28, 0x09, 0x42, 0x29, 0xe0, 0x41, 0x03, - 0xfa, 0x41, 0x23, 0x0a, 0x21, 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, 0x43, 0x61, - 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x48, 0x05, 0x52, 0x0c, 0x62, 0x61, 0x73, 0x65, 0x43, 0x61, - 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x5a, 0x0a, 0x0f, 0x63, 0x61, 0x6d, - 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x18, 0x3e, 0x20, 0x01, - 0x28, 0x09, 0x42, 0x2c, 0xfa, 0x41, 0x29, 0x0a, 0x27, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, - 0x48, 0x06, 0x52, 0x0e, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, - 0x65, 0x74, 0x88, 0x01, 0x01, 0x12, 0x84, 0x01, 0x0a, 0x15, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, - 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 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, 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, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x13, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, - 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x7a, 0x0a, 0x1b, - 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, 0x18, 0x47, 0x20, 0x01, 0x28, - 0x09, 0x42, 0x3a, 0xe0, 0x41, 0x03, 0xfa, 0x41, 0x34, 0x0a, 0x32, 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, 0x63, 0x63, 0x65, 0x73, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x42, 0x69, - 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x52, 0x19, 0x61, - 0x63, 0x63, 0x65, 0x73, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, - 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x12, 0x22, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, - 0x74, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x3f, 0x20, 0x01, 0x28, 0x09, 0x48, 0x07, 0x52, 0x09, - 0x73, 0x74, 0x61, 0x72, 0x74, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x57, 0x0a, 0x0e, - 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x4c, - 0x20, 0x01, 0x28, 0x09, 0x42, 0x2b, 0xfa, 0x41, 0x28, 0x0a, 0x26, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x72, 0x6f, 0x75, - 0x70, 0x48, 0x08, 0x52, 0x0d, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x72, 0x6f, - 0x75, 0x70, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x64, 0x61, 0x74, - 0x65, 0x18, 0x40, 0x20, 0x01, 0x28, 0x09, 0x48, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x44, 0x61, - 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x2d, 0x0a, 0x10, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x75, - 0x72, 0x6c, 0x5f, 0x73, 0x75, 0x66, 0x66, 0x69, 0x78, 0x18, 0x41, 0x20, 0x01, 0x28, 0x09, 0x48, - 0x0a, 0x52, 0x0e, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x53, 0x75, 0x66, 0x66, 0x69, - 0x78, 0x88, 0x01, 0x01, 0x12, 0x59, 0x0a, 0x0e, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, - 0x79, 0x5f, 0x63, 0x61, 0x70, 0x73, 0x18, 0x28, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x67, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, + 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, + 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x52, 0x0b, 0x70, 0x61, 0x79, 0x6d, + 0x65, 0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x37, 0x0a, 0x12, 0x6f, 0x70, 0x74, 0x69, 0x6d, + 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18, 0x42, 0x20, + 0x01, 0x28, 0x01, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x0b, 0x52, 0x11, 0x6f, 0x70, 0x74, 0x69, + 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x88, 0x01, 0x01, + 0x12, 0x8b, 0x01, 0x0a, 0x21, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x5f, 0x70, 0x61, + 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, + 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x45, 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, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, - 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, - 0x52, 0x0d, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x61, 0x70, 0x73, 0x12, - 0x9b, 0x01, 0x0a, 0x1e, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x5f, - 0x73, 0x61, 0x66, 0x65, 0x74, 0x79, 0x5f, 0x73, 0x75, 0x69, 0x74, 0x61, 0x62, 0x69, 0x6c, 0x69, - 0x74, 0x79, 0x18, 0x2a, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x51, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x61, 0x64, 0x73, 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, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x83, + 0x01, 0x0a, 0x1f, 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, 0x50, 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, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x53, 0x61, 0x66, 0x65, 0x74, 0x79, - 0x53, 0x75, 0x69, 0x74, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x42, 0x03, 0xe0, 0x41, 0x03, - 0x52, 0x1b, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x53, 0x61, 0x66, 0x65, - 0x74, 0x79, 0x53, 0x75, 0x69, 0x74, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x5e, 0x0a, - 0x0d, 0x76, 0x61, 0x6e, 0x69, 0x74, 0x79, 0x5f, 0x70, 0x68, 0x61, 0x72, 0x6d, 0x61, 0x18, 0x2c, - 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, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, - 0x67, 0x6e, 0x2e, 0x56, 0x61, 0x6e, 0x69, 0x74, 0x79, 0x50, 0x68, 0x61, 0x72, 0x6d, 0x61, 0x52, - 0x0c, 0x76, 0x61, 0x6e, 0x69, 0x74, 0x79, 0x50, 0x68, 0x61, 0x72, 0x6d, 0x61, 0x12, 0x79, 0x0a, - 0x16, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6d, - 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x2d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x42, 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, 0x72, 0x65, 0x6e, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x54, + 0x79, 0x70, 0x65, 0x73, 0x12, 0x36, 0x0a, 0x15, 0x75, 0x72, 0x6c, 0x5f, 0x65, 0x78, 0x70, 0x61, + 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x70, 0x74, 0x5f, 0x6f, 0x75, 0x74, 0x18, 0x48, 0x20, + 0x01, 0x28, 0x08, 0x48, 0x0c, 0x52, 0x12, 0x75, 0x72, 0x6c, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x73, + 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, 0x4f, 0x75, 0x74, 0x88, 0x01, 0x01, 0x12, 0x7f, 0x0a, 0x17, + 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x6d, 0x61, 0x78, 0x5f, + 0x75, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x18, 0x4d, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, - 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x53, 0x65, 0x6c, 0x65, - 0x63, 0x74, 0x69, 0x76, 0x65, 0x4f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x52, 0x15, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x4f, 0x70, 0x74, 0x69, - 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x80, 0x01, 0x0a, 0x19, 0x6f, 0x70, 0x74, - 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x73, - 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x36, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x44, 0x2e, 0x67, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x66, + 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x61, 0x78, 0x55, 0x70, 0x67, 0x72, 0x61, 0x64, + 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x15, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, + 0x6e, 0x63, 0x65, 0x4d, 0x61, 0x78, 0x55, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x12, 0x67, 0x0a, + 0x18, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x5f, + 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x18, 0x53, 0x20, 0x01, 0x28, 0x09, 0x42, + 0x29, 0xe0, 0x41, 0x05, 0xfa, 0x41, 0x23, 0x0a, 0x21, 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, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x48, 0x0d, 0x52, 0x15, 0x68, 0x6f, + 0x74, 0x65, 0x6c, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x41, 0x73, 0x73, 0x65, 0x74, + 0x53, 0x65, 0x74, 0x88, 0x01, 0x01, 0x12, 0x68, 0x0a, 0x0c, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, + 0x67, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x56, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x4f, 0x70, 0x74, 0x69, 0x6d, - 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x53, 0x65, 0x74, 0x74, 0x69, - 0x6e, 0x67, 0x52, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x47, 0x6f, 0x61, 0x6c, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x6c, 0x0a, 0x10, 0x74, - 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, - 0x2e, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, - 0x69, 0x67, 0x6e, 0x2e, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, - 0x69, 0x6e, 0x67, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0f, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x69, - 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x5e, 0x0a, 0x0c, 0x70, 0x61, 0x79, - 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x18, 0x34, 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, - 0x2e, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x45, 0x6e, 0x75, 0x6d, - 0x2e, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x52, 0x0b, 0x70, 0x61, - 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x37, 0x0a, 0x12, 0x6f, 0x70, 0x74, - 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18, - 0x42, 0x20, 0x01, 0x28, 0x01, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x0b, 0x52, 0x11, 0x6f, 0x70, - 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x88, - 0x01, 0x01, 0x12, 0x8b, 0x01, 0x0a, 0x21, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x5f, - 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x66, 0x69, 0x65, - 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x45, 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, 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, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x73, - 0x12, 0x83, 0x01, 0x0a, 0x1f, 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, 0x50, 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, 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, 0x72, 0x65, 0x6e, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, - 0x74, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x36, 0x0a, 0x15, 0x75, 0x72, 0x6c, 0x5f, 0x65, 0x78, - 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x70, 0x74, 0x5f, 0x6f, 0x75, 0x74, 0x18, - 0x48, 0x20, 0x01, 0x28, 0x08, 0x48, 0x0c, 0x52, 0x12, 0x75, 0x72, 0x6c, 0x45, 0x78, 0x70, 0x61, - 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, 0x4f, 0x75, 0x74, 0x88, 0x01, 0x01, 0x12, 0x7f, - 0x0a, 0x17, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x6d, 0x61, - 0x78, 0x5f, 0x75, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x18, 0x4d, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x50, 0x65, - 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x61, 0x78, 0x55, 0x70, 0x67, 0x72, - 0x61, 0x64, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x15, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, - 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x61, 0x78, 0x55, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x12, - 0x67, 0x0a, 0x18, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, - 0x79, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x18, 0x53, 0x20, 0x01, 0x28, - 0x09, 0x42, 0x29, 0xe0, 0x41, 0x05, 0xfa, 0x41, 0x23, 0x0a, 0x21, 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, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x48, 0x0d, 0x52, 0x15, - 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x41, 0x73, 0x73, - 0x65, 0x74, 0x53, 0x65, 0x74, 0x88, 0x01, 0x01, 0x12, 0x68, 0x0a, 0x0c, 0x6c, 0x69, 0x73, 0x74, - 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x56, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3b, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x69, + 0x73, 0x74, 0x69, 0x6e, 0x67, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4c, 0x69, + 0x73, 0x74, 0x69, 0x6e, 0x67, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x0e, + 0x52, 0x0b, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x54, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, + 0x12, 0x7f, 0x0a, 0x19, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x61, 0x75, 0x74, 0x6f, 0x6d, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x58, 0x20, + 0x03, 0x28, 0x0b, 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, 0x37, 0x2e, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, + 0x6e, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x17, 0x61, 0x73, 0x73, 0x65, 0x74, 0x41, + 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, + 0x73, 0x12, 0x83, 0x01, 0x0a, 0x12, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x6d, 0x61, + 0x74, 0x63, 0x68, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x5a, 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, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, - 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x05, - 0x48, 0x0e, 0x52, 0x0b, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x54, 0x79, 0x70, 0x65, 0x88, - 0x01, 0x01, 0x12, 0x7f, 0x0a, 0x19, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x61, 0x75, 0x74, 0x6f, - 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, - 0x58, 0x20, 0x03, 0x28, 0x0b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, - 0x69, 0x67, 0x6e, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x17, 0x61, 0x73, 0x73, 0x65, - 0x74, 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, - 0x6e, 0x67, 0x73, 0x12, 0x5a, 0x0a, 0x10, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, - 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x18, 0x43, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2d, 0xfa, - 0x41, 0x2a, 0x0a, 0x28, 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, 0x42, 0x69, 0x64, - 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x48, 0x00, 0x52, 0x0f, - 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x12, - 0x4d, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 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, 0x63, - 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, - 0x48, 0x00, 0x52, 0x0a, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x4b, - 0x0a, 0x0a, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x5f, 0x63, 0x70, 0x61, 0x18, 0x4a, 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, 0x4d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x43, 0x70, 0x61, 0x48, 0x00, - 0x52, 0x09, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x43, 0x70, 0x61, 0x12, 0x4b, 0x0a, 0x0a, 0x6d, - 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x5f, 0x63, 0x70, 0x63, 0x18, 0x18, 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, 0x4d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x43, 0x70, 0x63, 0x48, 0x00, 0x52, 0x09, 0x6d, - 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x43, 0x70, 0x63, 0x12, 0x4b, 0x0a, 0x0a, 0x6d, 0x61, 0x6e, 0x75, - 0x61, 0x6c, 0x5f, 0x63, 0x70, 0x6d, 0x18, 0x19, 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, 0x4d, - 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x43, 0x70, 0x6d, 0x48, 0x00, 0x52, 0x09, 0x6d, 0x61, 0x6e, 0x75, - 0x61, 0x6c, 0x43, 0x70, 0x6d, 0x12, 0x4b, 0x0a, 0x0a, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x5f, - 0x63, 0x70, 0x76, 0x18, 0x25, 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, 0x4d, 0x61, 0x6e, 0x75, - 0x61, 0x6c, 0x43, 0x70, 0x76, 0x48, 0x00, 0x52, 0x09, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x43, - 0x70, 0x76, 0x12, 0x69, 0x0a, 0x14, 0x6d, 0x61, 0x78, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x5f, 0x63, - 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x1e, 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, 0x4d, 0x61, 0x78, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, - 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x48, 0x00, 0x52, 0x13, 0x6d, 0x61, 0x78, 0x69, 0x6d, 0x69, - 0x7a, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x76, 0x0a, - 0x19, 0x6d, 0x61, 0x78, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, - 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 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, 0x63, 0x6f, 0x6d, 0x6d, - 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x78, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, - 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x48, 0x00, 0x52, 0x17, 0x6d, 0x61, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 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, 0x2e, 0x43, 0x61, 0x6d, + 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x4d, 0x61, 0x74, 0x63, + 0x68, 0x54, 0x79, 0x70, 0x65, 0x52, 0x10, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x4d, 0x61, + 0x74, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65, 0x12, 0x5a, 0x0a, 0x10, 0x62, 0x69, 0x64, 0x64, 0x69, + 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x18, 0x43, 0x20, 0x01, 0x28, + 0x09, 0x42, 0x2d, 0xfa, 0x41, 0x2a, 0x0a, 0x28, 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, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, + 0x48, 0x00, 0x52, 0x0f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, + 0x65, 0x67, 0x79, 0x12, 0x4d, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, + 0x6e, 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, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x73, + 0x73, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x0a, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x73, 0x73, 0x69, + 0x6f, 0x6e, 0x12, 0x4b, 0x0a, 0x0a, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x5f, 0x63, 0x70, 0x61, + 0x18, 0x4a, 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, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x43, + 0x70, 0x61, 0x48, 0x00, 0x52, 0x09, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x43, 0x70, 0x61, 0x12, + 0x4b, 0x0a, 0x0a, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x5f, 0x63, 0x70, 0x63, 0x18, 0x18, 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, 0x63, + 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x43, 0x70, 0x63, 0x48, + 0x00, 0x52, 0x09, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x43, 0x70, 0x63, 0x12, 0x4b, 0x0a, 0x0a, + 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x5f, 0x63, 0x70, 0x6d, 0x18, 0x19, 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, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x43, 0x70, 0x6d, 0x48, 0x00, 0x52, 0x09, + 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x43, 0x70, 0x6d, 0x12, 0x4b, 0x0a, 0x0a, 0x6d, 0x61, 0x6e, + 0x75, 0x61, 0x6c, 0x5f, 0x63, 0x70, 0x76, 0x18, 0x25, 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, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x4d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x43, 0x70, 0x76, 0x48, 0x00, 0x52, 0x09, 0x6d, 0x61, 0x6e, + 0x75, 0x61, 0x6c, 0x43, 0x70, 0x76, 0x12, 0x69, 0x0a, 0x14, 0x6d, 0x61, 0x78, 0x69, 0x6d, 0x69, + 0x7a, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x1e, + 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, 0x37, 0x2e, + 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x78, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x43, + 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x48, 0x00, 0x52, 0x13, 0x6d, 0x61, 0x78, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, - 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x4b, 0x0a, 0x0a, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, - 0x63, 0x70, 0x61, 0x18, 0x1a, 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, 0x54, 0x61, 0x72, 0x67, - 0x65, 0x74, 0x43, 0x70, 0x61, 0x48, 0x00, 0x52, 0x09, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, - 0x70, 0x61, 0x12, 0x70, 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, 0x30, 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, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x49, 0x6d, 0x70, 0x72, - 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x48, 0x00, 0x52, 0x15, 0x74, - 0x61, 0x72, 0x67, 0x65, 0x74, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, - 0x68, 0x61, 0x72, 0x65, 0x12, 0x4e, 0x0a, 0x0b, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x72, - 0x6f, 0x61, 0x73, 0x18, 0x1d, 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, 0x61, 0x72, 0x67, - 0x65, 0x74, 0x52, 0x6f, 0x61, 0x73, 0x48, 0x00, 0x52, 0x0a, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, - 0x52, 0x6f, 0x61, 0x73, 0x12, 0x51, 0x0a, 0x0c, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x73, - 0x70, 0x65, 0x6e, 0x64, 0x18, 0x1b, 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, 0x54, 0x61, 0x72, - 0x67, 0x65, 0x74, 0x53, 0x70, 0x65, 0x6e, 0x64, 0x48, 0x00, 0x52, 0x0b, 0x74, 0x61, 0x72, 0x67, - 0x65, 0x74, 0x53, 0x70, 0x65, 0x6e, 0x64, 0x12, 0x4e, 0x0a, 0x0b, 0x70, 0x65, 0x72, 0x63, 0x65, - 0x6e, 0x74, 0x5f, 0x63, 0x70, 0x63, 0x18, 0x22, 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, 0x50, - 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x43, 0x70, 0x63, 0x48, 0x00, 0x52, 0x0a, 0x70, 0x65, 0x72, - 0x63, 0x65, 0x6e, 0x74, 0x43, 0x70, 0x63, 0x12, 0x4b, 0x0a, 0x0a, 0x74, 0x61, 0x72, 0x67, 0x65, - 0x74, 0x5f, 0x63, 0x70, 0x6d, 0x18, 0x29, 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, 0x54, 0x61, - 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x6d, 0x48, 0x00, 0x52, 0x09, 0x74, 0x61, 0x72, 0x67, 0x65, - 0x74, 0x43, 0x70, 0x6d, 0x1a, 0xd3, 0x02, 0x0a, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, - 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x61, 0x78, 0x55, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x12, 0x63, - 0x0a, 0x18, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x6d, 0x61, - 0x78, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, - 0x42, 0x29, 0xe0, 0x41, 0x03, 0xfa, 0x41, 0x23, 0x0a, 0x21, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x52, 0x16, 0x70, 0x65, 0x72, - 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x61, 0x78, 0x43, 0x61, 0x6d, 0x70, 0x61, - 0x69, 0x67, 0x6e, 0x12, 0x5b, 0x0a, 0x14, 0x70, 0x72, 0x65, 0x5f, 0x75, 0x70, 0x67, 0x72, 0x61, - 0x64, 0x65, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x09, 0x42, 0x29, 0xe0, 0x41, 0x03, 0xfa, 0x41, 0x23, 0x0a, 0x21, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x52, 0x12, 0x70, 0x72, - 0x65, 0x55, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, - 0x12, 0x78, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 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, 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, 0x2e, 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, 0x42, 0x03, 0xe0, - 0x41, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x1a, 0x8e, 0x04, 0x0a, 0x0f, 0x4e, - 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x35, - 0x0a, 0x14, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5f, - 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x12, - 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x53, 0x65, 0x61, 0x72, - 0x63, 0x68, 0x88, 0x01, 0x01, 0x12, 0x37, 0x0a, 0x15, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, - 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x18, 0x06, - 0x20, 0x01, 0x28, 0x08, 0x48, 0x01, 0x52, 0x13, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x53, 0x65, - 0x61, 0x72, 0x63, 0x68, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x88, 0x01, 0x01, 0x12, 0x39, - 0x0a, 0x16, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, - 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x48, 0x02, - 0x52, 0x14, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x4e, - 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x88, 0x01, 0x01, 0x12, 0x46, 0x0a, 0x1d, 0x74, 0x61, 0x72, - 0x67, 0x65, 0x74, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x61, 0x72, - 0x63, 0x68, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, - 0x48, 0x03, 0x52, 0x1a, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, - 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x88, 0x01, - 0x01, 0x12, 0x2a, 0x0a, 0x0e, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x79, 0x6f, 0x75, 0x74, - 0x75, 0x62, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x08, 0x48, 0x04, 0x52, 0x0d, 0x74, 0x61, 0x72, - 0x67, 0x65, 0x74, 0x59, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x88, 0x01, 0x01, 0x12, 0x3c, 0x0a, - 0x18, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5f, 0x74, - 0x76, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x08, 0x48, - 0x05, 0x52, 0x15, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x54, - 0x76, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x88, 0x01, 0x01, 0x42, 0x17, 0x0a, 0x15, 0x5f, - 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5f, 0x73, 0x65, - 0x61, 0x72, 0x63, 0x68, 0x42, 0x18, 0x0a, 0x16, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, - 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x42, 0x19, - 0x0a, 0x17, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, - 0x74, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x42, 0x20, 0x0a, 0x1e, 0x5f, 0x74, 0x61, - 0x72, 0x67, 0x65, 0x74, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x61, - 0x72, 0x63, 0x68, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x42, 0x11, 0x0a, 0x0f, 0x5f, - 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x42, 0x1b, - 0x0a, 0x19, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x5f, 0x74, 0x76, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x1a, 0x58, 0x0a, 0x10, 0x48, - 0x6f, 0x74, 0x65, 0x6c, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x12, - 0x30, 0x0a, 0x0f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x5f, - 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, - 0x0d, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x49, 0x64, 0x88, 0x01, - 0x01, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x63, 0x65, 0x6e, 0x74, - 0x65, 0x72, 0x5f, 0x69, 0x64, 0x1a, 0xf8, 0x01, 0x0a, 0x17, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, - 0x63, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x64, 0x73, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, - 0x67, 0x12, 0x24, 0x0a, 0x0b, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, - 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x64, 0x6f, 0x6d, - 0x61, 0x69, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x28, 0x0a, 0x0d, 0x6c, 0x61, 0x6e, 0x67, 0x75, - 0x61, 0x67, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, - 0xe0, 0x41, 0x02, 0x52, 0x0c, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x64, - 0x65, 0x12, 0x38, 0x0a, 0x16, 0x75, 0x73, 0x65, 0x5f, 0x73, 0x75, 0x70, 0x70, 0x6c, 0x69, 0x65, - 0x64, 0x5f, 0x75, 0x72, 0x6c, 0x73, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x08, 0x20, 0x01, 0x28, - 0x08, 0x48, 0x00, 0x52, 0x13, 0x75, 0x73, 0x65, 0x53, 0x75, 0x70, 0x70, 0x6c, 0x69, 0x65, 0x64, - 0x55, 0x72, 0x6c, 0x73, 0x4f, 0x6e, 0x6c, 0x79, 0x88, 0x01, 0x01, 0x12, 0x38, 0x0a, 0x05, 0x66, - 0x65, 0x65, 0x64, 0x73, 0x18, 0x09, 0x20, 0x03, 0x28, 0x09, 0x42, 0x22, 0xfa, 0x41, 0x1f, 0x0a, - 0x1d, 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, 0x46, 0x65, 0x65, 0x64, 0x52, 0x05, - 0x66, 0x65, 0x65, 0x64, 0x73, 0x42, 0x19, 0x0a, 0x17, 0x5f, 0x75, 0x73, 0x65, 0x5f, 0x73, 0x75, - 0x70, 0x70, 0x6c, 0x69, 0x65, 0x64, 0x5f, 0x75, 0x72, 0x6c, 0x73, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, - 0x1a, 0xad, 0x03, 0x0a, 0x0f, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, - 0x74, 0x69, 0x6e, 0x67, 0x12, 0x24, 0x0a, 0x0b, 0x6d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, - 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x48, 0x00, 0x52, 0x0a, 0x6d, 0x65, 0x72, - 0x63, 0x68, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x65, - 0x65, 0x64, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, - 0x66, 0x65, 0x65, 0x64, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x30, 0x0a, 0x11, 0x63, 0x61, 0x6d, - 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x70, 0x72, 0x69, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x18, 0x07, - 0x20, 0x01, 0x28, 0x05, 0x48, 0x01, 0x52, 0x10, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, - 0x50, 0x72, 0x69, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x65, - 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x18, 0x08, 0x20, 0x01, 0x28, - 0x08, 0x48, 0x02, 0x52, 0x0b, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x6c, - 0x88, 0x01, 0x01, 0x12, 0x37, 0x0a, 0x15, 0x75, 0x73, 0x65, 0x5f, 0x76, 0x65, 0x68, 0x69, 0x63, - 0x6c, 0x65, 0x5f, 0x69, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x18, 0x09, 0x20, 0x01, - 0x28, 0x08, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x52, 0x13, 0x75, 0x73, 0x65, 0x56, 0x65, 0x68, 0x69, - 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x12, 0x3b, 0x0a, 0x17, - 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x61, 0x72, 0x74, - 0x6e, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x0b, 0x20, 0x03, 0x28, 0x03, 0x42, 0x03, 0xe0, - 0x41, 0x05, 0x52, 0x15, 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x50, - 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x73, 0x12, 0x35, 0x0a, 0x14, 0x64, 0x69, 0x73, - 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66, 0x65, 0x65, - 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x08, 0x48, 0x03, 0x52, 0x12, 0x64, 0x69, 0x73, 0x61, 0x62, - 0x6c, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x65, 0x65, 0x64, 0x88, 0x01, 0x01, - 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x6d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64, - 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x70, 0x72, - 0x69, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, - 0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x64, 0x69, 0x73, 0x61, - 0x62, 0x6c, 0x65, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66, 0x65, 0x65, 0x64, - 0x1a, 0x4f, 0x0a, 0x0f, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, - 0x69, 0x6e, 0x67, 0x12, 0x2b, 0x0a, 0x0c, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x5f, - 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, - 0x52, 0x0b, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, - 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x75, 0x72, - 0x6c, 0x1a, 0xac, 0x02, 0x0a, 0x14, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x54, - 0x79, 0x70, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x88, 0x01, 0x0a, 0x18, 0x70, - 0x6f, 0x73, 0x69, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, - 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4f, 0x2e, + 0x73, 0x12, 0x76, 0x0a, 0x19, 0x6d, 0x61, 0x78, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x5f, 0x63, 0x6f, + 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 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, 0x37, 0x2e, + 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x78, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x43, + 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x48, 0x00, + 0x52, 0x17, 0x6d, 0x61, 0x78, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, + 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x4b, 0x0a, 0x0a, 0x74, 0x61, 0x72, + 0x67, 0x65, 0x74, 0x5f, 0x63, 0x70, 0x61, 0x18, 0x1a, 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, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x76, - 0x65, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x15, - 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x76, 0x65, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, - 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x88, 0x01, 0x0a, 0x18, 0x6e, 0x65, 0x67, 0x61, 0x74, 0x69, - 0x76, 0x65, 0x5f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x74, 0x79, - 0x70, 0x65, 0x18, 0x02, 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, 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, 0x2e, 0x4e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x47, 0x65, 0x6f, 0x54, - 0x61, 0x72, 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x15, 0x6e, 0x65, 0x67, 0x61, 0x74, - 0x69, 0x76, 0x65, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, - 0x1a, 0x93, 0x01, 0x0a, 0x14, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, - 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x7b, 0x0a, 0x14, 0x6c, 0x6f, 0x63, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, - 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x49, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 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, 0x48, 0x00, 0x52, 0x09, 0x74, 0x61, 0x72, + 0x67, 0x65, 0x74, 0x43, 0x70, 0x61, 0x12, 0x70, 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, 0x30, 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, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, - 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, - 0x70, 0x65, 0x52, 0x12, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x1a, 0xd8, 0x02, 0x0a, 0x12, 0x41, 0x70, 0x70, 0x43, 0x61, - 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0xa6, 0x01, - 0x0a, 0x1a, 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, 0x18, 0x01, 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, 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, 0x2e, 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, 0x52, 0x17, 0x62, - 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x47, 0x6f, - 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1f, 0x0a, 0x06, 0x61, 0x70, 0x70, 0x5f, 0x69, 0x64, - 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x05, 0x61, - 0x70, 0x70, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x6d, 0x0a, 0x09, 0x61, 0x70, 0x70, 0x5f, 0x73, - 0x74, 0x6f, 0x72, 0x65, 0x18, 0x03, 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, 0x43, - 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x70, 0x70, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x45, - 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x70, 0x70, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, - 0x70, 0x70, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x52, 0x08, 0x61, 0x70, - 0x70, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x69, - 0x64, 0x1a, 0xa3, 0x02, 0x0a, 0x0c, 0x56, 0x61, 0x6e, 0x69, 0x74, 0x79, 0x50, 0x68, 0x61, 0x72, - 0x6d, 0x61, 0x12, 0x9d, 0x01, 0x0a, 0x1e, 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, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x59, 0x2e, 0x67, 0x6f, + 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, 0x48, + 0x00, 0x52, 0x15, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, + 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x12, 0x4e, 0x0a, 0x0b, 0x74, 0x61, 0x72, 0x67, + 0x65, 0x74, 0x5f, 0x72, 0x6f, 0x61, 0x73, 0x18, 0x1d, 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, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x6f, 0x61, 0x73, 0x48, 0x00, 0x52, 0x0a, 0x74, 0x61, + 0x72, 0x67, 0x65, 0x74, 0x52, 0x6f, 0x61, 0x73, 0x12, 0x51, 0x0a, 0x0c, 0x74, 0x61, 0x72, 0x67, + 0x65, 0x74, 0x5f, 0x73, 0x70, 0x65, 0x6e, 0x64, 0x18, 0x1b, 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, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x53, 0x70, 0x65, 0x6e, 0x64, 0x48, 0x00, 0x52, 0x0b, + 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x53, 0x70, 0x65, 0x6e, 0x64, 0x12, 0x4e, 0x0a, 0x0b, 0x70, + 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x70, 0x63, 0x18, 0x22, 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, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x43, 0x70, 0x63, 0x48, 0x00, 0x52, + 0x0a, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x43, 0x70, 0x63, 0x12, 0x4b, 0x0a, 0x0a, 0x74, + 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x70, 0x6d, 0x18, 0x29, 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, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x6e, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x6d, 0x48, 0x00, 0x52, 0x09, 0x74, + 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x6d, 0x1a, 0xd3, 0x02, 0x0a, 0x15, 0x50, 0x65, 0x72, + 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x61, 0x78, 0x55, 0x70, 0x67, 0x72, 0x61, + 0x64, 0x65, 0x12, 0x63, 0x0a, 0x18, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, + 0x65, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x09, 0x42, 0x29, 0xe0, 0x41, 0x03, 0xfa, 0x41, 0x23, 0x0a, 0x21, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x52, + 0x16, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x61, 0x78, 0x43, + 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x12, 0x5b, 0x0a, 0x14, 0x70, 0x72, 0x65, 0x5f, 0x75, + 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x29, 0xe0, 0x41, 0x03, 0xfa, 0x41, 0x23, 0x0a, 0x21, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, + 0x52, 0x12, 0x70, 0x72, 0x65, 0x55, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x43, 0x61, 0x6d, 0x70, + 0x61, 0x69, 0x67, 0x6e, 0x12, 0x78, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, + 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, 0x37, 0x2e, + 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x1a, 0x8e, + 0x04, 0x0a, 0x0f, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, + 0x67, 0x73, 0x12, 0x35, 0x0a, 0x14, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x67, 0x6f, 0x6f, + 0x67, 0x6c, 0x65, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, + 0x48, 0x00, 0x52, 0x12, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x88, 0x01, 0x01, 0x12, 0x37, 0x0a, 0x15, 0x74, 0x61, 0x72, + 0x67, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, + 0x72, 0x6b, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x48, 0x01, 0x52, 0x13, 0x74, 0x61, 0x72, 0x67, + 0x65, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x88, + 0x01, 0x01, 0x12, 0x39, 0x0a, 0x16, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x6e, + 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x18, 0x07, 0x20, 0x01, + 0x28, 0x08, 0x48, 0x02, 0x52, 0x14, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x74, + 0x65, 0x6e, 0x74, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x88, 0x01, 0x01, 0x12, 0x46, 0x0a, + 0x1d, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x5f, + 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x18, 0x08, + 0x20, 0x01, 0x28, 0x08, 0x48, 0x03, 0x52, 0x1a, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x50, 0x61, + 0x72, 0x74, 0x6e, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4e, 0x65, 0x74, 0x77, 0x6f, + 0x72, 0x6b, 0x88, 0x01, 0x01, 0x12, 0x2a, 0x0a, 0x0e, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, + 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x08, 0x48, 0x04, 0x52, + 0x0d, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x59, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x88, 0x01, + 0x01, 0x12, 0x3c, 0x0a, 0x18, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x67, 0x6f, 0x6f, 0x67, + 0x6c, 0x65, 0x5f, 0x74, 0x76, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x18, 0x0a, 0x20, + 0x01, 0x28, 0x08, 0x48, 0x05, 0x52, 0x15, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x47, 0x6f, 0x6f, + 0x67, 0x6c, 0x65, 0x54, 0x76, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x88, 0x01, 0x01, 0x42, + 0x17, 0x0a, 0x15, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x65, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x42, 0x18, 0x0a, 0x16, 0x5f, 0x74, 0x61, 0x72, + 0x67, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, + 0x72, 0x6b, 0x42, 0x19, 0x0a, 0x17, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, + 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x42, 0x20, 0x0a, + 0x1e, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, + 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x42, + 0x11, 0x0a, 0x0f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x79, 0x6f, 0x75, 0x74, 0x75, + 0x62, 0x65, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x67, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x5f, 0x74, 0x76, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x1a, + 0x58, 0x0a, 0x10, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x49, + 0x6e, 0x66, 0x6f, 0x12, 0x30, 0x0a, 0x0f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x63, 0x65, 0x6e, + 0x74, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, + 0x05, 0x48, 0x00, 0x52, 0x0d, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, + 0x49, 0x64, 0x88, 0x01, 0x01, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, + 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x1a, 0xf8, 0x01, 0x0a, 0x17, 0x44, 0x79, + 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x64, 0x73, 0x53, 0x65, + 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x24, 0x0a, 0x0b, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x5f, + 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, + 0x0a, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x28, 0x0a, 0x0d, 0x6c, + 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x07, 0x20, 0x01, + 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0c, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, + 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x38, 0x0a, 0x16, 0x75, 0x73, 0x65, 0x5f, 0x73, 0x75, 0x70, + 0x70, 0x6c, 0x69, 0x65, 0x64, 0x5f, 0x75, 0x72, 0x6c, 0x73, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, + 0x08, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x13, 0x75, 0x73, 0x65, 0x53, 0x75, 0x70, 0x70, + 0x6c, 0x69, 0x65, 0x64, 0x55, 0x72, 0x6c, 0x73, 0x4f, 0x6e, 0x6c, 0x79, 0x88, 0x01, 0x01, 0x12, + 0x38, 0x0a, 0x05, 0x66, 0x65, 0x65, 0x64, 0x73, 0x18, 0x09, 0x20, 0x03, 0x28, 0x09, 0x42, 0x22, + 0xfa, 0x41, 0x1f, 0x0a, 0x1d, 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, 0x46, 0x65, + 0x65, 0x64, 0x52, 0x05, 0x66, 0x65, 0x65, 0x64, 0x73, 0x42, 0x19, 0x0a, 0x17, 0x5f, 0x75, 0x73, + 0x65, 0x5f, 0x73, 0x75, 0x70, 0x70, 0x6c, 0x69, 0x65, 0x64, 0x5f, 0x75, 0x72, 0x6c, 0x73, 0x5f, + 0x6f, 0x6e, 0x6c, 0x79, 0x1a, 0xad, 0x03, 0x0a, 0x0f, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, + 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x24, 0x0a, 0x0b, 0x6d, 0x65, 0x72, 0x63, + 0x68, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x48, 0x00, 0x52, + 0x0a, 0x6d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1d, + 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x0a, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x09, 0x66, 0x65, 0x65, 0x64, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x30, 0x0a, + 0x11, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x70, 0x72, 0x69, 0x6f, 0x72, 0x69, + 0x74, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x48, 0x01, 0x52, 0x10, 0x63, 0x61, 0x6d, 0x70, + 0x61, 0x69, 0x67, 0x6e, 0x50, 0x72, 0x69, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x88, 0x01, 0x01, 0x12, + 0x26, 0x0a, 0x0c, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x18, + 0x08, 0x20, 0x01, 0x28, 0x08, 0x48, 0x02, 0x52, 0x0b, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x4c, + 0x6f, 0x63, 0x61, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x37, 0x0a, 0x15, 0x75, 0x73, 0x65, 0x5f, 0x76, + 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x5f, 0x69, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, + 0x18, 0x09, 0x20, 0x01, 0x28, 0x08, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x52, 0x13, 0x75, 0x73, 0x65, + 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, + 0x12, 0x3b, 0x0a, 0x17, 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x5f, + 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x0b, 0x20, 0x03, 0x28, + 0x03, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x52, 0x15, 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, + 0x69, 0x6e, 0x67, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x73, 0x12, 0x35, 0x0a, + 0x14, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, + 0x5f, 0x66, 0x65, 0x65, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x08, 0x48, 0x03, 0x52, 0x12, 0x64, + 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x65, 0x65, + 0x64, 0x88, 0x01, 0x01, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x6d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, + 0x74, 0x5f, 0x69, 0x64, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, + 0x6e, 0x5f, 0x70, 0x72, 0x69, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x65, + 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x42, 0x17, 0x0a, 0x15, 0x5f, + 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, + 0x66, 0x65, 0x65, 0x64, 0x1a, 0x4f, 0x0a, 0x0f, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, + 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x2b, 0x0a, 0x0c, 0x74, 0x72, 0x61, 0x63, 0x6b, + 0x69, 0x6e, 0x67, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, + 0x41, 0x03, 0x48, 0x00, 0x52, 0x0b, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x72, + 0x6c, 0x88, 0x01, 0x01, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, + 0x67, 0x5f, 0x75, 0x72, 0x6c, 0x1a, 0xac, 0x02, 0x0a, 0x14, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, + 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x88, + 0x01, 0x0a, 0x18, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x67, 0x65, 0x6f, 0x5f, + 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 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, 0x37, 0x2e, 0x65, 0x6e, 0x75, + 0x6d, 0x73, 0x2e, 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, 0x2e, 0x50, 0x6f, 0x73, + 0x69, 0x74, 0x69, 0x76, 0x65, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x54, 0x79, + 0x70, 0x65, 0x52, 0x15, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x76, 0x65, 0x47, 0x65, 0x6f, 0x54, + 0x61, 0x72, 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x88, 0x01, 0x0a, 0x18, 0x6e, 0x65, + 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, + 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 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, 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, 0x2e, 0x4e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, + 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x15, 0x6e, + 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, + 0x54, 0x79, 0x70, 0x65, 0x1a, 0x93, 0x01, 0x0a, 0x14, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x43, 0x61, + 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x7b, 0x0a, + 0x14, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x5f, 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, 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, 0x2e, 0x56, 0x61, 0x6e, 0x69, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x6f, 0x63, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, + 0x6e, 0x75, 0x6d, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, 0x12, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x1a, 0xd8, 0x02, 0x0a, 0x12, 0x41, + 0x70, 0x70, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, + 0x67, 0x12, 0xa6, 0x01, 0x0a, 0x1a, 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, + 0x18, 0x01, 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, + 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 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, 0x52, 0x17, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, + 0x67, 0x79, 0x47, 0x6f, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1f, 0x0a, 0x06, 0x61, 0x70, + 0x70, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, + 0x00, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x6d, 0x0a, 0x09, 0x61, + 0x70, 0x70, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x18, 0x03, 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, + 0x41, 0x70, 0x70, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x70, 0x70, 0x53, 0x74, + 0x6f, 0x72, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x70, 0x70, 0x43, 0x61, 0x6d, 0x70, 0x61, + 0x69, 0x67, 0x6e, 0x41, 0x70, 0x70, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x05, + 0x52, 0x08, 0x61, 0x70, 0x70, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x61, + 0x70, 0x70, 0x5f, 0x69, 0x64, 0x1a, 0xa3, 0x02, 0x0a, 0x0c, 0x56, 0x61, 0x6e, 0x69, 0x74, 0x79, + 0x50, 0x68, 0x61, 0x72, 0x6d, 0x61, 0x12, 0x9d, 0x01, 0x0a, 0x1e, 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, 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, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x2e, 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, 0x2e, + 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, 0x52, 0x1a, 0x76, 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, 0x52, 0x1a, 0x76, 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, 0x12, 0x73, 0x0a, 0x12, 0x76, 0x61, 0x6e, 0x69, 0x74, 0x79, 0x5f, 0x70, 0x68, 0x61, - 0x72, 0x6d, 0x61, 0x5f, 0x74, 0x65, 0x78, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x45, + 0x72, 0x6c, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x73, 0x0a, 0x12, 0x76, 0x61, 0x6e, 0x69, 0x74, 0x79, + 0x5f, 0x70, 0x68, 0x61, 0x72, 0x6d, 0x61, 0x5f, 0x74, 0x65, 0x78, 0x74, 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, 0x37, 0x2e, 0x65, 0x6e, + 0x75, 0x6d, 0x73, 0x2e, 0x56, 0x61, 0x6e, 0x69, 0x74, 0x79, 0x50, 0x68, 0x61, 0x72, 0x6d, 0x61, + 0x54, 0x65, 0x78, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x56, 0x61, 0x6e, 0x69, 0x74, 0x79, 0x50, + 0x68, 0x61, 0x72, 0x6d, 0x61, 0x54, 0x65, 0x78, 0x74, 0x52, 0x10, 0x76, 0x61, 0x6e, 0x69, 0x74, + 0x79, 0x50, 0x68, 0x61, 0x72, 0x6d, 0x61, 0x54, 0x65, 0x78, 0x74, 0x1a, 0x76, 0x0a, 0x15, 0x53, + 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x4f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x5d, 0x0a, 0x12, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, + 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, + 0x42, 0x2e, 0xfa, 0x41, 0x2b, 0x0a, 0x29, 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, + 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, + 0x52, 0x11, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, + 0x6f, 0x6e, 0x73, 0x1a, 0xa1, 0x01, 0x0a, 0x17, 0x4f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, + 0x85, 0x01, 0x0a, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x01, 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, 0x4f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x47, + 0x6f, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4f, 0x70, 0x74, 0x69, + 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, + 0x52, 0x15, 0x6f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x6f, + 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x1a, 0x66, 0x0a, 0x0f, 0x41, 0x75, 0x64, 0x69, 0x65, + 0x6e, 0x63, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x3a, 0x0a, 0x14, 0x75, 0x73, + 0x65, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, + 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, + 0x12, 0x75, 0x73, 0x65, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x47, 0x72, 0x6f, 0x75, + 0x70, 0x65, 0x64, 0x88, 0x01, 0x01, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x75, 0x73, 0x65, 0x5f, 0x61, + 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x1a, + 0x7e, 0x0a, 0x1d, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, + 0x12, 0x5d, 0x0a, 0x0d, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x62, 0x69, 0x64, + 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, + 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x42, 0x69, + 0x64, 0x52, 0x0c, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x42, 0x69, 0x64, 0x73, 0x1a, + 0x95, 0x01, 0x0a, 0x0b, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x42, 0x69, 0x64, 0x12, + 0x24, 0x0a, 0x0b, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x0a, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, + 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x36, 0x0a, 0x15, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x5f, + 0x63, 0x70, 0x61, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x03, 0x48, 0x01, 0x52, 0x12, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x43, 0x70, + 0x61, 0x42, 0x69, 0x64, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x42, 0x0e, 0x0a, + 0x0c, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x69, 0x64, 0x42, 0x18, 0x0a, + 0x16, 0x5f, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x5f, 0x63, 0x70, 0x61, 0x5f, 0x62, 0x69, 0x64, + 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x1a, 0x64, 0x0a, 0x16, 0x54, 0x72, 0x61, 0x76, 0x65, + 0x6c, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, + 0x73, 0x12, 0x34, 0x0a, 0x11, 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x5f, 0x61, 0x63, 0x63, 0x6f, + 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, + 0x05, 0x48, 0x00, 0x52, 0x0f, 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x41, 0x63, 0x63, 0x6f, 0x75, + 0x6e, 0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x74, 0x72, 0x61, 0x76, + 0x65, 0x6c, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x1a, 0x6b, 0x0a, + 0x19, 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, + 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x37, 0x0a, 0x12, 0x75, 0x70, + 0x67, 0x72, 0x61, 0x64, 0x65, 0x64, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x11, 0x75, + 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x64, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, + 0x88, 0x01, 0x01, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x75, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x64, + 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x1a, 0xe4, 0x02, 0x0a, 0x16, 0x41, + 0x73, 0x73, 0x65, 0x74, 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, + 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x84, 0x01, 0x0a, 0x15, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, + 0x61, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 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, 0x37, + 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x41, 0x75, 0x74, 0x6f, + 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, + 0x73, 0x73, 0x65, 0x74, 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, + 0x70, 0x65, 0x48, 0x00, 0x52, 0x13, 0x61, 0x73, 0x73, 0x65, 0x74, 0x41, 0x75, 0x74, 0x6f, 0x6d, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x8c, 0x01, 0x0a, + 0x17, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x61, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 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, - 0x56, 0x61, 0x6e, 0x69, 0x74, 0x79, 0x50, 0x68, 0x61, 0x72, 0x6d, 0x61, 0x54, 0x65, 0x78, 0x74, - 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x56, 0x61, 0x6e, 0x69, 0x74, 0x79, 0x50, 0x68, 0x61, 0x72, 0x6d, - 0x61, 0x54, 0x65, 0x78, 0x74, 0x52, 0x10, 0x76, 0x61, 0x6e, 0x69, 0x74, 0x79, 0x50, 0x68, 0x61, - 0x72, 0x6d, 0x61, 0x54, 0x65, 0x78, 0x74, 0x1a, 0x76, 0x0a, 0x15, 0x53, 0x65, 0x6c, 0x65, 0x63, - 0x74, 0x69, 0x76, 0x65, 0x4f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x12, 0x5d, 0x0a, 0x12, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, - 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x42, 0x2e, 0xfa, 0x41, - 0x2b, 0x0a, 0x29, 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, 0x43, 0x6f, 0x6e, 0x76, - 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x11, 0x63, 0x6f, - 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x1a, - 0xa1, 0x01, 0x0a, 0x17, 0x4f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x47, 0x6f, 0x61, 0x6c, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x85, 0x01, 0x0a, 0x17, - 0x6f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, - 0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x01, 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, 0x4f, - 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x54, - 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, - 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x52, 0x15, 0x6f, 0x70, - 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x54, 0x79, - 0x70, 0x65, 0x73, 0x1a, 0x66, 0x0a, 0x0f, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, - 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x3a, 0x0a, 0x14, 0x75, 0x73, 0x65, 0x5f, 0x61, 0x75, - 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x08, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x12, 0x75, 0x73, 0x65, - 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x88, - 0x01, 0x01, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x75, 0x73, 0x65, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, - 0x6e, 0x63, 0x65, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x1a, 0x7e, 0x0a, 0x1d, 0x4c, - 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x43, 0x61, 0x6d, 0x70, - 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x5d, 0x0a, 0x0d, - 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x62, 0x69, 0x64, 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, 0x72, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, - 0x6e, 0x2e, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x42, 0x69, 0x64, 0x52, 0x0c, 0x63, - 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x42, 0x69, 0x64, 0x73, 0x1a, 0x95, 0x01, 0x0a, 0x0b, - 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x42, 0x69, 0x64, 0x12, 0x24, 0x0a, 0x0b, 0x63, - 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, - 0x48, 0x00, 0x52, 0x0a, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x49, 0x64, 0x88, 0x01, - 0x01, 0x12, 0x36, 0x0a, 0x15, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x5f, 0x63, 0x70, 0x61, 0x5f, - 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, - 0x48, 0x01, 0x52, 0x12, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x43, 0x70, 0x61, 0x42, 0x69, 0x64, - 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x63, 0x61, - 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x69, 0x64, 0x42, 0x18, 0x0a, 0x16, 0x5f, 0x6d, 0x61, - 0x6e, 0x75, 0x61, 0x6c, 0x5f, 0x63, 0x70, 0x61, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, 0x63, - 0x72, 0x6f, 0x73, 0x1a, 0x64, 0x0a, 0x16, 0x54, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x43, 0x61, 0x6d, - 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x34, 0x0a, - 0x11, 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, - 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, - 0x0f, 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, - 0x88, 0x01, 0x01, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x5f, 0x61, - 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x1a, 0x6b, 0x0a, 0x19, 0x44, 0x69, 0x73, - 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, - 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x37, 0x0a, 0x12, 0x75, 0x70, 0x67, 0x72, 0x61, 0x64, - 0x65, 0x64, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x08, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x11, 0x75, 0x70, 0x67, 0x72, 0x61, - 0x64, 0x65, 0x64, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x88, 0x01, 0x01, 0x42, - 0x15, 0x0a, 0x13, 0x5f, 0x75, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x64, 0x5f, 0x74, 0x61, 0x72, - 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x1a, 0xe4, 0x02, 0x0a, 0x16, 0x41, 0x73, 0x73, 0x65, 0x74, - 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, - 0x67, 0x12, 0x84, 0x01, 0x0a, 0x15, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x61, 0x75, 0x74, 0x6f, - 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 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, 0x73, 0x73, 0x65, 0x74, 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, - 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x48, 0x00, - 0x52, 0x13, 0x61, 0x73, 0x73, 0x65, 0x74, 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x54, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x8c, 0x01, 0x0a, 0x17, 0x61, 0x73, 0x73, - 0x65, 0x74, 0x5f, 0x61, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, - 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 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, 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, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x41, 0x75, 0x74, 0x6f, 0x6d, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x48, 0x01, 0x52, 0x15, 0x61, - 0x73, 0x73, 0x65, 0x74, 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, - 0x61, 0x74, 0x75, 0x73, 0x88, 0x01, 0x01, 0x42, 0x18, 0x0a, 0x16, 0x5f, 0x61, 0x73, 0x73, 0x65, - 0x74, 0x5f, 0x61, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, - 0x65, 0x42, 0x1a, 0x0a, 0x18, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x61, 0x75, 0x74, 0x6f, - 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x3a, 0x57, 0xea, - 0x41, 0x54, 0x0a, 0x21, 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, 0x43, 0x61, 0x6d, - 0x70, 0x61, 0x69, 0x67, 0x6e, 0x12, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, - 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x63, - 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x73, 0x2f, 0x7b, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, - 0x67, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x1b, 0x0a, 0x19, 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, 0x42, 0x05, 0x0a, 0x03, 0x5f, 0x69, 0x64, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6e, - 0x61, 0x6d, 0x65, 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, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, - 0x6e, 0x67, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x63, 0x61, 0x6d, 0x70, - 0x61, 0x69, 0x67, 0x6e, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, - 0x6e, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x73, 0x74, 0x61, - 0x72, 0x74, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x63, 0x61, 0x6d, 0x70, - 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x65, - 0x6e, 0x64, 0x5f, 0x64, 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, 0x15, 0x0a, 0x13, - 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x63, - 0x6f, 0x72, 0x65, 0x42, 0x18, 0x0a, 0x16, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x65, 0x78, 0x70, 0x61, - 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x70, 0x74, 0x5f, 0x6f, 0x75, 0x74, 0x42, 0x1b, 0x0a, - 0x19, 0x5f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, - 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x6c, - 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42, 0xff, 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, 0x0d, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, - 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 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, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x41, + 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x48, + 0x01, 0x52, 0x15, 0x61, 0x73, 0x73, 0x65, 0x74, 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x88, 0x01, 0x01, 0x42, 0x18, 0x0a, 0x16, 0x5f, + 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x61, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42, 0x1a, 0x0a, 0x18, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, + 0x61, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, + 0x73, 0x3a, 0x57, 0xea, 0x41, 0x54, 0x0a, 0x21, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x12, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, + 0x64, 0x7d, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x73, 0x2f, 0x7b, 0x63, 0x61, + 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x1b, 0x0a, 0x19, 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, 0x42, 0x05, 0x0a, 0x03, 0x5f, 0x69, 0x64, 0x42, 0x07, + 0x0a, 0x05, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 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, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x73, + 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x62, 0x61, 0x73, 0x65, 0x5f, + 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x63, 0x61, 0x6d, + 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x42, 0x0d, 0x0a, 0x0b, + 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x11, 0x0a, 0x0f, 0x5f, + 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x0b, + 0x0a, 0x09, 0x5f, 0x65, 0x6e, 0x64, 0x5f, 0x64, 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, 0x15, 0x0a, 0x13, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x42, 0x18, 0x0a, 0x16, 0x5f, 0x75, 0x72, 0x6c, 0x5f, + 0x65, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x70, 0x74, 0x5f, 0x6f, 0x75, + 0x74, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x70, 0x72, 0x6f, 0x70, + 0x65, 0x72, 0x74, 0x79, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x42, 0x0f, + 0x0a, 0x0d, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42, + 0xff, 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, 0x0d, 0x43, 0x61, 0x6d, 0x70, + 0x61, 0x69, 0x67, 0x6e, 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_campaign_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_campaign_proto_rawDescData = file_google_ads_googleads_v16_resources_campaign_proto_rawDesc + file_google_ads_googleads_v17_resources_campaign_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_campaign_proto_rawDescData = file_google_ads_googleads_v17_resources_campaign_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_campaign_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_campaign_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_campaign_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_campaign_proto_rawDescData) +func file_google_ads_googleads_v17_resources_campaign_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_campaign_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_campaign_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_campaign_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_campaign_proto_rawDescData -} - -var file_google_ads_googleads_v16_resources_campaign_proto_msgTypes = make([]protoimpl.MessageInfo, 19) -var file_google_ads_googleads_v16_resources_campaign_proto_goTypes = []interface{}{ - (*Campaign)(nil), // 0: google.ads.googleads.v16.resources.Campaign - (*Campaign_PerformanceMaxUpgrade)(nil), // 1: google.ads.googleads.v16.resources.Campaign.PerformanceMaxUpgrade - (*Campaign_NetworkSettings)(nil), // 2: google.ads.googleads.v16.resources.Campaign.NetworkSettings - (*Campaign_HotelSettingInfo)(nil), // 3: google.ads.googleads.v16.resources.Campaign.HotelSettingInfo - (*Campaign_DynamicSearchAdsSetting)(nil), // 4: google.ads.googleads.v16.resources.Campaign.DynamicSearchAdsSetting - (*Campaign_ShoppingSetting)(nil), // 5: google.ads.googleads.v16.resources.Campaign.ShoppingSetting - (*Campaign_TrackingSetting)(nil), // 6: google.ads.googleads.v16.resources.Campaign.TrackingSetting - (*Campaign_GeoTargetTypeSetting)(nil), // 7: google.ads.googleads.v16.resources.Campaign.GeoTargetTypeSetting - (*Campaign_LocalCampaignSetting)(nil), // 8: google.ads.googleads.v16.resources.Campaign.LocalCampaignSetting - (*Campaign_AppCampaignSetting)(nil), // 9: google.ads.googleads.v16.resources.Campaign.AppCampaignSetting - (*Campaign_VanityPharma)(nil), // 10: google.ads.googleads.v16.resources.Campaign.VanityPharma - (*Campaign_SelectiveOptimization)(nil), // 11: google.ads.googleads.v16.resources.Campaign.SelectiveOptimization - (*Campaign_OptimizationGoalSetting)(nil), // 12: google.ads.googleads.v16.resources.Campaign.OptimizationGoalSetting - (*Campaign_AudienceSetting)(nil), // 13: google.ads.googleads.v16.resources.Campaign.AudienceSetting - (*Campaign_LocalServicesCampaignSettings)(nil), // 14: google.ads.googleads.v16.resources.Campaign.LocalServicesCampaignSettings - (*Campaign_CategoryBid)(nil), // 15: google.ads.googleads.v16.resources.Campaign.CategoryBid - (*Campaign_TravelCampaignSettings)(nil), // 16: google.ads.googleads.v16.resources.Campaign.TravelCampaignSettings - (*Campaign_DiscoveryCampaignSettings)(nil), // 17: google.ads.googleads.v16.resources.Campaign.DiscoveryCampaignSettings - (*Campaign_AssetAutomationSetting)(nil), // 18: google.ads.googleads.v16.resources.Campaign.AssetAutomationSetting - (enums.CampaignPrimaryStatusEnum_CampaignPrimaryStatus)(0), // 19: google.ads.googleads.v16.enums.CampaignPrimaryStatusEnum.CampaignPrimaryStatus - (enums.CampaignPrimaryStatusReasonEnum_CampaignPrimaryStatusReason)(0), // 20: google.ads.googleads.v16.enums.CampaignPrimaryStatusReasonEnum.CampaignPrimaryStatusReason - (enums.CampaignStatusEnum_CampaignStatus)(0), // 21: google.ads.googleads.v16.enums.CampaignStatusEnum.CampaignStatus - (enums.CampaignServingStatusEnum_CampaignServingStatus)(0), // 22: google.ads.googleads.v16.enums.CampaignServingStatusEnum.CampaignServingStatus - (enums.BiddingStrategySystemStatusEnum_BiddingStrategySystemStatus)(0), // 23: google.ads.googleads.v16.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus - (enums.AdServingOptimizationStatusEnum_AdServingOptimizationStatus)(0), // 24: google.ads.googleads.v16.enums.AdServingOptimizationStatusEnum.AdServingOptimizationStatus - (enums.AdvertisingChannelTypeEnum_AdvertisingChannelType)(0), // 25: google.ads.googleads.v16.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType - (enums.AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType)(0), // 26: google.ads.googleads.v16.enums.AdvertisingChannelSubTypeEnum.AdvertisingChannelSubType - (*common.CustomParameter)(nil), // 27: google.ads.googleads.v16.common.CustomParameter - (*common.RealTimeBiddingSetting)(nil), // 28: google.ads.googleads.v16.common.RealTimeBiddingSetting - (*common.TargetingSetting)(nil), // 29: google.ads.googleads.v16.common.TargetingSetting - (enums.CampaignExperimentTypeEnum_CampaignExperimentType)(0), // 30: google.ads.googleads.v16.enums.CampaignExperimentTypeEnum.CampaignExperimentType - (enums.BiddingStrategyTypeEnum_BiddingStrategyType)(0), // 31: google.ads.googleads.v16.enums.BiddingStrategyTypeEnum.BiddingStrategyType - (*common.FrequencyCapEntry)(nil), // 32: google.ads.googleads.v16.common.FrequencyCapEntry - (enums.BrandSafetySuitabilityEnum_BrandSafetySuitability)(0), // 33: google.ads.googleads.v16.enums.BrandSafetySuitabilityEnum.BrandSafetySuitability - (enums.PaymentModeEnum_PaymentMode)(0), // 34: google.ads.googleads.v16.enums.PaymentModeEnum.PaymentMode - (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 35: google.ads.googleads.v16.enums.AssetFieldTypeEnum.AssetFieldType - (enums.AssetSetTypeEnum_AssetSetType)(0), // 36: google.ads.googleads.v16.enums.AssetSetTypeEnum.AssetSetType - (enums.ListingTypeEnum_ListingType)(0), // 37: google.ads.googleads.v16.enums.ListingTypeEnum.ListingType - (*common.Commission)(nil), // 38: google.ads.googleads.v16.common.Commission - (*common.ManualCpa)(nil), // 39: google.ads.googleads.v16.common.ManualCpa - (*common.ManualCpc)(nil), // 40: google.ads.googleads.v16.common.ManualCpc - (*common.ManualCpm)(nil), // 41: google.ads.googleads.v16.common.ManualCpm - (*common.ManualCpv)(nil), // 42: google.ads.googleads.v16.common.ManualCpv - (*common.MaximizeConversions)(nil), // 43: google.ads.googleads.v16.common.MaximizeConversions - (*common.MaximizeConversionValue)(nil), // 44: google.ads.googleads.v16.common.MaximizeConversionValue - (*common.TargetCpa)(nil), // 45: google.ads.googleads.v16.common.TargetCpa - (*common.TargetImpressionShare)(nil), // 46: google.ads.googleads.v16.common.TargetImpressionShare - (*common.TargetRoas)(nil), // 47: google.ads.googleads.v16.common.TargetRoas - (*common.TargetSpend)(nil), // 48: google.ads.googleads.v16.common.TargetSpend - (*common.PercentCpc)(nil), // 49: google.ads.googleads.v16.common.PercentCpc - (*common.TargetCpm)(nil), // 50: google.ads.googleads.v16.common.TargetCpm - (enums.PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus)(0), // 51: google.ads.googleads.v16.enums.PerformanceMaxUpgradeStatusEnum.PerformanceMaxUpgradeStatus - (enums.PositiveGeoTargetTypeEnum_PositiveGeoTargetType)(0), // 52: google.ads.googleads.v16.enums.PositiveGeoTargetTypeEnum.PositiveGeoTargetType - (enums.NegativeGeoTargetTypeEnum_NegativeGeoTargetType)(0), // 53: google.ads.googleads.v16.enums.NegativeGeoTargetTypeEnum.NegativeGeoTargetType - (enums.LocationSourceTypeEnum_LocationSourceType)(0), // 54: google.ads.googleads.v16.enums.LocationSourceTypeEnum.LocationSourceType - (enums.AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType)(0), // 55: google.ads.googleads.v16.enums.AppCampaignBiddingStrategyGoalTypeEnum.AppCampaignBiddingStrategyGoalType - (enums.AppCampaignAppStoreEnum_AppCampaignAppStore)(0), // 56: google.ads.googleads.v16.enums.AppCampaignAppStoreEnum.AppCampaignAppStore - (enums.VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode)(0), // 57: google.ads.googleads.v16.enums.VanityPharmaDisplayUrlModeEnum.VanityPharmaDisplayUrlMode - (enums.VanityPharmaTextEnum_VanityPharmaText)(0), // 58: google.ads.googleads.v16.enums.VanityPharmaTextEnum.VanityPharmaText - (enums.OptimizationGoalTypeEnum_OptimizationGoalType)(0), // 59: google.ads.googleads.v16.enums.OptimizationGoalTypeEnum.OptimizationGoalType - (enums.AssetAutomationTypeEnum_AssetAutomationType)(0), // 60: google.ads.googleads.v16.enums.AssetAutomationTypeEnum.AssetAutomationType - (enums.AssetAutomationStatusEnum_AssetAutomationStatus)(0), // 61: google.ads.googleads.v16.enums.AssetAutomationStatusEnum.AssetAutomationStatus -} -var file_google_ads_googleads_v16_resources_campaign_proto_depIdxs = []int32{ - 19, // 0: google.ads.googleads.v16.resources.Campaign.primary_status:type_name -> google.ads.googleads.v16.enums.CampaignPrimaryStatusEnum.CampaignPrimaryStatus - 20, // 1: google.ads.googleads.v16.resources.Campaign.primary_status_reasons:type_name -> google.ads.googleads.v16.enums.CampaignPrimaryStatusReasonEnum.CampaignPrimaryStatusReason - 21, // 2: google.ads.googleads.v16.resources.Campaign.status:type_name -> google.ads.googleads.v16.enums.CampaignStatusEnum.CampaignStatus - 22, // 3: google.ads.googleads.v16.resources.Campaign.serving_status:type_name -> google.ads.googleads.v16.enums.CampaignServingStatusEnum.CampaignServingStatus - 23, // 4: google.ads.googleads.v16.resources.Campaign.bidding_strategy_system_status:type_name -> google.ads.googleads.v16.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus - 24, // 5: google.ads.googleads.v16.resources.Campaign.ad_serving_optimization_status:type_name -> google.ads.googleads.v16.enums.AdServingOptimizationStatusEnum.AdServingOptimizationStatus - 25, // 6: google.ads.googleads.v16.resources.Campaign.advertising_channel_type:type_name -> google.ads.googleads.v16.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType - 26, // 7: google.ads.googleads.v16.resources.Campaign.advertising_channel_sub_type:type_name -> google.ads.googleads.v16.enums.AdvertisingChannelSubTypeEnum.AdvertisingChannelSubType - 27, // 8: google.ads.googleads.v16.resources.Campaign.url_custom_parameters:type_name -> google.ads.googleads.v16.common.CustomParameter - 14, // 9: google.ads.googleads.v16.resources.Campaign.local_services_campaign_settings:type_name -> google.ads.googleads.v16.resources.Campaign.LocalServicesCampaignSettings - 16, // 10: google.ads.googleads.v16.resources.Campaign.travel_campaign_settings:type_name -> google.ads.googleads.v16.resources.Campaign.TravelCampaignSettings - 17, // 11: google.ads.googleads.v16.resources.Campaign.discovery_campaign_settings:type_name -> google.ads.googleads.v16.resources.Campaign.DiscoveryCampaignSettings - 28, // 12: google.ads.googleads.v16.resources.Campaign.real_time_bidding_setting:type_name -> google.ads.googleads.v16.common.RealTimeBiddingSetting - 2, // 13: google.ads.googleads.v16.resources.Campaign.network_settings:type_name -> google.ads.googleads.v16.resources.Campaign.NetworkSettings - 3, // 14: google.ads.googleads.v16.resources.Campaign.hotel_setting:type_name -> google.ads.googleads.v16.resources.Campaign.HotelSettingInfo - 4, // 15: google.ads.googleads.v16.resources.Campaign.dynamic_search_ads_setting:type_name -> google.ads.googleads.v16.resources.Campaign.DynamicSearchAdsSetting - 5, // 16: google.ads.googleads.v16.resources.Campaign.shopping_setting:type_name -> google.ads.googleads.v16.resources.Campaign.ShoppingSetting - 29, // 17: google.ads.googleads.v16.resources.Campaign.targeting_setting:type_name -> google.ads.googleads.v16.common.TargetingSetting - 13, // 18: google.ads.googleads.v16.resources.Campaign.audience_setting:type_name -> google.ads.googleads.v16.resources.Campaign.AudienceSetting - 7, // 19: google.ads.googleads.v16.resources.Campaign.geo_target_type_setting:type_name -> google.ads.googleads.v16.resources.Campaign.GeoTargetTypeSetting - 8, // 20: google.ads.googleads.v16.resources.Campaign.local_campaign_setting:type_name -> google.ads.googleads.v16.resources.Campaign.LocalCampaignSetting - 9, // 21: google.ads.googleads.v16.resources.Campaign.app_campaign_setting:type_name -> google.ads.googleads.v16.resources.Campaign.AppCampaignSetting - 30, // 22: google.ads.googleads.v16.resources.Campaign.experiment_type:type_name -> google.ads.googleads.v16.enums.CampaignExperimentTypeEnum.CampaignExperimentType - 31, // 23: google.ads.googleads.v16.resources.Campaign.bidding_strategy_type:type_name -> google.ads.googleads.v16.enums.BiddingStrategyTypeEnum.BiddingStrategyType - 32, // 24: google.ads.googleads.v16.resources.Campaign.frequency_caps:type_name -> google.ads.googleads.v16.common.FrequencyCapEntry - 33, // 25: google.ads.googleads.v16.resources.Campaign.video_brand_safety_suitability:type_name -> google.ads.googleads.v16.enums.BrandSafetySuitabilityEnum.BrandSafetySuitability - 10, // 26: google.ads.googleads.v16.resources.Campaign.vanity_pharma:type_name -> google.ads.googleads.v16.resources.Campaign.VanityPharma - 11, // 27: google.ads.googleads.v16.resources.Campaign.selective_optimization:type_name -> google.ads.googleads.v16.resources.Campaign.SelectiveOptimization - 12, // 28: google.ads.googleads.v16.resources.Campaign.optimization_goal_setting:type_name -> google.ads.googleads.v16.resources.Campaign.OptimizationGoalSetting - 6, // 29: google.ads.googleads.v16.resources.Campaign.tracking_setting:type_name -> google.ads.googleads.v16.resources.Campaign.TrackingSetting - 34, // 30: google.ads.googleads.v16.resources.Campaign.payment_mode:type_name -> google.ads.googleads.v16.enums.PaymentModeEnum.PaymentMode - 35, // 31: google.ads.googleads.v16.resources.Campaign.excluded_parent_asset_field_types:type_name -> google.ads.googleads.v16.enums.AssetFieldTypeEnum.AssetFieldType - 36, // 32: google.ads.googleads.v16.resources.Campaign.excluded_parent_asset_set_types:type_name -> google.ads.googleads.v16.enums.AssetSetTypeEnum.AssetSetType - 1, // 33: google.ads.googleads.v16.resources.Campaign.performance_max_upgrade:type_name -> google.ads.googleads.v16.resources.Campaign.PerformanceMaxUpgrade - 37, // 34: google.ads.googleads.v16.resources.Campaign.listing_type:type_name -> google.ads.googleads.v16.enums.ListingTypeEnum.ListingType - 18, // 35: google.ads.googleads.v16.resources.Campaign.asset_automation_settings:type_name -> google.ads.googleads.v16.resources.Campaign.AssetAutomationSetting - 38, // 36: google.ads.googleads.v16.resources.Campaign.commission:type_name -> google.ads.googleads.v16.common.Commission - 39, // 37: google.ads.googleads.v16.resources.Campaign.manual_cpa:type_name -> google.ads.googleads.v16.common.ManualCpa - 40, // 38: google.ads.googleads.v16.resources.Campaign.manual_cpc:type_name -> google.ads.googleads.v16.common.ManualCpc - 41, // 39: google.ads.googleads.v16.resources.Campaign.manual_cpm:type_name -> google.ads.googleads.v16.common.ManualCpm - 42, // 40: google.ads.googleads.v16.resources.Campaign.manual_cpv:type_name -> google.ads.googleads.v16.common.ManualCpv - 43, // 41: google.ads.googleads.v16.resources.Campaign.maximize_conversions:type_name -> google.ads.googleads.v16.common.MaximizeConversions - 44, // 42: google.ads.googleads.v16.resources.Campaign.maximize_conversion_value:type_name -> google.ads.googleads.v16.common.MaximizeConversionValue - 45, // 43: google.ads.googleads.v16.resources.Campaign.target_cpa:type_name -> google.ads.googleads.v16.common.TargetCpa - 46, // 44: google.ads.googleads.v16.resources.Campaign.target_impression_share:type_name -> google.ads.googleads.v16.common.TargetImpressionShare - 47, // 45: google.ads.googleads.v16.resources.Campaign.target_roas:type_name -> google.ads.googleads.v16.common.TargetRoas - 48, // 46: google.ads.googleads.v16.resources.Campaign.target_spend:type_name -> google.ads.googleads.v16.common.TargetSpend - 49, // 47: google.ads.googleads.v16.resources.Campaign.percent_cpc:type_name -> google.ads.googleads.v16.common.PercentCpc - 50, // 48: google.ads.googleads.v16.resources.Campaign.target_cpm:type_name -> google.ads.googleads.v16.common.TargetCpm - 51, // 49: google.ads.googleads.v16.resources.Campaign.PerformanceMaxUpgrade.status:type_name -> google.ads.googleads.v16.enums.PerformanceMaxUpgradeStatusEnum.PerformanceMaxUpgradeStatus - 52, // 50: google.ads.googleads.v16.resources.Campaign.GeoTargetTypeSetting.positive_geo_target_type:type_name -> google.ads.googleads.v16.enums.PositiveGeoTargetTypeEnum.PositiveGeoTargetType - 53, // 51: google.ads.googleads.v16.resources.Campaign.GeoTargetTypeSetting.negative_geo_target_type:type_name -> google.ads.googleads.v16.enums.NegativeGeoTargetTypeEnum.NegativeGeoTargetType - 54, // 52: google.ads.googleads.v16.resources.Campaign.LocalCampaignSetting.location_source_type:type_name -> google.ads.googleads.v16.enums.LocationSourceTypeEnum.LocationSourceType - 55, // 53: google.ads.googleads.v16.resources.Campaign.AppCampaignSetting.bidding_strategy_goal_type:type_name -> google.ads.googleads.v16.enums.AppCampaignBiddingStrategyGoalTypeEnum.AppCampaignBiddingStrategyGoalType - 56, // 54: google.ads.googleads.v16.resources.Campaign.AppCampaignSetting.app_store:type_name -> google.ads.googleads.v16.enums.AppCampaignAppStoreEnum.AppCampaignAppStore - 57, // 55: google.ads.googleads.v16.resources.Campaign.VanityPharma.vanity_pharma_display_url_mode:type_name -> google.ads.googleads.v16.enums.VanityPharmaDisplayUrlModeEnum.VanityPharmaDisplayUrlMode - 58, // 56: google.ads.googleads.v16.resources.Campaign.VanityPharma.vanity_pharma_text:type_name -> google.ads.googleads.v16.enums.VanityPharmaTextEnum.VanityPharmaText - 59, // 57: google.ads.googleads.v16.resources.Campaign.OptimizationGoalSetting.optimization_goal_types:type_name -> google.ads.googleads.v16.enums.OptimizationGoalTypeEnum.OptimizationGoalType - 15, // 58: google.ads.googleads.v16.resources.Campaign.LocalServicesCampaignSettings.category_bids:type_name -> google.ads.googleads.v16.resources.Campaign.CategoryBid - 60, // 59: google.ads.googleads.v16.resources.Campaign.AssetAutomationSetting.asset_automation_type:type_name -> google.ads.googleads.v16.enums.AssetAutomationTypeEnum.AssetAutomationType - 61, // 60: google.ads.googleads.v16.resources.Campaign.AssetAutomationSetting.asset_automation_status:type_name -> google.ads.googleads.v16.enums.AssetAutomationStatusEnum.AssetAutomationStatus - 61, // [61:61] is the sub-list for method output_type - 61, // [61:61] is the sub-list for method input_type - 61, // [61:61] is the sub-list for extension type_name - 61, // [61:61] is the sub-list for extension extendee - 0, // [0:61] is the sub-list for field type_name -} - -func init() { file_google_ads_googleads_v16_resources_campaign_proto_init() } -func file_google_ads_googleads_v16_resources_campaign_proto_init() { - if File_google_ads_googleads_v16_resources_campaign_proto != nil { + return file_google_ads_googleads_v17_resources_campaign_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_campaign_proto_msgTypes = make([]protoimpl.MessageInfo, 19) +var file_google_ads_googleads_v17_resources_campaign_proto_goTypes = []interface{}{ + (*Campaign)(nil), // 0: google.ads.googleads.v17.resources.Campaign + (*Campaign_PerformanceMaxUpgrade)(nil), // 1: google.ads.googleads.v17.resources.Campaign.PerformanceMaxUpgrade + (*Campaign_NetworkSettings)(nil), // 2: google.ads.googleads.v17.resources.Campaign.NetworkSettings + (*Campaign_HotelSettingInfo)(nil), // 3: google.ads.googleads.v17.resources.Campaign.HotelSettingInfo + (*Campaign_DynamicSearchAdsSetting)(nil), // 4: google.ads.googleads.v17.resources.Campaign.DynamicSearchAdsSetting + (*Campaign_ShoppingSetting)(nil), // 5: google.ads.googleads.v17.resources.Campaign.ShoppingSetting + (*Campaign_TrackingSetting)(nil), // 6: google.ads.googleads.v17.resources.Campaign.TrackingSetting + (*Campaign_GeoTargetTypeSetting)(nil), // 7: google.ads.googleads.v17.resources.Campaign.GeoTargetTypeSetting + (*Campaign_LocalCampaignSetting)(nil), // 8: google.ads.googleads.v17.resources.Campaign.LocalCampaignSetting + (*Campaign_AppCampaignSetting)(nil), // 9: google.ads.googleads.v17.resources.Campaign.AppCampaignSetting + (*Campaign_VanityPharma)(nil), // 10: google.ads.googleads.v17.resources.Campaign.VanityPharma + (*Campaign_SelectiveOptimization)(nil), // 11: google.ads.googleads.v17.resources.Campaign.SelectiveOptimization + (*Campaign_OptimizationGoalSetting)(nil), // 12: google.ads.googleads.v17.resources.Campaign.OptimizationGoalSetting + (*Campaign_AudienceSetting)(nil), // 13: google.ads.googleads.v17.resources.Campaign.AudienceSetting + (*Campaign_LocalServicesCampaignSettings)(nil), // 14: google.ads.googleads.v17.resources.Campaign.LocalServicesCampaignSettings + (*Campaign_CategoryBid)(nil), // 15: google.ads.googleads.v17.resources.Campaign.CategoryBid + (*Campaign_TravelCampaignSettings)(nil), // 16: google.ads.googleads.v17.resources.Campaign.TravelCampaignSettings + (*Campaign_DemandGenCampaignSettings)(nil), // 17: google.ads.googleads.v17.resources.Campaign.DemandGenCampaignSettings + (*Campaign_AssetAutomationSetting)(nil), // 18: google.ads.googleads.v17.resources.Campaign.AssetAutomationSetting + (enums.CampaignPrimaryStatusEnum_CampaignPrimaryStatus)(0), // 19: google.ads.googleads.v17.enums.CampaignPrimaryStatusEnum.CampaignPrimaryStatus + (enums.CampaignPrimaryStatusReasonEnum_CampaignPrimaryStatusReason)(0), // 20: google.ads.googleads.v17.enums.CampaignPrimaryStatusReasonEnum.CampaignPrimaryStatusReason + (enums.CampaignStatusEnum_CampaignStatus)(0), // 21: google.ads.googleads.v17.enums.CampaignStatusEnum.CampaignStatus + (enums.CampaignServingStatusEnum_CampaignServingStatus)(0), // 22: google.ads.googleads.v17.enums.CampaignServingStatusEnum.CampaignServingStatus + (enums.BiddingStrategySystemStatusEnum_BiddingStrategySystemStatus)(0), // 23: google.ads.googleads.v17.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus + (enums.AdServingOptimizationStatusEnum_AdServingOptimizationStatus)(0), // 24: google.ads.googleads.v17.enums.AdServingOptimizationStatusEnum.AdServingOptimizationStatus + (enums.AdvertisingChannelTypeEnum_AdvertisingChannelType)(0), // 25: google.ads.googleads.v17.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType + (enums.AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType)(0), // 26: google.ads.googleads.v17.enums.AdvertisingChannelSubTypeEnum.AdvertisingChannelSubType + (*common.CustomParameter)(nil), // 27: google.ads.googleads.v17.common.CustomParameter + (*common.RealTimeBiddingSetting)(nil), // 28: google.ads.googleads.v17.common.RealTimeBiddingSetting + (*common.TargetingSetting)(nil), // 29: google.ads.googleads.v17.common.TargetingSetting + (enums.CampaignExperimentTypeEnum_CampaignExperimentType)(0), // 30: google.ads.googleads.v17.enums.CampaignExperimentTypeEnum.CampaignExperimentType + (enums.BiddingStrategyTypeEnum_BiddingStrategyType)(0), // 31: google.ads.googleads.v17.enums.BiddingStrategyTypeEnum.BiddingStrategyType + (*common.FrequencyCapEntry)(nil), // 32: google.ads.googleads.v17.common.FrequencyCapEntry + (enums.BrandSafetySuitabilityEnum_BrandSafetySuitability)(0), // 33: google.ads.googleads.v17.enums.BrandSafetySuitabilityEnum.BrandSafetySuitability + (enums.PaymentModeEnum_PaymentMode)(0), // 34: google.ads.googleads.v17.enums.PaymentModeEnum.PaymentMode + (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 35: google.ads.googleads.v17.enums.AssetFieldTypeEnum.AssetFieldType + (enums.AssetSetTypeEnum_AssetSetType)(0), // 36: google.ads.googleads.v17.enums.AssetSetTypeEnum.AssetSetType + (enums.ListingTypeEnum_ListingType)(0), // 37: google.ads.googleads.v17.enums.ListingTypeEnum.ListingType + (enums.CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType)(0), // 38: google.ads.googleads.v17.enums.CampaignKeywordMatchTypeEnum.CampaignKeywordMatchType + (*common.Commission)(nil), // 39: google.ads.googleads.v17.common.Commission + (*common.ManualCpa)(nil), // 40: google.ads.googleads.v17.common.ManualCpa + (*common.ManualCpc)(nil), // 41: google.ads.googleads.v17.common.ManualCpc + (*common.ManualCpm)(nil), // 42: google.ads.googleads.v17.common.ManualCpm + (*common.ManualCpv)(nil), // 43: google.ads.googleads.v17.common.ManualCpv + (*common.MaximizeConversions)(nil), // 44: google.ads.googleads.v17.common.MaximizeConversions + (*common.MaximizeConversionValue)(nil), // 45: google.ads.googleads.v17.common.MaximizeConversionValue + (*common.TargetCpa)(nil), // 46: google.ads.googleads.v17.common.TargetCpa + (*common.TargetImpressionShare)(nil), // 47: google.ads.googleads.v17.common.TargetImpressionShare + (*common.TargetRoas)(nil), // 48: google.ads.googleads.v17.common.TargetRoas + (*common.TargetSpend)(nil), // 49: google.ads.googleads.v17.common.TargetSpend + (*common.PercentCpc)(nil), // 50: google.ads.googleads.v17.common.PercentCpc + (*common.TargetCpm)(nil), // 51: google.ads.googleads.v17.common.TargetCpm + (enums.PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus)(0), // 52: google.ads.googleads.v17.enums.PerformanceMaxUpgradeStatusEnum.PerformanceMaxUpgradeStatus + (enums.PositiveGeoTargetTypeEnum_PositiveGeoTargetType)(0), // 53: google.ads.googleads.v17.enums.PositiveGeoTargetTypeEnum.PositiveGeoTargetType + (enums.NegativeGeoTargetTypeEnum_NegativeGeoTargetType)(0), // 54: google.ads.googleads.v17.enums.NegativeGeoTargetTypeEnum.NegativeGeoTargetType + (enums.LocationSourceTypeEnum_LocationSourceType)(0), // 55: google.ads.googleads.v17.enums.LocationSourceTypeEnum.LocationSourceType + (enums.AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType)(0), // 56: google.ads.googleads.v17.enums.AppCampaignBiddingStrategyGoalTypeEnum.AppCampaignBiddingStrategyGoalType + (enums.AppCampaignAppStoreEnum_AppCampaignAppStore)(0), // 57: google.ads.googleads.v17.enums.AppCampaignAppStoreEnum.AppCampaignAppStore + (enums.VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode)(0), // 58: google.ads.googleads.v17.enums.VanityPharmaDisplayUrlModeEnum.VanityPharmaDisplayUrlMode + (enums.VanityPharmaTextEnum_VanityPharmaText)(0), // 59: google.ads.googleads.v17.enums.VanityPharmaTextEnum.VanityPharmaText + (enums.OptimizationGoalTypeEnum_OptimizationGoalType)(0), // 60: google.ads.googleads.v17.enums.OptimizationGoalTypeEnum.OptimizationGoalType + (enums.AssetAutomationTypeEnum_AssetAutomationType)(0), // 61: google.ads.googleads.v17.enums.AssetAutomationTypeEnum.AssetAutomationType + (enums.AssetAutomationStatusEnum_AssetAutomationStatus)(0), // 62: google.ads.googleads.v17.enums.AssetAutomationStatusEnum.AssetAutomationStatus +} +var file_google_ads_googleads_v17_resources_campaign_proto_depIdxs = []int32{ + 19, // 0: google.ads.googleads.v17.resources.Campaign.primary_status:type_name -> google.ads.googleads.v17.enums.CampaignPrimaryStatusEnum.CampaignPrimaryStatus + 20, // 1: google.ads.googleads.v17.resources.Campaign.primary_status_reasons:type_name -> google.ads.googleads.v17.enums.CampaignPrimaryStatusReasonEnum.CampaignPrimaryStatusReason + 21, // 2: google.ads.googleads.v17.resources.Campaign.status:type_name -> google.ads.googleads.v17.enums.CampaignStatusEnum.CampaignStatus + 22, // 3: google.ads.googleads.v17.resources.Campaign.serving_status:type_name -> google.ads.googleads.v17.enums.CampaignServingStatusEnum.CampaignServingStatus + 23, // 4: google.ads.googleads.v17.resources.Campaign.bidding_strategy_system_status:type_name -> google.ads.googleads.v17.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus + 24, // 5: google.ads.googleads.v17.resources.Campaign.ad_serving_optimization_status:type_name -> google.ads.googleads.v17.enums.AdServingOptimizationStatusEnum.AdServingOptimizationStatus + 25, // 6: google.ads.googleads.v17.resources.Campaign.advertising_channel_type:type_name -> google.ads.googleads.v17.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType + 26, // 7: google.ads.googleads.v17.resources.Campaign.advertising_channel_sub_type:type_name -> google.ads.googleads.v17.enums.AdvertisingChannelSubTypeEnum.AdvertisingChannelSubType + 27, // 8: google.ads.googleads.v17.resources.Campaign.url_custom_parameters:type_name -> google.ads.googleads.v17.common.CustomParameter + 14, // 9: google.ads.googleads.v17.resources.Campaign.local_services_campaign_settings:type_name -> google.ads.googleads.v17.resources.Campaign.LocalServicesCampaignSettings + 16, // 10: google.ads.googleads.v17.resources.Campaign.travel_campaign_settings:type_name -> google.ads.googleads.v17.resources.Campaign.TravelCampaignSettings + 17, // 11: google.ads.googleads.v17.resources.Campaign.demand_gen_campaign_settings:type_name -> google.ads.googleads.v17.resources.Campaign.DemandGenCampaignSettings + 28, // 12: google.ads.googleads.v17.resources.Campaign.real_time_bidding_setting:type_name -> google.ads.googleads.v17.common.RealTimeBiddingSetting + 2, // 13: google.ads.googleads.v17.resources.Campaign.network_settings:type_name -> google.ads.googleads.v17.resources.Campaign.NetworkSettings + 3, // 14: google.ads.googleads.v17.resources.Campaign.hotel_setting:type_name -> google.ads.googleads.v17.resources.Campaign.HotelSettingInfo + 4, // 15: google.ads.googleads.v17.resources.Campaign.dynamic_search_ads_setting:type_name -> google.ads.googleads.v17.resources.Campaign.DynamicSearchAdsSetting + 5, // 16: google.ads.googleads.v17.resources.Campaign.shopping_setting:type_name -> google.ads.googleads.v17.resources.Campaign.ShoppingSetting + 29, // 17: google.ads.googleads.v17.resources.Campaign.targeting_setting:type_name -> google.ads.googleads.v17.common.TargetingSetting + 13, // 18: google.ads.googleads.v17.resources.Campaign.audience_setting:type_name -> google.ads.googleads.v17.resources.Campaign.AudienceSetting + 7, // 19: google.ads.googleads.v17.resources.Campaign.geo_target_type_setting:type_name -> google.ads.googleads.v17.resources.Campaign.GeoTargetTypeSetting + 8, // 20: google.ads.googleads.v17.resources.Campaign.local_campaign_setting:type_name -> google.ads.googleads.v17.resources.Campaign.LocalCampaignSetting + 9, // 21: google.ads.googleads.v17.resources.Campaign.app_campaign_setting:type_name -> google.ads.googleads.v17.resources.Campaign.AppCampaignSetting + 30, // 22: google.ads.googleads.v17.resources.Campaign.experiment_type:type_name -> google.ads.googleads.v17.enums.CampaignExperimentTypeEnum.CampaignExperimentType + 31, // 23: google.ads.googleads.v17.resources.Campaign.bidding_strategy_type:type_name -> google.ads.googleads.v17.enums.BiddingStrategyTypeEnum.BiddingStrategyType + 32, // 24: google.ads.googleads.v17.resources.Campaign.frequency_caps:type_name -> google.ads.googleads.v17.common.FrequencyCapEntry + 33, // 25: google.ads.googleads.v17.resources.Campaign.video_brand_safety_suitability:type_name -> google.ads.googleads.v17.enums.BrandSafetySuitabilityEnum.BrandSafetySuitability + 10, // 26: google.ads.googleads.v17.resources.Campaign.vanity_pharma:type_name -> google.ads.googleads.v17.resources.Campaign.VanityPharma + 11, // 27: google.ads.googleads.v17.resources.Campaign.selective_optimization:type_name -> google.ads.googleads.v17.resources.Campaign.SelectiveOptimization + 12, // 28: google.ads.googleads.v17.resources.Campaign.optimization_goal_setting:type_name -> google.ads.googleads.v17.resources.Campaign.OptimizationGoalSetting + 6, // 29: google.ads.googleads.v17.resources.Campaign.tracking_setting:type_name -> google.ads.googleads.v17.resources.Campaign.TrackingSetting + 34, // 30: google.ads.googleads.v17.resources.Campaign.payment_mode:type_name -> google.ads.googleads.v17.enums.PaymentModeEnum.PaymentMode + 35, // 31: google.ads.googleads.v17.resources.Campaign.excluded_parent_asset_field_types:type_name -> google.ads.googleads.v17.enums.AssetFieldTypeEnum.AssetFieldType + 36, // 32: google.ads.googleads.v17.resources.Campaign.excluded_parent_asset_set_types:type_name -> google.ads.googleads.v17.enums.AssetSetTypeEnum.AssetSetType + 1, // 33: google.ads.googleads.v17.resources.Campaign.performance_max_upgrade:type_name -> google.ads.googleads.v17.resources.Campaign.PerformanceMaxUpgrade + 37, // 34: google.ads.googleads.v17.resources.Campaign.listing_type:type_name -> google.ads.googleads.v17.enums.ListingTypeEnum.ListingType + 18, // 35: google.ads.googleads.v17.resources.Campaign.asset_automation_settings:type_name -> google.ads.googleads.v17.resources.Campaign.AssetAutomationSetting + 38, // 36: google.ads.googleads.v17.resources.Campaign.keyword_match_type:type_name -> google.ads.googleads.v17.enums.CampaignKeywordMatchTypeEnum.CampaignKeywordMatchType + 39, // 37: google.ads.googleads.v17.resources.Campaign.commission:type_name -> google.ads.googleads.v17.common.Commission + 40, // 38: google.ads.googleads.v17.resources.Campaign.manual_cpa:type_name -> google.ads.googleads.v17.common.ManualCpa + 41, // 39: google.ads.googleads.v17.resources.Campaign.manual_cpc:type_name -> google.ads.googleads.v17.common.ManualCpc + 42, // 40: google.ads.googleads.v17.resources.Campaign.manual_cpm:type_name -> google.ads.googleads.v17.common.ManualCpm + 43, // 41: google.ads.googleads.v17.resources.Campaign.manual_cpv:type_name -> google.ads.googleads.v17.common.ManualCpv + 44, // 42: google.ads.googleads.v17.resources.Campaign.maximize_conversions:type_name -> google.ads.googleads.v17.common.MaximizeConversions + 45, // 43: google.ads.googleads.v17.resources.Campaign.maximize_conversion_value:type_name -> google.ads.googleads.v17.common.MaximizeConversionValue + 46, // 44: google.ads.googleads.v17.resources.Campaign.target_cpa:type_name -> google.ads.googleads.v17.common.TargetCpa + 47, // 45: google.ads.googleads.v17.resources.Campaign.target_impression_share:type_name -> google.ads.googleads.v17.common.TargetImpressionShare + 48, // 46: google.ads.googleads.v17.resources.Campaign.target_roas:type_name -> google.ads.googleads.v17.common.TargetRoas + 49, // 47: google.ads.googleads.v17.resources.Campaign.target_spend:type_name -> google.ads.googleads.v17.common.TargetSpend + 50, // 48: google.ads.googleads.v17.resources.Campaign.percent_cpc:type_name -> google.ads.googleads.v17.common.PercentCpc + 51, // 49: google.ads.googleads.v17.resources.Campaign.target_cpm:type_name -> google.ads.googleads.v17.common.TargetCpm + 52, // 50: google.ads.googleads.v17.resources.Campaign.PerformanceMaxUpgrade.status:type_name -> google.ads.googleads.v17.enums.PerformanceMaxUpgradeStatusEnum.PerformanceMaxUpgradeStatus + 53, // 51: google.ads.googleads.v17.resources.Campaign.GeoTargetTypeSetting.positive_geo_target_type:type_name -> google.ads.googleads.v17.enums.PositiveGeoTargetTypeEnum.PositiveGeoTargetType + 54, // 52: google.ads.googleads.v17.resources.Campaign.GeoTargetTypeSetting.negative_geo_target_type:type_name -> google.ads.googleads.v17.enums.NegativeGeoTargetTypeEnum.NegativeGeoTargetType + 55, // 53: google.ads.googleads.v17.resources.Campaign.LocalCampaignSetting.location_source_type:type_name -> google.ads.googleads.v17.enums.LocationSourceTypeEnum.LocationSourceType + 56, // 54: google.ads.googleads.v17.resources.Campaign.AppCampaignSetting.bidding_strategy_goal_type:type_name -> google.ads.googleads.v17.enums.AppCampaignBiddingStrategyGoalTypeEnum.AppCampaignBiddingStrategyGoalType + 57, // 55: google.ads.googleads.v17.resources.Campaign.AppCampaignSetting.app_store:type_name -> google.ads.googleads.v17.enums.AppCampaignAppStoreEnum.AppCampaignAppStore + 58, // 56: google.ads.googleads.v17.resources.Campaign.VanityPharma.vanity_pharma_display_url_mode:type_name -> google.ads.googleads.v17.enums.VanityPharmaDisplayUrlModeEnum.VanityPharmaDisplayUrlMode + 59, // 57: google.ads.googleads.v17.resources.Campaign.VanityPharma.vanity_pharma_text:type_name -> google.ads.googleads.v17.enums.VanityPharmaTextEnum.VanityPharmaText + 60, // 58: google.ads.googleads.v17.resources.Campaign.OptimizationGoalSetting.optimization_goal_types:type_name -> google.ads.googleads.v17.enums.OptimizationGoalTypeEnum.OptimizationGoalType + 15, // 59: google.ads.googleads.v17.resources.Campaign.LocalServicesCampaignSettings.category_bids:type_name -> google.ads.googleads.v17.resources.Campaign.CategoryBid + 61, // 60: google.ads.googleads.v17.resources.Campaign.AssetAutomationSetting.asset_automation_type:type_name -> google.ads.googleads.v17.enums.AssetAutomationTypeEnum.AssetAutomationType + 62, // 61: google.ads.googleads.v17.resources.Campaign.AssetAutomationSetting.asset_automation_status:type_name -> google.ads.googleads.v17.enums.AssetAutomationStatusEnum.AssetAutomationStatus + 62, // [62:62] is the sub-list for method output_type + 62, // [62:62] is the sub-list for method input_type + 62, // [62:62] is the sub-list for extension type_name + 62, // [62:62] is the sub-list for extension extendee + 0, // [0:62] is the sub-list for field type_name +} + +func init() { file_google_ads_googleads_v17_resources_campaign_proto_init() } +func file_google_ads_googleads_v17_resources_campaign_proto_init() { + if File_google_ads_googleads_v17_resources_campaign_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Campaign); i { case 0: return &v.state @@ -3005,7 +3028,7 @@ func file_google_ads_googleads_v16_resources_campaign_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Campaign_PerformanceMaxUpgrade); i { case 0: return &v.state @@ -3017,7 +3040,7 @@ func file_google_ads_googleads_v16_resources_campaign_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Campaign_NetworkSettings); i { case 0: return &v.state @@ -3029,7 +3052,7 @@ func file_google_ads_googleads_v16_resources_campaign_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Campaign_HotelSettingInfo); i { case 0: return &v.state @@ -3041,7 +3064,7 @@ func file_google_ads_googleads_v16_resources_campaign_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Campaign_DynamicSearchAdsSetting); i { case 0: return &v.state @@ -3053,7 +3076,7 @@ func file_google_ads_googleads_v16_resources_campaign_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Campaign_ShoppingSetting); i { case 0: return &v.state @@ -3065,7 +3088,7 @@ func file_google_ads_googleads_v16_resources_campaign_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Campaign_TrackingSetting); i { case 0: return &v.state @@ -3077,7 +3100,7 @@ func file_google_ads_googleads_v16_resources_campaign_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Campaign_GeoTargetTypeSetting); i { case 0: return &v.state @@ -3089,7 +3112,7 @@ func file_google_ads_googleads_v16_resources_campaign_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Campaign_LocalCampaignSetting); i { case 0: return &v.state @@ -3101,7 +3124,7 @@ func file_google_ads_googleads_v16_resources_campaign_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Campaign_AppCampaignSetting); i { case 0: return &v.state @@ -3113,7 +3136,7 @@ func file_google_ads_googleads_v16_resources_campaign_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Campaign_VanityPharma); i { case 0: return &v.state @@ -3125,7 +3148,7 @@ func file_google_ads_googleads_v16_resources_campaign_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Campaign_SelectiveOptimization); i { case 0: return &v.state @@ -3137,7 +3160,7 @@ func file_google_ads_googleads_v16_resources_campaign_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Campaign_OptimizationGoalSetting); i { case 0: return &v.state @@ -3149,7 +3172,7 @@ func file_google_ads_googleads_v16_resources_campaign_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Campaign_AudienceSetting); i { case 0: return &v.state @@ -3161,7 +3184,7 @@ func file_google_ads_googleads_v16_resources_campaign_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Campaign_LocalServicesCampaignSettings); i { case 0: return &v.state @@ -3173,7 +3196,7 @@ func file_google_ads_googleads_v16_resources_campaign_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Campaign_CategoryBid); i { case 0: return &v.state @@ -3185,7 +3208,7 @@ func file_google_ads_googleads_v16_resources_campaign_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Campaign_TravelCampaignSettings); i { case 0: return &v.state @@ -3197,8 +3220,8 @@ func file_google_ads_googleads_v16_resources_campaign_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Campaign_DiscoveryCampaignSettings); i { + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*Campaign_DemandGenCampaignSettings); i { case 0: return &v.state case 1: @@ -3209,7 +3232,7 @@ func file_google_ads_googleads_v16_resources_campaign_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Campaign_AssetAutomationSetting); i { case 0: return &v.state @@ -3222,7 +3245,7 @@ func file_google_ads_googleads_v16_resources_campaign_proto_init() { } } } - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[0].OneofWrappers = []interface{}{ (*Campaign_BiddingStrategy)(nil), (*Campaign_Commission)(nil), (*Campaign_ManualCpa)(nil), @@ -3238,33 +3261,33 @@ func file_google_ads_googleads_v16_resources_campaign_proto_init() { (*Campaign_PercentCpc)(nil), (*Campaign_TargetCpm)(nil), } - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[2].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[3].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[4].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[5].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[6].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[9].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[13].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[15].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[16].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[17].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_campaign_proto_msgTypes[18].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[2].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[3].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[4].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[5].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[6].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[9].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[13].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[15].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[16].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[17].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_campaign_proto_msgTypes[18].OneofWrappers = []interface{}{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_campaign_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_campaign_proto_rawDesc, NumEnums: 0, NumMessages: 19, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_campaign_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_campaign_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_campaign_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_campaign_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_campaign_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_campaign_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_campaign_proto = out.File - file_google_ads_googleads_v16_resources_campaign_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_campaign_proto_goTypes = nil - file_google_ads_googleads_v16_resources_campaign_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_campaign_proto = out.File + file_google_ads_googleads_v17_resources_campaign_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_campaign_proto_goTypes = nil + file_google_ads_googleads_v17_resources_campaign_proto_depIdxs = nil } diff --git a/resources/campaign_aggregate_asset_view.pb.go b/resources/campaign_aggregate_asset_view.pb.go new file mode 100644 index 00000000..7547ad05 --- /dev/null +++ b/resources/campaign_aggregate_asset_view.pb.go @@ -0,0 +1,279 @@ +// Copyright 2024 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/resources/campaign_aggregate_asset_view.proto + +package resources + +import ( + enums "github.com/shenzhencenter/google-ads-pb/enums" + _ "google.golang.org/genproto/googleapis/api/annotations" + 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) +) + +// A campaign-level aggregate asset view that shows where the asset is linked, +// performamce of the asset and stats. +type CampaignAggregateAssetView struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + // Output only. The resource name of the campaign aggregate asset view. + // Campaign aggregate asset view resource names have the form: + // + // `customers/{customer_id}/campaignAggregateAssetViews/{Campaign.campaign_id}~{Asset.asset_id}~{AssetLinkSource.asset_link_source}~{AssetFieldType.field_type}` + ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` + // Output only. Campaign in which the asset served. + Campaign *string `protobuf:"bytes,2,opt,name=campaign,proto3,oneof" json:"campaign,omitempty"` + // Output only. The ID of the asset. + Asset *string `protobuf:"bytes,3,opt,name=asset,proto3,oneof" json:"asset,omitempty"` + // Output only. Source of the asset link. + AssetSource *enums.AssetSourceEnum_AssetSource `protobuf:"varint,4,opt,name=asset_source,json=assetSource,proto3,enum=google.ads.googleads.v17.enums.AssetSourceEnum_AssetSource,oneof" json:"asset_source,omitempty"` + // Output only. FieldType of the asset. + FieldType *enums.AssetFieldTypeEnum_AssetFieldType `protobuf:"varint,5,opt,name=field_type,json=fieldType,proto3,enum=google.ads.googleads.v17.enums.AssetFieldTypeEnum_AssetFieldType,oneof" json:"field_type,omitempty"` +} + +func (x *CampaignAggregateAssetView) Reset() { + *x = CampaignAggregateAssetView{} + if protoimpl.UnsafeEnabled { + mi := &file_google_ads_googleads_v17_resources_campaign_aggregate_asset_view_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *CampaignAggregateAssetView) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*CampaignAggregateAssetView) ProtoMessage() {} + +func (x *CampaignAggregateAssetView) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v17_resources_campaign_aggregate_asset_view_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 CampaignAggregateAssetView.ProtoReflect.Descriptor instead. +func (*CampaignAggregateAssetView) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v17_resources_campaign_aggregate_asset_view_proto_rawDescGZIP(), []int{0} +} + +func (x *CampaignAggregateAssetView) GetResourceName() string { + if x != nil { + return x.ResourceName + } + return "" +} + +func (x *CampaignAggregateAssetView) GetCampaign() string { + if x != nil && x.Campaign != nil { + return *x.Campaign + } + return "" +} + +func (x *CampaignAggregateAssetView) GetAsset() string { + if x != nil && x.Asset != nil { + return *x.Asset + } + return "" +} + +func (x *CampaignAggregateAssetView) GetAssetSource() enums.AssetSourceEnum_AssetSource { + if x != nil && x.AssetSource != nil { + return *x.AssetSource + } + return enums.AssetSourceEnum_AssetSource(0) +} + +func (x *CampaignAggregateAssetView) GetFieldType() enums.AssetFieldTypeEnum_AssetFieldType { + if x != nil && x.FieldType != nil { + return *x.FieldType + } + return enums.AssetFieldTypeEnum_AssetFieldType(0) +} + +var File_google_ads_googleads_v17_resources_campaign_aggregate_asset_view_proto protoreflect.FileDescriptor + +var file_google_ads_googleads_v17_resources_campaign_aggregate_asset_view_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, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x67, + 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 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, 0x31, 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, 0x73, 0x73, 0x65, 0x74, 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, 0xc5, 0x05, 0x0a, 0x1a, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, + 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x56, 0x69, 0x65, + 0x77, 0x12, 0x60, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, + 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x3b, 0xe0, 0x41, 0x03, 0xfa, 0x41, 0x35, + 0x0a, 0x33, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, + 0x69, 0x67, 0x6e, 0x41, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, + 0x74, 0x56, 0x69, 0x65, 0x77, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, + 0x61, 0x6d, 0x65, 0x12, 0x4a, 0x0a, 0x08, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x29, 0xe0, 0x41, 0x03, 0xfa, 0x41, 0x23, 0x0a, 0x21, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, + 0x48, 0x00, 0x52, 0x08, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x88, 0x01, 0x01, 0x12, + 0x41, 0x0a, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x26, + 0xe0, 0x41, 0x03, 0xfa, 0x41, 0x20, 0x0a, 0x1e, 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, 0x73, 0x73, 0x65, 0x74, 0x48, 0x01, 0x52, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, 0x88, + 0x01, 0x01, 0x12, 0x68, 0x0a, 0x0c, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x18, 0x04, 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, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x02, 0x52, 0x0b, 0x61, 0x73, + 0x73, 0x65, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x88, 0x01, 0x01, 0x12, 0x6a, 0x0a, 0x0a, + 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x03, 0x52, 0x09, 0x66, 0x69, 0x65, 0x6c, + 0x64, 0x54, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x3a, 0xa8, 0x01, 0xea, 0x41, 0xa4, 0x01, 0x0a, + 0x33, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, + 0x67, 0x6e, 0x41, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, + 0x56, 0x69, 0x65, 0x77, 0x12, 0x6d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, + 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x63, 0x61, + 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x41, + 0x73, 0x73, 0x65, 0x74, 0x56, 0x69, 0x65, 0x77, 0x73, 0x2f, 0x7b, 0x63, 0x61, 0x6d, 0x70, 0x61, + 0x69, 0x67, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x69, + 0x64, 0x7d, 0x7e, 0x7b, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x7d, 0x7e, 0x7b, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, + 0x70, 0x65, 0x7d, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, + 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x61, + 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, + 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42, 0x91, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x1f, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, + 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 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, + 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_v17_resources_campaign_aggregate_asset_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_campaign_aggregate_asset_view_proto_rawDescData = file_google_ads_googleads_v17_resources_campaign_aggregate_asset_view_proto_rawDesc +) + +func file_google_ads_googleads_v17_resources_campaign_aggregate_asset_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_campaign_aggregate_asset_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_campaign_aggregate_asset_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_campaign_aggregate_asset_view_proto_rawDescData) + }) + return file_google_ads_googleads_v17_resources_campaign_aggregate_asset_view_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_campaign_aggregate_asset_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_campaign_aggregate_asset_view_proto_goTypes = []interface{}{ + (*CampaignAggregateAssetView)(nil), // 0: google.ads.googleads.v17.resources.CampaignAggregateAssetView + (enums.AssetSourceEnum_AssetSource)(0), // 1: google.ads.googleads.v17.enums.AssetSourceEnum.AssetSource + (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 2: google.ads.googleads.v17.enums.AssetFieldTypeEnum.AssetFieldType +} +var file_google_ads_googleads_v17_resources_campaign_aggregate_asset_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CampaignAggregateAssetView.asset_source:type_name -> google.ads.googleads.v17.enums.AssetSourceEnum.AssetSource + 2, // 1: google.ads.googleads.v17.resources.CampaignAggregateAssetView.field_type:type_name -> google.ads.googleads.v17.enums.AssetFieldTypeEnum.AssetFieldType + 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 + 2, // [2:2] is the sub-list for extension extendee + 0, // [0:2] is the sub-list for field type_name +} + +func init() { file_google_ads_googleads_v17_resources_campaign_aggregate_asset_view_proto_init() } +func file_google_ads_googleads_v17_resources_campaign_aggregate_asset_view_proto_init() { + if File_google_ads_googleads_v17_resources_campaign_aggregate_asset_view_proto != nil { + return + } + if !protoimpl.UnsafeEnabled { + file_google_ads_googleads_v17_resources_campaign_aggregate_asset_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*CampaignAggregateAssetView); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + } + file_google_ads_googleads_v17_resources_campaign_aggregate_asset_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_v17_resources_campaign_aggregate_asset_view_proto_rawDesc, + NumEnums: 0, + NumMessages: 1, + NumExtensions: 0, + NumServices: 0, + }, + GoTypes: file_google_ads_googleads_v17_resources_campaign_aggregate_asset_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_campaign_aggregate_asset_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_campaign_aggregate_asset_view_proto_msgTypes, + }.Build() + File_google_ads_googleads_v17_resources_campaign_aggregate_asset_view_proto = out.File + file_google_ads_googleads_v17_resources_campaign_aggregate_asset_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_campaign_aggregate_asset_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_campaign_aggregate_asset_view_proto_depIdxs = nil +} diff --git a/resources/campaign_asset.pb.go b/resources/campaign_asset.pb.go index 1e66e3e5..1f584f7a 100644 --- a/resources/campaign_asset.pb.go +++ b/resources/campaign_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/resources/campaign_asset.proto +// source: google/ads/googleads/v17/resources/campaign_asset.proto package resources @@ -54,30 +54,30 @@ type CampaignAsset struct { Asset *string `protobuf:"bytes,7,opt,name=asset,proto3,oneof" json:"asset,omitempty"` // Immutable. Role that the asset takes under the linked campaign. // Required. - FieldType enums.AssetFieldTypeEnum_AssetFieldType `protobuf:"varint,4,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,4,opt,name=field_type,json=fieldType,proto3,enum=google.ads.googleads.v17.enums.AssetFieldTypeEnum_AssetFieldType" json:"field_type,omitempty"` // Output only. Source of the campaign asset link. - Source enums.AssetSourceEnum_AssetSource `protobuf:"varint,8,opt,name=source,proto3,enum=google.ads.googleads.v16.enums.AssetSourceEnum_AssetSource" json:"source,omitempty"` + Source enums.AssetSourceEnum_AssetSource `protobuf:"varint,8,opt,name=source,proto3,enum=google.ads.googleads.v17.enums.AssetSourceEnum_AssetSource" json:"source,omitempty"` // Status of the campaign asset. - Status enums.AssetLinkStatusEnum_AssetLinkStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.AssetLinkStatusEnum_AssetLinkStatus" json:"status,omitempty"` + Status enums.AssetLinkStatusEnum_AssetLinkStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.AssetLinkStatusEnum_AssetLinkStatus" json:"status,omitempty"` // Output only. Provides the PrimaryStatus of this asset link. // Primary status is meant essentially to differentiate between the plain // "status" field, which has advertiser set values of enabled, paused, or // removed. The primary status takes into account other signals (for assets // its mainly policy and quality approvals) to come up with a more // comprehensive status to indicate its serving state. - PrimaryStatus enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus `protobuf:"varint,9,opt,name=primary_status,json=primaryStatus,proto3,enum=google.ads.googleads.v16.enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus" json:"primary_status,omitempty"` + PrimaryStatus enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus `protobuf:"varint,9,opt,name=primary_status,json=primaryStatus,proto3,enum=google.ads.googleads.v17.enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus" json:"primary_status,omitempty"` // Output only. Provides the details of the primary status and its associated // reasons. PrimaryStatusDetails []*common.AssetLinkPrimaryStatusDetails `protobuf:"bytes,10,rep,name=primary_status_details,json=primaryStatusDetails,proto3" json:"primary_status_details,omitempty"` // Output only. Provides a list of reasons for why an asset is not serving or // not serving at full capacity. - PrimaryStatusReasons []enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason `protobuf:"varint,11,rep,packed,name=primary_status_reasons,json=primaryStatusReasons,proto3,enum=google.ads.googleads.v16.enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason" json:"primary_status_reasons,omitempty"` + PrimaryStatusReasons []enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason `protobuf:"varint,11,rep,packed,name=primary_status_reasons,json=primaryStatusReasons,proto3,enum=google.ads.googleads.v17.enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason" json:"primary_status_reasons,omitempty"` } func (x *CampaignAsset) Reset() { *x = CampaignAsset{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_asset_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_asset_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -90,7 +90,7 @@ func (x *CampaignAsset) String() string { func (*CampaignAsset) ProtoMessage() {} func (x *CampaignAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_asset_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_asset_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -103,7 +103,7 @@ func (x *CampaignAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignAsset.ProtoReflect.Descriptor instead. func (*CampaignAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_asset_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_campaign_asset_proto_rawDescGZIP(), []int{0} } func (x *CampaignAsset) GetResourceName() string { @@ -169,36 +169,36 @@ func (x *CampaignAsset) GetPrimaryStatusReasons() []enums.AssetLinkPrimaryStatus return nil } -var File_google_ads_googleads_v16_resources_campaign_asset_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_campaign_asset_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_campaign_asset_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_campaign_asset_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, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x73, 0x73, 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, 0x32, 0x67, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x6e, 0x2f, 0x61, + 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, 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, + 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, 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, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, + 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, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, + 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, 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, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 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, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x6f, + 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, 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, @@ -221,25 +221,25 @@ var file_google_ads_googleads_v16_resources_campaign_asset_proto_rawDesc = []byt 0x48, 0x01, 0x52, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, 0x88, 0x01, 0x01, 0x12, 0x65, 0x0a, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 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, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 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, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x52, 0x09, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x58, 0x0a, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x08, 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, + 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, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x5b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 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, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x7d, 0x0a, 0x0e, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x09, 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, 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, 0x53, @@ -248,14 +248,14 @@ var file_google_ads_googleads_v16_resources_campaign_asset_proto_rawDesc = []byt 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x18, 0x0a, 0x20, 0x03, 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, 0x41, 0x73, 0x73, 0x65, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x14, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x12, 0x98, 0x01, 0x0a, 0x16, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x73, 0x18, 0x0b, 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, + 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, 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, @@ -273,52 +273,52 @@ var file_google_ads_googleads_v16_resources_campaign_asset_proto_rawDesc = []byt 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 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, 0x12, 0x43, 0x61, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x12, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 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, 0x65, 0x73, 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, + 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, 0x36, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 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, + 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_campaign_asset_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_campaign_asset_proto_rawDescData = file_google_ads_googleads_v16_resources_campaign_asset_proto_rawDesc + file_google_ads_googleads_v17_resources_campaign_asset_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_campaign_asset_proto_rawDescData = file_google_ads_googleads_v17_resources_campaign_asset_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_campaign_asset_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_campaign_asset_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_campaign_asset_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_campaign_asset_proto_rawDescData) +func file_google_ads_googleads_v17_resources_campaign_asset_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_campaign_asset_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_campaign_asset_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_campaign_asset_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_campaign_asset_proto_rawDescData + return file_google_ads_googleads_v17_resources_campaign_asset_proto_rawDescData } -var file_google_ads_googleads_v16_resources_campaign_asset_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_campaign_asset_proto_goTypes = []interface{}{ - (*CampaignAsset)(nil), // 0: google.ads.googleads.v16.resources.CampaignAsset - (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 1: google.ads.googleads.v16.enums.AssetFieldTypeEnum.AssetFieldType - (enums.AssetSourceEnum_AssetSource)(0), // 2: google.ads.googleads.v16.enums.AssetSourceEnum.AssetSource - (enums.AssetLinkStatusEnum_AssetLinkStatus)(0), // 3: google.ads.googleads.v16.enums.AssetLinkStatusEnum.AssetLinkStatus - (enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus)(0), // 4: google.ads.googleads.v16.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus - (*common.AssetLinkPrimaryStatusDetails)(nil), // 5: google.ads.googleads.v16.common.AssetLinkPrimaryStatusDetails - (enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason)(0), // 6: google.ads.googleads.v16.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason +var file_google_ads_googleads_v17_resources_campaign_asset_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_campaign_asset_proto_goTypes = []interface{}{ + (*CampaignAsset)(nil), // 0: google.ads.googleads.v17.resources.CampaignAsset + (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 1: google.ads.googleads.v17.enums.AssetFieldTypeEnum.AssetFieldType + (enums.AssetSourceEnum_AssetSource)(0), // 2: google.ads.googleads.v17.enums.AssetSourceEnum.AssetSource + (enums.AssetLinkStatusEnum_AssetLinkStatus)(0), // 3: google.ads.googleads.v17.enums.AssetLinkStatusEnum.AssetLinkStatus + (enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus)(0), // 4: google.ads.googleads.v17.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus + (*common.AssetLinkPrimaryStatusDetails)(nil), // 5: google.ads.googleads.v17.common.AssetLinkPrimaryStatusDetails + (enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason)(0), // 6: google.ads.googleads.v17.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason } -var file_google_ads_googleads_v16_resources_campaign_asset_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CampaignAsset.field_type:type_name -> google.ads.googleads.v16.enums.AssetFieldTypeEnum.AssetFieldType - 2, // 1: google.ads.googleads.v16.resources.CampaignAsset.source:type_name -> google.ads.googleads.v16.enums.AssetSourceEnum.AssetSource - 3, // 2: google.ads.googleads.v16.resources.CampaignAsset.status:type_name -> google.ads.googleads.v16.enums.AssetLinkStatusEnum.AssetLinkStatus - 4, // 3: google.ads.googleads.v16.resources.CampaignAsset.primary_status:type_name -> google.ads.googleads.v16.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus - 5, // 4: google.ads.googleads.v16.resources.CampaignAsset.primary_status_details:type_name -> google.ads.googleads.v16.common.AssetLinkPrimaryStatusDetails - 6, // 5: google.ads.googleads.v16.resources.CampaignAsset.primary_status_reasons:type_name -> google.ads.googleads.v16.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason +var file_google_ads_googleads_v17_resources_campaign_asset_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CampaignAsset.field_type:type_name -> google.ads.googleads.v17.enums.AssetFieldTypeEnum.AssetFieldType + 2, // 1: google.ads.googleads.v17.resources.CampaignAsset.source:type_name -> google.ads.googleads.v17.enums.AssetSourceEnum.AssetSource + 3, // 2: google.ads.googleads.v17.resources.CampaignAsset.status:type_name -> google.ads.googleads.v17.enums.AssetLinkStatusEnum.AssetLinkStatus + 4, // 3: google.ads.googleads.v17.resources.CampaignAsset.primary_status:type_name -> google.ads.googleads.v17.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus + 5, // 4: google.ads.googleads.v17.resources.CampaignAsset.primary_status_details:type_name -> google.ads.googleads.v17.common.AssetLinkPrimaryStatusDetails + 6, // 5: google.ads.googleads.v17.resources.CampaignAsset.primary_status_reasons:type_name -> google.ads.googleads.v17.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason 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 @@ -326,13 +326,13 @@ var file_google_ads_googleads_v16_resources_campaign_asset_proto_depIdxs = []int 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_campaign_asset_proto_init() } -func file_google_ads_googleads_v16_resources_campaign_asset_proto_init() { - if File_google_ads_googleads_v16_resources_campaign_asset_proto != nil { +func init() { file_google_ads_googleads_v17_resources_campaign_asset_proto_init() } +func file_google_ads_googleads_v17_resources_campaign_asset_proto_init() { + if File_google_ads_googleads_v17_resources_campaign_asset_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_campaign_asset_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_asset_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignAsset); i { case 0: return &v.state @@ -345,23 +345,23 @@ func file_google_ads_googleads_v16_resources_campaign_asset_proto_init() { } } } - file_google_ads_googleads_v16_resources_campaign_asset_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_campaign_asset_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_campaign_asset_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_campaign_asset_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_campaign_asset_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_campaign_asset_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_campaign_asset_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_campaign_asset_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_campaign_asset_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_campaign_asset_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_campaign_asset_proto = out.File - file_google_ads_googleads_v16_resources_campaign_asset_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_campaign_asset_proto_goTypes = nil - file_google_ads_googleads_v16_resources_campaign_asset_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_campaign_asset_proto = out.File + file_google_ads_googleads_v17_resources_campaign_asset_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_campaign_asset_proto_goTypes = nil + file_google_ads_googleads_v17_resources_campaign_asset_proto_depIdxs = nil } diff --git a/resources/campaign_asset_set.pb.go b/resources/campaign_asset_set.pb.go index 37365692..95e861cb 100644 --- a/resources/campaign_asset_set.pb.go +++ b/resources/campaign_asset_set.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/campaign_asset_set.proto +// source: google/ads/googleads/v17/resources/campaign_asset_set.proto package resources @@ -53,13 +53,13 @@ type CampaignAssetSet struct { // Immutable. The asset set which is linked to the campaign. AssetSet string `protobuf:"bytes,3,opt,name=asset_set,json=assetSet,proto3" json:"asset_set,omitempty"` // Output only. The status of the campaign asset set asset. Read-only. - Status enums.AssetSetLinkStatusEnum_AssetSetLinkStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.AssetSetLinkStatusEnum_AssetSetLinkStatus" json:"status,omitempty"` + Status enums.AssetSetLinkStatusEnum_AssetSetLinkStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.AssetSetLinkStatusEnum_AssetSetLinkStatus" json:"status,omitempty"` } func (x *CampaignAssetSet) Reset() { *x = CampaignAssetSet{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_asset_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_asset_set_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -72,7 +72,7 @@ func (x *CampaignAssetSet) String() string { func (*CampaignAssetSet) ProtoMessage() {} func (x *CampaignAssetSet) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_asset_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_asset_set_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85,7 +85,7 @@ func (x *CampaignAssetSet) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignAssetSet.ProtoReflect.Descriptor instead. func (*CampaignAssetSet) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_asset_set_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_campaign_asset_set_proto_rawDescGZIP(), []int{0} } func (x *CampaignAssetSet) GetResourceName() string { @@ -116,17 +116,17 @@ func (x *CampaignAssetSet) GetStatus() enums.AssetSetLinkStatusEnum_AssetSetLink return enums.AssetSetLinkStatusEnum_AssetSetLinkStatus(0) } -var File_google_ads_googleads_v16_resources_campaign_asset_set_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_campaign_asset_set_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_campaign_asset_set_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_campaign_asset_set_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, 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, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 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, + 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, + 0x6f, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, @@ -150,7 +150,7 @@ var file_google_ads_googleads_v16_resources_campaign_asset_set_proto_rawDesc = [ 0x6f, 0x6d, 0x2f, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x52, 0x08, 0x61, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x12, 0x66, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 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, + 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, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, @@ -164,43 +164,43 @@ var file_google_ads_googleads_v16_resources_campaign_asset_set_proto_rawDesc = [ 0x67, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x87, 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, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x15, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 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, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, + 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, + 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, 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, + 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_campaign_asset_set_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_campaign_asset_set_proto_rawDescData = file_google_ads_googleads_v16_resources_campaign_asset_set_proto_rawDesc + file_google_ads_googleads_v17_resources_campaign_asset_set_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_campaign_asset_set_proto_rawDescData = file_google_ads_googleads_v17_resources_campaign_asset_set_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_campaign_asset_set_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_campaign_asset_set_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_campaign_asset_set_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_campaign_asset_set_proto_rawDescData) +func file_google_ads_googleads_v17_resources_campaign_asset_set_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_campaign_asset_set_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_campaign_asset_set_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_campaign_asset_set_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_campaign_asset_set_proto_rawDescData + return file_google_ads_googleads_v17_resources_campaign_asset_set_proto_rawDescData } -var file_google_ads_googleads_v16_resources_campaign_asset_set_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_campaign_asset_set_proto_goTypes = []interface{}{ - (*CampaignAssetSet)(nil), // 0: google.ads.googleads.v16.resources.CampaignAssetSet - (enums.AssetSetLinkStatusEnum_AssetSetLinkStatus)(0), // 1: google.ads.googleads.v16.enums.AssetSetLinkStatusEnum.AssetSetLinkStatus +var file_google_ads_googleads_v17_resources_campaign_asset_set_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_campaign_asset_set_proto_goTypes = []interface{}{ + (*CampaignAssetSet)(nil), // 0: google.ads.googleads.v17.resources.CampaignAssetSet + (enums.AssetSetLinkStatusEnum_AssetSetLinkStatus)(0), // 1: google.ads.googleads.v17.enums.AssetSetLinkStatusEnum.AssetSetLinkStatus } -var file_google_ads_googleads_v16_resources_campaign_asset_set_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CampaignAssetSet.status:type_name -> google.ads.googleads.v16.enums.AssetSetLinkStatusEnum.AssetSetLinkStatus +var file_google_ads_googleads_v17_resources_campaign_asset_set_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CampaignAssetSet.status:type_name -> google.ads.googleads.v17.enums.AssetSetLinkStatusEnum.AssetSetLinkStatus 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 @@ -208,13 +208,13 @@ var file_google_ads_googleads_v16_resources_campaign_asset_set_proto_depIdxs = [ 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_campaign_asset_set_proto_init() } -func file_google_ads_googleads_v16_resources_campaign_asset_set_proto_init() { - if File_google_ads_googleads_v16_resources_campaign_asset_set_proto != nil { +func init() { file_google_ads_googleads_v17_resources_campaign_asset_set_proto_init() } +func file_google_ads_googleads_v17_resources_campaign_asset_set_proto_init() { + if File_google_ads_googleads_v17_resources_campaign_asset_set_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_campaign_asset_set_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_asset_set_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignAssetSet); i { case 0: return &v.state @@ -231,18 +231,18 @@ func file_google_ads_googleads_v16_resources_campaign_asset_set_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_campaign_asset_set_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_campaign_asset_set_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_campaign_asset_set_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_campaign_asset_set_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_campaign_asset_set_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_campaign_asset_set_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_campaign_asset_set_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_campaign_asset_set_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_campaign_asset_set_proto = out.File - file_google_ads_googleads_v16_resources_campaign_asset_set_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_campaign_asset_set_proto_goTypes = nil - file_google_ads_googleads_v16_resources_campaign_asset_set_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_campaign_asset_set_proto = out.File + file_google_ads_googleads_v17_resources_campaign_asset_set_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_campaign_asset_set_proto_goTypes = nil + file_google_ads_googleads_v17_resources_campaign_asset_set_proto_depIdxs = nil } diff --git a/resources/campaign_audience_view.pb.go b/resources/campaign_audience_view.pb.go index 89149812..9dc3be0b 100644 --- a/resources/campaign_audience_view.pb.go +++ b/resources/campaign_audience_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/campaign_audience_view.proto +// source: google/ads/googleads/v17/resources/campaign_audience_view.proto package resources @@ -55,7 +55,7 @@ type CampaignAudienceView struct { func (x *CampaignAudienceView) Reset() { *x = CampaignAudienceView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_audience_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_audience_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68,7 +68,7 @@ func (x *CampaignAudienceView) String() string { func (*CampaignAudienceView) ProtoMessage() {} func (x *CampaignAudienceView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_audience_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_audience_view_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 *CampaignAudienceView) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignAudienceView.ProtoReflect.Descriptor instead. func (*CampaignAudienceView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_audience_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_campaign_audience_view_proto_rawDescGZIP(), []int{0} } func (x *CampaignAudienceView) GetResourceName() string { @@ -91,15 +91,15 @@ func (x *CampaignAudienceView) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_resources_campaign_audience_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_campaign_audience_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_campaign_audience_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_campaign_audience_view_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, 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, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 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, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -121,41 +121,41 @@ var file_google_ads_googleads_v16_resources_campaign_audience_view_proto_rawDesc 0x69, 0x67, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x8b, 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, 0x19, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 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, 0x73, 0x6f, 0x75, 0x72, 0x63, 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, 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, 0x26, 0x47, 0x6f, + 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, + 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_campaign_audience_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_campaign_audience_view_proto_rawDescData = file_google_ads_googleads_v16_resources_campaign_audience_view_proto_rawDesc + file_google_ads_googleads_v17_resources_campaign_audience_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_campaign_audience_view_proto_rawDescData = file_google_ads_googleads_v17_resources_campaign_audience_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_campaign_audience_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_campaign_audience_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_campaign_audience_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_campaign_audience_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_campaign_audience_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_campaign_audience_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_campaign_audience_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_campaign_audience_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_campaign_audience_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_campaign_audience_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_campaign_audience_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_campaign_audience_view_proto_goTypes = []interface{}{ - (*CampaignAudienceView)(nil), // 0: google.ads.googleads.v16.resources.CampaignAudienceView +var file_google_ads_googleads_v17_resources_campaign_audience_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_campaign_audience_view_proto_goTypes = []interface{}{ + (*CampaignAudienceView)(nil), // 0: google.ads.googleads.v17.resources.CampaignAudienceView } -var file_google_ads_googleads_v16_resources_campaign_audience_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_campaign_audience_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method output_type 0, // [0:0] is the sub-list for method input_type 0, // [0:0] is the sub-list for extension type_name @@ -163,13 +163,13 @@ var file_google_ads_googleads_v16_resources_campaign_audience_view_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_campaign_audience_view_proto_init() } -func file_google_ads_googleads_v16_resources_campaign_audience_view_proto_init() { - if File_google_ads_googleads_v16_resources_campaign_audience_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_campaign_audience_view_proto_init() } +func file_google_ads_googleads_v17_resources_campaign_audience_view_proto_init() { + if File_google_ads_googleads_v17_resources_campaign_audience_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_campaign_audience_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_audience_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignAudienceView); i { case 0: return &v.state @@ -186,18 +186,18 @@ func file_google_ads_googleads_v16_resources_campaign_audience_view_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_campaign_audience_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_campaign_audience_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_campaign_audience_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_campaign_audience_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_campaign_audience_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_campaign_audience_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_campaign_audience_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_campaign_audience_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_campaign_audience_view_proto = out.File - file_google_ads_googleads_v16_resources_campaign_audience_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_campaign_audience_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_campaign_audience_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_campaign_audience_view_proto = out.File + file_google_ads_googleads_v17_resources_campaign_audience_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_campaign_audience_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_campaign_audience_view_proto_depIdxs = nil } diff --git a/resources/campaign_bid_modifier.pb.go b/resources/campaign_bid_modifier.pb.go index 98844068..e2e4c5f7 100644 --- a/resources/campaign_bid_modifier.pb.go +++ b/resources/campaign_bid_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/resources/campaign_bid_modifier.proto +// source: google/ads/googleads/v17/resources/campaign_bid_modifier.proto package resources @@ -68,7 +68,7 @@ type CampaignBidModifier struct { func (x *CampaignBidModifier) Reset() { *x = CampaignBidModifier{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_bid_modifier_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_bid_modifier_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81,7 +81,7 @@ func (x *CampaignBidModifier) String() string { func (*CampaignBidModifier) ProtoMessage() {} func (x *CampaignBidModifier) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_bid_modifier_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_bid_modifier_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 *CampaignBidModifier) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignBidModifier.ProtoReflect.Descriptor instead. func (*CampaignBidModifier) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_bid_modifier_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_campaign_bid_modifier_proto_rawDescGZIP(), []int{0} } func (x *CampaignBidModifier) GetResourceName() string { @@ -151,17 +151,17 @@ type CampaignBidModifier_InteractionType struct { func (*CampaignBidModifier_InteractionType) isCampaignBidModifier_Criterion() {} -var File_google_ads_googleads_v16_resources_campaign_bid_modifier_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_campaign_bid_modifier_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_campaign_bid_modifier_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_campaign_bid_modifier_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, 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, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 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, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 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, @@ -187,7 +187,7 @@ var file_google_ads_googleads_v16_resources_campaign_bid_modifier_proto_rawDesc 0x72, 0x88, 0x01, 0x01, 0x12, 0x66, 0x0a, 0x10, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x3a, 0x7c, 0xea, 0x41, @@ -204,43 +204,43 @@ var file_google_ads_googleads_v16_resources_campaign_bid_modifier_proto_rawDesc 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x42, 0x8a, 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, 0x18, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 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_campaign_bid_modifier_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_campaign_bid_modifier_proto_rawDescData = file_google_ads_googleads_v16_resources_campaign_bid_modifier_proto_rawDesc + file_google_ads_googleads_v17_resources_campaign_bid_modifier_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_campaign_bid_modifier_proto_rawDescData = file_google_ads_googleads_v17_resources_campaign_bid_modifier_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_campaign_bid_modifier_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_campaign_bid_modifier_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_campaign_bid_modifier_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_campaign_bid_modifier_proto_rawDescData) +func file_google_ads_googleads_v17_resources_campaign_bid_modifier_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_campaign_bid_modifier_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_campaign_bid_modifier_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_campaign_bid_modifier_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_campaign_bid_modifier_proto_rawDescData + return file_google_ads_googleads_v17_resources_campaign_bid_modifier_proto_rawDescData } -var file_google_ads_googleads_v16_resources_campaign_bid_modifier_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_campaign_bid_modifier_proto_goTypes = []interface{}{ - (*CampaignBidModifier)(nil), // 0: google.ads.googleads.v16.resources.CampaignBidModifier - (*common.InteractionTypeInfo)(nil), // 1: google.ads.googleads.v16.common.InteractionTypeInfo +var file_google_ads_googleads_v17_resources_campaign_bid_modifier_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_campaign_bid_modifier_proto_goTypes = []interface{}{ + (*CampaignBidModifier)(nil), // 0: google.ads.googleads.v17.resources.CampaignBidModifier + (*common.InteractionTypeInfo)(nil), // 1: google.ads.googleads.v17.common.InteractionTypeInfo } -var file_google_ads_googleads_v16_resources_campaign_bid_modifier_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CampaignBidModifier.interaction_type:type_name -> google.ads.googleads.v16.common.InteractionTypeInfo +var file_google_ads_googleads_v17_resources_campaign_bid_modifier_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CampaignBidModifier.interaction_type:type_name -> google.ads.googleads.v17.common.InteractionTypeInfo 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 @@ -248,13 +248,13 @@ var file_google_ads_googleads_v16_resources_campaign_bid_modifier_proto_depIdxs 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_campaign_bid_modifier_proto_init() } -func file_google_ads_googleads_v16_resources_campaign_bid_modifier_proto_init() { - if File_google_ads_googleads_v16_resources_campaign_bid_modifier_proto != nil { +func init() { file_google_ads_googleads_v17_resources_campaign_bid_modifier_proto_init() } +func file_google_ads_googleads_v17_resources_campaign_bid_modifier_proto_init() { + if File_google_ads_googleads_v17_resources_campaign_bid_modifier_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_campaign_bid_modifier_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_bid_modifier_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignBidModifier); i { case 0: return &v.state @@ -267,25 +267,25 @@ func file_google_ads_googleads_v16_resources_campaign_bid_modifier_proto_init() } } } - file_google_ads_googleads_v16_resources_campaign_bid_modifier_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_campaign_bid_modifier_proto_msgTypes[0].OneofWrappers = []interface{}{ (*CampaignBidModifier_InteractionType)(nil), } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_campaign_bid_modifier_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_campaign_bid_modifier_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_campaign_bid_modifier_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_campaign_bid_modifier_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_campaign_bid_modifier_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_campaign_bid_modifier_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_campaign_bid_modifier_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_campaign_bid_modifier_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_campaign_bid_modifier_proto = out.File - file_google_ads_googleads_v16_resources_campaign_bid_modifier_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_campaign_bid_modifier_proto_goTypes = nil - file_google_ads_googleads_v16_resources_campaign_bid_modifier_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_campaign_bid_modifier_proto = out.File + file_google_ads_googleads_v17_resources_campaign_bid_modifier_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_campaign_bid_modifier_proto_goTypes = nil + file_google_ads_googleads_v17_resources_campaign_bid_modifier_proto_depIdxs = nil } diff --git a/resources/campaign_budget.pb.go b/resources/campaign_budget.pb.go index 4a3b5635..541140f2 100644 --- a/resources/campaign_budget.pb.go +++ b/resources/campaign_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/campaign_budget.proto +// source: google/ads/googleads/v17/resources/campaign_budget.proto package resources @@ -73,12 +73,12 @@ type CampaignBudget struct { // currency unit. TotalAmountMicros *int64 `protobuf:"varint,22,opt,name=total_amount_micros,json=totalAmountMicros,proto3,oneof" json:"total_amount_micros,omitempty"` // Output only. The status of this campaign budget. This field is read-only. - Status enums.BudgetStatusEnum_BudgetStatus `protobuf:"varint,6,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.BudgetStatusEnum_BudgetStatus" json:"status,omitempty"` + Status enums.BudgetStatusEnum_BudgetStatus `protobuf:"varint,6,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.BudgetStatusEnum_BudgetStatus" json:"status,omitempty"` // The delivery method that determines the rate at which the campaign budget // is spent. // // Defaults to STANDARD if unspecified in a create operation. - DeliveryMethod enums.BudgetDeliveryMethodEnum_BudgetDeliveryMethod `protobuf:"varint,7,opt,name=delivery_method,json=deliveryMethod,proto3,enum=google.ads.googleads.v16.enums.BudgetDeliveryMethodEnum_BudgetDeliveryMethod" json:"delivery_method,omitempty"` + DeliveryMethod enums.BudgetDeliveryMethodEnum_BudgetDeliveryMethod `protobuf:"varint,7,opt,name=delivery_method,json=deliveryMethod,proto3,enum=google.ads.googleads.v17.enums.BudgetDeliveryMethodEnum_BudgetDeliveryMethod" json:"delivery_method,omitempty"` // Specifies whether the budget is explicitly shared. Defaults to true if // unspecified in a create operation. // @@ -112,7 +112,7 @@ type CampaignBudget struct { RecommendedBudgetAmountMicros *int64 `protobuf:"varint,26,opt,name=recommended_budget_amount_micros,json=recommendedBudgetAmountMicros,proto3,oneof" json:"recommended_budget_amount_micros,omitempty"` // Immutable. Period over which to spend the budget. Defaults to DAILY if not // specified. - Period enums.BudgetPeriodEnum_BudgetPeriod `protobuf:"varint,13,opt,name=period,proto3,enum=google.ads.googleads.v16.enums.BudgetPeriodEnum_BudgetPeriod" json:"period,omitempty"` + Period enums.BudgetPeriodEnum_BudgetPeriod `protobuf:"varint,13,opt,name=period,proto3,enum=google.ads.googleads.v17.enums.BudgetPeriodEnum_BudgetPeriod" json:"period,omitempty"` // Output only. The estimated change in weekly clicks if the recommended // budget is applied. // @@ -135,7 +135,7 @@ type CampaignBudget struct { // This field is read-only. RecommendedBudgetEstimatedChangeWeeklyViews *int64 `protobuf:"varint,30,opt,name=recommended_budget_estimated_change_weekly_views,json=recommendedBudgetEstimatedChangeWeeklyViews,proto3,oneof" json:"recommended_budget_estimated_change_weekly_views,omitempty"` // Immutable. The type of the campaign budget. - Type enums.BudgetTypeEnum_BudgetType `protobuf:"varint,18,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.BudgetTypeEnum_BudgetType" json:"type,omitempty"` + Type enums.BudgetTypeEnum_BudgetType `protobuf:"varint,18,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.BudgetTypeEnum_BudgetType" json:"type,omitempty"` // ID of the portfolio bidding strategy that this shared campaign budget // is aligned with. When a bidding strategy and a campaign budget are aligned, // they are attached to the same set of campaigns. After a campaign budget is @@ -147,7 +147,7 @@ type CampaignBudget struct { func (x *CampaignBudget) Reset() { *x = CampaignBudget{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_budget_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_budget_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160,7 +160,7 @@ func (x *CampaignBudget) String() string { func (*CampaignBudget) ProtoMessage() {} func (x *CampaignBudget) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_budget_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_budget_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -173,7 +173,7 @@ func (x *CampaignBudget) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignBudget.ProtoReflect.Descriptor instead. func (*CampaignBudget) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_budget_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_campaign_budget_proto_rawDescGZIP(), []int{0} } func (x *CampaignBudget) GetResourceName() string { @@ -302,27 +302,27 @@ func (x *CampaignBudget) GetAlignedBiddingStrategyId() int64 { return 0 } -var File_google_ads_googleads_v16_resources_campaign_budget_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_campaign_budget_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_campaign_budget_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_campaign_budget_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, 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, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 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, 0x3b, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x62, + 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, 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, 0x62, 0x75, 0x64, 0x67, + 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, 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, + 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, 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, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 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, @@ -346,13 +346,13 @@ var file_google_ads_googleads_v16_resources_campaign_budget_proto_rawDesc = []by 0x75, 0x6e, 0x74, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x5a, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x06, 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, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x42, 0x75, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x76, 0x0a, 0x0f, 0x64, 0x65, 0x6c, 0x69, 0x76, 0x65, 0x72, 0x79, 0x5f, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x07, 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, + 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, 0x44, 0x65, 0x6c, 0x69, 0x76, 0x65, 0x72, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x44, 0x65, 0x6c, 0x69, 0x76, 0x65, 0x72, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, @@ -375,7 +375,7 @@ var file_google_ads_googleads_v16_resources_campaign_budget_proto_rawDesc = []by 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x5a, 0x0a, 0x06, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x18, 0x0d, 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, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, + 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x52, 0x06, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x12, 0x71, 0x0a, 0x31, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, @@ -410,7 +410,7 @@ var file_google_ads_googleads_v16_resources_campaign_budget_proto_rawDesc = []by 0x68, 0x61, 0x6e, 0x67, 0x65, 0x57, 0x65, 0x65, 0x6b, 0x6c, 0x79, 0x56, 0x69, 0x65, 0x77, 0x73, 0x88, 0x01, 0x01, 0x12, 0x52, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x12, 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, + 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, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x3d, 0x0a, 0x1b, 0x61, 0x6c, 0x69, 0x67, 0x6e, @@ -450,49 +450,49 @@ var file_google_ads_googleads_v16_resources_campaign_budget_proto_rawDesc = []by 0x61, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x77, 0x65, 0x65, 0x6b, 0x6c, 0x79, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x73, 0x42, 0x85, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x13, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 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, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, + 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, 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, + 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, 0x63, 0x65, 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_campaign_budget_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_campaign_budget_proto_rawDescData = file_google_ads_googleads_v16_resources_campaign_budget_proto_rawDesc + file_google_ads_googleads_v17_resources_campaign_budget_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_campaign_budget_proto_rawDescData = file_google_ads_googleads_v17_resources_campaign_budget_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_campaign_budget_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_campaign_budget_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_campaign_budget_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_campaign_budget_proto_rawDescData) +func file_google_ads_googleads_v17_resources_campaign_budget_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_campaign_budget_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_campaign_budget_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_campaign_budget_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_campaign_budget_proto_rawDescData + return file_google_ads_googleads_v17_resources_campaign_budget_proto_rawDescData } -var file_google_ads_googleads_v16_resources_campaign_budget_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_campaign_budget_proto_goTypes = []interface{}{ - (*CampaignBudget)(nil), // 0: google.ads.googleads.v16.resources.CampaignBudget - (enums.BudgetStatusEnum_BudgetStatus)(0), // 1: google.ads.googleads.v16.enums.BudgetStatusEnum.BudgetStatus - (enums.BudgetDeliveryMethodEnum_BudgetDeliveryMethod)(0), // 2: google.ads.googleads.v16.enums.BudgetDeliveryMethodEnum.BudgetDeliveryMethod - (enums.BudgetPeriodEnum_BudgetPeriod)(0), // 3: google.ads.googleads.v16.enums.BudgetPeriodEnum.BudgetPeriod - (enums.BudgetTypeEnum_BudgetType)(0), // 4: google.ads.googleads.v16.enums.BudgetTypeEnum.BudgetType +var file_google_ads_googleads_v17_resources_campaign_budget_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_campaign_budget_proto_goTypes = []interface{}{ + (*CampaignBudget)(nil), // 0: google.ads.googleads.v17.resources.CampaignBudget + (enums.BudgetStatusEnum_BudgetStatus)(0), // 1: google.ads.googleads.v17.enums.BudgetStatusEnum.BudgetStatus + (enums.BudgetDeliveryMethodEnum_BudgetDeliveryMethod)(0), // 2: google.ads.googleads.v17.enums.BudgetDeliveryMethodEnum.BudgetDeliveryMethod + (enums.BudgetPeriodEnum_BudgetPeriod)(0), // 3: google.ads.googleads.v17.enums.BudgetPeriodEnum.BudgetPeriod + (enums.BudgetTypeEnum_BudgetType)(0), // 4: google.ads.googleads.v17.enums.BudgetTypeEnum.BudgetType } -var file_google_ads_googleads_v16_resources_campaign_budget_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CampaignBudget.status:type_name -> google.ads.googleads.v16.enums.BudgetStatusEnum.BudgetStatus - 2, // 1: google.ads.googleads.v16.resources.CampaignBudget.delivery_method:type_name -> google.ads.googleads.v16.enums.BudgetDeliveryMethodEnum.BudgetDeliveryMethod - 3, // 2: google.ads.googleads.v16.resources.CampaignBudget.period:type_name -> google.ads.googleads.v16.enums.BudgetPeriodEnum.BudgetPeriod - 4, // 3: google.ads.googleads.v16.resources.CampaignBudget.type:type_name -> google.ads.googleads.v16.enums.BudgetTypeEnum.BudgetType +var file_google_ads_googleads_v17_resources_campaign_budget_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CampaignBudget.status:type_name -> google.ads.googleads.v17.enums.BudgetStatusEnum.BudgetStatus + 2, // 1: google.ads.googleads.v17.resources.CampaignBudget.delivery_method:type_name -> google.ads.googleads.v17.enums.BudgetDeliveryMethodEnum.BudgetDeliveryMethod + 3, // 2: google.ads.googleads.v17.resources.CampaignBudget.period:type_name -> google.ads.googleads.v17.enums.BudgetPeriodEnum.BudgetPeriod + 4, // 3: google.ads.googleads.v17.resources.CampaignBudget.type:type_name -> google.ads.googleads.v17.enums.BudgetTypeEnum.BudgetType 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 @@ -500,13 +500,13 @@ var file_google_ads_googleads_v16_resources_campaign_budget_proto_depIdxs = []in 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_campaign_budget_proto_init() } -func file_google_ads_googleads_v16_resources_campaign_budget_proto_init() { - if File_google_ads_googleads_v16_resources_campaign_budget_proto != nil { +func init() { file_google_ads_googleads_v17_resources_campaign_budget_proto_init() } +func file_google_ads_googleads_v17_resources_campaign_budget_proto_init() { + if File_google_ads_googleads_v17_resources_campaign_budget_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_campaign_budget_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_budget_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignBudget); i { case 0: return &v.state @@ -519,23 +519,23 @@ func file_google_ads_googleads_v16_resources_campaign_budget_proto_init() { } } } - file_google_ads_googleads_v16_resources_campaign_budget_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_campaign_budget_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_campaign_budget_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_campaign_budget_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_campaign_budget_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_campaign_budget_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_campaign_budget_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_campaign_budget_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_campaign_budget_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_campaign_budget_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_campaign_budget_proto = out.File - file_google_ads_googleads_v16_resources_campaign_budget_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_campaign_budget_proto_goTypes = nil - file_google_ads_googleads_v16_resources_campaign_budget_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_campaign_budget_proto = out.File + file_google_ads_googleads_v17_resources_campaign_budget_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_campaign_budget_proto_goTypes = nil + file_google_ads_googleads_v17_resources_campaign_budget_proto_depIdxs = nil } diff --git a/resources/campaign_conversion_goal.pb.go b/resources/campaign_conversion_goal.pb.go index e4f35276..ee6b8d79 100644 --- a/resources/campaign_conversion_goal.pb.go +++ b/resources/campaign_conversion_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/resources/campaign_conversion_goal.proto +// source: google/ads/googleads/v17/resources/campaign_conversion_goal.proto package resources @@ -52,9 +52,9 @@ type CampaignConversionGoal struct { // associated. Campaign string `protobuf:"bytes,2,opt,name=campaign,proto3" json:"campaign,omitempty"` // The conversion category of this campaign conversion goal. - Category enums.ConversionActionCategoryEnum_ConversionActionCategory `protobuf:"varint,3,opt,name=category,proto3,enum=google.ads.googleads.v16.enums.ConversionActionCategoryEnum_ConversionActionCategory" json:"category,omitempty"` + Category enums.ConversionActionCategoryEnum_ConversionActionCategory `protobuf:"varint,3,opt,name=category,proto3,enum=google.ads.googleads.v17.enums.ConversionActionCategoryEnum_ConversionActionCategory" json:"category,omitempty"` // The conversion origin of this campaign conversion goal. - Origin enums.ConversionOriginEnum_ConversionOrigin `protobuf:"varint,4,opt,name=origin,proto3,enum=google.ads.googleads.v16.enums.ConversionOriginEnum_ConversionOrigin" json:"origin,omitempty"` + Origin enums.ConversionOriginEnum_ConversionOrigin `protobuf:"varint,4,opt,name=origin,proto3,enum=google.ads.googleads.v17.enums.ConversionOriginEnum_ConversionOrigin" json:"origin,omitempty"` // The biddability of the campaign conversion goal. Biddable bool `protobuf:"varint,5,opt,name=biddable,proto3" json:"biddable,omitempty"` } @@ -62,7 +62,7 @@ type CampaignConversionGoal struct { func (x *CampaignConversionGoal) Reset() { *x = CampaignConversionGoal{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_conversion_goal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_conversion_goal_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75,7 +75,7 @@ func (x *CampaignConversionGoal) String() string { func (*CampaignConversionGoal) ProtoMessage() {} func (x *CampaignConversionGoal) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_conversion_goal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_conversion_goal_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88,7 +88,7 @@ func (x *CampaignConversionGoal) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignConversionGoal.ProtoReflect.Descriptor instead. func (*CampaignConversionGoal) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_conversion_goal_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_campaign_conversion_goal_proto_rawDescGZIP(), []int{0} } func (x *CampaignConversionGoal) GetResourceName() string { @@ -126,22 +126,22 @@ func (x *CampaignConversionGoal) GetBiddable() bool { return false } -var File_google_ads_googleads_v16_resources_campaign_conversion_goal_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_campaign_conversion_goal_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_campaign_conversion_goal_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_campaign_conversion_goal_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, 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, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x65, 0x72, 0x73, 0x69, + 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, 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, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, + 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, 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, @@ -161,14 +161,14 @@ var file_google_ads_googleads_v16_resources_campaign_conversion_goal_proto_rawDe 0x67, 0x6e, 0x52, 0x08, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x12, 0x71, 0x0a, 0x08, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x18, 0x03, 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, + 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, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x52, 0x08, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x12, 0x5d, 0x0a, 0x06, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x18, 0x04, 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, + 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, 0x69, 0x67, 0x69, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x52, 0x06, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x12, 0x1a, @@ -184,45 +184,45 @@ var file_google_ads_googleads_v16_resources_campaign_conversion_goal_proto_rawDe 0x7d, 0x7e, 0x7b, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x7d, 0x7e, 0x7b, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x7d, 0x42, 0x8d, 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, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x1b, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 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, 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, + 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, 0x26, 0x47, + 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, + 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_campaign_conversion_goal_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_campaign_conversion_goal_proto_rawDescData = file_google_ads_googleads_v16_resources_campaign_conversion_goal_proto_rawDesc + file_google_ads_googleads_v17_resources_campaign_conversion_goal_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_campaign_conversion_goal_proto_rawDescData = file_google_ads_googleads_v17_resources_campaign_conversion_goal_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_campaign_conversion_goal_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_campaign_conversion_goal_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_campaign_conversion_goal_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_campaign_conversion_goal_proto_rawDescData) +func file_google_ads_googleads_v17_resources_campaign_conversion_goal_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_campaign_conversion_goal_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_campaign_conversion_goal_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_campaign_conversion_goal_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_campaign_conversion_goal_proto_rawDescData + return file_google_ads_googleads_v17_resources_campaign_conversion_goal_proto_rawDescData } -var file_google_ads_googleads_v16_resources_campaign_conversion_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_campaign_conversion_goal_proto_goTypes = []interface{}{ - (*CampaignConversionGoal)(nil), // 0: google.ads.googleads.v16.resources.CampaignConversionGoal - (enums.ConversionActionCategoryEnum_ConversionActionCategory)(0), // 1: google.ads.googleads.v16.enums.ConversionActionCategoryEnum.ConversionActionCategory - (enums.ConversionOriginEnum_ConversionOrigin)(0), // 2: google.ads.googleads.v16.enums.ConversionOriginEnum.ConversionOrigin +var file_google_ads_googleads_v17_resources_campaign_conversion_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_campaign_conversion_goal_proto_goTypes = []interface{}{ + (*CampaignConversionGoal)(nil), // 0: google.ads.googleads.v17.resources.CampaignConversionGoal + (enums.ConversionActionCategoryEnum_ConversionActionCategory)(0), // 1: google.ads.googleads.v17.enums.ConversionActionCategoryEnum.ConversionActionCategory + (enums.ConversionOriginEnum_ConversionOrigin)(0), // 2: google.ads.googleads.v17.enums.ConversionOriginEnum.ConversionOrigin } -var file_google_ads_googleads_v16_resources_campaign_conversion_goal_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CampaignConversionGoal.category:type_name -> google.ads.googleads.v16.enums.ConversionActionCategoryEnum.ConversionActionCategory - 2, // 1: google.ads.googleads.v16.resources.CampaignConversionGoal.origin:type_name -> google.ads.googleads.v16.enums.ConversionOriginEnum.ConversionOrigin +var file_google_ads_googleads_v17_resources_campaign_conversion_goal_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CampaignConversionGoal.category:type_name -> google.ads.googleads.v17.enums.ConversionActionCategoryEnum.ConversionActionCategory + 2, // 1: google.ads.googleads.v17.resources.CampaignConversionGoal.origin:type_name -> google.ads.googleads.v17.enums.ConversionOriginEnum.ConversionOrigin 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 @@ -230,13 +230,13 @@ var file_google_ads_googleads_v16_resources_campaign_conversion_goal_proto_depId 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_campaign_conversion_goal_proto_init() } -func file_google_ads_googleads_v16_resources_campaign_conversion_goal_proto_init() { - if File_google_ads_googleads_v16_resources_campaign_conversion_goal_proto != nil { +func init() { file_google_ads_googleads_v17_resources_campaign_conversion_goal_proto_init() } +func file_google_ads_googleads_v17_resources_campaign_conversion_goal_proto_init() { + if File_google_ads_googleads_v17_resources_campaign_conversion_goal_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_campaign_conversion_goal_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_conversion_goal_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignConversionGoal); i { case 0: return &v.state @@ -253,18 +253,18 @@ func file_google_ads_googleads_v16_resources_campaign_conversion_goal_proto_init out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_campaign_conversion_goal_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_campaign_conversion_goal_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_campaign_conversion_goal_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_campaign_conversion_goal_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_campaign_conversion_goal_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_campaign_conversion_goal_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_campaign_conversion_goal_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_campaign_conversion_goal_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_campaign_conversion_goal_proto = out.File - file_google_ads_googleads_v16_resources_campaign_conversion_goal_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_campaign_conversion_goal_proto_goTypes = nil - file_google_ads_googleads_v16_resources_campaign_conversion_goal_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_campaign_conversion_goal_proto = out.File + file_google_ads_googleads_v17_resources_campaign_conversion_goal_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_campaign_conversion_goal_proto_goTypes = nil + file_google_ads_googleads_v17_resources_campaign_conversion_goal_proto_depIdxs = nil } diff --git a/resources/campaign_criterion.pb.go b/resources/campaign_criterion.pb.go index 4d4dd602..63bbe17e 100644 --- a/resources/campaign_criterion.pb.go +++ b/resources/campaign_criterion.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/campaign_criterion.proto +// source: google/ads/googleads/v17/resources/campaign_criterion.proto package resources @@ -65,9 +65,9 @@ type CampaignCriterion struct { // Immutable. Whether to target (`false`) or exclude (`true`) the criterion. Negative *bool `protobuf:"varint,40,opt,name=negative,proto3,oneof" json:"negative,omitempty"` // Output only. The type of the criterion. - Type enums.CriterionTypeEnum_CriterionType `protobuf:"varint,6,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.CriterionTypeEnum_CriterionType" json:"type,omitempty"` + Type enums.CriterionTypeEnum_CriterionType `protobuf:"varint,6,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.CriterionTypeEnum_CriterionType" json:"type,omitempty"` // The status of the criterion. - Status enums.CampaignCriterionStatusEnum_CampaignCriterionStatus `protobuf:"varint,35,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.CampaignCriterionStatusEnum_CampaignCriterionStatus" json:"status,omitempty"` + Status enums.CampaignCriterionStatusEnum_CampaignCriterionStatus `protobuf:"varint,35,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.CampaignCriterionStatusEnum_CampaignCriterionStatus" json:"status,omitempty"` // The campaign criterion. // // Exactly one must be set. @@ -112,7 +112,7 @@ type CampaignCriterion struct { func (x *CampaignCriterion) Reset() { *x = CampaignCriterion{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_criterion_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_criterion_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -125,7 +125,7 @@ func (x *CampaignCriterion) String() string { func (*CampaignCriterion) ProtoMessage() {} func (x *CampaignCriterion) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_criterion_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_criterion_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138,7 +138,7 @@ func (x *CampaignCriterion) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignCriterion.ProtoReflect.Descriptor instead. func (*CampaignCriterion) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_criterion_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_campaign_criterion_proto_rawDescGZIP(), []int{0} } func (x *CampaignCriterion) GetResourceName() string { @@ -656,24 +656,24 @@ func (*CampaignCriterion_LocalServiceId) isCampaignCriterion_Criterion() {} func (*CampaignCriterion_BrandList) isCampaignCriterion_Criterion() {} -var File_google_ads_googleads_v16_resources_campaign_criterion_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_campaign_criterion_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_campaign_criterion_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_campaign_criterion_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, 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, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 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, 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, 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, + 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, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 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, + 0x6f, 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, 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, @@ -703,147 +703,147 @@ var file_google_ads_googleads_v16_resources_campaign_criterion_proto_rawDesc = [ 0x05, 0x48, 0x04, 0x52, 0x08, 0x6e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x88, 0x01, 0x01, 0x12, 0x58, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x06, 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, + 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, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x6b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x23, 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, 0x61, 0x6d, 0x70, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x4d, 0x0a, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 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, 0x4b, 0x65, 0x79, 0x77, 0x6f, + 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x53, 0x0a, 0x09, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x09, 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, 0x50, 0x6c, 0x61, 0x63, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x09, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x6d, 0x0a, 0x13, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x18, 0x0a, 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, 0x4d, 0x6f, 0x62, 0x69, 0x6c, + 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x11, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x12, 0x6c, 0x0a, 0x12, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0b, 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, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x41, + 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x11, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x50, 0x0a, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0c, 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, 0x4c, 0x6f, 0x63, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4a, 0x0a, 0x06, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x18, 0x0d, 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, 0x44, 0x65, 0x76, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x06, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x12, 0x57, 0x0a, 0x0b, 0x61, 0x64, 0x5f, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x18, 0x0f, 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, 0x64, + 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, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0a, 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x12, 0x51, 0x0a, 0x09, 0x61, 0x67, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x18, 0x10, 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, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x08, 0x61, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x4a, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x11, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x5a, 0x0a, 0x0c, 0x69, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x18, 0x12, 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, 0x49, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0b, 0x69, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x63, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x13, 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, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 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, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0e, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x51, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 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, + 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, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x5d, 0x0a, 0x0d, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x18, 0x14, 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, 0x59, 0x6f, 0x75, 0x54, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0c, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x12, 0x63, 0x0a, 0x0f, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x18, 0x15, 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, 0x59, 0x6f, 0x75, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0e, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x12, 0x53, 0x0a, 0x09, 0x70, 0x72, 0x6f, 0x78, 0x69, 0x6d, 0x69, 0x74, 0x79, 0x18, 0x17, 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, 0x50, 0x72, 0x6f, 0x78, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x78, 0x69, 0x6d, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x78, 0x69, 0x6d, 0x69, 0x74, 0x79, 0x12, 0x47, 0x0a, 0x05, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x18, 0x18, 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, 0x54, 0x6f, 0x70, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x05, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x5d, 0x0a, 0x0d, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x63, 0x6f, 0x70, 0x65, 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, 0x6e, 0x2e, 0x4c, 0x69, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0c, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x12, 0x50, 0x0a, 0x08, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x18, 0x1a, 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, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x08, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x12, 0x4e, 0x0a, 0x08, 0x69, 0x70, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x18, 0x1b, 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, 0x70, 0x42, 0x6c, 0x6f, 0x63, + 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x70, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x07, 0x69, 0x70, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x12, 0x5d, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x1c, 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, 0x43, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0c, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x4d, 0x0a, 0x07, 0x63, 0x61, 0x72, 0x72, 0x69, 0x65, 0x72, 0x18, 0x1d, 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, 0x43, 0x61, 0x72, 0x72, 0x69, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x07, 0x63, 0x61, 0x72, 0x72, 0x69, 0x65, 0x72, 0x12, 0x5d, 0x0a, 0x0d, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x18, 0x1e, 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, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0c, 0x75, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x12, 0x4d, 0x0a, 0x07, 0x77, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x18, 0x1f, 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, 0x57, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x07, 0x77, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x12, 0x7c, 0x0a, 0x18, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x20, 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, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x16, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, @@ -851,50 +851,50 @@ var file_google_ads_googleads_v16_resources_campaign_criterion_proto_rawDesc = [ 0x5d, 0x0a, 0x0d, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x18, 0x21, 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, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x44, + 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0c, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x12, 0x60, 0x0a, 0x0e, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x22, 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, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, + 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0d, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x63, 0x0a, 0x0f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x66, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x79, 0x18, 0x24, 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, 0x43, 0x75, 0x73, 0x74, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x66, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x66, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x79, 0x12, 0x63, 0x0a, 0x0f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x29, 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, + 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, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x69, 0x0a, 0x11, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x2a, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x10, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x5d, 0x0a, 0x0d, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x74, 0x68, 0x65, 0x6d, 0x65, 0x18, 0x2d, 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, 0x4b, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x54, 0x68, 0x65, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0c, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x54, 0x68, 0x65, 0x6d, 0x65, 0x12, 0x64, 0x0a, 0x10, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x2e, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x49, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0e, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x49, 0x64, 0x12, 0x54, 0x0a, 0x0a, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x2f, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x09, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x3a, 0x76, 0xea, 0x41, 0x73, 0x0a, 0x2a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, @@ -911,109 +911,109 @@ var file_google_ads_googleads_v16_resources_campaign_criterion_proto_rawDesc = [ 0x66, 0x69, 0x65, 0x72, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x6e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x42, 0x88, 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, 0x16, 0x43, 0x61, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x16, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 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, + 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, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, + 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, + 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, 0x70, 0x72, + 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_campaign_criterion_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_campaign_criterion_proto_rawDescData = file_google_ads_googleads_v16_resources_campaign_criterion_proto_rawDesc + file_google_ads_googleads_v17_resources_campaign_criterion_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_campaign_criterion_proto_rawDescData = file_google_ads_googleads_v17_resources_campaign_criterion_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_campaign_criterion_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_campaign_criterion_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_campaign_criterion_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_campaign_criterion_proto_rawDescData) +func file_google_ads_googleads_v17_resources_campaign_criterion_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_campaign_criterion_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_campaign_criterion_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_campaign_criterion_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_campaign_criterion_proto_rawDescData -} - -var file_google_ads_googleads_v16_resources_campaign_criterion_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_campaign_criterion_proto_goTypes = []interface{}{ - (*CampaignCriterion)(nil), // 0: google.ads.googleads.v16.resources.CampaignCriterion - (enums.CriterionTypeEnum_CriterionType)(0), // 1: google.ads.googleads.v16.enums.CriterionTypeEnum.CriterionType - (enums.CampaignCriterionStatusEnum_CampaignCriterionStatus)(0), // 2: google.ads.googleads.v16.enums.CampaignCriterionStatusEnum.CampaignCriterionStatus - (*common.KeywordInfo)(nil), // 3: google.ads.googleads.v16.common.KeywordInfo - (*common.PlacementInfo)(nil), // 4: google.ads.googleads.v16.common.PlacementInfo - (*common.MobileAppCategoryInfo)(nil), // 5: google.ads.googleads.v16.common.MobileAppCategoryInfo - (*common.MobileApplicationInfo)(nil), // 6: google.ads.googleads.v16.common.MobileApplicationInfo - (*common.LocationInfo)(nil), // 7: google.ads.googleads.v16.common.LocationInfo - (*common.DeviceInfo)(nil), // 8: google.ads.googleads.v16.common.DeviceInfo - (*common.AdScheduleInfo)(nil), // 9: google.ads.googleads.v16.common.AdScheduleInfo - (*common.AgeRangeInfo)(nil), // 10: google.ads.googleads.v16.common.AgeRangeInfo - (*common.GenderInfo)(nil), // 11: google.ads.googleads.v16.common.GenderInfo - (*common.IncomeRangeInfo)(nil), // 12: google.ads.googleads.v16.common.IncomeRangeInfo - (*common.ParentalStatusInfo)(nil), // 13: google.ads.googleads.v16.common.ParentalStatusInfo - (*common.UserListInfo)(nil), // 14: google.ads.googleads.v16.common.UserListInfo - (*common.YouTubeVideoInfo)(nil), // 15: google.ads.googleads.v16.common.YouTubeVideoInfo - (*common.YouTubeChannelInfo)(nil), // 16: google.ads.googleads.v16.common.YouTubeChannelInfo - (*common.ProximityInfo)(nil), // 17: google.ads.googleads.v16.common.ProximityInfo - (*common.TopicInfo)(nil), // 18: google.ads.googleads.v16.common.TopicInfo - (*common.ListingScopeInfo)(nil), // 19: google.ads.googleads.v16.common.ListingScopeInfo - (*common.LanguageInfo)(nil), // 20: google.ads.googleads.v16.common.LanguageInfo - (*common.IpBlockInfo)(nil), // 21: google.ads.googleads.v16.common.IpBlockInfo - (*common.ContentLabelInfo)(nil), // 22: google.ads.googleads.v16.common.ContentLabelInfo - (*common.CarrierInfo)(nil), // 23: google.ads.googleads.v16.common.CarrierInfo - (*common.UserInterestInfo)(nil), // 24: google.ads.googleads.v16.common.UserInterestInfo - (*common.WebpageInfo)(nil), // 25: google.ads.googleads.v16.common.WebpageInfo - (*common.OperatingSystemVersionInfo)(nil), // 26: google.ads.googleads.v16.common.OperatingSystemVersionInfo - (*common.MobileDeviceInfo)(nil), // 27: google.ads.googleads.v16.common.MobileDeviceInfo - (*common.LocationGroupInfo)(nil), // 28: google.ads.googleads.v16.common.LocationGroupInfo - (*common.CustomAffinityInfo)(nil), // 29: google.ads.googleads.v16.common.CustomAffinityInfo - (*common.CustomAudienceInfo)(nil), // 30: google.ads.googleads.v16.common.CustomAudienceInfo - (*common.CombinedAudienceInfo)(nil), // 31: google.ads.googleads.v16.common.CombinedAudienceInfo - (*common.KeywordThemeInfo)(nil), // 32: google.ads.googleads.v16.common.KeywordThemeInfo - (*common.LocalServiceIdInfo)(nil), // 33: google.ads.googleads.v16.common.LocalServiceIdInfo - (*common.BrandListInfo)(nil), // 34: google.ads.googleads.v16.common.BrandListInfo -} -var file_google_ads_googleads_v16_resources_campaign_criterion_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CampaignCriterion.type:type_name -> google.ads.googleads.v16.enums.CriterionTypeEnum.CriterionType - 2, // 1: google.ads.googleads.v16.resources.CampaignCriterion.status:type_name -> google.ads.googleads.v16.enums.CampaignCriterionStatusEnum.CampaignCriterionStatus - 3, // 2: google.ads.googleads.v16.resources.CampaignCriterion.keyword:type_name -> google.ads.googleads.v16.common.KeywordInfo - 4, // 3: google.ads.googleads.v16.resources.CampaignCriterion.placement:type_name -> google.ads.googleads.v16.common.PlacementInfo - 5, // 4: google.ads.googleads.v16.resources.CampaignCriterion.mobile_app_category:type_name -> google.ads.googleads.v16.common.MobileAppCategoryInfo - 6, // 5: google.ads.googleads.v16.resources.CampaignCriterion.mobile_application:type_name -> google.ads.googleads.v16.common.MobileApplicationInfo - 7, // 6: google.ads.googleads.v16.resources.CampaignCriterion.location:type_name -> google.ads.googleads.v16.common.LocationInfo - 8, // 7: google.ads.googleads.v16.resources.CampaignCriterion.device:type_name -> google.ads.googleads.v16.common.DeviceInfo - 9, // 8: google.ads.googleads.v16.resources.CampaignCriterion.ad_schedule:type_name -> google.ads.googleads.v16.common.AdScheduleInfo - 10, // 9: google.ads.googleads.v16.resources.CampaignCriterion.age_range:type_name -> google.ads.googleads.v16.common.AgeRangeInfo - 11, // 10: google.ads.googleads.v16.resources.CampaignCriterion.gender:type_name -> google.ads.googleads.v16.common.GenderInfo - 12, // 11: google.ads.googleads.v16.resources.CampaignCriterion.income_range:type_name -> google.ads.googleads.v16.common.IncomeRangeInfo - 13, // 12: google.ads.googleads.v16.resources.CampaignCriterion.parental_status:type_name -> google.ads.googleads.v16.common.ParentalStatusInfo - 14, // 13: google.ads.googleads.v16.resources.CampaignCriterion.user_list:type_name -> google.ads.googleads.v16.common.UserListInfo - 15, // 14: google.ads.googleads.v16.resources.CampaignCriterion.youtube_video:type_name -> google.ads.googleads.v16.common.YouTubeVideoInfo - 16, // 15: google.ads.googleads.v16.resources.CampaignCriterion.youtube_channel:type_name -> google.ads.googleads.v16.common.YouTubeChannelInfo - 17, // 16: google.ads.googleads.v16.resources.CampaignCriterion.proximity:type_name -> google.ads.googleads.v16.common.ProximityInfo - 18, // 17: google.ads.googleads.v16.resources.CampaignCriterion.topic:type_name -> google.ads.googleads.v16.common.TopicInfo - 19, // 18: google.ads.googleads.v16.resources.CampaignCriterion.listing_scope:type_name -> google.ads.googleads.v16.common.ListingScopeInfo - 20, // 19: google.ads.googleads.v16.resources.CampaignCriterion.language:type_name -> google.ads.googleads.v16.common.LanguageInfo - 21, // 20: google.ads.googleads.v16.resources.CampaignCriterion.ip_block:type_name -> google.ads.googleads.v16.common.IpBlockInfo - 22, // 21: google.ads.googleads.v16.resources.CampaignCriterion.content_label:type_name -> google.ads.googleads.v16.common.ContentLabelInfo - 23, // 22: google.ads.googleads.v16.resources.CampaignCriterion.carrier:type_name -> google.ads.googleads.v16.common.CarrierInfo - 24, // 23: google.ads.googleads.v16.resources.CampaignCriterion.user_interest:type_name -> google.ads.googleads.v16.common.UserInterestInfo - 25, // 24: google.ads.googleads.v16.resources.CampaignCriterion.webpage:type_name -> google.ads.googleads.v16.common.WebpageInfo - 26, // 25: google.ads.googleads.v16.resources.CampaignCriterion.operating_system_version:type_name -> google.ads.googleads.v16.common.OperatingSystemVersionInfo - 27, // 26: google.ads.googleads.v16.resources.CampaignCriterion.mobile_device:type_name -> google.ads.googleads.v16.common.MobileDeviceInfo - 28, // 27: google.ads.googleads.v16.resources.CampaignCriterion.location_group:type_name -> google.ads.googleads.v16.common.LocationGroupInfo - 29, // 28: google.ads.googleads.v16.resources.CampaignCriterion.custom_affinity:type_name -> google.ads.googleads.v16.common.CustomAffinityInfo - 30, // 29: google.ads.googleads.v16.resources.CampaignCriterion.custom_audience:type_name -> google.ads.googleads.v16.common.CustomAudienceInfo - 31, // 30: google.ads.googleads.v16.resources.CampaignCriterion.combined_audience:type_name -> google.ads.googleads.v16.common.CombinedAudienceInfo - 32, // 31: google.ads.googleads.v16.resources.CampaignCriterion.keyword_theme:type_name -> google.ads.googleads.v16.common.KeywordThemeInfo - 33, // 32: google.ads.googleads.v16.resources.CampaignCriterion.local_service_id:type_name -> google.ads.googleads.v16.common.LocalServiceIdInfo - 34, // 33: google.ads.googleads.v16.resources.CampaignCriterion.brand_list:type_name -> google.ads.googleads.v16.common.BrandListInfo + return file_google_ads_googleads_v17_resources_campaign_criterion_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_campaign_criterion_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_campaign_criterion_proto_goTypes = []interface{}{ + (*CampaignCriterion)(nil), // 0: google.ads.googleads.v17.resources.CampaignCriterion + (enums.CriterionTypeEnum_CriterionType)(0), // 1: google.ads.googleads.v17.enums.CriterionTypeEnum.CriterionType + (enums.CampaignCriterionStatusEnum_CampaignCriterionStatus)(0), // 2: google.ads.googleads.v17.enums.CampaignCriterionStatusEnum.CampaignCriterionStatus + (*common.KeywordInfo)(nil), // 3: google.ads.googleads.v17.common.KeywordInfo + (*common.PlacementInfo)(nil), // 4: google.ads.googleads.v17.common.PlacementInfo + (*common.MobileAppCategoryInfo)(nil), // 5: google.ads.googleads.v17.common.MobileAppCategoryInfo + (*common.MobileApplicationInfo)(nil), // 6: google.ads.googleads.v17.common.MobileApplicationInfo + (*common.LocationInfo)(nil), // 7: google.ads.googleads.v17.common.LocationInfo + (*common.DeviceInfo)(nil), // 8: google.ads.googleads.v17.common.DeviceInfo + (*common.AdScheduleInfo)(nil), // 9: google.ads.googleads.v17.common.AdScheduleInfo + (*common.AgeRangeInfo)(nil), // 10: google.ads.googleads.v17.common.AgeRangeInfo + (*common.GenderInfo)(nil), // 11: google.ads.googleads.v17.common.GenderInfo + (*common.IncomeRangeInfo)(nil), // 12: google.ads.googleads.v17.common.IncomeRangeInfo + (*common.ParentalStatusInfo)(nil), // 13: google.ads.googleads.v17.common.ParentalStatusInfo + (*common.UserListInfo)(nil), // 14: google.ads.googleads.v17.common.UserListInfo + (*common.YouTubeVideoInfo)(nil), // 15: google.ads.googleads.v17.common.YouTubeVideoInfo + (*common.YouTubeChannelInfo)(nil), // 16: google.ads.googleads.v17.common.YouTubeChannelInfo + (*common.ProximityInfo)(nil), // 17: google.ads.googleads.v17.common.ProximityInfo + (*common.TopicInfo)(nil), // 18: google.ads.googleads.v17.common.TopicInfo + (*common.ListingScopeInfo)(nil), // 19: google.ads.googleads.v17.common.ListingScopeInfo + (*common.LanguageInfo)(nil), // 20: google.ads.googleads.v17.common.LanguageInfo + (*common.IpBlockInfo)(nil), // 21: google.ads.googleads.v17.common.IpBlockInfo + (*common.ContentLabelInfo)(nil), // 22: google.ads.googleads.v17.common.ContentLabelInfo + (*common.CarrierInfo)(nil), // 23: google.ads.googleads.v17.common.CarrierInfo + (*common.UserInterestInfo)(nil), // 24: google.ads.googleads.v17.common.UserInterestInfo + (*common.WebpageInfo)(nil), // 25: google.ads.googleads.v17.common.WebpageInfo + (*common.OperatingSystemVersionInfo)(nil), // 26: google.ads.googleads.v17.common.OperatingSystemVersionInfo + (*common.MobileDeviceInfo)(nil), // 27: google.ads.googleads.v17.common.MobileDeviceInfo + (*common.LocationGroupInfo)(nil), // 28: google.ads.googleads.v17.common.LocationGroupInfo + (*common.CustomAffinityInfo)(nil), // 29: google.ads.googleads.v17.common.CustomAffinityInfo + (*common.CustomAudienceInfo)(nil), // 30: google.ads.googleads.v17.common.CustomAudienceInfo + (*common.CombinedAudienceInfo)(nil), // 31: google.ads.googleads.v17.common.CombinedAudienceInfo + (*common.KeywordThemeInfo)(nil), // 32: google.ads.googleads.v17.common.KeywordThemeInfo + (*common.LocalServiceIdInfo)(nil), // 33: google.ads.googleads.v17.common.LocalServiceIdInfo + (*common.BrandListInfo)(nil), // 34: google.ads.googleads.v17.common.BrandListInfo +} +var file_google_ads_googleads_v17_resources_campaign_criterion_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CampaignCriterion.type:type_name -> google.ads.googleads.v17.enums.CriterionTypeEnum.CriterionType + 2, // 1: google.ads.googleads.v17.resources.CampaignCriterion.status:type_name -> google.ads.googleads.v17.enums.CampaignCriterionStatusEnum.CampaignCriterionStatus + 3, // 2: google.ads.googleads.v17.resources.CampaignCriterion.keyword:type_name -> google.ads.googleads.v17.common.KeywordInfo + 4, // 3: google.ads.googleads.v17.resources.CampaignCriterion.placement:type_name -> google.ads.googleads.v17.common.PlacementInfo + 5, // 4: google.ads.googleads.v17.resources.CampaignCriterion.mobile_app_category:type_name -> google.ads.googleads.v17.common.MobileAppCategoryInfo + 6, // 5: google.ads.googleads.v17.resources.CampaignCriterion.mobile_application:type_name -> google.ads.googleads.v17.common.MobileApplicationInfo + 7, // 6: google.ads.googleads.v17.resources.CampaignCriterion.location:type_name -> google.ads.googleads.v17.common.LocationInfo + 8, // 7: google.ads.googleads.v17.resources.CampaignCriterion.device:type_name -> google.ads.googleads.v17.common.DeviceInfo + 9, // 8: google.ads.googleads.v17.resources.CampaignCriterion.ad_schedule:type_name -> google.ads.googleads.v17.common.AdScheduleInfo + 10, // 9: google.ads.googleads.v17.resources.CampaignCriterion.age_range:type_name -> google.ads.googleads.v17.common.AgeRangeInfo + 11, // 10: google.ads.googleads.v17.resources.CampaignCriterion.gender:type_name -> google.ads.googleads.v17.common.GenderInfo + 12, // 11: google.ads.googleads.v17.resources.CampaignCriterion.income_range:type_name -> google.ads.googleads.v17.common.IncomeRangeInfo + 13, // 12: google.ads.googleads.v17.resources.CampaignCriterion.parental_status:type_name -> google.ads.googleads.v17.common.ParentalStatusInfo + 14, // 13: google.ads.googleads.v17.resources.CampaignCriterion.user_list:type_name -> google.ads.googleads.v17.common.UserListInfo + 15, // 14: google.ads.googleads.v17.resources.CampaignCriterion.youtube_video:type_name -> google.ads.googleads.v17.common.YouTubeVideoInfo + 16, // 15: google.ads.googleads.v17.resources.CampaignCriterion.youtube_channel:type_name -> google.ads.googleads.v17.common.YouTubeChannelInfo + 17, // 16: google.ads.googleads.v17.resources.CampaignCriterion.proximity:type_name -> google.ads.googleads.v17.common.ProximityInfo + 18, // 17: google.ads.googleads.v17.resources.CampaignCriterion.topic:type_name -> google.ads.googleads.v17.common.TopicInfo + 19, // 18: google.ads.googleads.v17.resources.CampaignCriterion.listing_scope:type_name -> google.ads.googleads.v17.common.ListingScopeInfo + 20, // 19: google.ads.googleads.v17.resources.CampaignCriterion.language:type_name -> google.ads.googleads.v17.common.LanguageInfo + 21, // 20: google.ads.googleads.v17.resources.CampaignCriterion.ip_block:type_name -> google.ads.googleads.v17.common.IpBlockInfo + 22, // 21: google.ads.googleads.v17.resources.CampaignCriterion.content_label:type_name -> google.ads.googleads.v17.common.ContentLabelInfo + 23, // 22: google.ads.googleads.v17.resources.CampaignCriterion.carrier:type_name -> google.ads.googleads.v17.common.CarrierInfo + 24, // 23: google.ads.googleads.v17.resources.CampaignCriterion.user_interest:type_name -> google.ads.googleads.v17.common.UserInterestInfo + 25, // 24: google.ads.googleads.v17.resources.CampaignCriterion.webpage:type_name -> google.ads.googleads.v17.common.WebpageInfo + 26, // 25: google.ads.googleads.v17.resources.CampaignCriterion.operating_system_version:type_name -> google.ads.googleads.v17.common.OperatingSystemVersionInfo + 27, // 26: google.ads.googleads.v17.resources.CampaignCriterion.mobile_device:type_name -> google.ads.googleads.v17.common.MobileDeviceInfo + 28, // 27: google.ads.googleads.v17.resources.CampaignCriterion.location_group:type_name -> google.ads.googleads.v17.common.LocationGroupInfo + 29, // 28: google.ads.googleads.v17.resources.CampaignCriterion.custom_affinity:type_name -> google.ads.googleads.v17.common.CustomAffinityInfo + 30, // 29: google.ads.googleads.v17.resources.CampaignCriterion.custom_audience:type_name -> google.ads.googleads.v17.common.CustomAudienceInfo + 31, // 30: google.ads.googleads.v17.resources.CampaignCriterion.combined_audience:type_name -> google.ads.googleads.v17.common.CombinedAudienceInfo + 32, // 31: google.ads.googleads.v17.resources.CampaignCriterion.keyword_theme:type_name -> google.ads.googleads.v17.common.KeywordThemeInfo + 33, // 32: google.ads.googleads.v17.resources.CampaignCriterion.local_service_id:type_name -> google.ads.googleads.v17.common.LocalServiceIdInfo + 34, // 33: google.ads.googleads.v17.resources.CampaignCriterion.brand_list:type_name -> google.ads.googleads.v17.common.BrandListInfo 34, // [34:34] is the sub-list for method output_type 34, // [34:34] is the sub-list for method input_type 34, // [34:34] is the sub-list for extension type_name @@ -1021,13 +1021,13 @@ var file_google_ads_googleads_v16_resources_campaign_criterion_proto_depIdxs = [ 0, // [0:34] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_campaign_criterion_proto_init() } -func file_google_ads_googleads_v16_resources_campaign_criterion_proto_init() { - if File_google_ads_googleads_v16_resources_campaign_criterion_proto != nil { +func init() { file_google_ads_googleads_v17_resources_campaign_criterion_proto_init() } +func file_google_ads_googleads_v17_resources_campaign_criterion_proto_init() { + if File_google_ads_googleads_v17_resources_campaign_criterion_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_campaign_criterion_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_criterion_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignCriterion); i { case 0: return &v.state @@ -1040,7 +1040,7 @@ func file_google_ads_googleads_v16_resources_campaign_criterion_proto_init() { } } } - file_google_ads_googleads_v16_resources_campaign_criterion_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_campaign_criterion_proto_msgTypes[0].OneofWrappers = []interface{}{ (*CampaignCriterion_Keyword)(nil), (*CampaignCriterion_Placement)(nil), (*CampaignCriterion_MobileAppCategory)(nil), @@ -1078,18 +1078,18 @@ func file_google_ads_googleads_v16_resources_campaign_criterion_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_campaign_criterion_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_campaign_criterion_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_campaign_criterion_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_campaign_criterion_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_campaign_criterion_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_campaign_criterion_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_campaign_criterion_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_campaign_criterion_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_campaign_criterion_proto = out.File - file_google_ads_googleads_v16_resources_campaign_criterion_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_campaign_criterion_proto_goTypes = nil - file_google_ads_googleads_v16_resources_campaign_criterion_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_campaign_criterion_proto = out.File + file_google_ads_googleads_v17_resources_campaign_criterion_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_campaign_criterion_proto_goTypes = nil + file_google_ads_googleads_v17_resources_campaign_criterion_proto_depIdxs = nil } diff --git a/resources/campaign_customizer.pb.go b/resources/campaign_customizer.pb.go index bfd4c439..f438f95f 100644 --- a/resources/campaign_customizer.pb.go +++ b/resources/campaign_customizer.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/campaign_customizer.proto +// source: google/ads/googleads/v17/resources/campaign_customizer.proto package resources @@ -55,7 +55,7 @@ type CampaignCustomizer struct { // campaign. CustomizerAttribute string `protobuf:"bytes,3,opt,name=customizer_attribute,json=customizerAttribute,proto3" json:"customizer_attribute,omitempty"` // Output only. The status of the campaign customizer. - Status enums.CustomizerValueStatusEnum_CustomizerValueStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.CustomizerValueStatusEnum_CustomizerValueStatus" json:"status,omitempty"` + Status enums.CustomizerValueStatusEnum_CustomizerValueStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.CustomizerValueStatusEnum_CustomizerValueStatus" json:"status,omitempty"` // Required. The value to associate with the customizer attribute at this // level. The value must be of the type specified for the CustomizerAttribute. Value *common.CustomizerValue `protobuf:"bytes,5,opt,name=value,proto3" json:"value,omitempty"` @@ -64,7 +64,7 @@ type CampaignCustomizer struct { func (x *CampaignCustomizer) Reset() { *x = CampaignCustomizer{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_customizer_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_customizer_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *CampaignCustomizer) String() string { func (*CampaignCustomizer) ProtoMessage() {} func (x *CampaignCustomizer) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_customizer_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_customizer_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *CampaignCustomizer) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignCustomizer.ProtoReflect.Descriptor instead. func (*CampaignCustomizer) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_customizer_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_campaign_customizer_proto_rawDescGZIP(), []int{0} } func (x *CampaignCustomizer) GetResourceName() string { @@ -128,21 +128,21 @@ func (x *CampaignCustomizer) GetValue() *common.CustomizerValue { return nil } -var File_google_ads_googleads_v16_resources_campaign_customizer_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_campaign_customizer_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_campaign_customizer_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_campaign_customizer_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, 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, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 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, 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, + 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, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x76, 0x61, 0x6c, 0x75, 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, 0x63, 0x75, 0x73, 0x74, 0x6f, + 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76, @@ -169,13 +169,13 @@ var file_google_ads_googleads_v16_resources_campaign_customizer_proto_rawDesc = 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x12, 0x6c, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x4b, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 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, + 0x64, 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, 0x69, 0x7a, 0x65, 0x72, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x86, 0x01, 0xea, 0x41, 0x82, 0x01, 0x0a, 0x2b, 0x67, 0x6f, 0x6f, 0x67, @@ -188,45 +188,45 @@ var file_google_ads_googleads_v16_resources_campaign_customizer_proto_rawDesc = 0x64, 0x7d, 0x7e, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x89, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x17, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 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, + 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, + 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, 0x36, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 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, + 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_campaign_customizer_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_campaign_customizer_proto_rawDescData = file_google_ads_googleads_v16_resources_campaign_customizer_proto_rawDesc + file_google_ads_googleads_v17_resources_campaign_customizer_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_campaign_customizer_proto_rawDescData = file_google_ads_googleads_v17_resources_campaign_customizer_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_campaign_customizer_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_campaign_customizer_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_campaign_customizer_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_campaign_customizer_proto_rawDescData) +func file_google_ads_googleads_v17_resources_campaign_customizer_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_campaign_customizer_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_campaign_customizer_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_campaign_customizer_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_campaign_customizer_proto_rawDescData + return file_google_ads_googleads_v17_resources_campaign_customizer_proto_rawDescData } -var file_google_ads_googleads_v16_resources_campaign_customizer_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_campaign_customizer_proto_goTypes = []interface{}{ - (*CampaignCustomizer)(nil), // 0: google.ads.googleads.v16.resources.CampaignCustomizer - (enums.CustomizerValueStatusEnum_CustomizerValueStatus)(0), // 1: google.ads.googleads.v16.enums.CustomizerValueStatusEnum.CustomizerValueStatus - (*common.CustomizerValue)(nil), // 2: google.ads.googleads.v16.common.CustomizerValue +var file_google_ads_googleads_v17_resources_campaign_customizer_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_campaign_customizer_proto_goTypes = []interface{}{ + (*CampaignCustomizer)(nil), // 0: google.ads.googleads.v17.resources.CampaignCustomizer + (enums.CustomizerValueStatusEnum_CustomizerValueStatus)(0), // 1: google.ads.googleads.v17.enums.CustomizerValueStatusEnum.CustomizerValueStatus + (*common.CustomizerValue)(nil), // 2: google.ads.googleads.v17.common.CustomizerValue } -var file_google_ads_googleads_v16_resources_campaign_customizer_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CampaignCustomizer.status:type_name -> google.ads.googleads.v16.enums.CustomizerValueStatusEnum.CustomizerValueStatus - 2, // 1: google.ads.googleads.v16.resources.CampaignCustomizer.value:type_name -> google.ads.googleads.v16.common.CustomizerValue +var file_google_ads_googleads_v17_resources_campaign_customizer_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CampaignCustomizer.status:type_name -> google.ads.googleads.v17.enums.CustomizerValueStatusEnum.CustomizerValueStatus + 2, // 1: google.ads.googleads.v17.resources.CampaignCustomizer.value:type_name -> google.ads.googleads.v17.common.CustomizerValue 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 @@ -234,13 +234,13 @@ var file_google_ads_googleads_v16_resources_campaign_customizer_proto_depIdxs = 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_campaign_customizer_proto_init() } -func file_google_ads_googleads_v16_resources_campaign_customizer_proto_init() { - if File_google_ads_googleads_v16_resources_campaign_customizer_proto != nil { +func init() { file_google_ads_googleads_v17_resources_campaign_customizer_proto_init() } +func file_google_ads_googleads_v17_resources_campaign_customizer_proto_init() { + if File_google_ads_googleads_v17_resources_campaign_customizer_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_campaign_customizer_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_customizer_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignCustomizer); i { case 0: return &v.state @@ -257,18 +257,18 @@ func file_google_ads_googleads_v16_resources_campaign_customizer_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_campaign_customizer_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_campaign_customizer_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_campaign_customizer_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_campaign_customizer_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_campaign_customizer_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_campaign_customizer_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_campaign_customizer_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_campaign_customizer_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_campaign_customizer_proto = out.File - file_google_ads_googleads_v16_resources_campaign_customizer_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_campaign_customizer_proto_goTypes = nil - file_google_ads_googleads_v16_resources_campaign_customizer_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_campaign_customizer_proto = out.File + file_google_ads_googleads_v17_resources_campaign_customizer_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_campaign_customizer_proto_goTypes = nil + file_google_ads_googleads_v17_resources_campaign_customizer_proto_depIdxs = nil } diff --git a/resources/campaign_draft.pb.go b/resources/campaign_draft.pb.go index e5778123..7aeca151 100644 --- a/resources/campaign_draft.pb.go +++ b/resources/campaign_draft.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/campaign_draft.proto +// source: google/ads/googleads/v17/resources/campaign_draft.proto package resources @@ -69,7 +69,7 @@ type CampaignDraft struct { // Output only. The status of the campaign draft. This field is read-only. // // When a new campaign draft is added, the status defaults to PROPOSED. - Status enums.CampaignDraftStatusEnum_CampaignDraftStatus `protobuf:"varint,6,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.CampaignDraftStatusEnum_CampaignDraftStatus" json:"status,omitempty"` + Status enums.CampaignDraftStatusEnum_CampaignDraftStatus `protobuf:"varint,6,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.CampaignDraftStatusEnum_CampaignDraftStatus" json:"status,omitempty"` // Output only. Whether there is an experiment based on this draft currently // serving. HasExperimentRunning *bool `protobuf:"varint,13,opt,name=has_experiment_running,json=hasExperimentRunning,proto3,oneof" json:"has_experiment_running,omitempty"` @@ -82,7 +82,7 @@ type CampaignDraft struct { func (x *CampaignDraft) Reset() { *x = CampaignDraft{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_draft_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_draft_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -95,7 +95,7 @@ func (x *CampaignDraft) String() string { func (*CampaignDraft) ProtoMessage() {} func (x *CampaignDraft) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_draft_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_draft_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -108,7 +108,7 @@ func (x *CampaignDraft) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignDraft.ProtoReflect.Descriptor instead. func (*CampaignDraft) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_draft_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_campaign_draft_proto_rawDescGZIP(), []int{0} } func (x *CampaignDraft) GetResourceName() string { @@ -167,17 +167,17 @@ func (x *CampaignDraft) GetLongRunningOperation() string { return "" } -var File_google_ads_googleads_v16_resources_campaign_draft_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_campaign_draft_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_campaign_draft_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_campaign_draft_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, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x64, 0x72, 0x61, 0x66, 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, 0x3a, 0x67, + 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, 0x63, 0x61, + 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, @@ -207,7 +207,7 @@ var file_google_ads_googleads_v16_resources_campaign_draft_proto_rawDesc = []byt 0x69, 0x67, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x68, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x06, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, + 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, @@ -235,43 +235,43 @@ var file_google_ads_googleads_v16_resources_campaign_draft_proto_rawDesc = []byt 0x6e, 0x67, 0x5f, 0x72, 0x75, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 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_campaign_draft_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_campaign_draft_proto_rawDescData = file_google_ads_googleads_v16_resources_campaign_draft_proto_rawDesc + file_google_ads_googleads_v17_resources_campaign_draft_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_campaign_draft_proto_rawDescData = file_google_ads_googleads_v17_resources_campaign_draft_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_campaign_draft_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_campaign_draft_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_campaign_draft_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_campaign_draft_proto_rawDescData) +func file_google_ads_googleads_v17_resources_campaign_draft_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_campaign_draft_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_campaign_draft_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_campaign_draft_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_campaign_draft_proto_rawDescData + return file_google_ads_googleads_v17_resources_campaign_draft_proto_rawDescData } -var file_google_ads_googleads_v16_resources_campaign_draft_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_campaign_draft_proto_goTypes = []interface{}{ - (*CampaignDraft)(nil), // 0: google.ads.googleads.v16.resources.CampaignDraft - (enums.CampaignDraftStatusEnum_CampaignDraftStatus)(0), // 1: google.ads.googleads.v16.enums.CampaignDraftStatusEnum.CampaignDraftStatus +var file_google_ads_googleads_v17_resources_campaign_draft_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_campaign_draft_proto_goTypes = []interface{}{ + (*CampaignDraft)(nil), // 0: google.ads.googleads.v17.resources.CampaignDraft + (enums.CampaignDraftStatusEnum_CampaignDraftStatus)(0), // 1: google.ads.googleads.v17.enums.CampaignDraftStatusEnum.CampaignDraftStatus } -var file_google_ads_googleads_v16_resources_campaign_draft_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CampaignDraft.status:type_name -> google.ads.googleads.v16.enums.CampaignDraftStatusEnum.CampaignDraftStatus +var file_google_ads_googleads_v17_resources_campaign_draft_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CampaignDraft.status:type_name -> google.ads.googleads.v17.enums.CampaignDraftStatusEnum.CampaignDraftStatus 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 @@ -279,13 +279,13 @@ var file_google_ads_googleads_v16_resources_campaign_draft_proto_depIdxs = []int 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_campaign_draft_proto_init() } -func file_google_ads_googleads_v16_resources_campaign_draft_proto_init() { - if File_google_ads_googleads_v16_resources_campaign_draft_proto != nil { +func init() { file_google_ads_googleads_v17_resources_campaign_draft_proto_init() } +func file_google_ads_googleads_v17_resources_campaign_draft_proto_init() { + if File_google_ads_googleads_v17_resources_campaign_draft_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_campaign_draft_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_draft_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignDraft); i { case 0: return &v.state @@ -298,23 +298,23 @@ func file_google_ads_googleads_v16_resources_campaign_draft_proto_init() { } } } - file_google_ads_googleads_v16_resources_campaign_draft_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_campaign_draft_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_campaign_draft_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_campaign_draft_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_campaign_draft_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_campaign_draft_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_campaign_draft_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_campaign_draft_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_campaign_draft_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_campaign_draft_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_campaign_draft_proto = out.File - file_google_ads_googleads_v16_resources_campaign_draft_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_campaign_draft_proto_goTypes = nil - file_google_ads_googleads_v16_resources_campaign_draft_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_campaign_draft_proto = out.File + file_google_ads_googleads_v17_resources_campaign_draft_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_campaign_draft_proto_goTypes = nil + file_google_ads_googleads_v17_resources_campaign_draft_proto_depIdxs = nil } diff --git a/resources/campaign_extension_setting.pb.go b/resources/campaign_extension_setting.pb.go index eccc9db3..87c8eaa4 100644 --- a/resources/campaign_extension_setting.pb.go +++ b/resources/campaign_extension_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/resources/campaign_extension_setting.proto +// source: google/ads/googleads/v17/resources/campaign_extension_setting.proto package resources @@ -48,7 +48,7 @@ type CampaignExtensionSetting struct { // `customers/{customer_id}/campaignExtensionSettings/{campaign_id}~{extension_type}` ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` // Immutable. The extension type of the customer extension setting. - ExtensionType enums.ExtensionTypeEnum_ExtensionType `protobuf:"varint,2,opt,name=extension_type,json=extensionType,proto3,enum=google.ads.googleads.v16.enums.ExtensionTypeEnum_ExtensionType" json:"extension_type,omitempty"` + ExtensionType enums.ExtensionTypeEnum_ExtensionType `protobuf:"varint,2,opt,name=extension_type,json=extensionType,proto3,enum=google.ads.googleads.v17.enums.ExtensionTypeEnum_ExtensionType" json:"extension_type,omitempty"` // Immutable. The resource name of the campaign. The linked extension feed // items will serve under this campaign. Campaign resource names have the // form: @@ -61,13 +61,13 @@ type CampaignExtensionSetting struct { // `customers/{customer_id}/extensionFeedItems/{feed_item_id}` ExtensionFeedItems []string `protobuf:"bytes,7,rep,name=extension_feed_items,json=extensionFeedItems,proto3" json:"extension_feed_items,omitempty"` // The device for which the extensions will serve. Optional. - Device enums.ExtensionSettingDeviceEnum_ExtensionSettingDevice `protobuf:"varint,5,opt,name=device,proto3,enum=google.ads.googleads.v16.enums.ExtensionSettingDeviceEnum_ExtensionSettingDevice" json:"device,omitempty"` + Device enums.ExtensionSettingDeviceEnum_ExtensionSettingDevice `protobuf:"varint,5,opt,name=device,proto3,enum=google.ads.googleads.v17.enums.ExtensionSettingDeviceEnum_ExtensionSettingDevice" json:"device,omitempty"` } func (x *CampaignExtensionSetting) Reset() { *x = CampaignExtensionSetting{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_extension_setting_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_extension_setting_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80,7 +80,7 @@ func (x *CampaignExtensionSetting) String() string { func (*CampaignExtensionSetting) ProtoMessage() {} func (x *CampaignExtensionSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_extension_setting_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_extension_setting_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93,7 +93,7 @@ func (x *CampaignExtensionSetting) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignExtensionSetting.ProtoReflect.Descriptor instead. func (*CampaignExtensionSetting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_extension_setting_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_campaign_extension_setting_proto_rawDescGZIP(), []int{0} } func (x *CampaignExtensionSetting) GetResourceName() string { @@ -131,22 +131,22 @@ func (x *CampaignExtensionSetting) GetDevice() enums.ExtensionSettingDeviceEnum_ return enums.ExtensionSettingDeviceEnum_ExtensionSettingDevice(0) } -var File_google_ads_googleads_v16_resources_campaign_extension_setting_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_campaign_extension_setting_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_campaign_extension_setting_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_campaign_extension_setting_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, 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, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 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, + 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, 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, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, + 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, 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, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, + 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, 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, @@ -162,7 +162,7 @@ var file_google_ads_googleads_v16_resources_campaign_extension_setting_proto_raw 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x6b, 0x0a, 0x0e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 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, 0x73, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x52, 0x0d, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x54, @@ -179,7 +179,7 @@ var file_google_ads_googleads_v16_resources_campaign_extension_setting_proto_raw 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x12, 0x69, 0x0a, 0x06, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x18, 0x05, 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, 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, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x44, @@ -195,45 +195,45 @@ var file_google_ads_googleads_v16_resources_campaign_extension_setting_proto_raw 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x7d, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x8f, 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, 0x1d, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 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, + 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, + 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, 0x36, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 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, + 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_campaign_extension_setting_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_campaign_extension_setting_proto_rawDescData = file_google_ads_googleads_v16_resources_campaign_extension_setting_proto_rawDesc + file_google_ads_googleads_v17_resources_campaign_extension_setting_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_campaign_extension_setting_proto_rawDescData = file_google_ads_googleads_v17_resources_campaign_extension_setting_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_campaign_extension_setting_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_campaign_extension_setting_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_campaign_extension_setting_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_campaign_extension_setting_proto_rawDescData) +func file_google_ads_googleads_v17_resources_campaign_extension_setting_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_campaign_extension_setting_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_campaign_extension_setting_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_campaign_extension_setting_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_campaign_extension_setting_proto_rawDescData + return file_google_ads_googleads_v17_resources_campaign_extension_setting_proto_rawDescData } -var file_google_ads_googleads_v16_resources_campaign_extension_setting_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_campaign_extension_setting_proto_goTypes = []interface{}{ - (*CampaignExtensionSetting)(nil), // 0: google.ads.googleads.v16.resources.CampaignExtensionSetting - (enums.ExtensionTypeEnum_ExtensionType)(0), // 1: google.ads.googleads.v16.enums.ExtensionTypeEnum.ExtensionType - (enums.ExtensionSettingDeviceEnum_ExtensionSettingDevice)(0), // 2: google.ads.googleads.v16.enums.ExtensionSettingDeviceEnum.ExtensionSettingDevice +var file_google_ads_googleads_v17_resources_campaign_extension_setting_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_campaign_extension_setting_proto_goTypes = []interface{}{ + (*CampaignExtensionSetting)(nil), // 0: google.ads.googleads.v17.resources.CampaignExtensionSetting + (enums.ExtensionTypeEnum_ExtensionType)(0), // 1: google.ads.googleads.v17.enums.ExtensionTypeEnum.ExtensionType + (enums.ExtensionSettingDeviceEnum_ExtensionSettingDevice)(0), // 2: google.ads.googleads.v17.enums.ExtensionSettingDeviceEnum.ExtensionSettingDevice } -var file_google_ads_googleads_v16_resources_campaign_extension_setting_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CampaignExtensionSetting.extension_type:type_name -> google.ads.googleads.v16.enums.ExtensionTypeEnum.ExtensionType - 2, // 1: google.ads.googleads.v16.resources.CampaignExtensionSetting.device:type_name -> google.ads.googleads.v16.enums.ExtensionSettingDeviceEnum.ExtensionSettingDevice +var file_google_ads_googleads_v17_resources_campaign_extension_setting_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CampaignExtensionSetting.extension_type:type_name -> google.ads.googleads.v17.enums.ExtensionTypeEnum.ExtensionType + 2, // 1: google.ads.googleads.v17.resources.CampaignExtensionSetting.device:type_name -> google.ads.googleads.v17.enums.ExtensionSettingDeviceEnum.ExtensionSettingDevice 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 @@ -241,13 +241,13 @@ var file_google_ads_googleads_v16_resources_campaign_extension_setting_proto_dep 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_campaign_extension_setting_proto_init() } -func file_google_ads_googleads_v16_resources_campaign_extension_setting_proto_init() { - if File_google_ads_googleads_v16_resources_campaign_extension_setting_proto != nil { +func init() { file_google_ads_googleads_v17_resources_campaign_extension_setting_proto_init() } +func file_google_ads_googleads_v17_resources_campaign_extension_setting_proto_init() { + if File_google_ads_googleads_v17_resources_campaign_extension_setting_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_campaign_extension_setting_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_extension_setting_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignExtensionSetting); i { case 0: return &v.state @@ -260,23 +260,23 @@ func file_google_ads_googleads_v16_resources_campaign_extension_setting_proto_in } } } - file_google_ads_googleads_v16_resources_campaign_extension_setting_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_campaign_extension_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_resources_campaign_extension_setting_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_campaign_extension_setting_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_campaign_extension_setting_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_campaign_extension_setting_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_campaign_extension_setting_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_campaign_extension_setting_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_campaign_extension_setting_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_campaign_extension_setting_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_campaign_extension_setting_proto = out.File - file_google_ads_googleads_v16_resources_campaign_extension_setting_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_campaign_extension_setting_proto_goTypes = nil - file_google_ads_googleads_v16_resources_campaign_extension_setting_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_campaign_extension_setting_proto = out.File + file_google_ads_googleads_v17_resources_campaign_extension_setting_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_campaign_extension_setting_proto_goTypes = nil + file_google_ads_googleads_v17_resources_campaign_extension_setting_proto_depIdxs = nil } diff --git a/resources/campaign_feed.pb.go b/resources/campaign_feed.pb.go index 8b6e4863..8e8c75bb 100644 --- a/resources/campaign_feed.pb.go +++ b/resources/campaign_feed.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/campaign_feed.proto +// source: google/ads/googleads/v17/resources/campaign_feed.proto package resources @@ -54,20 +54,20 @@ type CampaignFeed struct { Campaign *string `protobuf:"bytes,8,opt,name=campaign,proto3,oneof" json:"campaign,omitempty"` // Indicates which placeholder types the feed may populate under the connected // campaign. Required. - PlaceholderTypes []enums.PlaceholderTypeEnum_PlaceholderType `protobuf:"varint,4,rep,packed,name=placeholder_types,json=placeholderTypes,proto3,enum=google.ads.googleads.v16.enums.PlaceholderTypeEnum_PlaceholderType" json:"placeholder_types,omitempty"` + PlaceholderTypes []enums.PlaceholderTypeEnum_PlaceholderType `protobuf:"varint,4,rep,packed,name=placeholder_types,json=placeholderTypes,proto3,enum=google.ads.googleads.v17.enums.PlaceholderTypeEnum_PlaceholderType" json:"placeholder_types,omitempty"` // Matching function associated with the CampaignFeed. // The matching function is used to filter the set of feed items selected. // Required. MatchingFunction *common.MatchingFunction `protobuf:"bytes,5,opt,name=matching_function,json=matchingFunction,proto3" json:"matching_function,omitempty"` // Output only. Status of the campaign feed. // This field is read-only. - Status enums.FeedLinkStatusEnum_FeedLinkStatus `protobuf:"varint,6,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.FeedLinkStatusEnum_FeedLinkStatus" json:"status,omitempty"` + Status enums.FeedLinkStatusEnum_FeedLinkStatus `protobuf:"varint,6,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.FeedLinkStatusEnum_FeedLinkStatus" json:"status,omitempty"` } func (x *CampaignFeed) Reset() { *x = CampaignFeed{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_feed_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_feed_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80,7 +80,7 @@ func (x *CampaignFeed) String() string { func (*CampaignFeed) ProtoMessage() {} func (x *CampaignFeed) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_feed_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_feed_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93,7 +93,7 @@ func (x *CampaignFeed) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignFeed.ProtoReflect.Descriptor instead. func (*CampaignFeed) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_feed_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_campaign_feed_proto_rawDescGZIP(), []int{0} } func (x *CampaignFeed) GetResourceName() string { @@ -138,24 +138,24 @@ func (x *CampaignFeed) GetStatus() enums.FeedLinkStatusEnum_FeedLinkStatus { return enums.FeedLinkStatusEnum_FeedLinkStatus(0) } -var File_google_ads_googleads_v16_resources_campaign_feed_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_campaign_feed_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_campaign_feed_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_campaign_feed_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, 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, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x66, 0x65, 0x65, 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, 0x73, 0x1a, 0x37, 0x67, 0x6f, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x2f, 0x6d, 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, 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, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 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, 0x70, 0x6c, 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, 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, @@ -179,19 +179,19 @@ var file_google_ads_googleads_v16_resources_campaign_feed_proto_rawDesc = []byte 0x12, 0x70, 0x0a, 0x11, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x04, 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, 0x50, 0x6c, 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, 0x10, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x5e, 0x0a, 0x11, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x5f, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 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, 0x12, 0x5e, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x06, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, @@ -205,47 +205,47 @@ var file_google_ads_googleads_v16_resources_campaign_feed_proto_rawDesc = []byte 0x05, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x83, 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, 0x11, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x11, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, 0x65, 0x65, 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, 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, 0x6f, + 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, + 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_campaign_feed_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_campaign_feed_proto_rawDescData = file_google_ads_googleads_v16_resources_campaign_feed_proto_rawDesc + file_google_ads_googleads_v17_resources_campaign_feed_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_campaign_feed_proto_rawDescData = file_google_ads_googleads_v17_resources_campaign_feed_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_campaign_feed_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_campaign_feed_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_campaign_feed_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_campaign_feed_proto_rawDescData) +func file_google_ads_googleads_v17_resources_campaign_feed_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_campaign_feed_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_campaign_feed_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_campaign_feed_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_campaign_feed_proto_rawDescData + return file_google_ads_googleads_v17_resources_campaign_feed_proto_rawDescData } -var file_google_ads_googleads_v16_resources_campaign_feed_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_campaign_feed_proto_goTypes = []interface{}{ - (*CampaignFeed)(nil), // 0: google.ads.googleads.v16.resources.CampaignFeed - (enums.PlaceholderTypeEnum_PlaceholderType)(0), // 1: google.ads.googleads.v16.enums.PlaceholderTypeEnum.PlaceholderType - (*common.MatchingFunction)(nil), // 2: google.ads.googleads.v16.common.MatchingFunction - (enums.FeedLinkStatusEnum_FeedLinkStatus)(0), // 3: google.ads.googleads.v16.enums.FeedLinkStatusEnum.FeedLinkStatus +var file_google_ads_googleads_v17_resources_campaign_feed_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_campaign_feed_proto_goTypes = []interface{}{ + (*CampaignFeed)(nil), // 0: google.ads.googleads.v17.resources.CampaignFeed + (enums.PlaceholderTypeEnum_PlaceholderType)(0), // 1: google.ads.googleads.v17.enums.PlaceholderTypeEnum.PlaceholderType + (*common.MatchingFunction)(nil), // 2: google.ads.googleads.v17.common.MatchingFunction + (enums.FeedLinkStatusEnum_FeedLinkStatus)(0), // 3: google.ads.googleads.v17.enums.FeedLinkStatusEnum.FeedLinkStatus } -var file_google_ads_googleads_v16_resources_campaign_feed_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CampaignFeed.placeholder_types:type_name -> google.ads.googleads.v16.enums.PlaceholderTypeEnum.PlaceholderType - 2, // 1: google.ads.googleads.v16.resources.CampaignFeed.matching_function:type_name -> google.ads.googleads.v16.common.MatchingFunction - 3, // 2: google.ads.googleads.v16.resources.CampaignFeed.status:type_name -> google.ads.googleads.v16.enums.FeedLinkStatusEnum.FeedLinkStatus +var file_google_ads_googleads_v17_resources_campaign_feed_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CampaignFeed.placeholder_types:type_name -> google.ads.googleads.v17.enums.PlaceholderTypeEnum.PlaceholderType + 2, // 1: google.ads.googleads.v17.resources.CampaignFeed.matching_function:type_name -> google.ads.googleads.v17.common.MatchingFunction + 3, // 2: google.ads.googleads.v17.resources.CampaignFeed.status:type_name -> google.ads.googleads.v17.enums.FeedLinkStatusEnum.FeedLinkStatus 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 @@ -253,13 +253,13 @@ var file_google_ads_googleads_v16_resources_campaign_feed_proto_depIdxs = []int3 0, // [0:3] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_campaign_feed_proto_init() } -func file_google_ads_googleads_v16_resources_campaign_feed_proto_init() { - if File_google_ads_googleads_v16_resources_campaign_feed_proto != nil { +func init() { file_google_ads_googleads_v17_resources_campaign_feed_proto_init() } +func file_google_ads_googleads_v17_resources_campaign_feed_proto_init() { + if File_google_ads_googleads_v17_resources_campaign_feed_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_campaign_feed_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_feed_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignFeed); i { case 0: return &v.state @@ -272,23 +272,23 @@ func file_google_ads_googleads_v16_resources_campaign_feed_proto_init() { } } } - file_google_ads_googleads_v16_resources_campaign_feed_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_campaign_feed_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_campaign_feed_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_campaign_feed_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_campaign_feed_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_campaign_feed_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_campaign_feed_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_campaign_feed_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_campaign_feed_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_campaign_feed_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_campaign_feed_proto = out.File - file_google_ads_googleads_v16_resources_campaign_feed_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_campaign_feed_proto_goTypes = nil - file_google_ads_googleads_v16_resources_campaign_feed_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_campaign_feed_proto = out.File + file_google_ads_googleads_v17_resources_campaign_feed_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_campaign_feed_proto_goTypes = nil + file_google_ads_googleads_v17_resources_campaign_feed_proto_depIdxs = nil } diff --git a/resources/campaign_group.pb.go b/resources/campaign_group.pb.go index 52326ab8..f72a0ad5 100644 --- a/resources/campaign_group.pb.go +++ b/resources/campaign_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/campaign_group.proto +// source: google/ads/googleads/v17/resources/campaign_group.proto package resources @@ -60,13 +60,13 @@ type CampaignGroup struct { // The status of the campaign group. // // When a new campaign group is added, the status defaults to ENABLED. - Status enums.CampaignGroupStatusEnum_CampaignGroupStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.CampaignGroupStatusEnum_CampaignGroupStatus" json:"status,omitempty"` + Status enums.CampaignGroupStatusEnum_CampaignGroupStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.CampaignGroupStatusEnum_CampaignGroupStatus" json:"status,omitempty"` } func (x *CampaignGroup) Reset() { *x = CampaignGroup{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_group_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_group_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *CampaignGroup) String() string { func (*CampaignGroup) ProtoMessage() {} func (x *CampaignGroup) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_group_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_group_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *CampaignGroup) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignGroup.ProtoReflect.Descriptor instead. func (*CampaignGroup) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_group_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_campaign_group_proto_rawDescGZIP(), []int{0} } func (x *CampaignGroup) GetResourceName() string { @@ -123,17 +123,17 @@ func (x *CampaignGroup) GetStatus() enums.CampaignGroupStatusEnum_CampaignGroupS return enums.CampaignGroupStatusEnum_CampaignGroupStatus(0) } -var File_google_ads_googleads_v16_resources_campaign_group_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_campaign_group_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_campaign_group_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_campaign_group_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, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 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, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x3a, 0x67, + 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, 0x63, 0x61, + 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, @@ -150,7 +150,7 @@ var file_google_ads_googleads_v16_resources_campaign_group_proto_rawDesc = []byt 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x63, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 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, + 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, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x74, 0x61, 0x74, @@ -163,43 +163,43 @@ var file_google_ads_googleads_v16_resources_campaign_group_proto_rawDesc = []byt 0x7b, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x69, 0x64, 0x7d, 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, 0x12, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x12, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 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_campaign_group_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_campaign_group_proto_rawDescData = file_google_ads_googleads_v16_resources_campaign_group_proto_rawDesc + file_google_ads_googleads_v17_resources_campaign_group_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_campaign_group_proto_rawDescData = file_google_ads_googleads_v17_resources_campaign_group_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_campaign_group_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_campaign_group_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_campaign_group_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_campaign_group_proto_rawDescData) +func file_google_ads_googleads_v17_resources_campaign_group_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_campaign_group_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_campaign_group_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_campaign_group_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_campaign_group_proto_rawDescData + return file_google_ads_googleads_v17_resources_campaign_group_proto_rawDescData } -var file_google_ads_googleads_v16_resources_campaign_group_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_campaign_group_proto_goTypes = []interface{}{ - (*CampaignGroup)(nil), // 0: google.ads.googleads.v16.resources.CampaignGroup - (enums.CampaignGroupStatusEnum_CampaignGroupStatus)(0), // 1: google.ads.googleads.v16.enums.CampaignGroupStatusEnum.CampaignGroupStatus +var file_google_ads_googleads_v17_resources_campaign_group_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_campaign_group_proto_goTypes = []interface{}{ + (*CampaignGroup)(nil), // 0: google.ads.googleads.v17.resources.CampaignGroup + (enums.CampaignGroupStatusEnum_CampaignGroupStatus)(0), // 1: google.ads.googleads.v17.enums.CampaignGroupStatusEnum.CampaignGroupStatus } -var file_google_ads_googleads_v16_resources_campaign_group_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CampaignGroup.status:type_name -> google.ads.googleads.v16.enums.CampaignGroupStatusEnum.CampaignGroupStatus +var file_google_ads_googleads_v17_resources_campaign_group_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CampaignGroup.status:type_name -> google.ads.googleads.v17.enums.CampaignGroupStatusEnum.CampaignGroupStatus 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 @@ -207,13 +207,13 @@ var file_google_ads_googleads_v16_resources_campaign_group_proto_depIdxs = []int 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_campaign_group_proto_init() } -func file_google_ads_googleads_v16_resources_campaign_group_proto_init() { - if File_google_ads_googleads_v16_resources_campaign_group_proto != nil { +func init() { file_google_ads_googleads_v17_resources_campaign_group_proto_init() } +func file_google_ads_googleads_v17_resources_campaign_group_proto_init() { + if File_google_ads_googleads_v17_resources_campaign_group_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_campaign_group_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_group_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignGroup); i { case 0: return &v.state @@ -230,18 +230,18 @@ func file_google_ads_googleads_v16_resources_campaign_group_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_campaign_group_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_campaign_group_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_campaign_group_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_campaign_group_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_campaign_group_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_campaign_group_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_campaign_group_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_campaign_group_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_campaign_group_proto = out.File - file_google_ads_googleads_v16_resources_campaign_group_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_campaign_group_proto_goTypes = nil - file_google_ads_googleads_v16_resources_campaign_group_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_campaign_group_proto = out.File + file_google_ads_googleads_v17_resources_campaign_group_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_campaign_group_proto_goTypes = nil + file_google_ads_googleads_v17_resources_campaign_group_proto_depIdxs = nil } diff --git a/resources/campaign_label.pb.go b/resources/campaign_label.pb.go index 0be7d6ce..56e18fe4 100644 --- a/resources/campaign_label.pb.go +++ b/resources/campaign_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/resources/campaign_label.proto +// source: google/ads/googleads/v17/resources/campaign_label.proto package resources @@ -54,7 +54,7 @@ type CampaignLabel struct { func (x *CampaignLabel) Reset() { *x = CampaignLabel{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_label_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_label_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67,7 +67,7 @@ func (x *CampaignLabel) String() string { func (*CampaignLabel) ProtoMessage() {} func (x *CampaignLabel) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_label_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_label_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80,7 +80,7 @@ func (x *CampaignLabel) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignLabel.ProtoReflect.Descriptor instead. func (*CampaignLabel) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_label_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_campaign_label_proto_rawDescGZIP(), []int{0} } func (x *CampaignLabel) GetResourceName() string { @@ -104,15 +104,15 @@ func (x *CampaignLabel) GetLabel() string { return "" } -var File_google_ads_googleads_v16_resources_campaign_label_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_campaign_label_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_campaign_label_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_campaign_label_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, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x6c, 0x61, 0x62, 0x65, 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, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x1f, 0x67, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -142,41 +142,41 @@ var file_google_ads_googleads_v16_resources_campaign_label_proto_rawDesc = []byt 0x09, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x61, 0x62, 0x65, 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, + 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_campaign_label_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_campaign_label_proto_rawDescData = file_google_ads_googleads_v16_resources_campaign_label_proto_rawDesc + file_google_ads_googleads_v17_resources_campaign_label_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_campaign_label_proto_rawDescData = file_google_ads_googleads_v17_resources_campaign_label_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_campaign_label_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_campaign_label_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_campaign_label_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_campaign_label_proto_rawDescData) +func file_google_ads_googleads_v17_resources_campaign_label_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_campaign_label_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_campaign_label_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_campaign_label_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_campaign_label_proto_rawDescData + return file_google_ads_googleads_v17_resources_campaign_label_proto_rawDescData } -var file_google_ads_googleads_v16_resources_campaign_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_campaign_label_proto_goTypes = []interface{}{ - (*CampaignLabel)(nil), // 0: google.ads.googleads.v16.resources.CampaignLabel +var file_google_ads_googleads_v17_resources_campaign_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_campaign_label_proto_goTypes = []interface{}{ + (*CampaignLabel)(nil), // 0: google.ads.googleads.v17.resources.CampaignLabel } -var file_google_ads_googleads_v16_resources_campaign_label_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_campaign_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 @@ -184,13 +184,13 @@ var file_google_ads_googleads_v16_resources_campaign_label_proto_depIdxs = []int 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_campaign_label_proto_init() } -func file_google_ads_googleads_v16_resources_campaign_label_proto_init() { - if File_google_ads_googleads_v16_resources_campaign_label_proto != nil { +func init() { file_google_ads_googleads_v17_resources_campaign_label_proto_init() } +func file_google_ads_googleads_v17_resources_campaign_label_proto_init() { + if File_google_ads_googleads_v17_resources_campaign_label_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_campaign_label_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_label_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignLabel); i { case 0: return &v.state @@ -203,23 +203,23 @@ func file_google_ads_googleads_v16_resources_campaign_label_proto_init() { } } } - file_google_ads_googleads_v16_resources_campaign_label_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_campaign_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_resources_campaign_label_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_campaign_label_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_campaign_label_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_campaign_label_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_campaign_label_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_campaign_label_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_campaign_label_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_campaign_label_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_campaign_label_proto = out.File - file_google_ads_googleads_v16_resources_campaign_label_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_campaign_label_proto_goTypes = nil - file_google_ads_googleads_v16_resources_campaign_label_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_campaign_label_proto = out.File + file_google_ads_googleads_v17_resources_campaign_label_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_campaign_label_proto_goTypes = nil + file_google_ads_googleads_v17_resources_campaign_label_proto_depIdxs = nil } diff --git a/resources/campaign_lifecycle_goal.pb.go b/resources/campaign_lifecycle_goal.pb.go index 9d802c9b..7dcb5124 100644 --- a/resources/campaign_lifecycle_goal.pb.go +++ b/resources/campaign_lifecycle_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/resources/campaign_lifecycle_goal.proto +// source: google/ads/googleads/v17/resources/campaign_lifecycle_goal.proto package resources @@ -58,7 +58,7 @@ type CampaignLifecycleGoal struct { func (x *CampaignLifecycleGoal) Reset() { *x = CampaignLifecycleGoal{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -71,7 +71,7 @@ func (x *CampaignLifecycleGoal) String() string { func (*CampaignLifecycleGoal) ProtoMessage() {} func (x *CampaignLifecycleGoal) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84,7 +84,7 @@ func (x *CampaignLifecycleGoal) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignLifecycleGoal.ProtoReflect.Descriptor instead. func (*CampaignLifecycleGoal) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto_rawDescGZIP(), []int{0} } func (x *CampaignLifecycleGoal) GetResourceName() string { @@ -115,7 +115,7 @@ type CustomerAcquisitionGoalSettings struct { unknownFields protoimpl.UnknownFields // Output only. Customer acquisition optimization mode of this campaign. - OptimizationMode enums.CustomerAcquisitionOptimizationModeEnum_CustomerAcquisitionOptimizationMode `protobuf:"varint,1,opt,name=optimization_mode,json=optimizationMode,proto3,enum=google.ads.googleads.v16.enums.CustomerAcquisitionOptimizationModeEnum_CustomerAcquisitionOptimizationMode" json:"optimization_mode,omitempty"` + OptimizationMode enums.CustomerAcquisitionOptimizationModeEnum_CustomerAcquisitionOptimizationMode `protobuf:"varint,1,opt,name=optimization_mode,json=optimizationMode,proto3,enum=google.ads.googleads.v17.enums.CustomerAcquisitionOptimizationModeEnum_CustomerAcquisitionOptimizationMode" json:"optimization_mode,omitempty"` // Output only. Campaign specific values for the customer acquisition goal. ValueSettings *common.LifecycleGoalValueSettings `protobuf:"bytes,2,opt,name=value_settings,json=valueSettings,proto3" json:"value_settings,omitempty"` } @@ -123,7 +123,7 @@ type CustomerAcquisitionGoalSettings struct { func (x *CustomerAcquisitionGoalSettings) Reset() { *x = CustomerAcquisitionGoalSettings{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -136,7 +136,7 @@ func (x *CustomerAcquisitionGoalSettings) String() string { func (*CustomerAcquisitionGoalSettings) ProtoMessage() {} func (x *CustomerAcquisitionGoalSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -149,7 +149,7 @@ func (x *CustomerAcquisitionGoalSettings) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerAcquisitionGoalSettings.ProtoReflect.Descriptor instead. func (*CustomerAcquisitionGoalSettings) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto_rawDescGZIP(), []int{1} } func (x *CustomerAcquisitionGoalSettings) GetOptimizationMode() enums.CustomerAcquisitionOptimizationModeEnum_CustomerAcquisitionOptimizationMode { @@ -166,21 +166,21 @@ func (x *CustomerAcquisitionGoalSettings) GetValueSettings() *common.LifecycleGo return nil } -var File_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_campaign_lifecycle_goal_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, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x5f, 0x67, 0x6f, 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, 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, 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, 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, 0x63, 0x75, + 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, @@ -203,7 +203,7 @@ var file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_rawDes 0x72, 0x5f, 0x61, 0x63, 0x71, 0x75, 0x69, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 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, 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, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x63, 0x71, 0x75, 0x69, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x1f, 0x63, 0x75, 0x73, @@ -221,7 +221,7 @@ var file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_rawDes 0x6e, 0x67, 0x73, 0x12, 0x9d, 0x01, 0x0a, 0x11, 0x6f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x18, 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, + 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, 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, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, @@ -231,53 +231,53 @@ var file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_rawDes 0x6f, 0x64, 0x65, 0x12, 0x67, 0x0a, 0x0e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 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, 0x4c, 0x69, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0d, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x1a, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 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, + 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_campaign_lifecycle_goal_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_rawDescData = file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_rawDesc + file_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto_rawDescData = file_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_rawDescData) +func file_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_rawDescData + return file_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto_rawDescData } -var file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_goTypes = []interface{}{ - (*CampaignLifecycleGoal)(nil), // 0: google.ads.googleads.v16.resources.CampaignLifecycleGoal - (*CustomerAcquisitionGoalSettings)(nil), // 1: google.ads.googleads.v16.resources.CustomerAcquisitionGoalSettings - (enums.CustomerAcquisitionOptimizationModeEnum_CustomerAcquisitionOptimizationMode)(0), // 2: google.ads.googleads.v16.enums.CustomerAcquisitionOptimizationModeEnum.CustomerAcquisitionOptimizationMode - (*common.LifecycleGoalValueSettings)(nil), // 3: google.ads.googleads.v16.common.LifecycleGoalValueSettings +var file_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto_goTypes = []interface{}{ + (*CampaignLifecycleGoal)(nil), // 0: google.ads.googleads.v17.resources.CampaignLifecycleGoal + (*CustomerAcquisitionGoalSettings)(nil), // 1: google.ads.googleads.v17.resources.CustomerAcquisitionGoalSettings + (enums.CustomerAcquisitionOptimizationModeEnum_CustomerAcquisitionOptimizationMode)(0), // 2: google.ads.googleads.v17.enums.CustomerAcquisitionOptimizationModeEnum.CustomerAcquisitionOptimizationMode + (*common.LifecycleGoalValueSettings)(nil), // 3: google.ads.googleads.v17.common.LifecycleGoalValueSettings } -var file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CampaignLifecycleGoal.customer_acquisition_goal_settings:type_name -> google.ads.googleads.v16.resources.CustomerAcquisitionGoalSettings - 2, // 1: google.ads.googleads.v16.resources.CustomerAcquisitionGoalSettings.optimization_mode:type_name -> google.ads.googleads.v16.enums.CustomerAcquisitionOptimizationModeEnum.CustomerAcquisitionOptimizationMode - 3, // 2: google.ads.googleads.v16.resources.CustomerAcquisitionGoalSettings.value_settings:type_name -> google.ads.googleads.v16.common.LifecycleGoalValueSettings +var file_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CampaignLifecycleGoal.customer_acquisition_goal_settings:type_name -> google.ads.googleads.v17.resources.CustomerAcquisitionGoalSettings + 2, // 1: google.ads.googleads.v17.resources.CustomerAcquisitionGoalSettings.optimization_mode:type_name -> google.ads.googleads.v17.enums.CustomerAcquisitionOptimizationModeEnum.CustomerAcquisitionOptimizationMode + 3, // 2: google.ads.googleads.v17.resources.CustomerAcquisitionGoalSettings.value_settings:type_name -> google.ads.googleads.v17.common.LifecycleGoalValueSettings 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 @@ -285,13 +285,13 @@ var file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_depIdx 0, // [0:3] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_init() } -func file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_init() { - if File_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto != nil { +func init() { file_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto_init() } +func file_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto_init() { + if File_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignLifecycleGoal); i { case 0: return &v.state @@ -303,7 +303,7 @@ func file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_init( return nil } } - file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerAcquisitionGoalSettings); i { case 0: return &v.state @@ -320,18 +320,18 @@ func file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_init( out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto_rawDesc, NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto = out.File - file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_goTypes = nil - file_google_ads_googleads_v16_resources_campaign_lifecycle_goal_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto = out.File + file_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto_goTypes = nil + file_google_ads_googleads_v17_resources_campaign_lifecycle_goal_proto_depIdxs = nil } diff --git a/resources/campaign_search_term_insight.pb.go b/resources/campaign_search_term_insight.pb.go index 90c3c9c3..b0deaff5 100644 --- a/resources/campaign_search_term_insight.pb.go +++ b/resources/campaign_search_term_insight.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/campaign_search_term_insight.proto +// source: google/ads/googleads/v17/resources/campaign_search_term_insight.proto package resources @@ -59,7 +59,7 @@ type CampaignSearchTermInsight struct { func (x *CampaignSearchTermInsight) Reset() { *x = CampaignSearchTermInsight{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_search_term_insight_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_search_term_insight_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -72,7 +72,7 @@ func (x *CampaignSearchTermInsight) String() string { func (*CampaignSearchTermInsight) ProtoMessage() {} func (x *CampaignSearchTermInsight) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_search_term_insight_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_search_term_insight_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85,7 +85,7 @@ func (x *CampaignSearchTermInsight) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignSearchTermInsight.ProtoReflect.Descriptor instead. func (*CampaignSearchTermInsight) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_search_term_insight_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_campaign_search_term_insight_proto_rawDescGZIP(), []int{0} } func (x *CampaignSearchTermInsight) GetResourceName() string { @@ -116,16 +116,16 @@ func (x *CampaignSearchTermInsight) GetCampaignId() int64 { return 0 } -var File_google_ads_googleads_v16_resources_campaign_search_term_insight_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_campaign_search_term_insight_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_campaign_search_term_insight_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_campaign_search_term_insight_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, 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, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 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, 0x1f, 0x67, 0x6f, 0x6f, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -158,41 +158,41 @@ var file_google_ads_googleads_v16_resources_campaign_search_term_insight_proto_r 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x69, 0x64, 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, 0x73, 0x42, 0x1e, 0x43, 0x61, 0x6d, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x1e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 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, 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_campaign_search_term_insight_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_campaign_search_term_insight_proto_rawDescData = file_google_ads_googleads_v16_resources_campaign_search_term_insight_proto_rawDesc + file_google_ads_googleads_v17_resources_campaign_search_term_insight_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_campaign_search_term_insight_proto_rawDescData = file_google_ads_googleads_v17_resources_campaign_search_term_insight_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_campaign_search_term_insight_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_campaign_search_term_insight_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_campaign_search_term_insight_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_campaign_search_term_insight_proto_rawDescData) +func file_google_ads_googleads_v17_resources_campaign_search_term_insight_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_campaign_search_term_insight_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_campaign_search_term_insight_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_campaign_search_term_insight_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_campaign_search_term_insight_proto_rawDescData + return file_google_ads_googleads_v17_resources_campaign_search_term_insight_proto_rawDescData } -var file_google_ads_googleads_v16_resources_campaign_search_term_insight_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_campaign_search_term_insight_proto_goTypes = []interface{}{ - (*CampaignSearchTermInsight)(nil), // 0: google.ads.googleads.v16.resources.CampaignSearchTermInsight +var file_google_ads_googleads_v17_resources_campaign_search_term_insight_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_campaign_search_term_insight_proto_goTypes = []interface{}{ + (*CampaignSearchTermInsight)(nil), // 0: google.ads.googleads.v17.resources.CampaignSearchTermInsight } -var file_google_ads_googleads_v16_resources_campaign_search_term_insight_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_campaign_search_term_insight_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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_resources_campaign_search_term_insight_proto_d 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_campaign_search_term_insight_proto_init() } -func file_google_ads_googleads_v16_resources_campaign_search_term_insight_proto_init() { - if File_google_ads_googleads_v16_resources_campaign_search_term_insight_proto != nil { +func init() { file_google_ads_googleads_v17_resources_campaign_search_term_insight_proto_init() } +func file_google_ads_googleads_v17_resources_campaign_search_term_insight_proto_init() { + if File_google_ads_googleads_v17_resources_campaign_search_term_insight_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_campaign_search_term_insight_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_search_term_insight_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignSearchTermInsight); i { case 0: return &v.state @@ -219,23 +219,23 @@ func file_google_ads_googleads_v16_resources_campaign_search_term_insight_proto_ } } } - file_google_ads_googleads_v16_resources_campaign_search_term_insight_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_campaign_search_term_insight_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_campaign_search_term_insight_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_campaign_search_term_insight_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_campaign_search_term_insight_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_campaign_search_term_insight_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_campaign_search_term_insight_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_campaign_search_term_insight_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_campaign_search_term_insight_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_campaign_search_term_insight_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_campaign_search_term_insight_proto = out.File - file_google_ads_googleads_v16_resources_campaign_search_term_insight_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_campaign_search_term_insight_proto_goTypes = nil - file_google_ads_googleads_v16_resources_campaign_search_term_insight_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_campaign_search_term_insight_proto = out.File + file_google_ads_googleads_v17_resources_campaign_search_term_insight_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_campaign_search_term_insight_proto_goTypes = nil + file_google_ads_googleads_v17_resources_campaign_search_term_insight_proto_depIdxs = nil } diff --git a/resources/campaign_shared_set.pb.go b/resources/campaign_shared_set.pb.go index dea5b7ae..07159fd6 100644 --- a/resources/campaign_shared_set.pb.go +++ b/resources/campaign_shared_set.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/campaign_shared_set.proto +// source: google/ads/googleads/v17/resources/campaign_shared_set.proto package resources @@ -58,13 +58,13 @@ type CampaignSharedSet struct { // be associated with Display mobile app campaigns. SharedSet *string `protobuf:"bytes,6,opt,name=shared_set,json=sharedSet,proto3,oneof" json:"shared_set,omitempty"` // Output only. The status of this campaign shared set. Read only. - Status enums.CampaignSharedSetStatusEnum_CampaignSharedSetStatus `protobuf:"varint,2,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.CampaignSharedSetStatusEnum_CampaignSharedSetStatus" json:"status,omitempty"` + Status enums.CampaignSharedSetStatusEnum_CampaignSharedSetStatus `protobuf:"varint,2,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.CampaignSharedSetStatusEnum_CampaignSharedSetStatus" json:"status,omitempty"` } func (x *CampaignSharedSet) Reset() { *x = CampaignSharedSet{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_shared_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_shared_set_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *CampaignSharedSet) String() string { func (*CampaignSharedSet) ProtoMessage() {} func (x *CampaignSharedSet) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_shared_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_shared_set_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *CampaignSharedSet) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignSharedSet.ProtoReflect.Descriptor instead. func (*CampaignSharedSet) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_shared_set_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_campaign_shared_set_proto_rawDescGZIP(), []int{0} } func (x *CampaignSharedSet) GetResourceName() string { @@ -121,17 +121,17 @@ func (x *CampaignSharedSet) GetStatus() enums.CampaignSharedSetStatusEnum_Campai return enums.CampaignSharedSetStatusEnum_CampaignSharedSetStatus(0) } -var File_google_ads_googleads_v16_resources_campaign_shared_set_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_campaign_shared_set_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_campaign_shared_set_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_campaign_shared_set_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, 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, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 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, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, @@ -157,7 +157,7 @@ var file_google_ads_googleads_v16_resources_campaign_shared_set_proto_rawDesc = 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x88, 0x01, 0x01, 0x12, 0x70, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 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, 0x43, 0x61, 0x6d, 0x70, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, @@ -173,43 +173,43 @@ var file_google_ads_googleads_v16_resources_campaign_shared_set_proto_rawDesc = 0x61, 0x69, 0x67, 0x6e, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, 0x42, 0x88, 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, 0x16, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x16, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 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, 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_campaign_shared_set_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_campaign_shared_set_proto_rawDescData = file_google_ads_googleads_v16_resources_campaign_shared_set_proto_rawDesc + file_google_ads_googleads_v17_resources_campaign_shared_set_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_campaign_shared_set_proto_rawDescData = file_google_ads_googleads_v17_resources_campaign_shared_set_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_campaign_shared_set_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_campaign_shared_set_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_campaign_shared_set_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_campaign_shared_set_proto_rawDescData) +func file_google_ads_googleads_v17_resources_campaign_shared_set_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_campaign_shared_set_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_campaign_shared_set_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_campaign_shared_set_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_campaign_shared_set_proto_rawDescData + return file_google_ads_googleads_v17_resources_campaign_shared_set_proto_rawDescData } -var file_google_ads_googleads_v16_resources_campaign_shared_set_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_campaign_shared_set_proto_goTypes = []interface{}{ - (*CampaignSharedSet)(nil), // 0: google.ads.googleads.v16.resources.CampaignSharedSet - (enums.CampaignSharedSetStatusEnum_CampaignSharedSetStatus)(0), // 1: google.ads.googleads.v16.enums.CampaignSharedSetStatusEnum.CampaignSharedSetStatus +var file_google_ads_googleads_v17_resources_campaign_shared_set_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_campaign_shared_set_proto_goTypes = []interface{}{ + (*CampaignSharedSet)(nil), // 0: google.ads.googleads.v17.resources.CampaignSharedSet + (enums.CampaignSharedSetStatusEnum_CampaignSharedSetStatus)(0), // 1: google.ads.googleads.v17.enums.CampaignSharedSetStatusEnum.CampaignSharedSetStatus } -var file_google_ads_googleads_v16_resources_campaign_shared_set_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CampaignSharedSet.status:type_name -> google.ads.googleads.v16.enums.CampaignSharedSetStatusEnum.CampaignSharedSetStatus +var file_google_ads_googleads_v17_resources_campaign_shared_set_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CampaignSharedSet.status:type_name -> google.ads.googleads.v17.enums.CampaignSharedSetStatusEnum.CampaignSharedSetStatus 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 @@ -217,13 +217,13 @@ var file_google_ads_googleads_v16_resources_campaign_shared_set_proto_depIdxs = 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_campaign_shared_set_proto_init() } -func file_google_ads_googleads_v16_resources_campaign_shared_set_proto_init() { - if File_google_ads_googleads_v16_resources_campaign_shared_set_proto != nil { +func init() { file_google_ads_googleads_v17_resources_campaign_shared_set_proto_init() } +func file_google_ads_googleads_v17_resources_campaign_shared_set_proto_init() { + if File_google_ads_googleads_v17_resources_campaign_shared_set_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_campaign_shared_set_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_shared_set_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignSharedSet); i { case 0: return &v.state @@ -236,23 +236,23 @@ func file_google_ads_googleads_v16_resources_campaign_shared_set_proto_init() { } } } - file_google_ads_googleads_v16_resources_campaign_shared_set_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_campaign_shared_set_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_campaign_shared_set_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_campaign_shared_set_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_campaign_shared_set_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_campaign_shared_set_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_campaign_shared_set_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_campaign_shared_set_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_campaign_shared_set_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_campaign_shared_set_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_campaign_shared_set_proto = out.File - file_google_ads_googleads_v16_resources_campaign_shared_set_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_campaign_shared_set_proto_goTypes = nil - file_google_ads_googleads_v16_resources_campaign_shared_set_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_campaign_shared_set_proto = out.File + file_google_ads_googleads_v17_resources_campaign_shared_set_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_campaign_shared_set_proto_goTypes = nil + file_google_ads_googleads_v17_resources_campaign_shared_set_proto_depIdxs = nil } diff --git a/resources/campaign_simulation.pb.go b/resources/campaign_simulation.pb.go index 091a7b2e..d992ceec 100644 --- a/resources/campaign_simulation.pb.go +++ b/resources/campaign_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/resources/campaign_simulation.proto +// source: google/ads/googleads/v17/resources/campaign_simulation.proto package resources @@ -70,9 +70,9 @@ type CampaignSimulation struct { // Output only. Campaign id of the simulation. CampaignId int64 `protobuf:"varint,2,opt,name=campaign_id,json=campaignId,proto3" json:"campaign_id,omitempty"` // Output only. The field that the simulation modifies. - Type enums.SimulationTypeEnum_SimulationType `protobuf:"varint,3,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.SimulationTypeEnum_SimulationType" json:"type,omitempty"` + Type enums.SimulationTypeEnum_SimulationType `protobuf:"varint,3,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.SimulationTypeEnum_SimulationType" json:"type,omitempty"` // Output only. How the simulation modifies the field. - ModificationMethod enums.SimulationModificationMethodEnum_SimulationModificationMethod `protobuf:"varint,4,opt,name=modification_method,json=modificationMethod,proto3,enum=google.ads.googleads.v16.enums.SimulationModificationMethodEnum_SimulationModificationMethod" json:"modification_method,omitempty"` + ModificationMethod enums.SimulationModificationMethodEnum_SimulationModificationMethod `protobuf:"varint,4,opt,name=modification_method,json=modificationMethod,proto3,enum=google.ads.googleads.v17.enums.SimulationModificationMethodEnum_SimulationModificationMethod" json:"modification_method,omitempty"` // Output only. First day on which the simulation is based, in YYYY-MM-DD // format. StartDate string `protobuf:"bytes,5,opt,name=start_date,json=startDate,proto3" json:"start_date,omitempty"` @@ -94,7 +94,7 @@ type CampaignSimulation struct { func (x *CampaignSimulation) Reset() { *x = CampaignSimulation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_campaign_simulation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_simulation_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -107,7 +107,7 @@ func (x *CampaignSimulation) String() string { func (*CampaignSimulation) ProtoMessage() {} func (x *CampaignSimulation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_campaign_simulation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_campaign_simulation_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -120,7 +120,7 @@ func (x *CampaignSimulation) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignSimulation.ProtoReflect.Descriptor instead. func (*CampaignSimulation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_campaign_simulation_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_campaign_simulation_proto_rawDescGZIP(), []int{0} } func (x *CampaignSimulation) GetResourceName() string { @@ -247,25 +247,25 @@ func (*CampaignSimulation_TargetImpressionSharePointList) isCampaignSimulation_P func (*CampaignSimulation_BudgetPointList) isCampaignSimulation_PointList() {} -var File_google_ads_googleads_v16_resources_campaign_simulation_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_campaign_simulation_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_campaign_simulation_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_campaign_simulation_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, 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, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 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, + 0x6f, 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, 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, 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, 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, 0x73, 0x69, 0x6d, 0x75, 0x6c, 0x61, + 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, 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, @@ -282,14 +282,14 @@ var file_google_ads_googleads_v16_resources_campaign_simulation_proto_rawDesc = 0x03, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0a, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x49, 0x64, 0x12, 0x5a, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 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, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x93, 0x01, 0x0a, 0x13, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x04, 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, 0x69, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x63, @@ -302,7 +302,7 @@ var file_google_ads_googleads_v16_resources_campaign_simulation_proto_rawDesc = 0x07, 0x65, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x65, 0x12, 0x6e, 0x0a, 0x12, 0x63, 0x70, 0x63, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x07, 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, + 0x73, 0x2e, 0x67, 0x6f, 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, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x0f, 0x63, 0x70, 0x63, 0x42, 0x69, 0x64, 0x50, @@ -310,14 +310,14 @@ var file_google_ads_googleads_v16_resources_campaign_simulation_proto_rawDesc = 0x65, 0x74, 0x5f, 0x63, 0x70, 0x61, 0x5f, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x08, 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, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, + 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, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x12, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x61, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x7a, 0x0a, 0x16, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x6f, 0x61, 0x73, 0x5f, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x73, 0x74, 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, 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, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x13, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, @@ -326,7 +326,7 @@ var file_google_ads_googleads_v16_resources_campaign_simulation_proto_rawDesc = 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x5f, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x0a, 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, 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, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x1e, 0x74, 0x61, @@ -335,7 +335,7 @@ var file_google_ads_googleads_v16_resources_campaign_simulation_proto_rawDesc = 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x0b, 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, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, + 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, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x0f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x3a, 0xa1, 0x01, 0xea, 0x41, @@ -351,56 +351,56 @@ var file_google_ads_googleads_v16_resources_campaign_simulation_proto_rawDesc = 0x61, 0x74, 0x65, 0x7d, 0x7e, 0x7b, 0x65, 0x6e, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x7d, 0x42, 0x0c, 0x0a, 0x0a, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x42, 0x89, 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, + 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, 0x17, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 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, 0x6f, + 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, + 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_campaign_simulation_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_campaign_simulation_proto_rawDescData = file_google_ads_googleads_v16_resources_campaign_simulation_proto_rawDesc + file_google_ads_googleads_v17_resources_campaign_simulation_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_campaign_simulation_proto_rawDescData = file_google_ads_googleads_v17_resources_campaign_simulation_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_campaign_simulation_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_campaign_simulation_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_campaign_simulation_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_campaign_simulation_proto_rawDescData) +func file_google_ads_googleads_v17_resources_campaign_simulation_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_campaign_simulation_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_campaign_simulation_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_campaign_simulation_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_campaign_simulation_proto_rawDescData + return file_google_ads_googleads_v17_resources_campaign_simulation_proto_rawDescData } -var file_google_ads_googleads_v16_resources_campaign_simulation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_campaign_simulation_proto_goTypes = []interface{}{ - (*CampaignSimulation)(nil), // 0: google.ads.googleads.v16.resources.CampaignSimulation - (enums.SimulationTypeEnum_SimulationType)(0), // 1: google.ads.googleads.v16.enums.SimulationTypeEnum.SimulationType - (enums.SimulationModificationMethodEnum_SimulationModificationMethod)(0), // 2: google.ads.googleads.v16.enums.SimulationModificationMethodEnum.SimulationModificationMethod - (*common.CpcBidSimulationPointList)(nil), // 3: google.ads.googleads.v16.common.CpcBidSimulationPointList - (*common.TargetCpaSimulationPointList)(nil), // 4: google.ads.googleads.v16.common.TargetCpaSimulationPointList - (*common.TargetRoasSimulationPointList)(nil), // 5: google.ads.googleads.v16.common.TargetRoasSimulationPointList - (*common.TargetImpressionShareSimulationPointList)(nil), // 6: google.ads.googleads.v16.common.TargetImpressionShareSimulationPointList - (*common.BudgetSimulationPointList)(nil), // 7: google.ads.googleads.v16.common.BudgetSimulationPointList +var file_google_ads_googleads_v17_resources_campaign_simulation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_campaign_simulation_proto_goTypes = []interface{}{ + (*CampaignSimulation)(nil), // 0: google.ads.googleads.v17.resources.CampaignSimulation + (enums.SimulationTypeEnum_SimulationType)(0), // 1: google.ads.googleads.v17.enums.SimulationTypeEnum.SimulationType + (enums.SimulationModificationMethodEnum_SimulationModificationMethod)(0), // 2: google.ads.googleads.v17.enums.SimulationModificationMethodEnum.SimulationModificationMethod + (*common.CpcBidSimulationPointList)(nil), // 3: google.ads.googleads.v17.common.CpcBidSimulationPointList + (*common.TargetCpaSimulationPointList)(nil), // 4: google.ads.googleads.v17.common.TargetCpaSimulationPointList + (*common.TargetRoasSimulationPointList)(nil), // 5: google.ads.googleads.v17.common.TargetRoasSimulationPointList + (*common.TargetImpressionShareSimulationPointList)(nil), // 6: google.ads.googleads.v17.common.TargetImpressionShareSimulationPointList + (*common.BudgetSimulationPointList)(nil), // 7: google.ads.googleads.v17.common.BudgetSimulationPointList } -var file_google_ads_googleads_v16_resources_campaign_simulation_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CampaignSimulation.type:type_name -> google.ads.googleads.v16.enums.SimulationTypeEnum.SimulationType - 2, // 1: google.ads.googleads.v16.resources.CampaignSimulation.modification_method:type_name -> google.ads.googleads.v16.enums.SimulationModificationMethodEnum.SimulationModificationMethod - 3, // 2: google.ads.googleads.v16.resources.CampaignSimulation.cpc_bid_point_list:type_name -> google.ads.googleads.v16.common.CpcBidSimulationPointList - 4, // 3: google.ads.googleads.v16.resources.CampaignSimulation.target_cpa_point_list:type_name -> google.ads.googleads.v16.common.TargetCpaSimulationPointList - 5, // 4: google.ads.googleads.v16.resources.CampaignSimulation.target_roas_point_list:type_name -> google.ads.googleads.v16.common.TargetRoasSimulationPointList - 6, // 5: google.ads.googleads.v16.resources.CampaignSimulation.target_impression_share_point_list:type_name -> google.ads.googleads.v16.common.TargetImpressionShareSimulationPointList - 7, // 6: google.ads.googleads.v16.resources.CampaignSimulation.budget_point_list:type_name -> google.ads.googleads.v16.common.BudgetSimulationPointList +var file_google_ads_googleads_v17_resources_campaign_simulation_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CampaignSimulation.type:type_name -> google.ads.googleads.v17.enums.SimulationTypeEnum.SimulationType + 2, // 1: google.ads.googleads.v17.resources.CampaignSimulation.modification_method:type_name -> google.ads.googleads.v17.enums.SimulationModificationMethodEnum.SimulationModificationMethod + 3, // 2: google.ads.googleads.v17.resources.CampaignSimulation.cpc_bid_point_list:type_name -> google.ads.googleads.v17.common.CpcBidSimulationPointList + 4, // 3: google.ads.googleads.v17.resources.CampaignSimulation.target_cpa_point_list:type_name -> google.ads.googleads.v17.common.TargetCpaSimulationPointList + 5, // 4: google.ads.googleads.v17.resources.CampaignSimulation.target_roas_point_list:type_name -> google.ads.googleads.v17.common.TargetRoasSimulationPointList + 6, // 5: google.ads.googleads.v17.resources.CampaignSimulation.target_impression_share_point_list:type_name -> google.ads.googleads.v17.common.TargetImpressionShareSimulationPointList + 7, // 6: google.ads.googleads.v17.resources.CampaignSimulation.budget_point_list:type_name -> google.ads.googleads.v17.common.BudgetSimulationPointList 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 @@ -408,13 +408,13 @@ var file_google_ads_googleads_v16_resources_campaign_simulation_proto_depIdxs = 0, // [0:7] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_campaign_simulation_proto_init() } -func file_google_ads_googleads_v16_resources_campaign_simulation_proto_init() { - if File_google_ads_googleads_v16_resources_campaign_simulation_proto != nil { +func init() { file_google_ads_googleads_v17_resources_campaign_simulation_proto_init() } +func file_google_ads_googleads_v17_resources_campaign_simulation_proto_init() { + if File_google_ads_googleads_v17_resources_campaign_simulation_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_campaign_simulation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_campaign_simulation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignSimulation); i { case 0: return &v.state @@ -427,7 +427,7 @@ func file_google_ads_googleads_v16_resources_campaign_simulation_proto_init() { } } } - file_google_ads_googleads_v16_resources_campaign_simulation_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_campaign_simulation_proto_msgTypes[0].OneofWrappers = []interface{}{ (*CampaignSimulation_CpcBidPointList)(nil), (*CampaignSimulation_TargetCpaPointList)(nil), (*CampaignSimulation_TargetRoasPointList)(nil), @@ -438,18 +438,18 @@ func file_google_ads_googleads_v16_resources_campaign_simulation_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_campaign_simulation_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_campaign_simulation_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_campaign_simulation_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_campaign_simulation_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_campaign_simulation_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_campaign_simulation_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_campaign_simulation_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_campaign_simulation_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_campaign_simulation_proto = out.File - file_google_ads_googleads_v16_resources_campaign_simulation_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_campaign_simulation_proto_goTypes = nil - file_google_ads_googleads_v16_resources_campaign_simulation_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_campaign_simulation_proto = out.File + file_google_ads_googleads_v17_resources_campaign_simulation_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_campaign_simulation_proto_goTypes = nil + file_google_ads_googleads_v17_resources_campaign_simulation_proto_depIdxs = nil } diff --git a/resources/carrier_constant.pb.go b/resources/carrier_constant.pb.go index 5cd619fe..7a47b6dc 100644 --- a/resources/carrier_constant.pb.go +++ b/resources/carrier_constant.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/carrier_constant.proto +// source: google/ads/googleads/v17/resources/carrier_constant.proto package resources @@ -58,7 +58,7 @@ type CarrierConstant struct { func (x *CarrierConstant) Reset() { *x = CarrierConstant{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_carrier_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_carrier_constant_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -71,7 +71,7 @@ func (x *CarrierConstant) String() string { func (*CarrierConstant) ProtoMessage() {} func (x *CarrierConstant) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_carrier_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_carrier_constant_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84,7 +84,7 @@ func (x *CarrierConstant) ProtoReflect() protoreflect.Message { // Deprecated: Use CarrierConstant.ProtoReflect.Descriptor instead. func (*CarrierConstant) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_carrier_constant_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_carrier_constant_proto_rawDescGZIP(), []int{0} } func (x *CarrierConstant) GetResourceName() string { @@ -115,15 +115,15 @@ func (x *CarrierConstant) GetCountryCode() string { return "" } -var File_google_ads_googleads_v16_resources_carrier_constant_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_carrier_constant_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_carrier_constant_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_carrier_constant_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, 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, 0x63, 0x61, 0x72, 0x72, 0x69, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 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, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -149,41 +149,41 @@ var file_google_ads_googleads_v16_resources_carrier_constant_proto_rawDesc = []b 0x69, 0x64, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x42, 0x86, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x14, 0x43, 0x61, 0x72, 0x72, 0x69, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 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, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 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, + 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, 0x26, 0x47, + 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, + 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_carrier_constant_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_carrier_constant_proto_rawDescData = file_google_ads_googleads_v16_resources_carrier_constant_proto_rawDesc + file_google_ads_googleads_v17_resources_carrier_constant_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_carrier_constant_proto_rawDescData = file_google_ads_googleads_v17_resources_carrier_constant_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_carrier_constant_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_carrier_constant_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_carrier_constant_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_carrier_constant_proto_rawDescData) +func file_google_ads_googleads_v17_resources_carrier_constant_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_carrier_constant_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_carrier_constant_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_carrier_constant_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_carrier_constant_proto_rawDescData + return file_google_ads_googleads_v17_resources_carrier_constant_proto_rawDescData } -var file_google_ads_googleads_v16_resources_carrier_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_carrier_constant_proto_goTypes = []interface{}{ - (*CarrierConstant)(nil), // 0: google.ads.googleads.v16.resources.CarrierConstant +var file_google_ads_googleads_v17_resources_carrier_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_carrier_constant_proto_goTypes = []interface{}{ + (*CarrierConstant)(nil), // 0: google.ads.googleads.v17.resources.CarrierConstant } -var file_google_ads_googleads_v16_resources_carrier_constant_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_carrier_constant_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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_resources_carrier_constant_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_carrier_constant_proto_init() } -func file_google_ads_googleads_v16_resources_carrier_constant_proto_init() { - if File_google_ads_googleads_v16_resources_carrier_constant_proto != nil { +func init() { file_google_ads_googleads_v17_resources_carrier_constant_proto_init() } +func file_google_ads_googleads_v17_resources_carrier_constant_proto_init() { + if File_google_ads_googleads_v17_resources_carrier_constant_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_carrier_constant_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_carrier_constant_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CarrierConstant); i { case 0: return &v.state @@ -210,23 +210,23 @@ func file_google_ads_googleads_v16_resources_carrier_constant_proto_init() { } } } - file_google_ads_googleads_v16_resources_carrier_constant_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_carrier_constant_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_carrier_constant_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_carrier_constant_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_carrier_constant_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_carrier_constant_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_carrier_constant_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_carrier_constant_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_carrier_constant_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_carrier_constant_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_carrier_constant_proto = out.File - file_google_ads_googleads_v16_resources_carrier_constant_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_carrier_constant_proto_goTypes = nil - file_google_ads_googleads_v16_resources_carrier_constant_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_carrier_constant_proto = out.File + file_google_ads_googleads_v17_resources_carrier_constant_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_carrier_constant_proto_goTypes = nil + file_google_ads_googleads_v17_resources_carrier_constant_proto_depIdxs = nil } diff --git a/resources/change_event.pb.go b/resources/change_event.pb.go index 94a09fa2..8b655eb9 100644 --- a/resources/change_event.pb.go +++ b/resources/change_event.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/change_event.proto +// source: google/ads/googleads/v17/resources/change_event.proto package resources @@ -55,11 +55,11 @@ type ChangeEvent struct { ChangeDateTime string `protobuf:"bytes,2,opt,name=change_date_time,json=changeDateTime,proto3" json:"change_date_time,omitempty"` // Output only. The type of the changed resource. This dictates what resource // will be set in old_resource and new_resource. - ChangeResourceType enums.ChangeEventResourceTypeEnum_ChangeEventResourceType `protobuf:"varint,3,opt,name=change_resource_type,json=changeResourceType,proto3,enum=google.ads.googleads.v16.enums.ChangeEventResourceTypeEnum_ChangeEventResourceType" json:"change_resource_type,omitempty"` + ChangeResourceType enums.ChangeEventResourceTypeEnum_ChangeEventResourceType `protobuf:"varint,3,opt,name=change_resource_type,json=changeResourceType,proto3,enum=google.ads.googleads.v17.enums.ChangeEventResourceTypeEnum_ChangeEventResourceType" json:"change_resource_type,omitempty"` // Output only. The Simply resource this change occurred on. ChangeResourceName string `protobuf:"bytes,4,opt,name=change_resource_name,json=changeResourceName,proto3" json:"change_resource_name,omitempty"` // Output only. Where the change was made through. - ClientType enums.ChangeClientTypeEnum_ChangeClientType `protobuf:"varint,5,opt,name=client_type,json=clientType,proto3,enum=google.ads.googleads.v16.enums.ChangeClientTypeEnum_ChangeClientType" json:"client_type,omitempty"` + ClientType enums.ChangeClientTypeEnum_ChangeClientType `protobuf:"varint,5,opt,name=client_type,json=clientType,proto3,enum=google.ads.googleads.v17.enums.ChangeClientTypeEnum_ChangeClientType" json:"client_type,omitempty"` // Output only. The email of the user who made this change. UserEmail string `protobuf:"bytes,6,opt,name=user_email,json=userEmail,proto3" json:"user_email,omitempty"` // Output only. The old resource before the change. Only changed fields will @@ -69,7 +69,7 @@ type ChangeEvent struct { // populated. NewResource *ChangeEvent_ChangedResource `protobuf:"bytes,8,opt,name=new_resource,json=newResource,proto3" json:"new_resource,omitempty"` // Output only. The operation on the changed resource. - ResourceChangeOperation enums.ResourceChangeOperationEnum_ResourceChangeOperation `protobuf:"varint,9,opt,name=resource_change_operation,json=resourceChangeOperation,proto3,enum=google.ads.googleads.v16.enums.ResourceChangeOperationEnum_ResourceChangeOperation" json:"resource_change_operation,omitempty"` + ResourceChangeOperation enums.ResourceChangeOperationEnum_ResourceChangeOperation `protobuf:"varint,9,opt,name=resource_change_operation,json=resourceChangeOperation,proto3,enum=google.ads.googleads.v17.enums.ResourceChangeOperationEnum_ResourceChangeOperation" json:"resource_change_operation,omitempty"` // Output only. A list of fields that are changed in the returned resource. ChangedFields *fieldmaskpb.FieldMask `protobuf:"bytes,10,opt,name=changed_fields,json=changedFields,proto3" json:"changed_fields,omitempty"` // Output only. The Campaign affected by this change. @@ -87,7 +87,7 @@ type ChangeEvent struct { func (x *ChangeEvent) Reset() { *x = ChangeEvent{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_change_event_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_change_event_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -100,7 +100,7 @@ func (x *ChangeEvent) String() string { func (*ChangeEvent) ProtoMessage() {} func (x *ChangeEvent) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_change_event_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_change_event_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -113,7 +113,7 @@ func (x *ChangeEvent) ProtoReflect() protoreflect.Message { // Deprecated: Use ChangeEvent.ProtoReflect.Descriptor instead. func (*ChangeEvent) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_change_event_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_change_event_proto_rawDescGZIP(), []int{0} } func (x *ChangeEvent) GetResourceName() string { @@ -271,7 +271,7 @@ type ChangeEvent_ChangedResource struct { func (x *ChangeEvent_ChangedResource) Reset() { *x = ChangeEvent_ChangedResource{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_change_event_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_change_event_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -284,7 +284,7 @@ func (x *ChangeEvent_ChangedResource) String() string { func (*ChangeEvent_ChangedResource) ProtoMessage() {} func (x *ChangeEvent_ChangedResource) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_change_event_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_change_event_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 *ChangeEvent_ChangedResource) ProtoReflect() protoreflect.Message { // Deprecated: Use ChangeEvent_ChangedResource.ProtoReflect.Descriptor instead. func (*ChangeEvent_ChangedResource) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_change_event_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v17_resources_change_event_proto_rawDescGZIP(), []int{0, 0} } func (x *ChangeEvent_ChangedResource) GetAd() *Ad { @@ -433,91 +433,91 @@ func (x *ChangeEvent_ChangedResource) GetCampaignAssetSet() *CampaignAssetSet { return nil } -var File_google_ads_googleads_v16_resources_change_event_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_change_event_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_change_event_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_change_event_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, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x65, 0x76, 0x65, 0x6e, 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, 0x37, 0x67, 0x6f, 0x6f, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x68, 0x61, 0x6e, + 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, 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, 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, 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, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 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, 0x72, 0x65, 0x73, + 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, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 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, 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, + 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, 0x73, 0x73, 0x65, 0x74, 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, 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, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 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, 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, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 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, 0x72, 0x65, 0x73, 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, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x66, 0x65, 0x65, 0x64, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, + 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, + 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, + 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, + 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 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, 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, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 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, 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, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, + 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, + 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, + 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, + 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 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, @@ -537,7 +537,7 @@ var file_google_ads_googleads_v16_resources_change_event_proto_rawDesc = []byte{ 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 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, 0x68, 0x61, 0x6e, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x42, @@ -548,7 +548,7 @@ var file_google_ads_googleads_v16_resources_change_event_proto_rawDesc = []byte{ 0x6e, 0x67, 0x65, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x6b, 0x0a, 0x0b, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, @@ -558,13 +558,13 @@ var file_google_ads_googleads_v16_resources_change_event_proto_rawDesc = []byte{ 0x12, 0x67, 0x0a, 0x0c, 0x6f, 0x6c, 0x64, 0x5f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x07, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x68, 0x61, 0x6e, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0b, 0x6f, 0x6c, 0x64, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x67, 0x0a, 0x0c, 0x6e, 0x65, 0x77, 0x5f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x08, 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, 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, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0b, 0x6e, 0x65, 0x77, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, @@ -572,7 +572,7 @@ var file_google_ads_googleads_v16_resources_change_event_proto_rawDesc = []byte{ 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x09, 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, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x03, @@ -606,107 +606,107 @@ var file_google_ads_googleads_v16_resources_change_event_proto_rawDesc = []byte{ 0x0d, 0x0a, 0x0f, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x3b, 0x0a, 0x02, 0x61, 0x64, 0x18, 0x01, 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, 0x72, + 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, 0x03, 0x52, 0x02, 0x61, 0x64, 0x12, 0x4b, 0x0a, 0x08, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x02, 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, 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, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x07, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x67, 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, 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, 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, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x10, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x12, 0x4d, 0x0a, 0x08, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 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, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x08, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x12, 0x60, 0x0a, 0x0f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 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, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0e, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x12, 0x6e, 0x0a, 0x15, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x18, 0x06, 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, + 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, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x12, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x12, 0x69, 0x0a, 0x12, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x18, 0x07, 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, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x11, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x12, 0x41, 0x0a, 0x04, 0x66, 0x65, 0x65, 0x64, 0x18, 0x08, 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, 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, 0x46, 0x65, 0x65, 0x64, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x04, 0x66, 0x65, 0x65, 0x64, 0x12, 0x4e, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x18, 0x09, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x5a, 0x0a, 0x0d, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x18, 0x0a, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0c, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x12, 0x58, 0x0a, 0x0d, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x18, 0x0b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 0x64, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0b, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 0x64, 0x12, 0x52, 0x0a, 0x0b, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64, 0x18, 0x0c, 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, 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, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x09, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x12, 0x44, 0x0a, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x0d, 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, 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, 0x73, 0x73, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, 0x12, 0x5d, 0x0a, 0x0e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x0e, 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, 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x5d, 0x0a, 0x0e, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0d, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x5b, 0x0a, 0x0e, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x10, 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, 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, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0c, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x4e, 0x0a, 0x09, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x18, 0x11, 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, 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, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x08, 0x61, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x12, 0x5e, 0x0a, 0x0f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x12, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0d, 0x61, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x67, 0x0a, 0x12, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x18, 0x13, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x10, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x3a, 0x81, 0x01, 0xea, 0x41, 0x7e, 0x0a, 0x24, @@ -719,90 +719,90 @@ var file_google_ads_googleads_v16_resources_change_event_proto_rawDesc = []byte{ 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x7d, 0x7e, 0x7b, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x7d, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x10, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x76, 0x65, 0x6e, 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, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, + 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, + 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, + 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, 0x63, 0x65, + 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_change_event_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_change_event_proto_rawDescData = file_google_ads_googleads_v16_resources_change_event_proto_rawDesc + file_google_ads_googleads_v17_resources_change_event_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_change_event_proto_rawDescData = file_google_ads_googleads_v17_resources_change_event_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_change_event_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_change_event_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_change_event_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_change_event_proto_rawDescData) +func file_google_ads_googleads_v17_resources_change_event_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_change_event_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_change_event_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_change_event_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_change_event_proto_rawDescData + return file_google_ads_googleads_v17_resources_change_event_proto_rawDescData } -var file_google_ads_googleads_v16_resources_change_event_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v16_resources_change_event_proto_goTypes = []interface{}{ - (*ChangeEvent)(nil), // 0: google.ads.googleads.v16.resources.ChangeEvent - (*ChangeEvent_ChangedResource)(nil), // 1: google.ads.googleads.v16.resources.ChangeEvent.ChangedResource - (enums.ChangeEventResourceTypeEnum_ChangeEventResourceType)(0), // 2: google.ads.googleads.v16.enums.ChangeEventResourceTypeEnum.ChangeEventResourceType - (enums.ChangeClientTypeEnum_ChangeClientType)(0), // 3: google.ads.googleads.v16.enums.ChangeClientTypeEnum.ChangeClientType - (enums.ResourceChangeOperationEnum_ResourceChangeOperation)(0), // 4: google.ads.googleads.v16.enums.ResourceChangeOperationEnum.ResourceChangeOperation +var file_google_ads_googleads_v17_resources_change_event_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v17_resources_change_event_proto_goTypes = []interface{}{ + (*ChangeEvent)(nil), // 0: google.ads.googleads.v17.resources.ChangeEvent + (*ChangeEvent_ChangedResource)(nil), // 1: google.ads.googleads.v17.resources.ChangeEvent.ChangedResource + (enums.ChangeEventResourceTypeEnum_ChangeEventResourceType)(0), // 2: google.ads.googleads.v17.enums.ChangeEventResourceTypeEnum.ChangeEventResourceType + (enums.ChangeClientTypeEnum_ChangeClientType)(0), // 3: google.ads.googleads.v17.enums.ChangeClientTypeEnum.ChangeClientType + (enums.ResourceChangeOperationEnum_ResourceChangeOperation)(0), // 4: google.ads.googleads.v17.enums.ResourceChangeOperationEnum.ResourceChangeOperation (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*Ad)(nil), // 6: google.ads.googleads.v16.resources.Ad - (*AdGroup)(nil), // 7: google.ads.googleads.v16.resources.AdGroup - (*AdGroupCriterion)(nil), // 8: google.ads.googleads.v16.resources.AdGroupCriterion - (*Campaign)(nil), // 9: google.ads.googleads.v16.resources.Campaign - (*CampaignBudget)(nil), // 10: google.ads.googleads.v16.resources.CampaignBudget - (*AdGroupBidModifier)(nil), // 11: google.ads.googleads.v16.resources.AdGroupBidModifier - (*CampaignCriterion)(nil), // 12: google.ads.googleads.v16.resources.CampaignCriterion - (*Feed)(nil), // 13: google.ads.googleads.v16.resources.Feed - (*FeedItem)(nil), // 14: google.ads.googleads.v16.resources.FeedItem - (*CampaignFeed)(nil), // 15: google.ads.googleads.v16.resources.CampaignFeed - (*AdGroupFeed)(nil), // 16: google.ads.googleads.v16.resources.AdGroupFeed - (*AdGroupAd)(nil), // 17: google.ads.googleads.v16.resources.AdGroupAd - (*Asset)(nil), // 18: google.ads.googleads.v16.resources.Asset - (*CustomerAsset)(nil), // 19: google.ads.googleads.v16.resources.CustomerAsset - (*CampaignAsset)(nil), // 20: google.ads.googleads.v16.resources.CampaignAsset - (*AdGroupAsset)(nil), // 21: google.ads.googleads.v16.resources.AdGroupAsset - (*AssetSet)(nil), // 22: google.ads.googleads.v16.resources.AssetSet - (*AssetSetAsset)(nil), // 23: google.ads.googleads.v16.resources.AssetSetAsset - (*CampaignAssetSet)(nil), // 24: google.ads.googleads.v16.resources.CampaignAssetSet -} -var file_google_ads_googleads_v16_resources_change_event_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v16.resources.ChangeEvent.change_resource_type:type_name -> google.ads.googleads.v16.enums.ChangeEventResourceTypeEnum.ChangeEventResourceType - 3, // 1: google.ads.googleads.v16.resources.ChangeEvent.client_type:type_name -> google.ads.googleads.v16.enums.ChangeClientTypeEnum.ChangeClientType - 1, // 2: google.ads.googleads.v16.resources.ChangeEvent.old_resource:type_name -> google.ads.googleads.v16.resources.ChangeEvent.ChangedResource - 1, // 3: google.ads.googleads.v16.resources.ChangeEvent.new_resource:type_name -> google.ads.googleads.v16.resources.ChangeEvent.ChangedResource - 4, // 4: google.ads.googleads.v16.resources.ChangeEvent.resource_change_operation:type_name -> google.ads.googleads.v16.enums.ResourceChangeOperationEnum.ResourceChangeOperation - 5, // 5: google.ads.googleads.v16.resources.ChangeEvent.changed_fields:type_name -> google.protobuf.FieldMask - 6, // 6: google.ads.googleads.v16.resources.ChangeEvent.ChangedResource.ad:type_name -> google.ads.googleads.v16.resources.Ad - 7, // 7: google.ads.googleads.v16.resources.ChangeEvent.ChangedResource.ad_group:type_name -> google.ads.googleads.v16.resources.AdGroup - 8, // 8: google.ads.googleads.v16.resources.ChangeEvent.ChangedResource.ad_group_criterion:type_name -> google.ads.googleads.v16.resources.AdGroupCriterion - 9, // 9: google.ads.googleads.v16.resources.ChangeEvent.ChangedResource.campaign:type_name -> google.ads.googleads.v16.resources.Campaign - 10, // 10: google.ads.googleads.v16.resources.ChangeEvent.ChangedResource.campaign_budget:type_name -> google.ads.googleads.v16.resources.CampaignBudget - 11, // 11: google.ads.googleads.v16.resources.ChangeEvent.ChangedResource.ad_group_bid_modifier:type_name -> google.ads.googleads.v16.resources.AdGroupBidModifier - 12, // 12: google.ads.googleads.v16.resources.ChangeEvent.ChangedResource.campaign_criterion:type_name -> google.ads.googleads.v16.resources.CampaignCriterion - 13, // 13: google.ads.googleads.v16.resources.ChangeEvent.ChangedResource.feed:type_name -> google.ads.googleads.v16.resources.Feed - 14, // 14: google.ads.googleads.v16.resources.ChangeEvent.ChangedResource.feed_item:type_name -> google.ads.googleads.v16.resources.FeedItem - 15, // 15: google.ads.googleads.v16.resources.ChangeEvent.ChangedResource.campaign_feed:type_name -> google.ads.googleads.v16.resources.CampaignFeed - 16, // 16: google.ads.googleads.v16.resources.ChangeEvent.ChangedResource.ad_group_feed:type_name -> google.ads.googleads.v16.resources.AdGroupFeed - 17, // 17: google.ads.googleads.v16.resources.ChangeEvent.ChangedResource.ad_group_ad:type_name -> google.ads.googleads.v16.resources.AdGroupAd - 18, // 18: google.ads.googleads.v16.resources.ChangeEvent.ChangedResource.asset:type_name -> google.ads.googleads.v16.resources.Asset - 19, // 19: google.ads.googleads.v16.resources.ChangeEvent.ChangedResource.customer_asset:type_name -> google.ads.googleads.v16.resources.CustomerAsset - 20, // 20: google.ads.googleads.v16.resources.ChangeEvent.ChangedResource.campaign_asset:type_name -> google.ads.googleads.v16.resources.CampaignAsset - 21, // 21: google.ads.googleads.v16.resources.ChangeEvent.ChangedResource.ad_group_asset:type_name -> google.ads.googleads.v16.resources.AdGroupAsset - 22, // 22: google.ads.googleads.v16.resources.ChangeEvent.ChangedResource.asset_set:type_name -> google.ads.googleads.v16.resources.AssetSet - 23, // 23: google.ads.googleads.v16.resources.ChangeEvent.ChangedResource.asset_set_asset:type_name -> google.ads.googleads.v16.resources.AssetSetAsset - 24, // 24: google.ads.googleads.v16.resources.ChangeEvent.ChangedResource.campaign_asset_set:type_name -> google.ads.googleads.v16.resources.CampaignAssetSet + (*Ad)(nil), // 6: google.ads.googleads.v17.resources.Ad + (*AdGroup)(nil), // 7: google.ads.googleads.v17.resources.AdGroup + (*AdGroupCriterion)(nil), // 8: google.ads.googleads.v17.resources.AdGroupCriterion + (*Campaign)(nil), // 9: google.ads.googleads.v17.resources.Campaign + (*CampaignBudget)(nil), // 10: google.ads.googleads.v17.resources.CampaignBudget + (*AdGroupBidModifier)(nil), // 11: google.ads.googleads.v17.resources.AdGroupBidModifier + (*CampaignCriterion)(nil), // 12: google.ads.googleads.v17.resources.CampaignCriterion + (*Feed)(nil), // 13: google.ads.googleads.v17.resources.Feed + (*FeedItem)(nil), // 14: google.ads.googleads.v17.resources.FeedItem + (*CampaignFeed)(nil), // 15: google.ads.googleads.v17.resources.CampaignFeed + (*AdGroupFeed)(nil), // 16: google.ads.googleads.v17.resources.AdGroupFeed + (*AdGroupAd)(nil), // 17: google.ads.googleads.v17.resources.AdGroupAd + (*Asset)(nil), // 18: google.ads.googleads.v17.resources.Asset + (*CustomerAsset)(nil), // 19: google.ads.googleads.v17.resources.CustomerAsset + (*CampaignAsset)(nil), // 20: google.ads.googleads.v17.resources.CampaignAsset + (*AdGroupAsset)(nil), // 21: google.ads.googleads.v17.resources.AdGroupAsset + (*AssetSet)(nil), // 22: google.ads.googleads.v17.resources.AssetSet + (*AssetSetAsset)(nil), // 23: google.ads.googleads.v17.resources.AssetSetAsset + (*CampaignAssetSet)(nil), // 24: google.ads.googleads.v17.resources.CampaignAssetSet +} +var file_google_ads_googleads_v17_resources_change_event_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v17.resources.ChangeEvent.change_resource_type:type_name -> google.ads.googleads.v17.enums.ChangeEventResourceTypeEnum.ChangeEventResourceType + 3, // 1: google.ads.googleads.v17.resources.ChangeEvent.client_type:type_name -> google.ads.googleads.v17.enums.ChangeClientTypeEnum.ChangeClientType + 1, // 2: google.ads.googleads.v17.resources.ChangeEvent.old_resource:type_name -> google.ads.googleads.v17.resources.ChangeEvent.ChangedResource + 1, // 3: google.ads.googleads.v17.resources.ChangeEvent.new_resource:type_name -> google.ads.googleads.v17.resources.ChangeEvent.ChangedResource + 4, // 4: google.ads.googleads.v17.resources.ChangeEvent.resource_change_operation:type_name -> google.ads.googleads.v17.enums.ResourceChangeOperationEnum.ResourceChangeOperation + 5, // 5: google.ads.googleads.v17.resources.ChangeEvent.changed_fields:type_name -> google.protobuf.FieldMask + 6, // 6: google.ads.googleads.v17.resources.ChangeEvent.ChangedResource.ad:type_name -> google.ads.googleads.v17.resources.Ad + 7, // 7: google.ads.googleads.v17.resources.ChangeEvent.ChangedResource.ad_group:type_name -> google.ads.googleads.v17.resources.AdGroup + 8, // 8: google.ads.googleads.v17.resources.ChangeEvent.ChangedResource.ad_group_criterion:type_name -> google.ads.googleads.v17.resources.AdGroupCriterion + 9, // 9: google.ads.googleads.v17.resources.ChangeEvent.ChangedResource.campaign:type_name -> google.ads.googleads.v17.resources.Campaign + 10, // 10: google.ads.googleads.v17.resources.ChangeEvent.ChangedResource.campaign_budget:type_name -> google.ads.googleads.v17.resources.CampaignBudget + 11, // 11: google.ads.googleads.v17.resources.ChangeEvent.ChangedResource.ad_group_bid_modifier:type_name -> google.ads.googleads.v17.resources.AdGroupBidModifier + 12, // 12: google.ads.googleads.v17.resources.ChangeEvent.ChangedResource.campaign_criterion:type_name -> google.ads.googleads.v17.resources.CampaignCriterion + 13, // 13: google.ads.googleads.v17.resources.ChangeEvent.ChangedResource.feed:type_name -> google.ads.googleads.v17.resources.Feed + 14, // 14: google.ads.googleads.v17.resources.ChangeEvent.ChangedResource.feed_item:type_name -> google.ads.googleads.v17.resources.FeedItem + 15, // 15: google.ads.googleads.v17.resources.ChangeEvent.ChangedResource.campaign_feed:type_name -> google.ads.googleads.v17.resources.CampaignFeed + 16, // 16: google.ads.googleads.v17.resources.ChangeEvent.ChangedResource.ad_group_feed:type_name -> google.ads.googleads.v17.resources.AdGroupFeed + 17, // 17: google.ads.googleads.v17.resources.ChangeEvent.ChangedResource.ad_group_ad:type_name -> google.ads.googleads.v17.resources.AdGroupAd + 18, // 18: google.ads.googleads.v17.resources.ChangeEvent.ChangedResource.asset:type_name -> google.ads.googleads.v17.resources.Asset + 19, // 19: google.ads.googleads.v17.resources.ChangeEvent.ChangedResource.customer_asset:type_name -> google.ads.googleads.v17.resources.CustomerAsset + 20, // 20: google.ads.googleads.v17.resources.ChangeEvent.ChangedResource.campaign_asset:type_name -> google.ads.googleads.v17.resources.CampaignAsset + 21, // 21: google.ads.googleads.v17.resources.ChangeEvent.ChangedResource.ad_group_asset:type_name -> google.ads.googleads.v17.resources.AdGroupAsset + 22, // 22: google.ads.googleads.v17.resources.ChangeEvent.ChangedResource.asset_set:type_name -> google.ads.googleads.v17.resources.AssetSet + 23, // 23: google.ads.googleads.v17.resources.ChangeEvent.ChangedResource.asset_set_asset:type_name -> google.ads.googleads.v17.resources.AssetSetAsset + 24, // 24: google.ads.googleads.v17.resources.ChangeEvent.ChangedResource.campaign_asset_set:type_name -> google.ads.googleads.v17.resources.CampaignAssetSet 25, // [25:25] is the sub-list for method output_type 25, // [25:25] is the sub-list for method input_type 25, // [25:25] is the sub-list for extension type_name @@ -810,32 +810,32 @@ var file_google_ads_googleads_v16_resources_change_event_proto_depIdxs = []int32 0, // [0:25] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_change_event_proto_init() } -func file_google_ads_googleads_v16_resources_change_event_proto_init() { - if File_google_ads_googleads_v16_resources_change_event_proto != nil { +func init() { file_google_ads_googleads_v17_resources_change_event_proto_init() } +func file_google_ads_googleads_v17_resources_change_event_proto_init() { + if File_google_ads_googleads_v17_resources_change_event_proto != nil { return } - file_google_ads_googleads_v16_resources_ad_proto_init() - file_google_ads_googleads_v16_resources_ad_group_proto_init() - file_google_ads_googleads_v16_resources_ad_group_ad_proto_init() - file_google_ads_googleads_v16_resources_ad_group_asset_proto_init() - file_google_ads_googleads_v16_resources_ad_group_bid_modifier_proto_init() - file_google_ads_googleads_v16_resources_ad_group_criterion_proto_init() - file_google_ads_googleads_v16_resources_ad_group_feed_proto_init() - file_google_ads_googleads_v16_resources_asset_proto_init() - file_google_ads_googleads_v16_resources_asset_set_proto_init() - file_google_ads_googleads_v16_resources_asset_set_asset_proto_init() - file_google_ads_googleads_v16_resources_campaign_proto_init() - file_google_ads_googleads_v16_resources_campaign_asset_proto_init() - file_google_ads_googleads_v16_resources_campaign_asset_set_proto_init() - file_google_ads_googleads_v16_resources_campaign_budget_proto_init() - file_google_ads_googleads_v16_resources_campaign_criterion_proto_init() - file_google_ads_googleads_v16_resources_campaign_feed_proto_init() - file_google_ads_googleads_v16_resources_customer_asset_proto_init() - file_google_ads_googleads_v16_resources_feed_proto_init() - file_google_ads_googleads_v16_resources_feed_item_proto_init() + file_google_ads_googleads_v17_resources_ad_proto_init() + file_google_ads_googleads_v17_resources_ad_group_proto_init() + file_google_ads_googleads_v17_resources_ad_group_ad_proto_init() + file_google_ads_googleads_v17_resources_ad_group_asset_proto_init() + file_google_ads_googleads_v17_resources_ad_group_bid_modifier_proto_init() + file_google_ads_googleads_v17_resources_ad_group_criterion_proto_init() + file_google_ads_googleads_v17_resources_ad_group_feed_proto_init() + file_google_ads_googleads_v17_resources_asset_proto_init() + file_google_ads_googleads_v17_resources_asset_set_proto_init() + file_google_ads_googleads_v17_resources_asset_set_asset_proto_init() + file_google_ads_googleads_v17_resources_campaign_proto_init() + file_google_ads_googleads_v17_resources_campaign_asset_proto_init() + file_google_ads_googleads_v17_resources_campaign_asset_set_proto_init() + file_google_ads_googleads_v17_resources_campaign_budget_proto_init() + file_google_ads_googleads_v17_resources_campaign_criterion_proto_init() + file_google_ads_googleads_v17_resources_campaign_feed_proto_init() + file_google_ads_googleads_v17_resources_customer_asset_proto_init() + file_google_ads_googleads_v17_resources_feed_proto_init() + file_google_ads_googleads_v17_resources_feed_item_proto_init() if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_change_event_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_change_event_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ChangeEvent); i { case 0: return &v.state @@ -847,7 +847,7 @@ func file_google_ads_googleads_v16_resources_change_event_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_change_event_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_change_event_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ChangeEvent_ChangedResource); i { case 0: return &v.state @@ -864,18 +864,18 @@ func file_google_ads_googleads_v16_resources_change_event_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_change_event_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_change_event_proto_rawDesc, NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_change_event_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_change_event_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_change_event_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_change_event_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_change_event_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_change_event_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_change_event_proto = out.File - file_google_ads_googleads_v16_resources_change_event_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_change_event_proto_goTypes = nil - file_google_ads_googleads_v16_resources_change_event_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_change_event_proto = out.File + file_google_ads_googleads_v17_resources_change_event_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_change_event_proto_goTypes = nil + file_google_ads_googleads_v17_resources_change_event_proto_depIdxs = nil } diff --git a/resources/change_status.pb.go b/resources/change_status.pb.go index 4841404d..821dfd2b 100644 --- a/resources/change_status.pb.go +++ b/resources/change_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/resources/change_status.proto +// source: google/ads/googleads/v17/resources/change_status.proto package resources @@ -54,13 +54,13 @@ type ChangeStatus struct { // Output only. Represents the type of the changed resource. This dictates // what fields will be set. For example, for AD_GROUP, campaign and ad_group // fields will be set. - ResourceType enums.ChangeStatusResourceTypeEnum_ChangeStatusResourceType `protobuf:"varint,4,opt,name=resource_type,json=resourceType,proto3,enum=google.ads.googleads.v16.enums.ChangeStatusResourceTypeEnum_ChangeStatusResourceType" json:"resource_type,omitempty"` + ResourceType enums.ChangeStatusResourceTypeEnum_ChangeStatusResourceType `protobuf:"varint,4,opt,name=resource_type,json=resourceType,proto3,enum=google.ads.googleads.v17.enums.ChangeStatusResourceTypeEnum_ChangeStatusResourceType" json:"resource_type,omitempty"` // Output only. The Campaign affected by this change. Campaign *string `protobuf:"bytes,17,opt,name=campaign,proto3,oneof" json:"campaign,omitempty"` // Output only. The AdGroup affected by this change. AdGroup *string `protobuf:"bytes,18,opt,name=ad_group,json=adGroup,proto3,oneof" json:"ad_group,omitempty"` // Output only. Represents the status of the changed resource. - ResourceStatus enums.ChangeStatusOperationEnum_ChangeStatusOperation `protobuf:"varint,8,opt,name=resource_status,json=resourceStatus,proto3,enum=google.ads.googleads.v16.enums.ChangeStatusOperationEnum_ChangeStatusOperation" json:"resource_status,omitempty"` + ResourceStatus enums.ChangeStatusOperationEnum_ChangeStatusOperation `protobuf:"varint,8,opt,name=resource_status,json=resourceStatus,proto3,enum=google.ads.googleads.v17.enums.ChangeStatusOperationEnum_ChangeStatusOperation" json:"resource_status,omitempty"` // Output only. The AdGroupAd affected by this change. AdGroupAd *string `protobuf:"bytes,25,opt,name=ad_group_ad,json=adGroupAd,proto3,oneof" json:"ad_group_ad,omitempty"` // Output only. The AdGroupCriterion affected by this change. @@ -96,7 +96,7 @@ type ChangeStatus struct { func (x *ChangeStatus) Reset() { *x = ChangeStatus{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_change_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_change_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *ChangeStatus) String() string { func (*ChangeStatus) ProtoMessage() {} func (x *ChangeStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_change_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_change_status_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,7 +122,7 @@ func (x *ChangeStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use ChangeStatus.ProtoReflect.Descriptor instead. func (*ChangeStatus) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_change_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_change_status_proto_rawDescGZIP(), []int{0} } func (x *ChangeStatus) GetResourceName() string { @@ -272,21 +272,21 @@ func (x *ChangeStatus) GetCombinedAudience() string { return "" } -var File_google_ads_googleads_v16_resources_change_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_change_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_change_status_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_change_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, 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, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 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, 0x3c, 0x67, 0x6f, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, + 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, 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, 0x63, 0x68, 0x61, 0x6e, 0x67, + 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, @@ -305,7 +305,7 @@ var file_google_ads_googleads_v16_resources_change_status_proto_rawDesc = []byte 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x7f, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 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, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x6f, @@ -323,7 +323,7 @@ var file_google_ads_googleads_v16_resources_change_status_proto_rawDesc = []byte 0x01, 0x12, 0x7d, 0x0a, 0x0f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x08, 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, 0x43, 0x68, 0x61, 0x6e, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x03, @@ -430,45 +430,45 @@ var file_google_ads_googleads_v16_resources_change_status_proto_rawDesc = []byte 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x42, 0x83, 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, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x11, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 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_change_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_change_status_proto_rawDescData = file_google_ads_googleads_v16_resources_change_status_proto_rawDesc + file_google_ads_googleads_v17_resources_change_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_change_status_proto_rawDescData = file_google_ads_googleads_v17_resources_change_status_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_change_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_change_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_change_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_change_status_proto_rawDescData) +func file_google_ads_googleads_v17_resources_change_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_change_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_change_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_change_status_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_change_status_proto_rawDescData + return file_google_ads_googleads_v17_resources_change_status_proto_rawDescData } -var file_google_ads_googleads_v16_resources_change_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_change_status_proto_goTypes = []interface{}{ - (*ChangeStatus)(nil), // 0: google.ads.googleads.v16.resources.ChangeStatus - (enums.ChangeStatusResourceTypeEnum_ChangeStatusResourceType)(0), // 1: google.ads.googleads.v16.enums.ChangeStatusResourceTypeEnum.ChangeStatusResourceType - (enums.ChangeStatusOperationEnum_ChangeStatusOperation)(0), // 2: google.ads.googleads.v16.enums.ChangeStatusOperationEnum.ChangeStatusOperation +var file_google_ads_googleads_v17_resources_change_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_change_status_proto_goTypes = []interface{}{ + (*ChangeStatus)(nil), // 0: google.ads.googleads.v17.resources.ChangeStatus + (enums.ChangeStatusResourceTypeEnum_ChangeStatusResourceType)(0), // 1: google.ads.googleads.v17.enums.ChangeStatusResourceTypeEnum.ChangeStatusResourceType + (enums.ChangeStatusOperationEnum_ChangeStatusOperation)(0), // 2: google.ads.googleads.v17.enums.ChangeStatusOperationEnum.ChangeStatusOperation } -var file_google_ads_googleads_v16_resources_change_status_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.ChangeStatus.resource_type:type_name -> google.ads.googleads.v16.enums.ChangeStatusResourceTypeEnum.ChangeStatusResourceType - 2, // 1: google.ads.googleads.v16.resources.ChangeStatus.resource_status:type_name -> google.ads.googleads.v16.enums.ChangeStatusOperationEnum.ChangeStatusOperation +var file_google_ads_googleads_v17_resources_change_status_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.ChangeStatus.resource_type:type_name -> google.ads.googleads.v17.enums.ChangeStatusResourceTypeEnum.ChangeStatusResourceType + 2, // 1: google.ads.googleads.v17.resources.ChangeStatus.resource_status:type_name -> google.ads.googleads.v17.enums.ChangeStatusOperationEnum.ChangeStatusOperation 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 @@ -476,13 +476,13 @@ var file_google_ads_googleads_v16_resources_change_status_proto_depIdxs = []int3 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_change_status_proto_init() } -func file_google_ads_googleads_v16_resources_change_status_proto_init() { - if File_google_ads_googleads_v16_resources_change_status_proto != nil { +func init() { file_google_ads_googleads_v17_resources_change_status_proto_init() } +func file_google_ads_googleads_v17_resources_change_status_proto_init() { + if File_google_ads_googleads_v17_resources_change_status_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_change_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_change_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ChangeStatus); i { case 0: return &v.state @@ -495,23 +495,23 @@ func file_google_ads_googleads_v16_resources_change_status_proto_init() { } } } - file_google_ads_googleads_v16_resources_change_status_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_change_status_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_change_status_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_change_status_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_change_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_change_status_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_change_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_change_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_change_status_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_change_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_change_status_proto = out.File - file_google_ads_googleads_v16_resources_change_status_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_change_status_proto_goTypes = nil - file_google_ads_googleads_v16_resources_change_status_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_change_status_proto = out.File + file_google_ads_googleads_v17_resources_change_status_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_change_status_proto_goTypes = nil + file_google_ads_googleads_v17_resources_change_status_proto_depIdxs = nil } diff --git a/resources/channel_aggregate_asset_view.pb.go b/resources/channel_aggregate_asset_view.pb.go new file mode 100644 index 00000000..4651e0b8 --- /dev/null +++ b/resources/channel_aggregate_asset_view.pb.go @@ -0,0 +1,291 @@ +// Copyright 2024 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/resources/channel_aggregate_asset_view.proto + +package resources + +import ( + enums "github.com/shenzhencenter/google-ads-pb/enums" + _ "google.golang.org/genproto/googleapis/api/annotations" + 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) +) + +// A channel-level aggregate asset view that shows where the asset is linked, +// performamce of the asset and stats. +type ChannelAggregateAssetView struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + // Output only. The resource name of the channel aggregate asset view. + // Channel aggregate asset view resource names have the form: + // + // `customers/{customer_id}/channelAggregateAssetViews/{ChannelAssetV2.advertising_channel_type}~{ChannelAssetV2.asset_id}~{ChannelAssetV2.asset_source}~{ChannelAssetV2.field_type}"` + ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` + // Output only. Channel in which the asset served. + AdvertisingChannelType *enums.AdvertisingChannelTypeEnum_AdvertisingChannelType `protobuf:"varint,2,opt,name=advertising_channel_type,json=advertisingChannelType,proto3,enum=google.ads.googleads.v17.enums.AdvertisingChannelTypeEnum_AdvertisingChannelType,oneof" json:"advertising_channel_type,omitempty"` + // Output only. The ID of the asset. + Asset *string `protobuf:"bytes,3,opt,name=asset,proto3,oneof" json:"asset,omitempty"` + // Output only. Source of the asset link. + AssetSource *enums.AssetSourceEnum_AssetSource `protobuf:"varint,4,opt,name=asset_source,json=assetSource,proto3,enum=google.ads.googleads.v17.enums.AssetSourceEnum_AssetSource,oneof" json:"asset_source,omitempty"` + // Output only. FieldType of the asset. + FieldType *enums.AssetFieldTypeEnum_AssetFieldType `protobuf:"varint,5,opt,name=field_type,json=fieldType,proto3,enum=google.ads.googleads.v17.enums.AssetFieldTypeEnum_AssetFieldType,oneof" json:"field_type,omitempty"` +} + +func (x *ChannelAggregateAssetView) Reset() { + *x = ChannelAggregateAssetView{} + if protoimpl.UnsafeEnabled { + mi := &file_google_ads_googleads_v17_resources_channel_aggregate_asset_view_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *ChannelAggregateAssetView) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ChannelAggregateAssetView) ProtoMessage() {} + +func (x *ChannelAggregateAssetView) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v17_resources_channel_aggregate_asset_view_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 ChannelAggregateAssetView.ProtoReflect.Descriptor instead. +func (*ChannelAggregateAssetView) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v17_resources_channel_aggregate_asset_view_proto_rawDescGZIP(), []int{0} +} + +func (x *ChannelAggregateAssetView) GetResourceName() string { + if x != nil { + return x.ResourceName + } + return "" +} + +func (x *ChannelAggregateAssetView) GetAdvertisingChannelType() enums.AdvertisingChannelTypeEnum_AdvertisingChannelType { + if x != nil && x.AdvertisingChannelType != nil { + return *x.AdvertisingChannelType + } + return enums.AdvertisingChannelTypeEnum_AdvertisingChannelType(0) +} + +func (x *ChannelAggregateAssetView) GetAsset() string { + if x != nil && x.Asset != nil { + return *x.Asset + } + return "" +} + +func (x *ChannelAggregateAssetView) GetAssetSource() enums.AssetSourceEnum_AssetSource { + if x != nil && x.AssetSource != nil { + return *x.AssetSource + } + return enums.AssetSourceEnum_AssetSource(0) +} + +func (x *ChannelAggregateAssetView) GetFieldType() enums.AssetFieldTypeEnum_AssetFieldType { + if x != nil && x.FieldType != nil { + return *x.FieldType + } + return enums.AssetFieldTypeEnum_AssetFieldType(0) +} + +var File_google_ads_googleads_v17_resources_channel_aggregate_asset_view_proto protoreflect.FileDescriptor + +var file_google_ads_googleads_v17_resources_channel_aggregate_asset_view_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, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x61, 0x67, 0x67, + 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 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, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 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, 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, 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, 0x31, 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, 0x73, 0x73, 0x65, 0x74, 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, 0xa5, 0x06, 0x0a, 0x19, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x41, 0x67, 0x67, 0x72, + 0x65, 0x67, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x56, 0x69, 0x65, 0x77, 0x12, 0x5f, + 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x3a, 0xe0, 0x41, 0x03, 0xfa, 0x41, 0x34, 0x0a, 0x32, 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, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x41, + 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x56, 0x69, 0x65, + 0x77, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, + 0x95, 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, 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, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x16, 0x61, 0x64, + 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, + 0x54, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x41, 0x0a, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, + 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x26, 0xe0, 0x41, 0x03, 0xfa, 0x41, 0x20, 0x0a, 0x1e, + 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, 0x73, 0x73, 0x65, 0x74, 0x48, 0x01, + 0x52, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, 0x88, 0x01, 0x01, 0x12, 0x68, 0x0a, 0x0c, 0x61, 0x73, + 0x73, 0x65, 0x74, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x04, 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, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x45, 0x6e, 0x75, + 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x42, 0x03, 0xe0, + 0x41, 0x03, 0x48, 0x02, 0x52, 0x0b, 0x61, 0x73, 0x73, 0x65, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x88, 0x01, 0x01, 0x12, 0x6a, 0x0a, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, + 0x70, 0x65, 0x18, 0x05, 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, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, + 0x48, 0x03, 0x52, 0x09, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, + 0x3a, 0xae, 0x01, 0xea, 0x41, 0xaa, 0x01, 0x0a, 0x32, 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, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x41, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, + 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x56, 0x69, 0x65, 0x77, 0x12, 0x74, 0x63, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x41, 0x67, 0x67, 0x72, + 0x65, 0x67, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x56, 0x69, 0x65, 0x77, 0x73, 0x2f, + 0x7b, 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x68, 0x61, + 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x7d, 0x7e, 0x7b, 0x61, 0x73, 0x73, 0x65, + 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x7d, 0x7e, 0x7b, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, + 0x7d, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, + 0x67, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42, 0x08, + 0x0a, 0x06, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x61, 0x73, 0x73, + 0x65, 0x74, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x66, 0x69, + 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x73, 0x42, 0x1e, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x41, 0x67, 0x67, 0x72, + 0x65, 0x67, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 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, 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_v17_resources_channel_aggregate_asset_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_channel_aggregate_asset_view_proto_rawDescData = file_google_ads_googleads_v17_resources_channel_aggregate_asset_view_proto_rawDesc +) + +func file_google_ads_googleads_v17_resources_channel_aggregate_asset_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_channel_aggregate_asset_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_channel_aggregate_asset_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_channel_aggregate_asset_view_proto_rawDescData) + }) + return file_google_ads_googleads_v17_resources_channel_aggregate_asset_view_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_channel_aggregate_asset_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_channel_aggregate_asset_view_proto_goTypes = []interface{}{ + (*ChannelAggregateAssetView)(nil), // 0: google.ads.googleads.v17.resources.ChannelAggregateAssetView + (enums.AdvertisingChannelTypeEnum_AdvertisingChannelType)(0), // 1: google.ads.googleads.v17.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType + (enums.AssetSourceEnum_AssetSource)(0), // 2: google.ads.googleads.v17.enums.AssetSourceEnum.AssetSource + (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 3: google.ads.googleads.v17.enums.AssetFieldTypeEnum.AssetFieldType +} +var file_google_ads_googleads_v17_resources_channel_aggregate_asset_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.ChannelAggregateAssetView.advertising_channel_type:type_name -> google.ads.googleads.v17.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType + 2, // 1: google.ads.googleads.v17.resources.ChannelAggregateAssetView.asset_source:type_name -> google.ads.googleads.v17.enums.AssetSourceEnum.AssetSource + 3, // 2: google.ads.googleads.v17.resources.ChannelAggregateAssetView.field_type:type_name -> google.ads.googleads.v17.enums.AssetFieldTypeEnum.AssetFieldType + 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_v17_resources_channel_aggregate_asset_view_proto_init() } +func file_google_ads_googleads_v17_resources_channel_aggregate_asset_view_proto_init() { + if File_google_ads_googleads_v17_resources_channel_aggregate_asset_view_proto != nil { + return + } + if !protoimpl.UnsafeEnabled { + file_google_ads_googleads_v17_resources_channel_aggregate_asset_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*ChannelAggregateAssetView); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + } + file_google_ads_googleads_v17_resources_channel_aggregate_asset_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_v17_resources_channel_aggregate_asset_view_proto_rawDesc, + NumEnums: 0, + NumMessages: 1, + NumExtensions: 0, + NumServices: 0, + }, + GoTypes: file_google_ads_googleads_v17_resources_channel_aggregate_asset_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_channel_aggregate_asset_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_channel_aggregate_asset_view_proto_msgTypes, + }.Build() + File_google_ads_googleads_v17_resources_channel_aggregate_asset_view_proto = out.File + file_google_ads_googleads_v17_resources_channel_aggregate_asset_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_channel_aggregate_asset_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_channel_aggregate_asset_view_proto_depIdxs = nil +} diff --git a/resources/click_view.pb.go b/resources/click_view.pb.go index 4ea31a02..abc6357c 100644 --- a/resources/click_view.pb.go +++ b/resources/click_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/click_view.proto +// source: google/ads/googleads/v17/resources/click_view.proto package resources @@ -78,7 +78,7 @@ type ClickView struct { func (x *ClickView) Reset() { *x = ClickView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_click_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_click_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -91,7 +91,7 @@ func (x *ClickView) String() string { func (*ClickView) ProtoMessage() {} func (x *ClickView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_click_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_click_view_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -104,7 +104,7 @@ func (x *ClickView) ProtoReflect() protoreflect.Message { // Deprecated: Use ClickView.ProtoReflect.Descriptor instead. func (*ClickView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_click_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_click_view_proto_rawDescGZIP(), []int{0} } func (x *ClickView) GetResourceName() string { @@ -177,20 +177,20 @@ func (x *ClickView) GetKeywordInfo() *common.KeywordInfo { return nil } -var File_google_ads_googleads_v16_resources_click_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_click_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_click_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_click_view_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, 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, 0x63, 0x6c, 0x69, 0x63, 0x6b, 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, + 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, 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, 0x6e, 0x2f, 0x63, 0x6c, 0x69, 0x63, 0x6b, + 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, 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, 0x6e, + 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, 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, @@ -206,14 +206,14 @@ var file_google_ads_googleads_v16_resources_click_view_proto_rawDesc = []byte{ 0x52, 0x05, 0x67, 0x63, 0x6c, 0x69, 0x64, 0x88, 0x01, 0x01, 0x12, 0x5d, 0x0a, 0x10, 0x61, 0x72, 0x65, 0x61, 0x5f, 0x6f, 0x66, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0e, 0x61, 0x72, 0x65, 0x61, 0x4f, 0x66, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x12, 0x65, 0x0a, 0x14, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x66, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x65, 0x6e, 0x63, 0x65, 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, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x4c, + 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x12, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x66, 0x50, 0x72, 0x65, 0x73, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x29, 0x0a, 0x0b, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, @@ -243,7 +243,7 @@ var file_google_ads_googleads_v16_resources_click_view_proto_rawDesc = []byte{ 0x52, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x54, 0x0a, 0x0c, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x0e, 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, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0b, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x3a, 0x5a, 0xea, 0x41, 0x57, 0x0a, 0x22, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, @@ -259,45 +259,45 @@ var file_google_ads_googleads_v16_resources_click_view_proto_rawDesc = []byte{ 0x65, 0x74, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 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, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x0e, 0x43, 0x6c, 0x69, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x0e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 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, 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_click_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_click_view_proto_rawDescData = file_google_ads_googleads_v16_resources_click_view_proto_rawDesc + file_google_ads_googleads_v17_resources_click_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_click_view_proto_rawDescData = file_google_ads_googleads_v17_resources_click_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_click_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_click_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_click_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_click_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_click_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_click_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_click_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_click_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_click_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_click_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_click_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_click_view_proto_goTypes = []interface{}{ - (*ClickView)(nil), // 0: google.ads.googleads.v16.resources.ClickView - (*common.ClickLocation)(nil), // 1: google.ads.googleads.v16.common.ClickLocation - (*common.KeywordInfo)(nil), // 2: google.ads.googleads.v16.common.KeywordInfo +var file_google_ads_googleads_v17_resources_click_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_click_view_proto_goTypes = []interface{}{ + (*ClickView)(nil), // 0: google.ads.googleads.v17.resources.ClickView + (*common.ClickLocation)(nil), // 1: google.ads.googleads.v17.common.ClickLocation + (*common.KeywordInfo)(nil), // 2: google.ads.googleads.v17.common.KeywordInfo } -var file_google_ads_googleads_v16_resources_click_view_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.ClickView.area_of_interest:type_name -> google.ads.googleads.v16.common.ClickLocation - 1, // 1: google.ads.googleads.v16.resources.ClickView.location_of_presence:type_name -> google.ads.googleads.v16.common.ClickLocation - 2, // 2: google.ads.googleads.v16.resources.ClickView.keyword_info:type_name -> google.ads.googleads.v16.common.KeywordInfo +var file_google_ads_googleads_v17_resources_click_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.ClickView.area_of_interest:type_name -> google.ads.googleads.v17.common.ClickLocation + 1, // 1: google.ads.googleads.v17.resources.ClickView.location_of_presence:type_name -> google.ads.googleads.v17.common.ClickLocation + 2, // 2: google.ads.googleads.v17.resources.ClickView.keyword_info:type_name -> google.ads.googleads.v17.common.KeywordInfo 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 @@ -305,13 +305,13 @@ var file_google_ads_googleads_v16_resources_click_view_proto_depIdxs = []int32{ 0, // [0:3] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_click_view_proto_init() } -func file_google_ads_googleads_v16_resources_click_view_proto_init() { - if File_google_ads_googleads_v16_resources_click_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_click_view_proto_init() } +func file_google_ads_googleads_v17_resources_click_view_proto_init() { + if File_google_ads_googleads_v17_resources_click_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_click_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_click_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ClickView); i { case 0: return &v.state @@ -324,23 +324,23 @@ func file_google_ads_googleads_v16_resources_click_view_proto_init() { } } } - file_google_ads_googleads_v16_resources_click_view_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_click_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_click_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_click_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_click_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_click_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_click_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_click_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_click_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_click_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_click_view_proto = out.File - file_google_ads_googleads_v16_resources_click_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_click_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_click_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_click_view_proto = out.File + file_google_ads_googleads_v17_resources_click_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_click_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_click_view_proto_depIdxs = nil } diff --git a/resources/combined_audience.pb.go b/resources/combined_audience.pb.go index 308707b3..e04e40df 100644 --- a/resources/combined_audience.pb.go +++ b/resources/combined_audience.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/combined_audience.proto +// source: google/ads/googleads/v17/resources/combined_audience.proto package resources @@ -52,7 +52,7 @@ type CombinedAudience struct { Id int64 `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"` // Output only. Status of this combined audience. Indicates whether the // combined audience is enabled or removed. - Status enums.CombinedAudienceStatusEnum_CombinedAudienceStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.CombinedAudienceStatusEnum_CombinedAudienceStatus" json:"status,omitempty"` + Status enums.CombinedAudienceStatusEnum_CombinedAudienceStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.CombinedAudienceStatusEnum_CombinedAudienceStatus" json:"status,omitempty"` // Output only. Name of the combined audience. It should be unique across all // combined audiences. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"` @@ -63,7 +63,7 @@ type CombinedAudience struct { func (x *CombinedAudience) Reset() { *x = CombinedAudience{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_combined_audience_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_combined_audience_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76,7 +76,7 @@ func (x *CombinedAudience) String() string { func (*CombinedAudience) ProtoMessage() {} func (x *CombinedAudience) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_combined_audience_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_combined_audience_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 *CombinedAudience) ProtoReflect() protoreflect.Message { // Deprecated: Use CombinedAudience.ProtoReflect.Descriptor instead. func (*CombinedAudience) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_combined_audience_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_combined_audience_proto_rawDescGZIP(), []int{0} } func (x *CombinedAudience) GetResourceName() string { @@ -127,17 +127,17 @@ func (x *CombinedAudience) GetDescription() string { return "" } -var File_google_ads_googleads_v16_resources_combined_audience_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_combined_audience_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_combined_audience_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_combined_audience_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, 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, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 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, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, + 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, @@ -154,7 +154,7 @@ var file_google_ads_googleads_v16_resources_combined_audience_proto_rawDesc = [] 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x6e, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 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, 0x43, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, @@ -171,44 +171,44 @@ var file_google_ads_googleads_v16_resources_combined_audience_proto_rawDesc = [] 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x73, 0x2f, 0x7b, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x87, 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, + 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, 0x15, 0x43, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 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, 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, 0x6f, + 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, + 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_combined_audience_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_combined_audience_proto_rawDescData = file_google_ads_googleads_v16_resources_combined_audience_proto_rawDesc + file_google_ads_googleads_v17_resources_combined_audience_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_combined_audience_proto_rawDescData = file_google_ads_googleads_v17_resources_combined_audience_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_combined_audience_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_combined_audience_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_combined_audience_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_combined_audience_proto_rawDescData) +func file_google_ads_googleads_v17_resources_combined_audience_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_combined_audience_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_combined_audience_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_combined_audience_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_combined_audience_proto_rawDescData + return file_google_ads_googleads_v17_resources_combined_audience_proto_rawDescData } -var file_google_ads_googleads_v16_resources_combined_audience_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_combined_audience_proto_goTypes = []interface{}{ - (*CombinedAudience)(nil), // 0: google.ads.googleads.v16.resources.CombinedAudience - (enums.CombinedAudienceStatusEnum_CombinedAudienceStatus)(0), // 1: google.ads.googleads.v16.enums.CombinedAudienceStatusEnum.CombinedAudienceStatus +var file_google_ads_googleads_v17_resources_combined_audience_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_combined_audience_proto_goTypes = []interface{}{ + (*CombinedAudience)(nil), // 0: google.ads.googleads.v17.resources.CombinedAudience + (enums.CombinedAudienceStatusEnum_CombinedAudienceStatus)(0), // 1: google.ads.googleads.v17.enums.CombinedAudienceStatusEnum.CombinedAudienceStatus } -var file_google_ads_googleads_v16_resources_combined_audience_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CombinedAudience.status:type_name -> google.ads.googleads.v16.enums.CombinedAudienceStatusEnum.CombinedAudienceStatus +var file_google_ads_googleads_v17_resources_combined_audience_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CombinedAudience.status:type_name -> google.ads.googleads.v17.enums.CombinedAudienceStatusEnum.CombinedAudienceStatus 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 @@ -216,13 +216,13 @@ var file_google_ads_googleads_v16_resources_combined_audience_proto_depIdxs = [] 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_combined_audience_proto_init() } -func file_google_ads_googleads_v16_resources_combined_audience_proto_init() { - if File_google_ads_googleads_v16_resources_combined_audience_proto != nil { +func init() { file_google_ads_googleads_v17_resources_combined_audience_proto_init() } +func file_google_ads_googleads_v17_resources_combined_audience_proto_init() { + if File_google_ads_googleads_v17_resources_combined_audience_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_combined_audience_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_combined_audience_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CombinedAudience); i { case 0: return &v.state @@ -239,18 +239,18 @@ func file_google_ads_googleads_v16_resources_combined_audience_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_combined_audience_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_combined_audience_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_combined_audience_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_combined_audience_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_combined_audience_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_combined_audience_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_combined_audience_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_combined_audience_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_combined_audience_proto = out.File - file_google_ads_googleads_v16_resources_combined_audience_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_combined_audience_proto_goTypes = nil - file_google_ads_googleads_v16_resources_combined_audience_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_combined_audience_proto = out.File + file_google_ads_googleads_v17_resources_combined_audience_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_combined_audience_proto_goTypes = nil + file_google_ads_googleads_v17_resources_combined_audience_proto_depIdxs = nil } diff --git a/resources/conversion_action.pb.go b/resources/conversion_action.pb.go index e43c6ba7..db44a52b 100644 --- a/resources/conversion_action.pb.go +++ b/resources/conversion_action.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/conversion_action.proto +// source: google/ads/googleads/v17/resources/conversion_action.proto package resources @@ -56,11 +56,11 @@ type ConversionAction struct { // conversion actions. Name *string `protobuf:"bytes,22,opt,name=name,proto3,oneof" json:"name,omitempty"` // The status of this conversion action for conversion event accrual. - Status enums.ConversionActionStatusEnum_ConversionActionStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.ConversionActionStatusEnum_ConversionActionStatus" json:"status,omitempty"` + Status enums.ConversionActionStatusEnum_ConversionActionStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.ConversionActionStatusEnum_ConversionActionStatus" json:"status,omitempty"` // Immutable. The type of this conversion action. - Type enums.ConversionActionTypeEnum_ConversionActionType `protobuf:"varint,5,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.ConversionActionTypeEnum_ConversionActionType" json:"type,omitempty"` + Type enums.ConversionActionTypeEnum_ConversionActionType `protobuf:"varint,5,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.ConversionActionTypeEnum_ConversionActionType" json:"type,omitempty"` // Output only. The conversion origin of this conversion action. - Origin enums.ConversionOriginEnum_ConversionOrigin `protobuf:"varint,30,opt,name=origin,proto3,enum=google.ads.googleads.v16.enums.ConversionOriginEnum_ConversionOrigin" json:"origin,omitempty"` + Origin enums.ConversionOriginEnum_ConversionOrigin `protobuf:"varint,30,opt,name=origin,proto3,enum=google.ads.googleads.v17.enums.ConversionOriginEnum_ConversionOrigin" json:"origin,omitempty"` // If a conversion action's primary_for_goal bit is false, the conversion // action is non-biddable for all campaigns regardless of their customer // conversion goal or campaign conversion goal. @@ -73,7 +73,7 @@ type ConversionAction struct { // 'update' operation because it's not declared as optional. PrimaryForGoal *bool `protobuf:"varint,31,opt,name=primary_for_goal,json=primaryForGoal,proto3,oneof" json:"primary_for_goal,omitempty"` // The category of conversions reported for this conversion action. - Category enums.ConversionActionCategoryEnum_ConversionActionCategory `protobuf:"varint,6,opt,name=category,proto3,enum=google.ads.googleads.v16.enums.ConversionActionCategoryEnum_ConversionActionCategory" json:"category,omitempty"` + Category enums.ConversionActionCategoryEnum_ConversionActionCategory `protobuf:"varint,6,opt,name=category,proto3,enum=google.ads.googleads.v17.enums.ConversionActionCategoryEnum_ConversionActionCategory" json:"category,omitempty"` // Output only. The resource name of the conversion action owner customer, or // null if this is a system-defined conversion action. OwnerCustomer *string `protobuf:"bytes,23,opt,name=owner_customer,json=ownerCustomer,proto3,oneof" json:"owner_customer,omitempty"` @@ -90,7 +90,7 @@ type ConversionAction struct { // conversion action. ValueSettings *ConversionAction_ValueSettings `protobuf:"bytes,11,opt,name=value_settings,json=valueSettings,proto3" json:"value_settings,omitempty"` // How to count conversion events for the conversion action. - CountingType enums.ConversionActionCountingTypeEnum_ConversionActionCountingType `protobuf:"varint,12,opt,name=counting_type,json=countingType,proto3,enum=google.ads.googleads.v16.enums.ConversionActionCountingTypeEnum_ConversionActionCountingType" json:"counting_type,omitempty"` + CountingType enums.ConversionActionCountingTypeEnum_ConversionActionCountingType `protobuf:"varint,12,opt,name=counting_type,json=countingType,proto3,enum=google.ads.googleads.v17.enums.ConversionActionCountingTypeEnum_ConversionActionCountingType" json:"counting_type,omitempty"` // Settings related to this conversion action's attribution model. AttributionModelSettings *ConversionAction_AttributionModelSettings `protobuf:"bytes,13,opt,name=attribution_model_settings,json=attributionModelSettings,proto3" json:"attribution_model_settings,omitempty"` // Output only. The snippets used for tracking conversions. @@ -103,7 +103,7 @@ type ConversionAction struct { // App ID for an app conversion action. AppId *string `protobuf:"bytes,28,opt,name=app_id,json=appId,proto3,oneof" json:"app_id,omitempty"` // Output only. Mobile app vendor for an app conversion action. - MobileAppVendor enums.MobileAppVendorEnum_MobileAppVendor `protobuf:"varint,17,opt,name=mobile_app_vendor,json=mobileAppVendor,proto3,enum=google.ads.googleads.v16.enums.MobileAppVendorEnum_MobileAppVendor" json:"mobile_app_vendor,omitempty"` + MobileAppVendor enums.MobileAppVendorEnum_MobileAppVendor `protobuf:"varint,17,opt,name=mobile_app_vendor,json=mobileAppVendor,proto3,enum=google.ads.googleads.v17.enums.MobileAppVendorEnum_MobileAppVendor" json:"mobile_app_vendor,omitempty"` // Output only. Firebase settings for Firebase conversion types. FirebaseSettings *ConversionAction_FirebaseSettings `protobuf:"bytes,18,opt,name=firebase_settings,json=firebaseSettings,proto3" json:"firebase_settings,omitempty"` // Output only. Third Party App Analytics settings for third party conversion @@ -117,7 +117,7 @@ type ConversionAction struct { func (x *ConversionAction) Reset() { *x = ConversionAction{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_conversion_action_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_conversion_action_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -130,7 +130,7 @@ func (x *ConversionAction) String() string { func (*ConversionAction) ProtoMessage() {} func (x *ConversionAction) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_conversion_action_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_conversion_action_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -143,7 +143,7 @@ func (x *ConversionAction) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionAction.ProtoReflect.Descriptor instead. func (*ConversionAction) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_conversion_action_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_conversion_action_proto_rawDescGZIP(), []int{0} } func (x *ConversionAction) GetResourceName() string { @@ -307,16 +307,16 @@ type ConversionAction_AttributionModelSettings struct { unknownFields protoimpl.UnknownFields // The attribution model type of this conversion action. - AttributionModel enums.AttributionModelEnum_AttributionModel `protobuf:"varint,1,opt,name=attribution_model,json=attributionModel,proto3,enum=google.ads.googleads.v16.enums.AttributionModelEnum_AttributionModel" json:"attribution_model,omitempty"` + AttributionModel enums.AttributionModelEnum_AttributionModel `protobuf:"varint,1,opt,name=attribution_model,json=attributionModel,proto3,enum=google.ads.googleads.v17.enums.AttributionModelEnum_AttributionModel" json:"attribution_model,omitempty"` // Output only. The status of the data-driven attribution model for the // conversion action. - DataDrivenModelStatus enums.DataDrivenModelStatusEnum_DataDrivenModelStatus `protobuf:"varint,2,opt,name=data_driven_model_status,json=dataDrivenModelStatus,proto3,enum=google.ads.googleads.v16.enums.DataDrivenModelStatusEnum_DataDrivenModelStatus" json:"data_driven_model_status,omitempty"` + DataDrivenModelStatus enums.DataDrivenModelStatusEnum_DataDrivenModelStatus `protobuf:"varint,2,opt,name=data_driven_model_status,json=dataDrivenModelStatus,proto3,enum=google.ads.googleads.v17.enums.DataDrivenModelStatusEnum_DataDrivenModelStatus" json:"data_driven_model_status,omitempty"` } func (x *ConversionAction_AttributionModelSettings) Reset() { *x = ConversionAction_AttributionModelSettings{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_conversion_action_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_conversion_action_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -329,7 +329,7 @@ func (x *ConversionAction_AttributionModelSettings) String() string { func (*ConversionAction_AttributionModelSettings) ProtoMessage() {} func (x *ConversionAction_AttributionModelSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_conversion_action_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_conversion_action_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -342,7 +342,7 @@ func (x *ConversionAction_AttributionModelSettings) ProtoReflect() protoreflect. // Deprecated: Use ConversionAction_AttributionModelSettings.ProtoReflect.Descriptor instead. func (*ConversionAction_AttributionModelSettings) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_conversion_action_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v17_resources_conversion_action_proto_rawDescGZIP(), []int{0, 0} } func (x *ConversionAction_AttributionModelSettings) GetAttributionModel() enums.AttributionModelEnum_AttributionModel { @@ -383,7 +383,7 @@ type ConversionAction_ValueSettings struct { func (x *ConversionAction_ValueSettings) Reset() { *x = ConversionAction_ValueSettings{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_conversion_action_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_conversion_action_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -396,7 +396,7 @@ func (x *ConversionAction_ValueSettings) String() string { func (*ConversionAction_ValueSettings) ProtoMessage() {} func (x *ConversionAction_ValueSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_conversion_action_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_conversion_action_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -409,7 +409,7 @@ func (x *ConversionAction_ValueSettings) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionAction_ValueSettings.ProtoReflect.Descriptor instead. func (*ConversionAction_ValueSettings) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_conversion_action_proto_rawDescGZIP(), []int{0, 1} + return file_google_ads_googleads_v17_resources_conversion_action_proto_rawDescGZIP(), []int{0, 1} } func (x *ConversionAction_ValueSettings) GetDefaultValue() float64 { @@ -448,7 +448,7 @@ type ConversionAction_ThirdPartyAppAnalyticsSettings struct { func (x *ConversionAction_ThirdPartyAppAnalyticsSettings) Reset() { *x = ConversionAction_ThirdPartyAppAnalyticsSettings{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_conversion_action_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_conversion_action_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -461,7 +461,7 @@ func (x *ConversionAction_ThirdPartyAppAnalyticsSettings) String() string { func (*ConversionAction_ThirdPartyAppAnalyticsSettings) ProtoMessage() {} func (x *ConversionAction_ThirdPartyAppAnalyticsSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_conversion_action_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_conversion_action_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -474,7 +474,7 @@ func (x *ConversionAction_ThirdPartyAppAnalyticsSettings) ProtoReflect() protore // Deprecated: Use ConversionAction_ThirdPartyAppAnalyticsSettings.ProtoReflect.Descriptor instead. func (*ConversionAction_ThirdPartyAppAnalyticsSettings) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_conversion_action_proto_rawDescGZIP(), []int{0, 2} + return file_google_ads_googleads_v17_resources_conversion_action_proto_rawDescGZIP(), []int{0, 2} } func (x *ConversionAction_ThirdPartyAppAnalyticsSettings) GetEventName() string { @@ -510,7 +510,7 @@ type ConversionAction_FirebaseSettings struct { func (x *ConversionAction_FirebaseSettings) Reset() { *x = ConversionAction_FirebaseSettings{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_conversion_action_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_resources_conversion_action_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -523,7 +523,7 @@ func (x *ConversionAction_FirebaseSettings) String() string { func (*ConversionAction_FirebaseSettings) ProtoMessage() {} func (x *ConversionAction_FirebaseSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_conversion_action_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_resources_conversion_action_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -536,7 +536,7 @@ func (x *ConversionAction_FirebaseSettings) ProtoReflect() protoreflect.Message // Deprecated: Use ConversionAction_FirebaseSettings.ProtoReflect.Descriptor instead. func (*ConversionAction_FirebaseSettings) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_conversion_action_proto_rawDescGZIP(), []int{0, 3} + return file_google_ads_googleads_v17_resources_conversion_action_proto_rawDescGZIP(), []int{0, 3} } func (x *ConversionAction_FirebaseSettings) GetEventName() string { @@ -584,7 +584,7 @@ type ConversionAction_GoogleAnalytics4Settings struct { func (x *ConversionAction_GoogleAnalytics4Settings) Reset() { *x = ConversionAction_GoogleAnalytics4Settings{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_conversion_action_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_resources_conversion_action_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -597,7 +597,7 @@ func (x *ConversionAction_GoogleAnalytics4Settings) String() string { func (*ConversionAction_GoogleAnalytics4Settings) ProtoMessage() {} func (x *ConversionAction_GoogleAnalytics4Settings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_conversion_action_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_resources_conversion_action_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -610,7 +610,7 @@ func (x *ConversionAction_GoogleAnalytics4Settings) ProtoReflect() protoreflect. // Deprecated: Use ConversionAction_GoogleAnalytics4Settings.ProtoReflect.Descriptor instead. func (*ConversionAction_GoogleAnalytics4Settings) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_conversion_action_proto_rawDescGZIP(), []int{0, 4} + return file_google_ads_googleads_v17_resources_conversion_action_proto_rawDescGZIP(), []int{0, 4} } func (x *ConversionAction_GoogleAnalytics4Settings) GetEventName() string { @@ -634,47 +634,47 @@ func (x *ConversionAction_GoogleAnalytics4Settings) GetPropertyId() int64 { return 0 } -var File_google_ads_googleads_v16_resources_conversion_action_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_conversion_action_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_conversion_action_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_conversion_action_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, 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, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 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, + 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, 0x74, 0x61, 0x67, 0x5f, 0x73, 0x6e, 0x69, 0x70, 0x70, 0x65, 0x74, 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, + 0x67, 0x6f, 0x6f, 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, 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, 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, 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, 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, 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, + 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, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 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, + 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, 0x61, 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, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, + 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, 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, 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, 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, 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, @@ -693,20 +693,20 @@ var file_google_ads_googleads_v16_resources_conversion_action_proto_rawDesc = [] 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x69, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 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, 0x43, 0x6f, 0x6e, 0x76, 0x65, + 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, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x66, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x62, 0x0a, 0x06, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x18, 0x1e, 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, 0x43, 0x6f, + 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, 0x69, 0x67, 0x69, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, @@ -715,7 +715,7 @@ var file_google_ads_googleads_v16_resources_conversion_action_proto_rawDesc = [] 0x69, 0x6d, 0x61, 0x72, 0x79, 0x46, 0x6f, 0x72, 0x47, 0x6f, 0x61, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x71, 0x0a, 0x08, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x18, 0x06, 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, + 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, 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, @@ -743,13 +743,13 @@ var file_google_ads_googleads_v16_resources_conversion_action_proto_rawDesc = [] 0x01, 0x12, 0x69, 0x0a, 0x0e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x0b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x0d, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x82, 0x01, 0x0a, 0x0d, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0c, 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, + 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, 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, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, @@ -759,14 +759,14 @@ var file_google_ads_googleads_v16_resources_conversion_action_proto_rawDesc = [] 0x6e, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x18, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x53, 0x0a, 0x0c, 0x74, 0x61, 0x67, 0x5f, 0x73, 0x6e, 0x69, 0x70, 0x70, 0x65, 0x74, 0x73, 0x18, 0x0e, 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, + 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, 0x67, 0x53, 0x6e, 0x69, 0x70, 0x70, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0b, 0x74, 0x61, 0x67, 0x53, 0x6e, 0x69, 0x70, 0x70, 0x65, 0x74, 0x73, 0x12, 0x42, 0x0a, 0x1b, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x63, 0x61, @@ -778,14 +778,14 @@ var file_google_ads_googleads_v16_resources_conversion_action_proto_rawDesc = [] 0x64, 0x88, 0x01, 0x01, 0x12, 0x74, 0x0a, 0x11, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x76, 0x65, 0x6e, 0x64, 0x6f, 0x72, 0x18, 0x11, 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, 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, 0x03, 0x52, 0x0f, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x56, 0x65, 0x6e, 0x64, 0x6f, 0x72, 0x12, 0x77, 0x0a, 0x11, 0x66, 0x69, 0x72, 0x65, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x12, 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, + 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, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x72, 0x65, 0x62, 0x61, 0x73, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x42, 0x03, 0xe0, 0x41, @@ -794,7 +794,7 @@ var file_google_ads_googleads_v16_resources_conversion_action_proto_rawDesc = [] 0x72, 0x74, 0x79, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x61, 0x6e, 0x61, 0x6c, 0x79, 0x74, 0x69, 0x63, 0x73, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x13, 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, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x41, 0x70, 0x70, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x74, 0x69, 0x63, 0x73, 0x53, 0x65, 0x74, @@ -804,7 +804,7 @@ var file_google_ads_googleads_v16_resources_conversion_action_proto_rawDesc = [] 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5f, 0x61, 0x6e, 0x61, 0x6c, 0x79, 0x74, 0x69, 0x63, 0x73, 0x5f, 0x34, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x22, 0x20, 0x01, 0x28, 0x0b, 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, 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, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x74, 0x69, 0x63, 0x73, 0x34, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x42, @@ -815,14 +815,14 @@ var file_google_ads_googleads_v16_resources_conversion_action_proto_rawDesc = [] 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 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, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, + 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x10, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x12, 0x8d, 0x01, 0x0a, 0x18, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x64, 0x72, 0x69, 0x76, 0x65, 0x6e, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 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, 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, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x44, 0x72, 0x69, 0x76, 0x65, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x53, 0x74, 0x61, @@ -896,69 +896,69 @@ var file_google_ads_googleads_v16_resources_conversion_action_proto_rawDesc = [] 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x69, 0x64, 0x42, 0x87, 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, 0x15, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 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, + 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, 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, 0x26, 0x47, 0x6f, + 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, + 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_conversion_action_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_conversion_action_proto_rawDescData = file_google_ads_googleads_v16_resources_conversion_action_proto_rawDesc + file_google_ads_googleads_v17_resources_conversion_action_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_conversion_action_proto_rawDescData = file_google_ads_googleads_v17_resources_conversion_action_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_conversion_action_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_conversion_action_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_conversion_action_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_conversion_action_proto_rawDescData) +func file_google_ads_googleads_v17_resources_conversion_action_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_conversion_action_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_conversion_action_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_conversion_action_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_conversion_action_proto_rawDescData -} - -var file_google_ads_googleads_v16_resources_conversion_action_proto_msgTypes = make([]protoimpl.MessageInfo, 6) -var file_google_ads_googleads_v16_resources_conversion_action_proto_goTypes = []interface{}{ - (*ConversionAction)(nil), // 0: google.ads.googleads.v16.resources.ConversionAction - (*ConversionAction_AttributionModelSettings)(nil), // 1: google.ads.googleads.v16.resources.ConversionAction.AttributionModelSettings - (*ConversionAction_ValueSettings)(nil), // 2: google.ads.googleads.v16.resources.ConversionAction.ValueSettings - (*ConversionAction_ThirdPartyAppAnalyticsSettings)(nil), // 3: google.ads.googleads.v16.resources.ConversionAction.ThirdPartyAppAnalyticsSettings - (*ConversionAction_FirebaseSettings)(nil), // 4: google.ads.googleads.v16.resources.ConversionAction.FirebaseSettings - (*ConversionAction_GoogleAnalytics4Settings)(nil), // 5: google.ads.googleads.v16.resources.ConversionAction.GoogleAnalytics4Settings - (enums.ConversionActionStatusEnum_ConversionActionStatus)(0), // 6: google.ads.googleads.v16.enums.ConversionActionStatusEnum.ConversionActionStatus - (enums.ConversionActionTypeEnum_ConversionActionType)(0), // 7: google.ads.googleads.v16.enums.ConversionActionTypeEnum.ConversionActionType - (enums.ConversionOriginEnum_ConversionOrigin)(0), // 8: google.ads.googleads.v16.enums.ConversionOriginEnum.ConversionOrigin - (enums.ConversionActionCategoryEnum_ConversionActionCategory)(0), // 9: google.ads.googleads.v16.enums.ConversionActionCategoryEnum.ConversionActionCategory - (enums.ConversionActionCountingTypeEnum_ConversionActionCountingType)(0), // 10: google.ads.googleads.v16.enums.ConversionActionCountingTypeEnum.ConversionActionCountingType - (*common.TagSnippet)(nil), // 11: google.ads.googleads.v16.common.TagSnippet - (enums.MobileAppVendorEnum_MobileAppVendor)(0), // 12: google.ads.googleads.v16.enums.MobileAppVendorEnum.MobileAppVendor - (enums.AttributionModelEnum_AttributionModel)(0), // 13: google.ads.googleads.v16.enums.AttributionModelEnum.AttributionModel - (enums.DataDrivenModelStatusEnum_DataDrivenModelStatus)(0), // 14: google.ads.googleads.v16.enums.DataDrivenModelStatusEnum.DataDrivenModelStatus -} -var file_google_ads_googleads_v16_resources_conversion_action_proto_depIdxs = []int32{ - 6, // 0: google.ads.googleads.v16.resources.ConversionAction.status:type_name -> google.ads.googleads.v16.enums.ConversionActionStatusEnum.ConversionActionStatus - 7, // 1: google.ads.googleads.v16.resources.ConversionAction.type:type_name -> google.ads.googleads.v16.enums.ConversionActionTypeEnum.ConversionActionType - 8, // 2: google.ads.googleads.v16.resources.ConversionAction.origin:type_name -> google.ads.googleads.v16.enums.ConversionOriginEnum.ConversionOrigin - 9, // 3: google.ads.googleads.v16.resources.ConversionAction.category:type_name -> google.ads.googleads.v16.enums.ConversionActionCategoryEnum.ConversionActionCategory - 2, // 4: google.ads.googleads.v16.resources.ConversionAction.value_settings:type_name -> google.ads.googleads.v16.resources.ConversionAction.ValueSettings - 10, // 5: google.ads.googleads.v16.resources.ConversionAction.counting_type:type_name -> google.ads.googleads.v16.enums.ConversionActionCountingTypeEnum.ConversionActionCountingType - 1, // 6: google.ads.googleads.v16.resources.ConversionAction.attribution_model_settings:type_name -> google.ads.googleads.v16.resources.ConversionAction.AttributionModelSettings - 11, // 7: google.ads.googleads.v16.resources.ConversionAction.tag_snippets:type_name -> google.ads.googleads.v16.common.TagSnippet - 12, // 8: google.ads.googleads.v16.resources.ConversionAction.mobile_app_vendor:type_name -> google.ads.googleads.v16.enums.MobileAppVendorEnum.MobileAppVendor - 4, // 9: google.ads.googleads.v16.resources.ConversionAction.firebase_settings:type_name -> google.ads.googleads.v16.resources.ConversionAction.FirebaseSettings - 3, // 10: google.ads.googleads.v16.resources.ConversionAction.third_party_app_analytics_settings:type_name -> google.ads.googleads.v16.resources.ConversionAction.ThirdPartyAppAnalyticsSettings - 5, // 11: google.ads.googleads.v16.resources.ConversionAction.google_analytics_4_settings:type_name -> google.ads.googleads.v16.resources.ConversionAction.GoogleAnalytics4Settings - 13, // 12: google.ads.googleads.v16.resources.ConversionAction.AttributionModelSettings.attribution_model:type_name -> google.ads.googleads.v16.enums.AttributionModelEnum.AttributionModel - 14, // 13: google.ads.googleads.v16.resources.ConversionAction.AttributionModelSettings.data_driven_model_status:type_name -> google.ads.googleads.v16.enums.DataDrivenModelStatusEnum.DataDrivenModelStatus + return file_google_ads_googleads_v17_resources_conversion_action_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_conversion_action_proto_msgTypes = make([]protoimpl.MessageInfo, 6) +var file_google_ads_googleads_v17_resources_conversion_action_proto_goTypes = []interface{}{ + (*ConversionAction)(nil), // 0: google.ads.googleads.v17.resources.ConversionAction + (*ConversionAction_AttributionModelSettings)(nil), // 1: google.ads.googleads.v17.resources.ConversionAction.AttributionModelSettings + (*ConversionAction_ValueSettings)(nil), // 2: google.ads.googleads.v17.resources.ConversionAction.ValueSettings + (*ConversionAction_ThirdPartyAppAnalyticsSettings)(nil), // 3: google.ads.googleads.v17.resources.ConversionAction.ThirdPartyAppAnalyticsSettings + (*ConversionAction_FirebaseSettings)(nil), // 4: google.ads.googleads.v17.resources.ConversionAction.FirebaseSettings + (*ConversionAction_GoogleAnalytics4Settings)(nil), // 5: google.ads.googleads.v17.resources.ConversionAction.GoogleAnalytics4Settings + (enums.ConversionActionStatusEnum_ConversionActionStatus)(0), // 6: google.ads.googleads.v17.enums.ConversionActionStatusEnum.ConversionActionStatus + (enums.ConversionActionTypeEnum_ConversionActionType)(0), // 7: google.ads.googleads.v17.enums.ConversionActionTypeEnum.ConversionActionType + (enums.ConversionOriginEnum_ConversionOrigin)(0), // 8: google.ads.googleads.v17.enums.ConversionOriginEnum.ConversionOrigin + (enums.ConversionActionCategoryEnum_ConversionActionCategory)(0), // 9: google.ads.googleads.v17.enums.ConversionActionCategoryEnum.ConversionActionCategory + (enums.ConversionActionCountingTypeEnum_ConversionActionCountingType)(0), // 10: google.ads.googleads.v17.enums.ConversionActionCountingTypeEnum.ConversionActionCountingType + (*common.TagSnippet)(nil), // 11: google.ads.googleads.v17.common.TagSnippet + (enums.MobileAppVendorEnum_MobileAppVendor)(0), // 12: google.ads.googleads.v17.enums.MobileAppVendorEnum.MobileAppVendor + (enums.AttributionModelEnum_AttributionModel)(0), // 13: google.ads.googleads.v17.enums.AttributionModelEnum.AttributionModel + (enums.DataDrivenModelStatusEnum_DataDrivenModelStatus)(0), // 14: google.ads.googleads.v17.enums.DataDrivenModelStatusEnum.DataDrivenModelStatus +} +var file_google_ads_googleads_v17_resources_conversion_action_proto_depIdxs = []int32{ + 6, // 0: google.ads.googleads.v17.resources.ConversionAction.status:type_name -> google.ads.googleads.v17.enums.ConversionActionStatusEnum.ConversionActionStatus + 7, // 1: google.ads.googleads.v17.resources.ConversionAction.type:type_name -> google.ads.googleads.v17.enums.ConversionActionTypeEnum.ConversionActionType + 8, // 2: google.ads.googleads.v17.resources.ConversionAction.origin:type_name -> google.ads.googleads.v17.enums.ConversionOriginEnum.ConversionOrigin + 9, // 3: google.ads.googleads.v17.resources.ConversionAction.category:type_name -> google.ads.googleads.v17.enums.ConversionActionCategoryEnum.ConversionActionCategory + 2, // 4: google.ads.googleads.v17.resources.ConversionAction.value_settings:type_name -> google.ads.googleads.v17.resources.ConversionAction.ValueSettings + 10, // 5: google.ads.googleads.v17.resources.ConversionAction.counting_type:type_name -> google.ads.googleads.v17.enums.ConversionActionCountingTypeEnum.ConversionActionCountingType + 1, // 6: google.ads.googleads.v17.resources.ConversionAction.attribution_model_settings:type_name -> google.ads.googleads.v17.resources.ConversionAction.AttributionModelSettings + 11, // 7: google.ads.googleads.v17.resources.ConversionAction.tag_snippets:type_name -> google.ads.googleads.v17.common.TagSnippet + 12, // 8: google.ads.googleads.v17.resources.ConversionAction.mobile_app_vendor:type_name -> google.ads.googleads.v17.enums.MobileAppVendorEnum.MobileAppVendor + 4, // 9: google.ads.googleads.v17.resources.ConversionAction.firebase_settings:type_name -> google.ads.googleads.v17.resources.ConversionAction.FirebaseSettings + 3, // 10: google.ads.googleads.v17.resources.ConversionAction.third_party_app_analytics_settings:type_name -> google.ads.googleads.v17.resources.ConversionAction.ThirdPartyAppAnalyticsSettings + 5, // 11: google.ads.googleads.v17.resources.ConversionAction.google_analytics_4_settings:type_name -> google.ads.googleads.v17.resources.ConversionAction.GoogleAnalytics4Settings + 13, // 12: google.ads.googleads.v17.resources.ConversionAction.AttributionModelSettings.attribution_model:type_name -> google.ads.googleads.v17.enums.AttributionModelEnum.AttributionModel + 14, // 13: google.ads.googleads.v17.resources.ConversionAction.AttributionModelSettings.data_driven_model_status:type_name -> google.ads.googleads.v17.enums.DataDrivenModelStatusEnum.DataDrivenModelStatus 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 @@ -966,13 +966,13 @@ var file_google_ads_googleads_v16_resources_conversion_action_proto_depIdxs = [] 0, // [0:14] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_conversion_action_proto_init() } -func file_google_ads_googleads_v16_resources_conversion_action_proto_init() { - if File_google_ads_googleads_v16_resources_conversion_action_proto != nil { +func init() { file_google_ads_googleads_v17_resources_conversion_action_proto_init() } +func file_google_ads_googleads_v17_resources_conversion_action_proto_init() { + if File_google_ads_googleads_v17_resources_conversion_action_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_conversion_action_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_conversion_action_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConversionAction); i { case 0: return &v.state @@ -984,7 +984,7 @@ func file_google_ads_googleads_v16_resources_conversion_action_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_conversion_action_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_conversion_action_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConversionAction_AttributionModelSettings); i { case 0: return &v.state @@ -996,7 +996,7 @@ func file_google_ads_googleads_v16_resources_conversion_action_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_conversion_action_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_conversion_action_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConversionAction_ValueSettings); i { case 0: return &v.state @@ -1008,7 +1008,7 @@ func file_google_ads_googleads_v16_resources_conversion_action_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_conversion_action_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_conversion_action_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConversionAction_ThirdPartyAppAnalyticsSettings); i { case 0: return &v.state @@ -1020,7 +1020,7 @@ func file_google_ads_googleads_v16_resources_conversion_action_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_conversion_action_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_conversion_action_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConversionAction_FirebaseSettings); i { case 0: return &v.state @@ -1032,7 +1032,7 @@ func file_google_ads_googleads_v16_resources_conversion_action_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_conversion_action_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_conversion_action_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConversionAction_GoogleAnalytics4Settings); i { case 0: return &v.state @@ -1045,26 +1045,26 @@ func file_google_ads_googleads_v16_resources_conversion_action_proto_init() { } } } - file_google_ads_googleads_v16_resources_conversion_action_proto_msgTypes[0].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_conversion_action_proto_msgTypes[2].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_conversion_action_proto_msgTypes[3].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_conversion_action_proto_msgTypes[4].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_conversion_action_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_conversion_action_proto_msgTypes[2].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_conversion_action_proto_msgTypes[3].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_conversion_action_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_resources_conversion_action_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_conversion_action_proto_rawDesc, NumEnums: 0, NumMessages: 6, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_conversion_action_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_conversion_action_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_conversion_action_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_conversion_action_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_conversion_action_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_conversion_action_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_conversion_action_proto = out.File - file_google_ads_googleads_v16_resources_conversion_action_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_conversion_action_proto_goTypes = nil - file_google_ads_googleads_v16_resources_conversion_action_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_conversion_action_proto = out.File + file_google_ads_googleads_v17_resources_conversion_action_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_conversion_action_proto_goTypes = nil + file_google_ads_googleads_v17_resources_conversion_action_proto_depIdxs = nil } diff --git a/resources/conversion_custom_variable.pb.go b/resources/conversion_custom_variable.pb.go index 8e49772a..71860da9 100644 --- a/resources/conversion_custom_variable.pb.go +++ b/resources/conversion_custom_variable.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/conversion_custom_variable.proto +// source: google/ads/googleads/v17/resources/conversion_custom_variable.proto package resources @@ -64,7 +64,7 @@ type ConversionCustomVariable struct { // the tag. Tag string `protobuf:"bytes,4,opt,name=tag,proto3" json:"tag,omitempty"` // The status of the conversion custom variable for conversion event accrual. - Status enums.ConversionCustomVariableStatusEnum_ConversionCustomVariableStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.ConversionCustomVariableStatusEnum_ConversionCustomVariableStatus" json:"status,omitempty"` + Status enums.ConversionCustomVariableStatusEnum_ConversionCustomVariableStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.ConversionCustomVariableStatusEnum_ConversionCustomVariableStatus" json:"status,omitempty"` // Output only. The resource name of the customer that owns the conversion // custom variable. OwnerCustomer string `protobuf:"bytes,6,opt,name=owner_customer,json=ownerCustomer,proto3" json:"owner_customer,omitempty"` @@ -73,7 +73,7 @@ type ConversionCustomVariable struct { func (x *ConversionCustomVariable) Reset() { *x = ConversionCustomVariable{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_conversion_custom_variable_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_conversion_custom_variable_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -86,7 +86,7 @@ func (x *ConversionCustomVariable) String() string { func (*ConversionCustomVariable) ProtoMessage() {} func (x *ConversionCustomVariable) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_conversion_custom_variable_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_conversion_custom_variable_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 *ConversionCustomVariable) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionCustomVariable.ProtoReflect.Descriptor instead. func (*ConversionCustomVariable) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_conversion_custom_variable_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_conversion_custom_variable_proto_rawDescGZIP(), []int{0} } func (x *ConversionCustomVariable) GetResourceName() string { @@ -144,18 +144,18 @@ func (x *ConversionCustomVariable) GetOwnerCustomer() string { return "" } -var File_google_ads_googleads_v16_resources_conversion_custom_variable_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_conversion_custom_variable_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_conversion_custom_variable_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_conversion_custom_variable_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, 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, 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, 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, + 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, 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, 0x76, 0x65, 0x72, + 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, @@ -176,7 +176,7 @@ var file_google_ads_googleads_v16_resources_conversion_custom_variable_proto_raw 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe0, 0x41, 0x02, 0xe0, 0x41, 0x05, 0x52, 0x03, 0x74, 0x61, 0x67, 0x12, 0x79, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 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, + 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, @@ -197,44 +197,44 @@ var file_google_ads_googleads_v16_resources_conversion_custom_variable_proto_raw 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, 0x69, 0x64, 0x7d, 0x42, 0x8f, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x1d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 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_conversion_custom_variable_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_conversion_custom_variable_proto_rawDescData = file_google_ads_googleads_v16_resources_conversion_custom_variable_proto_rawDesc + file_google_ads_googleads_v17_resources_conversion_custom_variable_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_conversion_custom_variable_proto_rawDescData = file_google_ads_googleads_v17_resources_conversion_custom_variable_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_conversion_custom_variable_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_conversion_custom_variable_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_conversion_custom_variable_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_conversion_custom_variable_proto_rawDescData) +func file_google_ads_googleads_v17_resources_conversion_custom_variable_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_conversion_custom_variable_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_conversion_custom_variable_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_conversion_custom_variable_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_conversion_custom_variable_proto_rawDescData + return file_google_ads_googleads_v17_resources_conversion_custom_variable_proto_rawDescData } -var file_google_ads_googleads_v16_resources_conversion_custom_variable_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_conversion_custom_variable_proto_goTypes = []interface{}{ - (*ConversionCustomVariable)(nil), // 0: google.ads.googleads.v16.resources.ConversionCustomVariable - (enums.ConversionCustomVariableStatusEnum_ConversionCustomVariableStatus)(0), // 1: google.ads.googleads.v16.enums.ConversionCustomVariableStatusEnum.ConversionCustomVariableStatus +var file_google_ads_googleads_v17_resources_conversion_custom_variable_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_conversion_custom_variable_proto_goTypes = []interface{}{ + (*ConversionCustomVariable)(nil), // 0: google.ads.googleads.v17.resources.ConversionCustomVariable + (enums.ConversionCustomVariableStatusEnum_ConversionCustomVariableStatus)(0), // 1: google.ads.googleads.v17.enums.ConversionCustomVariableStatusEnum.ConversionCustomVariableStatus } -var file_google_ads_googleads_v16_resources_conversion_custom_variable_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.ConversionCustomVariable.status:type_name -> google.ads.googleads.v16.enums.ConversionCustomVariableStatusEnum.ConversionCustomVariableStatus +var file_google_ads_googleads_v17_resources_conversion_custom_variable_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.ConversionCustomVariable.status:type_name -> google.ads.googleads.v17.enums.ConversionCustomVariableStatusEnum.ConversionCustomVariableStatus 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 @@ -242,13 +242,13 @@ var file_google_ads_googleads_v16_resources_conversion_custom_variable_proto_dep 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_conversion_custom_variable_proto_init() } -func file_google_ads_googleads_v16_resources_conversion_custom_variable_proto_init() { - if File_google_ads_googleads_v16_resources_conversion_custom_variable_proto != nil { +func init() { file_google_ads_googleads_v17_resources_conversion_custom_variable_proto_init() } +func file_google_ads_googleads_v17_resources_conversion_custom_variable_proto_init() { + if File_google_ads_googleads_v17_resources_conversion_custom_variable_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_conversion_custom_variable_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_conversion_custom_variable_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConversionCustomVariable); i { case 0: return &v.state @@ -265,18 +265,18 @@ func file_google_ads_googleads_v16_resources_conversion_custom_variable_proto_in out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_conversion_custom_variable_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_conversion_custom_variable_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_conversion_custom_variable_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_conversion_custom_variable_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_conversion_custom_variable_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_conversion_custom_variable_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_conversion_custom_variable_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_conversion_custom_variable_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_conversion_custom_variable_proto = out.File - file_google_ads_googleads_v16_resources_conversion_custom_variable_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_conversion_custom_variable_proto_goTypes = nil - file_google_ads_googleads_v16_resources_conversion_custom_variable_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_conversion_custom_variable_proto = out.File + file_google_ads_googleads_v17_resources_conversion_custom_variable_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_conversion_custom_variable_proto_goTypes = nil + file_google_ads_googleads_v17_resources_conversion_custom_variable_proto_depIdxs = nil } diff --git a/resources/conversion_goal_campaign_config.pb.go b/resources/conversion_goal_campaign_config.pb.go index f0079f51..cb4e0a54 100644 --- a/resources/conversion_goal_campaign_config.pb.go +++ b/resources/conversion_goal_campaign_config.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/conversion_goal_campaign_config.proto +// source: google/ads/googleads/v17/resources/conversion_goal_campaign_config.proto package resources @@ -51,7 +51,7 @@ type ConversionGoalCampaignConfig struct { // associated. Campaign string `protobuf:"bytes,2,opt,name=campaign,proto3" json:"campaign,omitempty"` // The level of goal config the campaign is using. - GoalConfigLevel enums.GoalConfigLevelEnum_GoalConfigLevel `protobuf:"varint,3,opt,name=goal_config_level,json=goalConfigLevel,proto3,enum=google.ads.googleads.v16.enums.GoalConfigLevelEnum_GoalConfigLevel" json:"goal_config_level,omitempty"` + GoalConfigLevel enums.GoalConfigLevelEnum_GoalConfigLevel `protobuf:"varint,3,opt,name=goal_config_level,json=goalConfigLevel,proto3,enum=google.ads.googleads.v17.enums.GoalConfigLevelEnum_GoalConfigLevel" json:"goal_config_level,omitempty"` // The custom conversion goal the campaign is using for optimization. CustomConversionGoal string `protobuf:"bytes,4,opt,name=custom_conversion_goal,json=customConversionGoal,proto3" json:"custom_conversion_goal,omitempty"` } @@ -59,7 +59,7 @@ type ConversionGoalCampaignConfig struct { func (x *ConversionGoalCampaignConfig) Reset() { *x = ConversionGoalCampaignConfig{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_conversion_goal_campaign_config_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_conversion_goal_campaign_config_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -72,7 +72,7 @@ func (x *ConversionGoalCampaignConfig) String() string { func (*ConversionGoalCampaignConfig) ProtoMessage() {} func (x *ConversionGoalCampaignConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_conversion_goal_campaign_config_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_conversion_goal_campaign_config_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85,7 +85,7 @@ func (x *ConversionGoalCampaignConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionGoalCampaignConfig.ProtoReflect.Descriptor instead. func (*ConversionGoalCampaignConfig) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_conversion_goal_campaign_config_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_conversion_goal_campaign_config_proto_rawDescGZIP(), []int{0} } func (x *ConversionGoalCampaignConfig) GetResourceName() string { @@ -116,18 +116,18 @@ func (x *ConversionGoalCampaignConfig) GetCustomConversionGoal() string { return "" } -var File_google_ads_googleads_v16_resources_conversion_goal_campaign_config_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_conversion_goal_campaign_config_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_conversion_goal_campaign_config_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_conversion_goal_campaign_config_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, 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, 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, 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, 0x36, + 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, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x67, + 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, 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, @@ -149,7 +149,7 @@ var file_google_ads_googleads_v16_resources_conversion_goal_campaign_config_prot 0x0a, 0x11, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 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, 0x47, 0x6f, 0x61, 0x6c, 0x43, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x47, 0x6f, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x47, 0x6f, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x52, 0x0f, 0x67, 0x6f, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x12, @@ -169,44 +169,44 @@ var file_google_ads_googleads_v16_resources_conversion_goal_campaign_config_prot 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x2f, 0x7b, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x93, 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, 0x21, 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, 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, + 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, 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, + 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, 0x63, 0x65, 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_conversion_goal_campaign_config_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_conversion_goal_campaign_config_proto_rawDescData = file_google_ads_googleads_v16_resources_conversion_goal_campaign_config_proto_rawDesc + file_google_ads_googleads_v17_resources_conversion_goal_campaign_config_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_conversion_goal_campaign_config_proto_rawDescData = file_google_ads_googleads_v17_resources_conversion_goal_campaign_config_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_conversion_goal_campaign_config_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_conversion_goal_campaign_config_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_conversion_goal_campaign_config_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_conversion_goal_campaign_config_proto_rawDescData) +func file_google_ads_googleads_v17_resources_conversion_goal_campaign_config_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_conversion_goal_campaign_config_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_conversion_goal_campaign_config_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_conversion_goal_campaign_config_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_conversion_goal_campaign_config_proto_rawDescData + return file_google_ads_googleads_v17_resources_conversion_goal_campaign_config_proto_rawDescData } -var file_google_ads_googleads_v16_resources_conversion_goal_campaign_config_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_conversion_goal_campaign_config_proto_goTypes = []interface{}{ - (*ConversionGoalCampaignConfig)(nil), // 0: google.ads.googleads.v16.resources.ConversionGoalCampaignConfig - (enums.GoalConfigLevelEnum_GoalConfigLevel)(0), // 1: google.ads.googleads.v16.enums.GoalConfigLevelEnum.GoalConfigLevel +var file_google_ads_googleads_v17_resources_conversion_goal_campaign_config_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_conversion_goal_campaign_config_proto_goTypes = []interface{}{ + (*ConversionGoalCampaignConfig)(nil), // 0: google.ads.googleads.v17.resources.ConversionGoalCampaignConfig + (enums.GoalConfigLevelEnum_GoalConfigLevel)(0), // 1: google.ads.googleads.v17.enums.GoalConfigLevelEnum.GoalConfigLevel } -var file_google_ads_googleads_v16_resources_conversion_goal_campaign_config_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.ConversionGoalCampaignConfig.goal_config_level:type_name -> google.ads.googleads.v16.enums.GoalConfigLevelEnum.GoalConfigLevel +var file_google_ads_googleads_v17_resources_conversion_goal_campaign_config_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.ConversionGoalCampaignConfig.goal_config_level:type_name -> google.ads.googleads.v17.enums.GoalConfigLevelEnum.GoalConfigLevel 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 @@ -214,13 +214,13 @@ var file_google_ads_googleads_v16_resources_conversion_goal_campaign_config_prot 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_conversion_goal_campaign_config_proto_init() } -func file_google_ads_googleads_v16_resources_conversion_goal_campaign_config_proto_init() { - if File_google_ads_googleads_v16_resources_conversion_goal_campaign_config_proto != nil { +func init() { file_google_ads_googleads_v17_resources_conversion_goal_campaign_config_proto_init() } +func file_google_ads_googleads_v17_resources_conversion_goal_campaign_config_proto_init() { + if File_google_ads_googleads_v17_resources_conversion_goal_campaign_config_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_conversion_goal_campaign_config_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_conversion_goal_campaign_config_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConversionGoalCampaignConfig); i { case 0: return &v.state @@ -237,18 +237,18 @@ func file_google_ads_googleads_v16_resources_conversion_goal_campaign_config_pro out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_conversion_goal_campaign_config_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_conversion_goal_campaign_config_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_conversion_goal_campaign_config_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_conversion_goal_campaign_config_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_conversion_goal_campaign_config_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_conversion_goal_campaign_config_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_conversion_goal_campaign_config_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_conversion_goal_campaign_config_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_conversion_goal_campaign_config_proto = out.File - file_google_ads_googleads_v16_resources_conversion_goal_campaign_config_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_conversion_goal_campaign_config_proto_goTypes = nil - file_google_ads_googleads_v16_resources_conversion_goal_campaign_config_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_conversion_goal_campaign_config_proto = out.File + file_google_ads_googleads_v17_resources_conversion_goal_campaign_config_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_conversion_goal_campaign_config_proto_goTypes = nil + file_google_ads_googleads_v17_resources_conversion_goal_campaign_config_proto_depIdxs = nil } diff --git a/resources/conversion_value_rule.pb.go b/resources/conversion_value_rule.pb.go index 2c2cba4f..f8f41660 100644 --- a/resources/conversion_value_rule.pb.go +++ b/resources/conversion_value_rule.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/conversion_value_rule.proto +// source: google/ads/googleads/v17/resources/conversion_value_rule.proto package resources @@ -66,13 +66,13 @@ type ConversionValueRule struct { // ** Read-only ** OwnerCustomer string `protobuf:"bytes,7,opt,name=owner_customer,json=ownerCustomer,proto3" json:"owner_customer,omitempty"` // The status of the conversion value rule. - Status enums.ConversionValueRuleStatusEnum_ConversionValueRuleStatus `protobuf:"varint,8,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.ConversionValueRuleStatusEnum_ConversionValueRuleStatus" json:"status,omitempty"` + Status enums.ConversionValueRuleStatusEnum_ConversionValueRuleStatus `protobuf:"varint,8,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.ConversionValueRuleStatusEnum_ConversionValueRuleStatus" json:"status,omitempty"` } func (x *ConversionValueRule) Reset() { *x = ConversionValueRule{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_conversion_value_rule_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_conversion_value_rule_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -85,7 +85,7 @@ func (x *ConversionValueRule) String() string { func (*ConversionValueRule) ProtoMessage() {} func (x *ConversionValueRule) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_conversion_value_rule_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_conversion_value_rule_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -98,7 +98,7 @@ func (x *ConversionValueRule) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionValueRule.ProtoReflect.Descriptor instead. func (*ConversionValueRule) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_conversion_value_rule_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_conversion_value_rule_proto_rawDescGZIP(), []int{0} } func (x *ConversionValueRule) GetResourceName() string { @@ -164,7 +164,7 @@ type ConversionValueRule_ValueRuleAction struct { unknownFields protoimpl.UnknownFields // Specifies applied operation. - Operation enums.ValueRuleOperationEnum_ValueRuleOperation `protobuf:"varint,1,opt,name=operation,proto3,enum=google.ads.googleads.v16.enums.ValueRuleOperationEnum_ValueRuleOperation" json:"operation,omitempty"` + Operation enums.ValueRuleOperationEnum_ValueRuleOperation `protobuf:"varint,1,opt,name=operation,proto3,enum=google.ads.googleads.v17.enums.ValueRuleOperationEnum_ValueRuleOperation" json:"operation,omitempty"` // Specifies applied value. Value float64 `protobuf:"fixed64,2,opt,name=value,proto3" json:"value,omitempty"` } @@ -172,7 +172,7 @@ type ConversionValueRule_ValueRuleAction struct { func (x *ConversionValueRule_ValueRuleAction) Reset() { *x = ConversionValueRule_ValueRuleAction{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_conversion_value_rule_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_conversion_value_rule_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -185,7 +185,7 @@ func (x *ConversionValueRule_ValueRuleAction) String() string { func (*ConversionValueRule_ValueRuleAction) ProtoMessage() {} func (x *ConversionValueRule_ValueRuleAction) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_conversion_value_rule_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_conversion_value_rule_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -198,7 +198,7 @@ func (x *ConversionValueRule_ValueRuleAction) ProtoReflect() protoreflect.Messag // Deprecated: Use ConversionValueRule_ValueRuleAction.ProtoReflect.Descriptor instead. func (*ConversionValueRule_ValueRuleAction) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_conversion_value_rule_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v17_resources_conversion_value_rule_proto_rawDescGZIP(), []int{0, 0} } func (x *ConversionValueRule_ValueRuleAction) GetOperation() enums.ValueRuleOperationEnum_ValueRuleOperation { @@ -224,17 +224,17 @@ type ConversionValueRule_ValueRuleGeoLocationCondition struct { // Geo locations that advertisers want to exclude. ExcludedGeoTargetConstants []string `protobuf:"bytes,1,rep,name=excluded_geo_target_constants,json=excludedGeoTargetConstants,proto3" json:"excluded_geo_target_constants,omitempty"` // Excluded Geo location match type. - ExcludedGeoMatchType enums.ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType `protobuf:"varint,2,opt,name=excluded_geo_match_type,json=excludedGeoMatchType,proto3,enum=google.ads.googleads.v16.enums.ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType" json:"excluded_geo_match_type,omitempty"` + ExcludedGeoMatchType enums.ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType `protobuf:"varint,2,opt,name=excluded_geo_match_type,json=excludedGeoMatchType,proto3,enum=google.ads.googleads.v17.enums.ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType" json:"excluded_geo_match_type,omitempty"` // Geo locations that advertisers want to include. GeoTargetConstants []string `protobuf:"bytes,3,rep,name=geo_target_constants,json=geoTargetConstants,proto3" json:"geo_target_constants,omitempty"` // Included Geo location match type. - GeoMatchType enums.ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType `protobuf:"varint,4,opt,name=geo_match_type,json=geoMatchType,proto3,enum=google.ads.googleads.v16.enums.ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType" json:"geo_match_type,omitempty"` + GeoMatchType enums.ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType `protobuf:"varint,4,opt,name=geo_match_type,json=geoMatchType,proto3,enum=google.ads.googleads.v17.enums.ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType" json:"geo_match_type,omitempty"` } func (x *ConversionValueRule_ValueRuleGeoLocationCondition) Reset() { *x = ConversionValueRule_ValueRuleGeoLocationCondition{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_conversion_value_rule_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_conversion_value_rule_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -247,7 +247,7 @@ func (x *ConversionValueRule_ValueRuleGeoLocationCondition) String() string { func (*ConversionValueRule_ValueRuleGeoLocationCondition) ProtoMessage() {} func (x *ConversionValueRule_ValueRuleGeoLocationCondition) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_conversion_value_rule_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_conversion_value_rule_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 *ConversionValueRule_ValueRuleGeoLocationCondition) ProtoReflect() proto // Deprecated: Use ConversionValueRule_ValueRuleGeoLocationCondition.ProtoReflect.Descriptor instead. func (*ConversionValueRule_ValueRuleGeoLocationCondition) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_conversion_value_rule_proto_rawDescGZIP(), []int{0, 1} + return file_google_ads_googleads_v17_resources_conversion_value_rule_proto_rawDescGZIP(), []int{0, 1} } func (x *ConversionValueRule_ValueRuleGeoLocationCondition) GetExcludedGeoTargetConstants() []string { @@ -298,13 +298,13 @@ type ConversionValueRule_ValueRuleDeviceCondition struct { unknownFields protoimpl.UnknownFields // Value for device type condition. - DeviceTypes []enums.ValueRuleDeviceTypeEnum_ValueRuleDeviceType `protobuf:"varint,1,rep,packed,name=device_types,json=deviceTypes,proto3,enum=google.ads.googleads.v16.enums.ValueRuleDeviceTypeEnum_ValueRuleDeviceType" json:"device_types,omitempty"` + DeviceTypes []enums.ValueRuleDeviceTypeEnum_ValueRuleDeviceType `protobuf:"varint,1,rep,packed,name=device_types,json=deviceTypes,proto3,enum=google.ads.googleads.v17.enums.ValueRuleDeviceTypeEnum_ValueRuleDeviceType" json:"device_types,omitempty"` } func (x *ConversionValueRule_ValueRuleDeviceCondition) Reset() { *x = ConversionValueRule_ValueRuleDeviceCondition{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_conversion_value_rule_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_conversion_value_rule_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -317,7 +317,7 @@ func (x *ConversionValueRule_ValueRuleDeviceCondition) String() string { func (*ConversionValueRule_ValueRuleDeviceCondition) ProtoMessage() {} func (x *ConversionValueRule_ValueRuleDeviceCondition) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_conversion_value_rule_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_conversion_value_rule_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -330,7 +330,7 @@ func (x *ConversionValueRule_ValueRuleDeviceCondition) ProtoReflect() protorefle // Deprecated: Use ConversionValueRule_ValueRuleDeviceCondition.ProtoReflect.Descriptor instead. func (*ConversionValueRule_ValueRuleDeviceCondition) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_conversion_value_rule_proto_rawDescGZIP(), []int{0, 2} + return file_google_ads_googleads_v17_resources_conversion_value_rule_proto_rawDescGZIP(), []int{0, 2} } func (x *ConversionValueRule_ValueRuleDeviceCondition) GetDeviceTypes() []enums.ValueRuleDeviceTypeEnum_ValueRuleDeviceType { @@ -355,7 +355,7 @@ type ConversionValueRule_ValueRuleAudienceCondition struct { func (x *ConversionValueRule_ValueRuleAudienceCondition) Reset() { *x = ConversionValueRule_ValueRuleAudienceCondition{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_conversion_value_rule_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_resources_conversion_value_rule_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -368,7 +368,7 @@ func (x *ConversionValueRule_ValueRuleAudienceCondition) String() string { func (*ConversionValueRule_ValueRuleAudienceCondition) ProtoMessage() {} func (x *ConversionValueRule_ValueRuleAudienceCondition) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_conversion_value_rule_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_resources_conversion_value_rule_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -381,7 +381,7 @@ func (x *ConversionValueRule_ValueRuleAudienceCondition) ProtoReflect() protoref // Deprecated: Use ConversionValueRule_ValueRuleAudienceCondition.ProtoReflect.Descriptor instead. func (*ConversionValueRule_ValueRuleAudienceCondition) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_conversion_value_rule_proto_rawDescGZIP(), []int{0, 3} + return file_google_ads_googleads_v17_resources_conversion_value_rule_proto_rawDescGZIP(), []int{0, 3} } func (x *ConversionValueRule_ValueRuleAudienceCondition) GetUserLists() []string { @@ -398,30 +398,30 @@ func (x *ConversionValueRule_ValueRuleAudienceCondition) GetUserInterests() []st return nil } -var File_google_ads_googleads_v16_resources_conversion_value_rule_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_conversion_value_rule_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_conversion_value_rule_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_conversion_value_rule_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, 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, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 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, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 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, + 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, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 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, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x75, + 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, 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, + 0x2f, 0x67, 0x6f, 0x6f, 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, 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, 0x76, 0x61, + 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76, @@ -438,14 +438,14 @@ var file_google_ads_googleads_v16_resources_conversion_value_rule_proto_rawDesc 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x5f, 0x0a, 0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 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, 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, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x8b, 0x01, 0x0a, 0x16, 0x67, 0x65, 0x6f, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x47, 0x65, 0x6f, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x6e, 0x64, @@ -453,7 +453,7 @@ var file_google_ads_googleads_v16_resources_conversion_value_rule_proto_rawDesc 0x6f, 0x6e, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x7b, 0x0a, 0x10, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 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, + 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, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, @@ -461,7 +461,7 @@ var file_google_ads_googleads_v16_resources_conversion_value_rule_proto_rawDesc 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x81, 0x01, 0x0a, 0x12, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 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, + 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, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, @@ -474,7 +474,7 @@ var file_google_ads_googleads_v16_resources_conversion_value_rule_proto_rawDesc 0x0d, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x12, 0x6f, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x08, 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, + 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, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, @@ -483,7 +483,7 @@ var file_google_ads_googleads_v16_resources_conversion_value_rule_proto_rawDesc 0x69, 0x6f, 0x6e, 0x12, 0x67, 0x0a, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 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, 0x75, 0x6d, 0x73, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, + 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, @@ -501,7 +501,7 @@ var file_google_ads_googleads_v16_resources_conversion_value_rule_proto_rawDesc 0x6c, 0x75, 0x64, 0x65, 0x64, 0x5f, 0x67, 0x65, 0x6f, 0x5f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 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, 0x56, 0x61, 0x6c, 0x75, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x47, 0x65, 0x6f, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, @@ -516,7 +516,7 @@ var file_google_ads_googleads_v16_resources_conversion_value_rule_proto_rawDesc 0x61, 0x6e, 0x74, 0x73, 0x12, 0x85, 0x01, 0x0a, 0x0e, 0x67, 0x65, 0x6f, 0x5f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 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, 0x56, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x47, 0x65, 0x6f, 0x4c, 0x6f, 0x63, @@ -526,7 +526,7 @@ var file_google_ads_googleads_v16_resources_conversion_value_rule_proto_rawDesc 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x6e, 0x0a, 0x0c, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 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, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x64, 0x65, @@ -551,59 +551,59 @@ var file_google_ads_googleads_v16_resources_conversion_value_rule_proto_rawDesc 0x6c, 0x65, 0x73, 0x2f, 0x7b, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x8a, 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, + 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, 0x18, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 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_conversion_value_rule_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_conversion_value_rule_proto_rawDescData = file_google_ads_googleads_v16_resources_conversion_value_rule_proto_rawDesc + file_google_ads_googleads_v17_resources_conversion_value_rule_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_conversion_value_rule_proto_rawDescData = file_google_ads_googleads_v17_resources_conversion_value_rule_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_conversion_value_rule_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_conversion_value_rule_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_conversion_value_rule_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_conversion_value_rule_proto_rawDescData) +func file_google_ads_googleads_v17_resources_conversion_value_rule_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_conversion_value_rule_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_conversion_value_rule_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_conversion_value_rule_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_conversion_value_rule_proto_rawDescData -} - -var file_google_ads_googleads_v16_resources_conversion_value_rule_proto_msgTypes = make([]protoimpl.MessageInfo, 5) -var file_google_ads_googleads_v16_resources_conversion_value_rule_proto_goTypes = []interface{}{ - (*ConversionValueRule)(nil), // 0: google.ads.googleads.v16.resources.ConversionValueRule - (*ConversionValueRule_ValueRuleAction)(nil), // 1: google.ads.googleads.v16.resources.ConversionValueRule.ValueRuleAction - (*ConversionValueRule_ValueRuleGeoLocationCondition)(nil), // 2: google.ads.googleads.v16.resources.ConversionValueRule.ValueRuleGeoLocationCondition - (*ConversionValueRule_ValueRuleDeviceCondition)(nil), // 3: google.ads.googleads.v16.resources.ConversionValueRule.ValueRuleDeviceCondition - (*ConversionValueRule_ValueRuleAudienceCondition)(nil), // 4: google.ads.googleads.v16.resources.ConversionValueRule.ValueRuleAudienceCondition - (enums.ConversionValueRuleStatusEnum_ConversionValueRuleStatus)(0), // 5: google.ads.googleads.v16.enums.ConversionValueRuleStatusEnum.ConversionValueRuleStatus - (enums.ValueRuleOperationEnum_ValueRuleOperation)(0), // 6: google.ads.googleads.v16.enums.ValueRuleOperationEnum.ValueRuleOperation - (enums.ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType)(0), // 7: google.ads.googleads.v16.enums.ValueRuleGeoLocationMatchTypeEnum.ValueRuleGeoLocationMatchType - (enums.ValueRuleDeviceTypeEnum_ValueRuleDeviceType)(0), // 8: google.ads.googleads.v16.enums.ValueRuleDeviceTypeEnum.ValueRuleDeviceType -} -var file_google_ads_googleads_v16_resources_conversion_value_rule_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.ConversionValueRule.action:type_name -> google.ads.googleads.v16.resources.ConversionValueRule.ValueRuleAction - 2, // 1: google.ads.googleads.v16.resources.ConversionValueRule.geo_location_condition:type_name -> google.ads.googleads.v16.resources.ConversionValueRule.ValueRuleGeoLocationCondition - 3, // 2: google.ads.googleads.v16.resources.ConversionValueRule.device_condition:type_name -> google.ads.googleads.v16.resources.ConversionValueRule.ValueRuleDeviceCondition - 4, // 3: google.ads.googleads.v16.resources.ConversionValueRule.audience_condition:type_name -> google.ads.googleads.v16.resources.ConversionValueRule.ValueRuleAudienceCondition - 5, // 4: google.ads.googleads.v16.resources.ConversionValueRule.status:type_name -> google.ads.googleads.v16.enums.ConversionValueRuleStatusEnum.ConversionValueRuleStatus - 6, // 5: google.ads.googleads.v16.resources.ConversionValueRule.ValueRuleAction.operation:type_name -> google.ads.googleads.v16.enums.ValueRuleOperationEnum.ValueRuleOperation - 7, // 6: google.ads.googleads.v16.resources.ConversionValueRule.ValueRuleGeoLocationCondition.excluded_geo_match_type:type_name -> google.ads.googleads.v16.enums.ValueRuleGeoLocationMatchTypeEnum.ValueRuleGeoLocationMatchType - 7, // 7: google.ads.googleads.v16.resources.ConversionValueRule.ValueRuleGeoLocationCondition.geo_match_type:type_name -> google.ads.googleads.v16.enums.ValueRuleGeoLocationMatchTypeEnum.ValueRuleGeoLocationMatchType - 8, // 8: google.ads.googleads.v16.resources.ConversionValueRule.ValueRuleDeviceCondition.device_types:type_name -> google.ads.googleads.v16.enums.ValueRuleDeviceTypeEnum.ValueRuleDeviceType + return file_google_ads_googleads_v17_resources_conversion_value_rule_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_conversion_value_rule_proto_msgTypes = make([]protoimpl.MessageInfo, 5) +var file_google_ads_googleads_v17_resources_conversion_value_rule_proto_goTypes = []interface{}{ + (*ConversionValueRule)(nil), // 0: google.ads.googleads.v17.resources.ConversionValueRule + (*ConversionValueRule_ValueRuleAction)(nil), // 1: google.ads.googleads.v17.resources.ConversionValueRule.ValueRuleAction + (*ConversionValueRule_ValueRuleGeoLocationCondition)(nil), // 2: google.ads.googleads.v17.resources.ConversionValueRule.ValueRuleGeoLocationCondition + (*ConversionValueRule_ValueRuleDeviceCondition)(nil), // 3: google.ads.googleads.v17.resources.ConversionValueRule.ValueRuleDeviceCondition + (*ConversionValueRule_ValueRuleAudienceCondition)(nil), // 4: google.ads.googleads.v17.resources.ConversionValueRule.ValueRuleAudienceCondition + (enums.ConversionValueRuleStatusEnum_ConversionValueRuleStatus)(0), // 5: google.ads.googleads.v17.enums.ConversionValueRuleStatusEnum.ConversionValueRuleStatus + (enums.ValueRuleOperationEnum_ValueRuleOperation)(0), // 6: google.ads.googleads.v17.enums.ValueRuleOperationEnum.ValueRuleOperation + (enums.ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType)(0), // 7: google.ads.googleads.v17.enums.ValueRuleGeoLocationMatchTypeEnum.ValueRuleGeoLocationMatchType + (enums.ValueRuleDeviceTypeEnum_ValueRuleDeviceType)(0), // 8: google.ads.googleads.v17.enums.ValueRuleDeviceTypeEnum.ValueRuleDeviceType +} +var file_google_ads_googleads_v17_resources_conversion_value_rule_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.ConversionValueRule.action:type_name -> google.ads.googleads.v17.resources.ConversionValueRule.ValueRuleAction + 2, // 1: google.ads.googleads.v17.resources.ConversionValueRule.geo_location_condition:type_name -> google.ads.googleads.v17.resources.ConversionValueRule.ValueRuleGeoLocationCondition + 3, // 2: google.ads.googleads.v17.resources.ConversionValueRule.device_condition:type_name -> google.ads.googleads.v17.resources.ConversionValueRule.ValueRuleDeviceCondition + 4, // 3: google.ads.googleads.v17.resources.ConversionValueRule.audience_condition:type_name -> google.ads.googleads.v17.resources.ConversionValueRule.ValueRuleAudienceCondition + 5, // 4: google.ads.googleads.v17.resources.ConversionValueRule.status:type_name -> google.ads.googleads.v17.enums.ConversionValueRuleStatusEnum.ConversionValueRuleStatus + 6, // 5: google.ads.googleads.v17.resources.ConversionValueRule.ValueRuleAction.operation:type_name -> google.ads.googleads.v17.enums.ValueRuleOperationEnum.ValueRuleOperation + 7, // 6: google.ads.googleads.v17.resources.ConversionValueRule.ValueRuleGeoLocationCondition.excluded_geo_match_type:type_name -> google.ads.googleads.v17.enums.ValueRuleGeoLocationMatchTypeEnum.ValueRuleGeoLocationMatchType + 7, // 7: google.ads.googleads.v17.resources.ConversionValueRule.ValueRuleGeoLocationCondition.geo_match_type:type_name -> google.ads.googleads.v17.enums.ValueRuleGeoLocationMatchTypeEnum.ValueRuleGeoLocationMatchType + 8, // 8: google.ads.googleads.v17.resources.ConversionValueRule.ValueRuleDeviceCondition.device_types:type_name -> google.ads.googleads.v17.enums.ValueRuleDeviceTypeEnum.ValueRuleDeviceType 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 @@ -611,13 +611,13 @@ var file_google_ads_googleads_v16_resources_conversion_value_rule_proto_depIdxs 0, // [0:9] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_conversion_value_rule_proto_init() } -func file_google_ads_googleads_v16_resources_conversion_value_rule_proto_init() { - if File_google_ads_googleads_v16_resources_conversion_value_rule_proto != nil { +func init() { file_google_ads_googleads_v17_resources_conversion_value_rule_proto_init() } +func file_google_ads_googleads_v17_resources_conversion_value_rule_proto_init() { + if File_google_ads_googleads_v17_resources_conversion_value_rule_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_conversion_value_rule_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_conversion_value_rule_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConversionValueRule); i { case 0: return &v.state @@ -629,7 +629,7 @@ func file_google_ads_googleads_v16_resources_conversion_value_rule_proto_init() return nil } } - file_google_ads_googleads_v16_resources_conversion_value_rule_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_conversion_value_rule_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConversionValueRule_ValueRuleAction); i { case 0: return &v.state @@ -641,7 +641,7 @@ func file_google_ads_googleads_v16_resources_conversion_value_rule_proto_init() return nil } } - file_google_ads_googleads_v16_resources_conversion_value_rule_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_conversion_value_rule_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConversionValueRule_ValueRuleGeoLocationCondition); i { case 0: return &v.state @@ -653,7 +653,7 @@ func file_google_ads_googleads_v16_resources_conversion_value_rule_proto_init() return nil } } - file_google_ads_googleads_v16_resources_conversion_value_rule_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_conversion_value_rule_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConversionValueRule_ValueRuleDeviceCondition); i { case 0: return &v.state @@ -665,7 +665,7 @@ func file_google_ads_googleads_v16_resources_conversion_value_rule_proto_init() return nil } } - file_google_ads_googleads_v16_resources_conversion_value_rule_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_conversion_value_rule_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConversionValueRule_ValueRuleAudienceCondition); i { case 0: return &v.state @@ -682,18 +682,18 @@ func file_google_ads_googleads_v16_resources_conversion_value_rule_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_conversion_value_rule_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_conversion_value_rule_proto_rawDesc, NumEnums: 0, NumMessages: 5, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_conversion_value_rule_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_conversion_value_rule_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_conversion_value_rule_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_conversion_value_rule_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_conversion_value_rule_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_conversion_value_rule_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_conversion_value_rule_proto = out.File - file_google_ads_googleads_v16_resources_conversion_value_rule_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_conversion_value_rule_proto_goTypes = nil - file_google_ads_googleads_v16_resources_conversion_value_rule_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_conversion_value_rule_proto = out.File + file_google_ads_googleads_v17_resources_conversion_value_rule_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_conversion_value_rule_proto_goTypes = nil + file_google_ads_googleads_v17_resources_conversion_value_rule_proto_depIdxs = nil } diff --git a/resources/conversion_value_rule_set.pb.go b/resources/conversion_value_rule_set.pb.go index 5a06db3d..c05809a7 100644 --- a/resources/conversion_value_rule_set.pb.go +++ b/resources/conversion_value_rule_set.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/conversion_value_rule_set.proto +// source: google/ads/googleads/v17/resources/conversion_value_rule_set.proto package resources @@ -57,7 +57,7 @@ type ConversionValueRuleSet struct { // When using value rule primary dimension segmentation, conversion values // will be segmented into the values adjusted by value rules and the original // values, if some value rules apply. - Dimensions []enums.ValueRuleSetDimensionEnum_ValueRuleSetDimension `protobuf:"varint,4,rep,packed,name=dimensions,proto3,enum=google.ads.googleads.v16.enums.ValueRuleSetDimensionEnum_ValueRuleSetDimension" json:"dimensions,omitempty"` + Dimensions []enums.ValueRuleSetDimensionEnum_ValueRuleSetDimension `protobuf:"varint,4,rep,packed,name=dimensions,proto3,enum=google.ads.googleads.v17.enums.ValueRuleSetDimensionEnum_ValueRuleSetDimension" json:"dimensions,omitempty"` // Output only. The resource name of the conversion value rule set's owner // customer. When the value rule set is inherited from a manager customer, // owner_customer will be the resource name of the manager whereas the @@ -66,22 +66,22 @@ type ConversionValueRuleSet struct { OwnerCustomer string `protobuf:"bytes,5,opt,name=owner_customer,json=ownerCustomer,proto3" json:"owner_customer,omitempty"` // Immutable. Defines the scope where the conversion value rule set is // attached. - AttachmentType enums.ValueRuleSetAttachmentTypeEnum_ValueRuleSetAttachmentType `protobuf:"varint,6,opt,name=attachment_type,json=attachmentType,proto3,enum=google.ads.googleads.v16.enums.ValueRuleSetAttachmentTypeEnum_ValueRuleSetAttachmentType" json:"attachment_type,omitempty"` + AttachmentType enums.ValueRuleSetAttachmentTypeEnum_ValueRuleSetAttachmentType `protobuf:"varint,6,opt,name=attachment_type,json=attachmentType,proto3,enum=google.ads.googleads.v17.enums.ValueRuleSetAttachmentTypeEnum_ValueRuleSetAttachmentType" json:"attachment_type,omitempty"` // The resource name of the campaign when the conversion value rule // set is attached to a campaign. Campaign string `protobuf:"bytes,7,opt,name=campaign,proto3" json:"campaign,omitempty"` // Output only. The status of the conversion value rule set. // ** Read-only ** - Status enums.ConversionValueRuleSetStatusEnum_ConversionValueRuleSetStatus `protobuf:"varint,8,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.ConversionValueRuleSetStatusEnum_ConversionValueRuleSetStatus" json:"status,omitempty"` + Status enums.ConversionValueRuleSetStatusEnum_ConversionValueRuleSetStatus `protobuf:"varint,8,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.ConversionValueRuleSetStatusEnum_ConversionValueRuleSetStatus" json:"status,omitempty"` // Immutable. The conversion action categories of the conversion value rule // set. - ConversionActionCategories []enums.ConversionActionCategoryEnum_ConversionActionCategory `protobuf:"varint,9,rep,packed,name=conversion_action_categories,json=conversionActionCategories,proto3,enum=google.ads.googleads.v16.enums.ConversionActionCategoryEnum_ConversionActionCategory" json:"conversion_action_categories,omitempty"` + ConversionActionCategories []enums.ConversionActionCategoryEnum_ConversionActionCategory `protobuf:"varint,9,rep,packed,name=conversion_action_categories,json=conversionActionCategories,proto3,enum=google.ads.googleads.v17.enums.ConversionActionCategoryEnum_ConversionActionCategory" json:"conversion_action_categories,omitempty"` } func (x *ConversionValueRuleSet) Reset() { *x = ConversionValueRuleSet{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_conversion_value_rule_set_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -94,7 +94,7 @@ func (x *ConversionValueRuleSet) String() string { func (*ConversionValueRuleSet) ProtoMessage() {} func (x *ConversionValueRuleSet) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_conversion_value_rule_set_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 *ConversionValueRuleSet) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionValueRuleSet.ProtoReflect.Descriptor instead. func (*ConversionValueRuleSet) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_conversion_value_rule_set_proto_rawDescGZIP(), []int{0} } func (x *ConversionValueRuleSet) GetResourceName() string { @@ -173,30 +173,30 @@ func (x *ConversionValueRuleSet) GetConversionActionCategories() []enums.Convers return nil } -var File_google_ads_googleads_v16_resources_conversion_value_rule_set_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_conversion_value_rule_set_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_conversion_value_rule_set_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, 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, 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, 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, + 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, 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, 0x65, 0x72, 0x73, + 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, 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, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, + 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, 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, + 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, 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, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, @@ -221,7 +221,7 @@ var file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_rawD 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x12, 0x6f, 0x0a, 0x0a, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x04, 0x20, 0x03, 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, 0x56, 0x61, 0x6c, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x0a, 0x64, 0x69, @@ -233,7 +233,7 @@ var file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_rawD 0x65, 0x72, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x12, 0x87, 0x01, 0x0a, 0x0f, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x06, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, @@ -246,7 +246,7 @@ var file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_rawD 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x12, 0x7a, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x08, 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, 0x6f, 0x6e, 0x76, 0x65, 0x72, + 0x76, 0x31, 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, 0x53, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 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, @@ -255,7 +255,7 @@ var file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_rawD 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x69, 0x65, 0x73, 0x18, 0x09, 0x20, 0x03, 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, 0x43, 0x6f, 0x6e, + 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, 0x74, 0x65, 0x67, 0x6f, @@ -271,50 +271,50 @@ var file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_rawD 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x8d, 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, 0x1b, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 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_conversion_value_rule_set_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_rawDescData = file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_rawDesc + file_google_ads_googleads_v17_resources_conversion_value_rule_set_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_conversion_value_rule_set_proto_rawDescData = file_google_ads_googleads_v17_resources_conversion_value_rule_set_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_rawDescData) +func file_google_ads_googleads_v17_resources_conversion_value_rule_set_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_conversion_value_rule_set_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_conversion_value_rule_set_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_conversion_value_rule_set_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_rawDescData + return file_google_ads_googleads_v17_resources_conversion_value_rule_set_proto_rawDescData } -var file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_goTypes = []interface{}{ - (*ConversionValueRuleSet)(nil), // 0: google.ads.googleads.v16.resources.ConversionValueRuleSet - (enums.ValueRuleSetDimensionEnum_ValueRuleSetDimension)(0), // 1: google.ads.googleads.v16.enums.ValueRuleSetDimensionEnum.ValueRuleSetDimension - (enums.ValueRuleSetAttachmentTypeEnum_ValueRuleSetAttachmentType)(0), // 2: google.ads.googleads.v16.enums.ValueRuleSetAttachmentTypeEnum.ValueRuleSetAttachmentType - (enums.ConversionValueRuleSetStatusEnum_ConversionValueRuleSetStatus)(0), // 3: google.ads.googleads.v16.enums.ConversionValueRuleSetStatusEnum.ConversionValueRuleSetStatus - (enums.ConversionActionCategoryEnum_ConversionActionCategory)(0), // 4: google.ads.googleads.v16.enums.ConversionActionCategoryEnum.ConversionActionCategory +var file_google_ads_googleads_v17_resources_conversion_value_rule_set_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_conversion_value_rule_set_proto_goTypes = []interface{}{ + (*ConversionValueRuleSet)(nil), // 0: google.ads.googleads.v17.resources.ConversionValueRuleSet + (enums.ValueRuleSetDimensionEnum_ValueRuleSetDimension)(0), // 1: google.ads.googleads.v17.enums.ValueRuleSetDimensionEnum.ValueRuleSetDimension + (enums.ValueRuleSetAttachmentTypeEnum_ValueRuleSetAttachmentType)(0), // 2: google.ads.googleads.v17.enums.ValueRuleSetAttachmentTypeEnum.ValueRuleSetAttachmentType + (enums.ConversionValueRuleSetStatusEnum_ConversionValueRuleSetStatus)(0), // 3: google.ads.googleads.v17.enums.ConversionValueRuleSetStatusEnum.ConversionValueRuleSetStatus + (enums.ConversionActionCategoryEnum_ConversionActionCategory)(0), // 4: google.ads.googleads.v17.enums.ConversionActionCategoryEnum.ConversionActionCategory } -var file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.ConversionValueRuleSet.dimensions:type_name -> google.ads.googleads.v16.enums.ValueRuleSetDimensionEnum.ValueRuleSetDimension - 2, // 1: google.ads.googleads.v16.resources.ConversionValueRuleSet.attachment_type:type_name -> google.ads.googleads.v16.enums.ValueRuleSetAttachmentTypeEnum.ValueRuleSetAttachmentType - 3, // 2: google.ads.googleads.v16.resources.ConversionValueRuleSet.status:type_name -> google.ads.googleads.v16.enums.ConversionValueRuleSetStatusEnum.ConversionValueRuleSetStatus - 4, // 3: google.ads.googleads.v16.resources.ConversionValueRuleSet.conversion_action_categories:type_name -> google.ads.googleads.v16.enums.ConversionActionCategoryEnum.ConversionActionCategory +var file_google_ads_googleads_v17_resources_conversion_value_rule_set_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.ConversionValueRuleSet.dimensions:type_name -> google.ads.googleads.v17.enums.ValueRuleSetDimensionEnum.ValueRuleSetDimension + 2, // 1: google.ads.googleads.v17.resources.ConversionValueRuleSet.attachment_type:type_name -> google.ads.googleads.v17.enums.ValueRuleSetAttachmentTypeEnum.ValueRuleSetAttachmentType + 3, // 2: google.ads.googleads.v17.resources.ConversionValueRuleSet.status:type_name -> google.ads.googleads.v17.enums.ConversionValueRuleSetStatusEnum.ConversionValueRuleSetStatus + 4, // 3: google.ads.googleads.v17.resources.ConversionValueRuleSet.conversion_action_categories:type_name -> google.ads.googleads.v17.enums.ConversionActionCategoryEnum.ConversionActionCategory 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 @@ -322,13 +322,13 @@ var file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_depI 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_init() } -func file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_init() { - if File_google_ads_googleads_v16_resources_conversion_value_rule_set_proto != nil { +func init() { file_google_ads_googleads_v17_resources_conversion_value_rule_set_proto_init() } +func file_google_ads_googleads_v17_resources_conversion_value_rule_set_proto_init() { + if File_google_ads_googleads_v17_resources_conversion_value_rule_set_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_conversion_value_rule_set_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConversionValueRuleSet); i { case 0: return &v.state @@ -345,18 +345,18 @@ func file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_ini out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_conversion_value_rule_set_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_conversion_value_rule_set_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_conversion_value_rule_set_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_conversion_value_rule_set_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_conversion_value_rule_set_proto = out.File - file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_goTypes = nil - file_google_ads_googleads_v16_resources_conversion_value_rule_set_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_conversion_value_rule_set_proto = out.File + file_google_ads_googleads_v17_resources_conversion_value_rule_set_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_conversion_value_rule_set_proto_goTypes = nil + file_google_ads_googleads_v17_resources_conversion_value_rule_set_proto_depIdxs = nil } diff --git a/resources/currency_constant.pb.go b/resources/currency_constant.pb.go index 8fb0f215..88f36d7b 100644 --- a/resources/currency_constant.pb.go +++ b/resources/currency_constant.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/currency_constant.proto +// source: google/ads/googleads/v17/resources/currency_constant.proto package resources @@ -61,7 +61,7 @@ type CurrencyConstant struct { func (x *CurrencyConstant) Reset() { *x = CurrencyConstant{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_currency_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_currency_constant_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74,7 +74,7 @@ func (x *CurrencyConstant) String() string { func (*CurrencyConstant) ProtoMessage() {} func (x *CurrencyConstant) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_currency_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_currency_constant_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -87,7 +87,7 @@ func (x *CurrencyConstant) ProtoReflect() protoreflect.Message { // Deprecated: Use CurrencyConstant.ProtoReflect.Descriptor instead. func (*CurrencyConstant) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_currency_constant_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_currency_constant_proto_rawDescGZIP(), []int{0} } func (x *CurrencyConstant) GetResourceName() string { @@ -125,15 +125,15 @@ func (x *CurrencyConstant) GetBillableUnitMicros() int64 { return 0 } -var File_google_ads_googleads_v16_resources_currency_constant_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_currency_constant_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_currency_constant_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_currency_constant_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, 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, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 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, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -164,41 +164,41 @@ var file_google_ads_googleads_v16_resources_currency_constant_proto_rawDesc = [] 0x69, 0x6c, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x75, 0x6e, 0x69, 0x74, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x87, 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, 0x15, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x15, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 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, + 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, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, + 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, + 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, 0x70, + 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_currency_constant_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_currency_constant_proto_rawDescData = file_google_ads_googleads_v16_resources_currency_constant_proto_rawDesc + file_google_ads_googleads_v17_resources_currency_constant_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_currency_constant_proto_rawDescData = file_google_ads_googleads_v17_resources_currency_constant_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_currency_constant_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_currency_constant_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_currency_constant_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_currency_constant_proto_rawDescData) +func file_google_ads_googleads_v17_resources_currency_constant_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_currency_constant_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_currency_constant_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_currency_constant_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_currency_constant_proto_rawDescData + return file_google_ads_googleads_v17_resources_currency_constant_proto_rawDescData } -var file_google_ads_googleads_v16_resources_currency_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_currency_constant_proto_goTypes = []interface{}{ - (*CurrencyConstant)(nil), // 0: google.ads.googleads.v16.resources.CurrencyConstant +var file_google_ads_googleads_v17_resources_currency_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_currency_constant_proto_goTypes = []interface{}{ + (*CurrencyConstant)(nil), // 0: google.ads.googleads.v17.resources.CurrencyConstant } -var file_google_ads_googleads_v16_resources_currency_constant_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_currency_constant_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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_resources_currency_constant_proto_depIdxs = [] 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_currency_constant_proto_init() } -func file_google_ads_googleads_v16_resources_currency_constant_proto_init() { - if File_google_ads_googleads_v16_resources_currency_constant_proto != nil { +func init() { file_google_ads_googleads_v17_resources_currency_constant_proto_init() } +func file_google_ads_googleads_v17_resources_currency_constant_proto_init() { + if File_google_ads_googleads_v17_resources_currency_constant_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_currency_constant_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_currency_constant_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CurrencyConstant); i { case 0: return &v.state @@ -225,23 +225,23 @@ func file_google_ads_googleads_v16_resources_currency_constant_proto_init() { } } } - file_google_ads_googleads_v16_resources_currency_constant_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_currency_constant_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_currency_constant_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_currency_constant_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_currency_constant_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_currency_constant_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_currency_constant_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_currency_constant_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_currency_constant_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_currency_constant_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_currency_constant_proto = out.File - file_google_ads_googleads_v16_resources_currency_constant_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_currency_constant_proto_goTypes = nil - file_google_ads_googleads_v16_resources_currency_constant_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_currency_constant_proto = out.File + file_google_ads_googleads_v17_resources_currency_constant_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_currency_constant_proto_goTypes = nil + file_google_ads_googleads_v17_resources_currency_constant_proto_depIdxs = nil } diff --git a/resources/custom_audience.pb.go b/resources/custom_audience.pb.go index 72e3fede..06a36d3a 100644 --- a/resources/custom_audience.pb.go +++ b/resources/custom_audience.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/custom_audience.proto +// source: google/ads/googleads/v17/resources/custom_audience.proto package resources @@ -51,7 +51,7 @@ type CustomAudience struct { Id int64 `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"` // Output only. Status of this custom audience. Indicates whether the custom // audience is enabled or removed. - Status enums.CustomAudienceStatusEnum_CustomAudienceStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.CustomAudienceStatusEnum_CustomAudienceStatus" json:"status,omitempty"` + Status enums.CustomAudienceStatusEnum_CustomAudienceStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.CustomAudienceStatusEnum_CustomAudienceStatus" json:"status,omitempty"` // Name of the custom audience. It should be unique for all custom audiences // created by a customer. // This field is required for creating operations. @@ -59,7 +59,7 @@ type CustomAudience struct { // Type of the custom audience. // ("INTEREST" OR "PURCHASE_INTENT" is not allowed for newly created custom // audience but kept for existing audiences) - Type enums.CustomAudienceTypeEnum_CustomAudienceType `protobuf:"varint,5,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.CustomAudienceTypeEnum_CustomAudienceType" json:"type,omitempty"` + Type enums.CustomAudienceTypeEnum_CustomAudienceType `protobuf:"varint,5,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.CustomAudienceTypeEnum_CustomAudienceType" json:"type,omitempty"` // Description of this custom audience. Description string `protobuf:"bytes,6,opt,name=description,proto3" json:"description,omitempty"` // List of custom audience members that this custom audience is composed of. @@ -71,7 +71,7 @@ type CustomAudience struct { func (x *CustomAudience) Reset() { *x = CustomAudience{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_custom_audience_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_custom_audience_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -84,7 +84,7 @@ func (x *CustomAudience) String() string { func (*CustomAudience) ProtoMessage() {} func (x *CustomAudience) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_custom_audience_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_custom_audience_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -97,7 +97,7 @@ func (x *CustomAudience) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomAudience.ProtoReflect.Descriptor instead. func (*CustomAudience) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_custom_audience_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_custom_audience_proto_rawDescGZIP(), []int{0} } func (x *CustomAudience) GetResourceName() string { @@ -157,7 +157,7 @@ type CustomAudienceMember struct { unknownFields protoimpl.UnknownFields // The type of custom audience member, KEYWORD, URL, PLACE_CATEGORY or APP. - MemberType enums.CustomAudienceMemberTypeEnum_CustomAudienceMemberType `protobuf:"varint,1,opt,name=member_type,json=memberType,proto3,enum=google.ads.googleads.v16.enums.CustomAudienceMemberTypeEnum_CustomAudienceMemberType" json:"member_type,omitempty"` + MemberType enums.CustomAudienceMemberTypeEnum_CustomAudienceMemberType `protobuf:"varint,1,opt,name=member_type,json=memberType,proto3,enum=google.ads.googleads.v17.enums.CustomAudienceMemberTypeEnum_CustomAudienceMemberType" json:"member_type,omitempty"` // The CustomAudienceMember value. One field is populated depending on the // member type. // @@ -173,7 +173,7 @@ type CustomAudienceMember struct { func (x *CustomAudienceMember) Reset() { *x = CustomAudienceMember{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_custom_audience_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_custom_audience_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -186,7 +186,7 @@ func (x *CustomAudienceMember) String() string { func (*CustomAudienceMember) ProtoMessage() {} func (x *CustomAudienceMember) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_custom_audience_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_custom_audience_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -199,7 +199,7 @@ func (x *CustomAudienceMember) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomAudienceMember.ProtoReflect.Descriptor instead. func (*CustomAudienceMember) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_custom_audience_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_resources_custom_audience_proto_rawDescGZIP(), []int{1} } func (x *CustomAudienceMember) GetMemberType() enums.CustomAudienceMemberTypeEnum_CustomAudienceMemberType { @@ -281,25 +281,25 @@ func (*CustomAudienceMember_PlaceCategory) isCustomAudienceMember_Value() {} func (*CustomAudienceMember_App) isCustomAudienceMember_Value() {} -var File_google_ads_googleads_v16_resources_custom_audience_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_custom_audience_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_custom_audience_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_custom_audience_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, 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, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 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, 0x40, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x63, + 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, 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, 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, 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, 0x63, 0x75, + 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76, @@ -315,7 +315,7 @@ var file_google_ads_googleads_v16_resources_custom_audience_proto_rawDesc = []by 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x6a, 0x0a, 0x06, 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, + 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, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, @@ -323,7 +323,7 @@ var file_google_ads_googleads_v16_resources_custom_audience_proto_rawDesc = []by 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x5d, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, @@ -331,7 +331,7 @@ var file_google_ads_googleads_v16_resources_custom_audience_proto_rawDesc = []by 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x52, 0x0a, 0x07, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x18, 0x07, 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, + 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x07, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x3a, 0x6a, 0xea, 0x41, 0x67, 0x0a, 0x27, 0x67, 0x6f, @@ -345,7 +345,7 @@ var file_google_ads_googleads_v16_resources_custom_audience_proto_rawDesc = []by 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x76, 0x0a, 0x0b, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 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, + 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, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x4d, 0x65, @@ -359,49 +359,49 @@ var file_google_ads_googleads_v16_resources_custom_audience_proto_rawDesc = []by 0x03, 0x61, 0x70, 0x70, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x03, 0x61, 0x70, 0x70, 0x42, 0x07, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x85, 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, 0x13, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 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, + 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, + 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, + 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, 0x63, + 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_custom_audience_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_custom_audience_proto_rawDescData = file_google_ads_googleads_v16_resources_custom_audience_proto_rawDesc + file_google_ads_googleads_v17_resources_custom_audience_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_custom_audience_proto_rawDescData = file_google_ads_googleads_v17_resources_custom_audience_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_custom_audience_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_custom_audience_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_custom_audience_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_custom_audience_proto_rawDescData) +func file_google_ads_googleads_v17_resources_custom_audience_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_custom_audience_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_custom_audience_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_custom_audience_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_custom_audience_proto_rawDescData -} - -var file_google_ads_googleads_v16_resources_custom_audience_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v16_resources_custom_audience_proto_goTypes = []interface{}{ - (*CustomAudience)(nil), // 0: google.ads.googleads.v16.resources.CustomAudience - (*CustomAudienceMember)(nil), // 1: google.ads.googleads.v16.resources.CustomAudienceMember - (enums.CustomAudienceStatusEnum_CustomAudienceStatus)(0), // 2: google.ads.googleads.v16.enums.CustomAudienceStatusEnum.CustomAudienceStatus - (enums.CustomAudienceTypeEnum_CustomAudienceType)(0), // 3: google.ads.googleads.v16.enums.CustomAudienceTypeEnum.CustomAudienceType - (enums.CustomAudienceMemberTypeEnum_CustomAudienceMemberType)(0), // 4: google.ads.googleads.v16.enums.CustomAudienceMemberTypeEnum.CustomAudienceMemberType -} -var file_google_ads_googleads_v16_resources_custom_audience_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v16.resources.CustomAudience.status:type_name -> google.ads.googleads.v16.enums.CustomAudienceStatusEnum.CustomAudienceStatus - 3, // 1: google.ads.googleads.v16.resources.CustomAudience.type:type_name -> google.ads.googleads.v16.enums.CustomAudienceTypeEnum.CustomAudienceType - 1, // 2: google.ads.googleads.v16.resources.CustomAudience.members:type_name -> google.ads.googleads.v16.resources.CustomAudienceMember - 4, // 3: google.ads.googleads.v16.resources.CustomAudienceMember.member_type:type_name -> google.ads.googleads.v16.enums.CustomAudienceMemberTypeEnum.CustomAudienceMemberType + return file_google_ads_googleads_v17_resources_custom_audience_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_custom_audience_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v17_resources_custom_audience_proto_goTypes = []interface{}{ + (*CustomAudience)(nil), // 0: google.ads.googleads.v17.resources.CustomAudience + (*CustomAudienceMember)(nil), // 1: google.ads.googleads.v17.resources.CustomAudienceMember + (enums.CustomAudienceStatusEnum_CustomAudienceStatus)(0), // 2: google.ads.googleads.v17.enums.CustomAudienceStatusEnum.CustomAudienceStatus + (enums.CustomAudienceTypeEnum_CustomAudienceType)(0), // 3: google.ads.googleads.v17.enums.CustomAudienceTypeEnum.CustomAudienceType + (enums.CustomAudienceMemberTypeEnum_CustomAudienceMemberType)(0), // 4: google.ads.googleads.v17.enums.CustomAudienceMemberTypeEnum.CustomAudienceMemberType +} +var file_google_ads_googleads_v17_resources_custom_audience_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v17.resources.CustomAudience.status:type_name -> google.ads.googleads.v17.enums.CustomAudienceStatusEnum.CustomAudienceStatus + 3, // 1: google.ads.googleads.v17.resources.CustomAudience.type:type_name -> google.ads.googleads.v17.enums.CustomAudienceTypeEnum.CustomAudienceType + 1, // 2: google.ads.googleads.v17.resources.CustomAudience.members:type_name -> google.ads.googleads.v17.resources.CustomAudienceMember + 4, // 3: google.ads.googleads.v17.resources.CustomAudienceMember.member_type:type_name -> google.ads.googleads.v17.enums.CustomAudienceMemberTypeEnum.CustomAudienceMemberType 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 @@ -409,13 +409,13 @@ var file_google_ads_googleads_v16_resources_custom_audience_proto_depIdxs = []in 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_custom_audience_proto_init() } -func file_google_ads_googleads_v16_resources_custom_audience_proto_init() { - if File_google_ads_googleads_v16_resources_custom_audience_proto != nil { +func init() { file_google_ads_googleads_v17_resources_custom_audience_proto_init() } +func file_google_ads_googleads_v17_resources_custom_audience_proto_init() { + if File_google_ads_googleads_v17_resources_custom_audience_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_custom_audience_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_custom_audience_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomAudience); i { case 0: return &v.state @@ -427,7 +427,7 @@ func file_google_ads_googleads_v16_resources_custom_audience_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_custom_audience_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_custom_audience_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomAudienceMember); i { case 0: return &v.state @@ -440,7 +440,7 @@ func file_google_ads_googleads_v16_resources_custom_audience_proto_init() { } } } - file_google_ads_googleads_v16_resources_custom_audience_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_custom_audience_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CustomAudienceMember_Keyword)(nil), (*CustomAudienceMember_Url)(nil), (*CustomAudienceMember_PlaceCategory)(nil), @@ -450,18 +450,18 @@ func file_google_ads_googleads_v16_resources_custom_audience_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_custom_audience_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_custom_audience_proto_rawDesc, NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_custom_audience_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_custom_audience_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_custom_audience_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_custom_audience_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_custom_audience_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_custom_audience_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_custom_audience_proto = out.File - file_google_ads_googleads_v16_resources_custom_audience_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_custom_audience_proto_goTypes = nil - file_google_ads_googleads_v16_resources_custom_audience_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_custom_audience_proto = out.File + file_google_ads_googleads_v17_resources_custom_audience_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_custom_audience_proto_goTypes = nil + file_google_ads_googleads_v17_resources_custom_audience_proto_depIdxs = nil } diff --git a/resources/custom_conversion_goal.pb.go b/resources/custom_conversion_goal.pb.go index 1cbaa405..5aa3f5cc 100644 --- a/resources/custom_conversion_goal.pb.go +++ b/resources/custom_conversion_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/resources/custom_conversion_goal.proto +// source: google/ads/googleads/v17/resources/custom_conversion_goal.proto package resources @@ -54,13 +54,13 @@ type CustomConversionGoal struct { // Conversion actions that the custom conversion goal makes biddable. ConversionActions []string `protobuf:"bytes,4,rep,name=conversion_actions,json=conversionActions,proto3" json:"conversion_actions,omitempty"` // The status of the custom conversion goal. - Status enums.CustomConversionGoalStatusEnum_CustomConversionGoalStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.CustomConversionGoalStatusEnum_CustomConversionGoalStatus" json:"status,omitempty"` + Status enums.CustomConversionGoalStatusEnum_CustomConversionGoalStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.CustomConversionGoalStatusEnum_CustomConversionGoalStatus" json:"status,omitempty"` } func (x *CustomConversionGoal) Reset() { *x = CustomConversionGoal{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_custom_conversion_goal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_custom_conversion_goal_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73,7 +73,7 @@ func (x *CustomConversionGoal) String() string { func (*CustomConversionGoal) ProtoMessage() {} func (x *CustomConversionGoal) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_custom_conversion_goal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_custom_conversion_goal_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 *CustomConversionGoal) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomConversionGoal.ProtoReflect.Descriptor instead. func (*CustomConversionGoal) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_custom_conversion_goal_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_custom_conversion_goal_proto_rawDescGZIP(), []int{0} } func (x *CustomConversionGoal) GetResourceName() string { @@ -124,17 +124,17 @@ func (x *CustomConversionGoal) GetStatus() enums.CustomConversionGoalStatusEnum_ return enums.CustomConversionGoalStatusEnum_CustomConversionGoalStatus(0) } -var File_google_ads_googleads_v16_resources_custom_conversion_goal_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_custom_conversion_goal_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_custom_conversion_goal_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_custom_conversion_goal_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, 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, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 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, 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, + 0x73, 0x2f, 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, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, @@ -159,7 +159,7 @@ var file_google_ads_googleads_v16_resources_custom_conversion_goal_proto_rawDesc 0x11, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x71, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 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, + 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, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, @@ -173,43 +173,43 @@ var file_google_ads_googleads_v16_resources_custom_conversion_goal_proto_rawDesc 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x73, 0x2f, 0x7b, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x8b, 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, 0x19, 0x43, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x19, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 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, 0x3b, 0x72, 0x65, + 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, 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, + 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, 0x63, 0x65, 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_custom_conversion_goal_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_custom_conversion_goal_proto_rawDescData = file_google_ads_googleads_v16_resources_custom_conversion_goal_proto_rawDesc + file_google_ads_googleads_v17_resources_custom_conversion_goal_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_custom_conversion_goal_proto_rawDescData = file_google_ads_googleads_v17_resources_custom_conversion_goal_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_custom_conversion_goal_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_custom_conversion_goal_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_custom_conversion_goal_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_custom_conversion_goal_proto_rawDescData) +func file_google_ads_googleads_v17_resources_custom_conversion_goal_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_custom_conversion_goal_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_custom_conversion_goal_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_custom_conversion_goal_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_custom_conversion_goal_proto_rawDescData + return file_google_ads_googleads_v17_resources_custom_conversion_goal_proto_rawDescData } -var file_google_ads_googleads_v16_resources_custom_conversion_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_custom_conversion_goal_proto_goTypes = []interface{}{ - (*CustomConversionGoal)(nil), // 0: google.ads.googleads.v16.resources.CustomConversionGoal - (enums.CustomConversionGoalStatusEnum_CustomConversionGoalStatus)(0), // 1: google.ads.googleads.v16.enums.CustomConversionGoalStatusEnum.CustomConversionGoalStatus +var file_google_ads_googleads_v17_resources_custom_conversion_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_custom_conversion_goal_proto_goTypes = []interface{}{ + (*CustomConversionGoal)(nil), // 0: google.ads.googleads.v17.resources.CustomConversionGoal + (enums.CustomConversionGoalStatusEnum_CustomConversionGoalStatus)(0), // 1: google.ads.googleads.v17.enums.CustomConversionGoalStatusEnum.CustomConversionGoalStatus } -var file_google_ads_googleads_v16_resources_custom_conversion_goal_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CustomConversionGoal.status:type_name -> google.ads.googleads.v16.enums.CustomConversionGoalStatusEnum.CustomConversionGoalStatus +var file_google_ads_googleads_v17_resources_custom_conversion_goal_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CustomConversionGoal.status:type_name -> google.ads.googleads.v17.enums.CustomConversionGoalStatusEnum.CustomConversionGoalStatus 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 @@ -217,13 +217,13 @@ var file_google_ads_googleads_v16_resources_custom_conversion_goal_proto_depIdxs 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_custom_conversion_goal_proto_init() } -func file_google_ads_googleads_v16_resources_custom_conversion_goal_proto_init() { - if File_google_ads_googleads_v16_resources_custom_conversion_goal_proto != nil { +func init() { file_google_ads_googleads_v17_resources_custom_conversion_goal_proto_init() } +func file_google_ads_googleads_v17_resources_custom_conversion_goal_proto_init() { + if File_google_ads_googleads_v17_resources_custom_conversion_goal_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_custom_conversion_goal_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_custom_conversion_goal_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomConversionGoal); i { case 0: return &v.state @@ -240,18 +240,18 @@ func file_google_ads_googleads_v16_resources_custom_conversion_goal_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_custom_conversion_goal_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_custom_conversion_goal_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_custom_conversion_goal_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_custom_conversion_goal_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_custom_conversion_goal_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_custom_conversion_goal_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_custom_conversion_goal_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_custom_conversion_goal_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_custom_conversion_goal_proto = out.File - file_google_ads_googleads_v16_resources_custom_conversion_goal_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_custom_conversion_goal_proto_goTypes = nil - file_google_ads_googleads_v16_resources_custom_conversion_goal_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_custom_conversion_goal_proto = out.File + file_google_ads_googleads_v17_resources_custom_conversion_goal_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_custom_conversion_goal_proto_goTypes = nil + file_google_ads_googleads_v17_resources_custom_conversion_goal_proto_depIdxs = nil } diff --git a/resources/custom_interest.pb.go b/resources/custom_interest.pb.go index 7f45ea6e..e1deaafd 100644 --- a/resources/custom_interest.pb.go +++ b/resources/custom_interest.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/custom_interest.proto +// source: google/ads/googleads/v17/resources/custom_interest.proto package resources @@ -51,14 +51,14 @@ type CustomInterest struct { Id *int64 `protobuf:"varint,8,opt,name=id,proto3,oneof" json:"id,omitempty"` // Status of this custom interest. Indicates whether the custom interest is // enabled or removed. - Status enums.CustomInterestStatusEnum_CustomInterestStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.CustomInterestStatusEnum_CustomInterestStatus" json:"status,omitempty"` + Status enums.CustomInterestStatusEnum_CustomInterestStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.CustomInterestStatusEnum_CustomInterestStatus" json:"status,omitempty"` // Name of the custom interest. It should be unique across the same custom // affinity audience. // This field is required for create operations. Name *string `protobuf:"bytes,9,opt,name=name,proto3,oneof" json:"name,omitempty"` // Type of the custom interest, CUSTOM_AFFINITY or CUSTOM_INTENT. // By default the type is set to CUSTOM_AFFINITY. - Type enums.CustomInterestTypeEnum_CustomInterestType `protobuf:"varint,5,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.CustomInterestTypeEnum_CustomInterestType" json:"type,omitempty"` + Type enums.CustomInterestTypeEnum_CustomInterestType `protobuf:"varint,5,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.CustomInterestTypeEnum_CustomInterestType" json:"type,omitempty"` // Description of this custom interest audience. Description *string `protobuf:"bytes,10,opt,name=description,proto3,oneof" json:"description,omitempty"` // List of custom interest members that this custom interest is composed of. @@ -70,7 +70,7 @@ type CustomInterest struct { func (x *CustomInterest) Reset() { *x = CustomInterest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_custom_interest_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_custom_interest_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -83,7 +83,7 @@ func (x *CustomInterest) String() string { func (*CustomInterest) ProtoMessage() {} func (x *CustomInterest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_custom_interest_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_custom_interest_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 *CustomInterest) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomInterest.ProtoReflect.Descriptor instead. func (*CustomInterest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_custom_interest_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_custom_interest_proto_rawDescGZIP(), []int{0} } func (x *CustomInterest) GetResourceName() string { @@ -156,7 +156,7 @@ type CustomInterestMember struct { unknownFields protoimpl.UnknownFields // The type of custom interest member, KEYWORD or URL. - MemberType enums.CustomInterestMemberTypeEnum_CustomInterestMemberType `protobuf:"varint,1,opt,name=member_type,json=memberType,proto3,enum=google.ads.googleads.v16.enums.CustomInterestMemberTypeEnum_CustomInterestMemberType" json:"member_type,omitempty"` + MemberType enums.CustomInterestMemberTypeEnum_CustomInterestMemberType `protobuf:"varint,1,opt,name=member_type,json=memberType,proto3,enum=google.ads.googleads.v17.enums.CustomInterestMemberTypeEnum_CustomInterestMemberType" json:"member_type,omitempty"` // Keyword text when member_type is KEYWORD or URL string when // member_type is URL. Parameter *string `protobuf:"bytes,3,opt,name=parameter,proto3,oneof" json:"parameter,omitempty"` @@ -165,7 +165,7 @@ type CustomInterestMember struct { func (x *CustomInterestMember) Reset() { *x = CustomInterestMember{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_custom_interest_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_custom_interest_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -178,7 +178,7 @@ func (x *CustomInterestMember) String() string { func (*CustomInterestMember) ProtoMessage() {} func (x *CustomInterestMember) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_custom_interest_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_custom_interest_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -191,7 +191,7 @@ func (x *CustomInterestMember) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomInterestMember.ProtoReflect.Descriptor instead. func (*CustomInterestMember) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_custom_interest_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_resources_custom_interest_proto_rawDescGZIP(), []int{1} } func (x *CustomInterestMember) GetMemberType() enums.CustomInterestMemberTypeEnum_CustomInterestMemberType { @@ -208,25 +208,25 @@ func (x *CustomInterestMember) GetParameter() string { return "" } -var File_google_ads_googleads_v16_resources_custom_interest_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_custom_interest_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_custom_interest_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_custom_interest_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, 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, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 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, 0x40, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x63, + 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, 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, 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, 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, 0x63, 0x75, + 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76, @@ -243,14 +243,14 @@ var file_google_ads_googleads_v16_resources_custom_interest_proto_rawDesc = []by 0x52, 0x02, 0x69, 0x64, 0x88, 0x01, 0x01, 0x12, 0x65, 0x0a, 0x06, 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, + 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x17, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x5d, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, + 0x64, 0x73, 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, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x54, 0x79, 0x70, 0x65, @@ -259,7 +259,7 @@ var file_google_ads_googleads_v16_resources_custom_interest_proto_rawDesc = []by 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x52, 0x0a, 0x07, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x18, 0x07, 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, 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x07, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x3a, 0x6a, 0xea, 0x41, 0x67, 0x0a, 0x27, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, @@ -275,7 +275,7 @@ var file_google_ads_googleads_v16_resources_custom_interest_proto_rawDesc = []by 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x76, 0x0a, 0x0b, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 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, 0x43, 0x75, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x54, 0x79, @@ -284,49 +284,49 @@ var file_google_ads_googleads_v16_resources_custom_interest_proto_rawDesc = []by 0x09, 0x48, 0x00, 0x52, 0x09, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x88, 0x01, 0x01, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x42, 0x85, 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, + 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, 0x13, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 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, 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_custom_interest_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_custom_interest_proto_rawDescData = file_google_ads_googleads_v16_resources_custom_interest_proto_rawDesc + file_google_ads_googleads_v17_resources_custom_interest_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_custom_interest_proto_rawDescData = file_google_ads_googleads_v17_resources_custom_interest_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_custom_interest_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_custom_interest_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_custom_interest_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_custom_interest_proto_rawDescData) +func file_google_ads_googleads_v17_resources_custom_interest_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_custom_interest_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_custom_interest_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_custom_interest_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_custom_interest_proto_rawDescData + return file_google_ads_googleads_v17_resources_custom_interest_proto_rawDescData } -var file_google_ads_googleads_v16_resources_custom_interest_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v16_resources_custom_interest_proto_goTypes = []interface{}{ - (*CustomInterest)(nil), // 0: google.ads.googleads.v16.resources.CustomInterest - (*CustomInterestMember)(nil), // 1: google.ads.googleads.v16.resources.CustomInterestMember - (enums.CustomInterestStatusEnum_CustomInterestStatus)(0), // 2: google.ads.googleads.v16.enums.CustomInterestStatusEnum.CustomInterestStatus - (enums.CustomInterestTypeEnum_CustomInterestType)(0), // 3: google.ads.googleads.v16.enums.CustomInterestTypeEnum.CustomInterestType - (enums.CustomInterestMemberTypeEnum_CustomInterestMemberType)(0), // 4: google.ads.googleads.v16.enums.CustomInterestMemberTypeEnum.CustomInterestMemberType +var file_google_ads_googleads_v17_resources_custom_interest_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v17_resources_custom_interest_proto_goTypes = []interface{}{ + (*CustomInterest)(nil), // 0: google.ads.googleads.v17.resources.CustomInterest + (*CustomInterestMember)(nil), // 1: google.ads.googleads.v17.resources.CustomInterestMember + (enums.CustomInterestStatusEnum_CustomInterestStatus)(0), // 2: google.ads.googleads.v17.enums.CustomInterestStatusEnum.CustomInterestStatus + (enums.CustomInterestTypeEnum_CustomInterestType)(0), // 3: google.ads.googleads.v17.enums.CustomInterestTypeEnum.CustomInterestType + (enums.CustomInterestMemberTypeEnum_CustomInterestMemberType)(0), // 4: google.ads.googleads.v17.enums.CustomInterestMemberTypeEnum.CustomInterestMemberType } -var file_google_ads_googleads_v16_resources_custom_interest_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v16.resources.CustomInterest.status:type_name -> google.ads.googleads.v16.enums.CustomInterestStatusEnum.CustomInterestStatus - 3, // 1: google.ads.googleads.v16.resources.CustomInterest.type:type_name -> google.ads.googleads.v16.enums.CustomInterestTypeEnum.CustomInterestType - 1, // 2: google.ads.googleads.v16.resources.CustomInterest.members:type_name -> google.ads.googleads.v16.resources.CustomInterestMember - 4, // 3: google.ads.googleads.v16.resources.CustomInterestMember.member_type:type_name -> google.ads.googleads.v16.enums.CustomInterestMemberTypeEnum.CustomInterestMemberType +var file_google_ads_googleads_v17_resources_custom_interest_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v17.resources.CustomInterest.status:type_name -> google.ads.googleads.v17.enums.CustomInterestStatusEnum.CustomInterestStatus + 3, // 1: google.ads.googleads.v17.resources.CustomInterest.type:type_name -> google.ads.googleads.v17.enums.CustomInterestTypeEnum.CustomInterestType + 1, // 2: google.ads.googleads.v17.resources.CustomInterest.members:type_name -> google.ads.googleads.v17.resources.CustomInterestMember + 4, // 3: google.ads.googleads.v17.resources.CustomInterestMember.member_type:type_name -> google.ads.googleads.v17.enums.CustomInterestMemberTypeEnum.CustomInterestMemberType 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 @@ -334,13 +334,13 @@ var file_google_ads_googleads_v16_resources_custom_interest_proto_depIdxs = []in 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_custom_interest_proto_init() } -func file_google_ads_googleads_v16_resources_custom_interest_proto_init() { - if File_google_ads_googleads_v16_resources_custom_interest_proto != nil { +func init() { file_google_ads_googleads_v17_resources_custom_interest_proto_init() } +func file_google_ads_googleads_v17_resources_custom_interest_proto_init() { + if File_google_ads_googleads_v17_resources_custom_interest_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_custom_interest_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_custom_interest_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomInterest); i { case 0: return &v.state @@ -352,7 +352,7 @@ func file_google_ads_googleads_v16_resources_custom_interest_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_custom_interest_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_custom_interest_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomInterestMember); i { case 0: return &v.state @@ -365,24 +365,24 @@ func file_google_ads_googleads_v16_resources_custom_interest_proto_init() { } } } - file_google_ads_googleads_v16_resources_custom_interest_proto_msgTypes[0].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_custom_interest_proto_msgTypes[1].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_custom_interest_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_custom_interest_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_custom_interest_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_custom_interest_proto_rawDesc, NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_custom_interest_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_custom_interest_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_custom_interest_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_custom_interest_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_custom_interest_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_custom_interest_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_custom_interest_proto = out.File - file_google_ads_googleads_v16_resources_custom_interest_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_custom_interest_proto_goTypes = nil - file_google_ads_googleads_v16_resources_custom_interest_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_custom_interest_proto = out.File + file_google_ads_googleads_v17_resources_custom_interest_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_custom_interest_proto_goTypes = nil + file_google_ads_googleads_v17_resources_custom_interest_proto_depIdxs = nil } diff --git a/resources/customer.pb.go b/resources/customer.pb.go index b0a2c56d..6238b50a 100644 --- a/resources/customer.pb.go +++ b/resources/customer.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/customer.proto +// source: google/ads/googleads/v17/resources/customer.proto package resources @@ -84,7 +84,7 @@ type Customer struct { // Output only. Reasons why the customer is not eligible to use // PaymentMode.CONVERSIONS. If the list is empty, the customer is eligible. // This field is read-only. - PayPerConversionEligibilityFailureReasons []enums.CustomerPayPerConversionEligibilityFailureReasonEnum_CustomerPayPerConversionEligibilityFailureReason `protobuf:"varint,16,rep,packed,name=pay_per_conversion_eligibility_failure_reasons,json=payPerConversionEligibilityFailureReasons,proto3,enum=google.ads.googleads.v16.enums.CustomerPayPerConversionEligibilityFailureReasonEnum_CustomerPayPerConversionEligibilityFailureReason" json:"pay_per_conversion_eligibility_failure_reasons,omitempty"` + PayPerConversionEligibilityFailureReasons []enums.CustomerPayPerConversionEligibilityFailureReasonEnum_CustomerPayPerConversionEligibilityFailureReason `protobuf:"varint,16,rep,packed,name=pay_per_conversion_eligibility_failure_reasons,json=payPerConversionEligibilityFailureReasons,proto3,enum=google.ads.googleads.v17.enums.CustomerPayPerConversionEligibilityFailureReasonEnum_CustomerPayPerConversionEligibilityFailureReason" json:"pay_per_conversion_eligibility_failure_reasons,omitempty"` // Output only. Optimization score of the customer. // // Optimization score is an estimate of how well a customer's campaigns are @@ -108,7 +108,7 @@ type Customer struct { // This field is read-only. OptimizationScoreWeight float64 `protobuf:"fixed64,30,opt,name=optimization_score_weight,json=optimizationScoreWeight,proto3" json:"optimization_score_weight,omitempty"` // Output only. The status of the customer. - Status enums.CustomerStatusEnum_CustomerStatus `protobuf:"varint,36,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.CustomerStatusEnum_CustomerStatus" json:"status,omitempty"` + Status enums.CustomerStatusEnum_CustomerStatus `protobuf:"varint,36,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.CustomerStatusEnum_CustomerStatus" json:"status,omitempty"` // Output only. True if feed based location has been migrated to asset based // location. LocationAssetAutoMigrationDone *bool `protobuf:"varint,38,opt,name=location_asset_auto_migration_done,json=locationAssetAutoMigrationDone,proto3,oneof" json:"location_asset_auto_migration_done,omitempty"` @@ -129,13 +129,13 @@ type Customer struct { // selecting an inventory type to show your ads on content that is the right // fit for your brand. See // https://support.google.com/google-ads/answer/7515513. - VideoBrandSafetySuitability enums.BrandSafetySuitabilityEnum_BrandSafetySuitability `protobuf:"varint,46,opt,name=video_brand_safety_suitability,json=videoBrandSafetySuitability,proto3,enum=google.ads.googleads.v16.enums.BrandSafetySuitabilityEnum_BrandSafetySuitability" json:"video_brand_safety_suitability,omitempty"` + VideoBrandSafetySuitability enums.BrandSafetySuitabilityEnum_BrandSafetySuitability `protobuf:"varint,46,opt,name=video_brand_safety_suitability,json=videoBrandSafetySuitability,proto3,enum=google.ads.googleads.v17.enums.BrandSafetySuitabilityEnum_BrandSafetySuitability" json:"video_brand_safety_suitability,omitempty"` } func (x *Customer) Reset() { *x = Customer{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -148,7 +148,7 @@ func (x *Customer) String() string { func (*Customer) ProtoMessage() {} func (x *Customer) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -161,7 +161,7 @@ func (x *Customer) ProtoReflect() protoreflect.Message { // Deprecated: Use Customer.ProtoReflect.Descriptor instead. func (*Customer) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_customer_proto_rawDescGZIP(), []int{0} } func (x *Customer) GetResourceName() string { @@ -359,7 +359,7 @@ type CallReportingSetting struct { func (x *CallReportingSetting) Reset() { *x = CallReportingSetting{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_customer_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -372,7 +372,7 @@ func (x *CallReportingSetting) String() string { func (*CallReportingSetting) ProtoMessage() {} func (x *CallReportingSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_customer_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -385,7 +385,7 @@ func (x *CallReportingSetting) ProtoReflect() protoreflect.Message { // Deprecated: Use CallReportingSetting.ProtoReflect.Descriptor instead. func (*CallReportingSetting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_resources_customer_proto_rawDescGZIP(), []int{1} } func (x *CallReportingSetting) GetCallReportingEnabled() bool { @@ -435,7 +435,7 @@ type ConversionTrackingSetting struct { // this customer. If this customer is using cross-account conversion tracking, // the value returned will differ based on the `login-customer-id` of the // request. - ConversionTrackingStatus enums.ConversionTrackingStatusEnum_ConversionTrackingStatus `protobuf:"varint,6,opt,name=conversion_tracking_status,json=conversionTrackingStatus,proto3,enum=google.ads.googleads.v16.enums.ConversionTrackingStatusEnum_ConversionTrackingStatus" json:"conversion_tracking_status,omitempty"` + ConversionTrackingStatus enums.ConversionTrackingStatusEnum_ConversionTrackingStatus `protobuf:"varint,6,opt,name=conversion_tracking_status,json=conversionTrackingStatus,proto3,enum=google.ads.googleads.v17.enums.ConversionTrackingStatusEnum_ConversionTrackingStatus" json:"conversion_tracking_status,omitempty"` // Output only. Whether the customer is opted-in for enhanced conversions // for leads. If using cross-account conversion tracking, this value is // inherited from the manager. This field is read-only. @@ -448,7 +448,7 @@ type ConversionTrackingSetting struct { func (x *ConversionTrackingSetting) Reset() { *x = ConversionTrackingSetting{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_customer_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -461,7 +461,7 @@ func (x *ConversionTrackingSetting) String() string { func (*ConversionTrackingSetting) ProtoMessage() {} func (x *ConversionTrackingSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_customer_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -474,7 +474,7 @@ func (x *ConversionTrackingSetting) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionTrackingSetting.ProtoReflect.Descriptor instead. func (*ConversionTrackingSetting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_resources_customer_proto_rawDescGZIP(), []int{2} } func (x *ConversionTrackingSetting) GetConversionTrackingId() int64 { @@ -532,7 +532,7 @@ type RemarketingSetting struct { func (x *RemarketingSetting) Reset() { *x = RemarketingSetting{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_customer_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -545,7 +545,7 @@ func (x *RemarketingSetting) String() string { func (*RemarketingSetting) ProtoMessage() {} func (x *RemarketingSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_customer_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -558,7 +558,7 @@ func (x *RemarketingSetting) ProtoReflect() protoreflect.Message { // Deprecated: Use RemarketingSetting.ProtoReflect.Descriptor instead. func (*RemarketingSetting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_resources_customer_proto_rawDescGZIP(), []int{3} } func (x *RemarketingSetting) GetGoogleGlobalSiteTag() string { @@ -581,7 +581,7 @@ type CustomerAgreementSetting struct { func (x *CustomerAgreementSetting) Reset() { *x = CustomerAgreementSetting{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_resources_customer_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -594,7 +594,7 @@ func (x *CustomerAgreementSetting) String() string { func (*CustomerAgreementSetting) ProtoMessage() {} func (x *CustomerAgreementSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_resources_customer_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -607,7 +607,7 @@ func (x *CustomerAgreementSetting) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerAgreementSetting.ProtoReflect.Descriptor instead. func (*CustomerAgreementSetting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v17_resources_customer_proto_rawDescGZIP(), []int{4} } func (x *CustomerAgreementSetting) GetAcceptedLeadFormTerms() bool { @@ -632,7 +632,7 @@ type LocalServicesSettings struct { func (x *LocalServicesSettings) Reset() { *x = LocalServicesSettings{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_resources_customer_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -645,7 +645,7 @@ func (x *LocalServicesSettings) String() string { func (*LocalServicesSettings) ProtoMessage() {} func (x *LocalServicesSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_resources_customer_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -658,7 +658,7 @@ func (x *LocalServicesSettings) ProtoReflect() protoreflect.Message { // Deprecated: Use LocalServicesSettings.ProtoReflect.Descriptor instead. func (*LocalServicesSettings) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v17_resources_customer_proto_rawDescGZIP(), []int{5} } func (x *LocalServicesSettings) GetGranularLicenseStatuses() []*GranularLicenseStatus { @@ -692,13 +692,13 @@ type GranularLicenseStatus struct { // https://developers.google.com/google-ads/api/data/codes-formats#local_services_ids CategoryId *string `protobuf:"bytes,2,opt,name=category_id,json=categoryId,proto3,oneof" json:"category_id,omitempty"` // Output only. Granular license status, per geo + vertical. - VerificationStatus *enums.LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus `protobuf:"varint,3,opt,name=verification_status,json=verificationStatus,proto3,enum=google.ads.googleads.v16.enums.LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus,oneof" json:"verification_status,omitempty"` + VerificationStatus *enums.LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus `protobuf:"varint,3,opt,name=verification_status,json=verificationStatus,proto3,enum=google.ads.googleads.v17.enums.LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus,oneof" json:"verification_status,omitempty"` } func (x *GranularLicenseStatus) Reset() { *x = GranularLicenseStatus{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_resources_customer_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -711,7 +711,7 @@ func (x *GranularLicenseStatus) String() string { func (*GranularLicenseStatus) ProtoMessage() {} func (x *GranularLicenseStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_resources_customer_proto_msgTypes[6] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -724,7 +724,7 @@ func (x *GranularLicenseStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use GranularLicenseStatus.ProtoReflect.Descriptor instead. func (*GranularLicenseStatus) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v17_resources_customer_proto_rawDescGZIP(), []int{6} } func (x *GranularLicenseStatus) GetGeoCriterionId() int64 { @@ -765,13 +765,13 @@ type GranularInsuranceStatus struct { // https://developers.google.com/google-ads/api/data/codes-formats#local_services_ids CategoryId *string `protobuf:"bytes,2,opt,name=category_id,json=categoryId,proto3,oneof" json:"category_id,omitempty"` // Output only. Granular insurance status, per geo + vertical. - VerificationStatus *enums.LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus `protobuf:"varint,3,opt,name=verification_status,json=verificationStatus,proto3,enum=google.ads.googleads.v16.enums.LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus,oneof" json:"verification_status,omitempty"` + VerificationStatus *enums.LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus `protobuf:"varint,3,opt,name=verification_status,json=verificationStatus,proto3,enum=google.ads.googleads.v17.enums.LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus,oneof" json:"verification_status,omitempty"` } func (x *GranularInsuranceStatus) Reset() { *x = GranularInsuranceStatus{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_resources_customer_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -784,7 +784,7 @@ func (x *GranularInsuranceStatus) String() string { func (*GranularInsuranceStatus) ProtoMessage() {} func (x *GranularInsuranceStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_resources_customer_proto_msgTypes[7] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -797,7 +797,7 @@ func (x *GranularInsuranceStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use GranularInsuranceStatus.ProtoReflect.Descriptor instead. func (*GranularInsuranceStatus) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v17_resources_customer_proto_rawDescGZIP(), []int{7} } func (x *GranularInsuranceStatus) GetGeoCriterionId() int64 { @@ -821,34 +821,34 @@ func (x *GranularInsuranceStatus) GetVerificationStatus() enums.LocalServicesVer return enums.LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus(0) } -var File_google_ads_googleads_v16_resources_customer_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_customer_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_customer_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_customer_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, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 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, 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, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x73, 0x61, + 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, 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, 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, 0x1a, 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, 0x2f, 0x63, 0x75, 0x73, + 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, 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, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 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, 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, 0x73, 0x2f, + 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, @@ -893,14 +893,14 @@ var file_google_ads_googleads_v16_resources_customer_proto_rawDesc = []byte{ 0x6c, 0x5f, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x0a, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x14, 0x63, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x82, 0x01, 0x0a, 0x1b, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x0e, 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, 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, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x19, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x54, @@ -908,7 +908,7 @@ var file_google_ads_googleads_v16_resources_customer_proto_rawDesc = []byte{ 0x0a, 0x13, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x0f, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x12, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0xee, 0x01, 0x0a, @@ -917,7 +917,7 @@ var file_google_ads_googleads_v16_resources_customer_proto_rawDesc = []byte{ 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x73, 0x18, 0x10, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x85, 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, @@ -937,7 +937,7 @@ var file_google_ads_googleads_v16_resources_customer_proto_rawDesc = []byte{ 0x65, 0x57, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x5e, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x24, 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x54, 0x0a, 0x22, 0x6c, 0x6f, 0x63, 0x61, 0x74, @@ -967,7 +967,7 @@ var file_google_ads_googleads_v16_resources_customer_proto_rawDesc = []byte{ 0x6d, 0x65, 0x72, 0x5f, 0x61, 0x67, 0x72, 0x65, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x2c, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x67, 0x72, 0x65, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x18, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x67, 0x72, 0x65, 0x65, 0x6d, 0x65, 0x6e, @@ -975,7 +975,7 @@ var file_google_ads_googleads_v16_resources_customer_proto_rawDesc = []byte{ 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x2d, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4c, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x15, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, @@ -983,7 +983,7 @@ var file_google_ads_googleads_v16_resources_customer_proto_rawDesc = []byte{ 0x5f, 0x73, 0x61, 0x66, 0x65, 0x74, 0x79, 0x5f, 0x73, 0x75, 0x69, 0x74, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x2e, 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, 0x42, 0x72, 0x61, 0x6e, 0x64, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x53, 0x61, 0x66, 0x65, 0x74, 0x79, 0x53, 0x75, 0x69, 0x74, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x42, 0x03, 0xe0, 0x41, @@ -1059,7 +1059,7 @@ var file_google_ads_googleads_v16_resources_customer_proto_rawDesc = []byte{ 0x5f, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x06, 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, 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, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, @@ -1097,7 +1097,7 @@ var file_google_ads_googleads_v16_resources_customer_proto_rawDesc = []byte{ 0x6c, 0x61, 0x72, 0x5f, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x65, 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, 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, 0x47, 0x72, 0x61, 0x6e, 0x75, 0x6c, 0x61, 0x72, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x17, 0x67, 0x72, 0x61, 0x6e, 0x75, 0x6c, 0x61, 0x72, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, @@ -1105,7 +1105,7 @@ var file_google_ads_googleads_v16_resources_customer_proto_rawDesc = []byte{ 0x5f, 0x69, 0x6e, 0x73, 0x75, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x65, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x47, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x72, 0x61, 0x6e, 0x75, 0x6c, 0x61, 0x72, 0x49, 0x6e, 0x73, 0x75, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x19, 0x67, 0x72, 0x61, 0x6e, 0x75, 0x6c, 0x61, 0x72, 0x49, 0x6e, 0x73, 0x75, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x53, 0x74, @@ -1120,7 +1120,7 @@ var file_google_ads_googleads_v16_resources_customer_proto_rawDesc = []byte{ 0x9e, 0x01, 0x0a, 0x13, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 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, 0x4c, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, @@ -1142,7 +1142,7 @@ var file_google_ads_googleads_v16_resources_customer_proto_rawDesc = []byte{ 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 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, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, + 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, @@ -1154,65 +1154,65 @@ var file_google_ads_googleads_v16_resources_customer_proto_rawDesc = []byte{ 0x0a, 0x14, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0xff, 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, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x0d, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 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, + 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, + 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, 0x36, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 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, + 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_customer_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_customer_proto_rawDescData = file_google_ads_googleads_v16_resources_customer_proto_rawDesc + file_google_ads_googleads_v17_resources_customer_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_customer_proto_rawDescData = file_google_ads_googleads_v17_resources_customer_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_customer_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_customer_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_customer_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_customer_proto_rawDescData) +func file_google_ads_googleads_v17_resources_customer_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_customer_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_customer_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_customer_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_customer_proto_rawDescData -} - -var file_google_ads_googleads_v16_resources_customer_proto_msgTypes = make([]protoimpl.MessageInfo, 8) -var file_google_ads_googleads_v16_resources_customer_proto_goTypes = []interface{}{ - (*Customer)(nil), // 0: google.ads.googleads.v16.resources.Customer - (*CallReportingSetting)(nil), // 1: google.ads.googleads.v16.resources.CallReportingSetting - (*ConversionTrackingSetting)(nil), // 2: google.ads.googleads.v16.resources.ConversionTrackingSetting - (*RemarketingSetting)(nil), // 3: google.ads.googleads.v16.resources.RemarketingSetting - (*CustomerAgreementSetting)(nil), // 4: google.ads.googleads.v16.resources.CustomerAgreementSetting - (*LocalServicesSettings)(nil), // 5: google.ads.googleads.v16.resources.LocalServicesSettings - (*GranularLicenseStatus)(nil), // 6: google.ads.googleads.v16.resources.GranularLicenseStatus - (*GranularInsuranceStatus)(nil), // 7: google.ads.googleads.v16.resources.GranularInsuranceStatus - (enums.CustomerPayPerConversionEligibilityFailureReasonEnum_CustomerPayPerConversionEligibilityFailureReason)(0), // 8: google.ads.googleads.v16.enums.CustomerPayPerConversionEligibilityFailureReasonEnum.CustomerPayPerConversionEligibilityFailureReason - (enums.CustomerStatusEnum_CustomerStatus)(0), // 9: google.ads.googleads.v16.enums.CustomerStatusEnum.CustomerStatus - (enums.BrandSafetySuitabilityEnum_BrandSafetySuitability)(0), // 10: google.ads.googleads.v16.enums.BrandSafetySuitabilityEnum.BrandSafetySuitability - (enums.ConversionTrackingStatusEnum_ConversionTrackingStatus)(0), // 11: google.ads.googleads.v16.enums.ConversionTrackingStatusEnum.ConversionTrackingStatus - (enums.LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus)(0), // 12: google.ads.googleads.v16.enums.LocalServicesVerificationStatusEnum.LocalServicesVerificationStatus -} -var file_google_ads_googleads_v16_resources_customer_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.Customer.call_reporting_setting:type_name -> google.ads.googleads.v16.resources.CallReportingSetting - 2, // 1: google.ads.googleads.v16.resources.Customer.conversion_tracking_setting:type_name -> google.ads.googleads.v16.resources.ConversionTrackingSetting - 3, // 2: google.ads.googleads.v16.resources.Customer.remarketing_setting:type_name -> google.ads.googleads.v16.resources.RemarketingSetting - 8, // 3: google.ads.googleads.v16.resources.Customer.pay_per_conversion_eligibility_failure_reasons:type_name -> google.ads.googleads.v16.enums.CustomerPayPerConversionEligibilityFailureReasonEnum.CustomerPayPerConversionEligibilityFailureReason - 9, // 4: google.ads.googleads.v16.resources.Customer.status:type_name -> google.ads.googleads.v16.enums.CustomerStatusEnum.CustomerStatus - 4, // 5: google.ads.googleads.v16.resources.Customer.customer_agreement_setting:type_name -> google.ads.googleads.v16.resources.CustomerAgreementSetting - 5, // 6: google.ads.googleads.v16.resources.Customer.local_services_settings:type_name -> google.ads.googleads.v16.resources.LocalServicesSettings - 10, // 7: google.ads.googleads.v16.resources.Customer.video_brand_safety_suitability:type_name -> google.ads.googleads.v16.enums.BrandSafetySuitabilityEnum.BrandSafetySuitability - 11, // 8: google.ads.googleads.v16.resources.ConversionTrackingSetting.conversion_tracking_status:type_name -> google.ads.googleads.v16.enums.ConversionTrackingStatusEnum.ConversionTrackingStatus - 6, // 9: google.ads.googleads.v16.resources.LocalServicesSettings.granular_license_statuses:type_name -> google.ads.googleads.v16.resources.GranularLicenseStatus - 7, // 10: google.ads.googleads.v16.resources.LocalServicesSettings.granular_insurance_statuses:type_name -> google.ads.googleads.v16.resources.GranularInsuranceStatus - 12, // 11: google.ads.googleads.v16.resources.GranularLicenseStatus.verification_status:type_name -> google.ads.googleads.v16.enums.LocalServicesVerificationStatusEnum.LocalServicesVerificationStatus - 12, // 12: google.ads.googleads.v16.resources.GranularInsuranceStatus.verification_status:type_name -> google.ads.googleads.v16.enums.LocalServicesVerificationStatusEnum.LocalServicesVerificationStatus + return file_google_ads_googleads_v17_resources_customer_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_customer_proto_msgTypes = make([]protoimpl.MessageInfo, 8) +var file_google_ads_googleads_v17_resources_customer_proto_goTypes = []interface{}{ + (*Customer)(nil), // 0: google.ads.googleads.v17.resources.Customer + (*CallReportingSetting)(nil), // 1: google.ads.googleads.v17.resources.CallReportingSetting + (*ConversionTrackingSetting)(nil), // 2: google.ads.googleads.v17.resources.ConversionTrackingSetting + (*RemarketingSetting)(nil), // 3: google.ads.googleads.v17.resources.RemarketingSetting + (*CustomerAgreementSetting)(nil), // 4: google.ads.googleads.v17.resources.CustomerAgreementSetting + (*LocalServicesSettings)(nil), // 5: google.ads.googleads.v17.resources.LocalServicesSettings + (*GranularLicenseStatus)(nil), // 6: google.ads.googleads.v17.resources.GranularLicenseStatus + (*GranularInsuranceStatus)(nil), // 7: google.ads.googleads.v17.resources.GranularInsuranceStatus + (enums.CustomerPayPerConversionEligibilityFailureReasonEnum_CustomerPayPerConversionEligibilityFailureReason)(0), // 8: google.ads.googleads.v17.enums.CustomerPayPerConversionEligibilityFailureReasonEnum.CustomerPayPerConversionEligibilityFailureReason + (enums.CustomerStatusEnum_CustomerStatus)(0), // 9: google.ads.googleads.v17.enums.CustomerStatusEnum.CustomerStatus + (enums.BrandSafetySuitabilityEnum_BrandSafetySuitability)(0), // 10: google.ads.googleads.v17.enums.BrandSafetySuitabilityEnum.BrandSafetySuitability + (enums.ConversionTrackingStatusEnum_ConversionTrackingStatus)(0), // 11: google.ads.googleads.v17.enums.ConversionTrackingStatusEnum.ConversionTrackingStatus + (enums.LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus)(0), // 12: google.ads.googleads.v17.enums.LocalServicesVerificationStatusEnum.LocalServicesVerificationStatus +} +var file_google_ads_googleads_v17_resources_customer_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.Customer.call_reporting_setting:type_name -> google.ads.googleads.v17.resources.CallReportingSetting + 2, // 1: google.ads.googleads.v17.resources.Customer.conversion_tracking_setting:type_name -> google.ads.googleads.v17.resources.ConversionTrackingSetting + 3, // 2: google.ads.googleads.v17.resources.Customer.remarketing_setting:type_name -> google.ads.googleads.v17.resources.RemarketingSetting + 8, // 3: google.ads.googleads.v17.resources.Customer.pay_per_conversion_eligibility_failure_reasons:type_name -> google.ads.googleads.v17.enums.CustomerPayPerConversionEligibilityFailureReasonEnum.CustomerPayPerConversionEligibilityFailureReason + 9, // 4: google.ads.googleads.v17.resources.Customer.status:type_name -> google.ads.googleads.v17.enums.CustomerStatusEnum.CustomerStatus + 4, // 5: google.ads.googleads.v17.resources.Customer.customer_agreement_setting:type_name -> google.ads.googleads.v17.resources.CustomerAgreementSetting + 5, // 6: google.ads.googleads.v17.resources.Customer.local_services_settings:type_name -> google.ads.googleads.v17.resources.LocalServicesSettings + 10, // 7: google.ads.googleads.v17.resources.Customer.video_brand_safety_suitability:type_name -> google.ads.googleads.v17.enums.BrandSafetySuitabilityEnum.BrandSafetySuitability + 11, // 8: google.ads.googleads.v17.resources.ConversionTrackingSetting.conversion_tracking_status:type_name -> google.ads.googleads.v17.enums.ConversionTrackingStatusEnum.ConversionTrackingStatus + 6, // 9: google.ads.googleads.v17.resources.LocalServicesSettings.granular_license_statuses:type_name -> google.ads.googleads.v17.resources.GranularLicenseStatus + 7, // 10: google.ads.googleads.v17.resources.LocalServicesSettings.granular_insurance_statuses:type_name -> google.ads.googleads.v17.resources.GranularInsuranceStatus + 12, // 11: google.ads.googleads.v17.resources.GranularLicenseStatus.verification_status:type_name -> google.ads.googleads.v17.enums.LocalServicesVerificationStatusEnum.LocalServicesVerificationStatus + 12, // 12: google.ads.googleads.v17.resources.GranularInsuranceStatus.verification_status:type_name -> google.ads.googleads.v17.enums.LocalServicesVerificationStatusEnum.LocalServicesVerificationStatus 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 @@ -1220,13 +1220,13 @@ var file_google_ads_googleads_v16_resources_customer_proto_depIdxs = []int32{ 0, // [0:13] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_customer_proto_init() } -func file_google_ads_googleads_v16_resources_customer_proto_init() { - if File_google_ads_googleads_v16_resources_customer_proto != nil { +func init() { file_google_ads_googleads_v17_resources_customer_proto_init() } +func file_google_ads_googleads_v17_resources_customer_proto_init() { + if File_google_ads_googleads_v17_resources_customer_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_customer_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Customer); i { case 0: return &v.state @@ -1238,7 +1238,7 @@ func file_google_ads_googleads_v16_resources_customer_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_customer_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CallReportingSetting); i { case 0: return &v.state @@ -1250,7 +1250,7 @@ func file_google_ads_googleads_v16_resources_customer_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_customer_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConversionTrackingSetting); i { case 0: return &v.state @@ -1262,7 +1262,7 @@ func file_google_ads_googleads_v16_resources_customer_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_customer_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RemarketingSetting); i { case 0: return &v.state @@ -1274,7 +1274,7 @@ func file_google_ads_googleads_v16_resources_customer_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_customer_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerAgreementSetting); i { case 0: return &v.state @@ -1286,7 +1286,7 @@ func file_google_ads_googleads_v16_resources_customer_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_customer_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*LocalServicesSettings); i { case 0: return &v.state @@ -1298,7 +1298,7 @@ func file_google_ads_googleads_v16_resources_customer_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_customer_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GranularLicenseStatus); i { case 0: return &v.state @@ -1310,7 +1310,7 @@ func file_google_ads_googleads_v16_resources_customer_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_customer_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GranularInsuranceStatus); i { case 0: return &v.state @@ -1323,28 +1323,28 @@ func file_google_ads_googleads_v16_resources_customer_proto_init() { } } } - file_google_ads_googleads_v16_resources_customer_proto_msgTypes[0].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_customer_proto_msgTypes[1].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_customer_proto_msgTypes[2].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_customer_proto_msgTypes[3].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_customer_proto_msgTypes[6].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_customer_proto_msgTypes[7].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_customer_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_customer_proto_msgTypes[1].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_customer_proto_msgTypes[2].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_customer_proto_msgTypes[3].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_customer_proto_msgTypes[6].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_customer_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_resources_customer_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_customer_proto_rawDesc, NumEnums: 0, NumMessages: 8, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_customer_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_customer_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_customer_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_customer_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_customer_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_customer_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_customer_proto = out.File - file_google_ads_googleads_v16_resources_customer_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_customer_proto_goTypes = nil - file_google_ads_googleads_v16_resources_customer_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_customer_proto = out.File + file_google_ads_googleads_v17_resources_customer_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_customer_proto_goTypes = nil + file_google_ads_googleads_v17_resources_customer_proto_depIdxs = nil } diff --git a/resources/customer_asset.pb.go b/resources/customer_asset.pb.go index b08d24c5..60715509 100644 --- a/resources/customer_asset.pb.go +++ b/resources/customer_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/resources/customer_asset.proto +// source: google/ads/googleads/v17/resources/customer_asset.proto package resources @@ -51,30 +51,30 @@ type CustomerAsset struct { // Required. Immutable. The asset which is linked to the customer. Asset string `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"` // Required. Immutable. Role that the asset takes for the customer link. - FieldType enums.AssetFieldTypeEnum_AssetFieldType `protobuf:"varint,3,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,3,opt,name=field_type,json=fieldType,proto3,enum=google.ads.googleads.v17.enums.AssetFieldTypeEnum_AssetFieldType" json:"field_type,omitempty"` // Output only. Source of the customer asset link. - Source enums.AssetSourceEnum_AssetSource `protobuf:"varint,5,opt,name=source,proto3,enum=google.ads.googleads.v16.enums.AssetSourceEnum_AssetSource" json:"source,omitempty"` + Source enums.AssetSourceEnum_AssetSource `protobuf:"varint,5,opt,name=source,proto3,enum=google.ads.googleads.v17.enums.AssetSourceEnum_AssetSource" json:"source,omitempty"` // Status of the customer asset. - Status enums.AssetLinkStatusEnum_AssetLinkStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.AssetLinkStatusEnum_AssetLinkStatus" json:"status,omitempty"` + Status enums.AssetLinkStatusEnum_AssetLinkStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.AssetLinkStatusEnum_AssetLinkStatus" json:"status,omitempty"` // Output only. Provides the PrimaryStatus of this asset link. // Primary status is meant essentially to differentiate between the plain // "status" field, which has advertiser set values of enabled, paused, or // removed. The primary status takes into account other signals (for assets // its mainly policy and quality approvals) to come up with a more // comprehensive status to indicate its serving state. - PrimaryStatus enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus `protobuf:"varint,6,opt,name=primary_status,json=primaryStatus,proto3,enum=google.ads.googleads.v16.enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus" json:"primary_status,omitempty"` + PrimaryStatus enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus `protobuf:"varint,6,opt,name=primary_status,json=primaryStatus,proto3,enum=google.ads.googleads.v17.enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus" json:"primary_status,omitempty"` // Output only. Provides the details of the primary status and its associated // reasons. PrimaryStatusDetails []*common.AssetLinkPrimaryStatusDetails `protobuf:"bytes,7,rep,name=primary_status_details,json=primaryStatusDetails,proto3" json:"primary_status_details,omitempty"` // Output only. Provides a list of reasons for why an asset is not serving or // not serving at full capacity. - PrimaryStatusReasons []enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason `protobuf:"varint,8,rep,packed,name=primary_status_reasons,json=primaryStatusReasons,proto3,enum=google.ads.googleads.v16.enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason" json:"primary_status_reasons,omitempty"` + PrimaryStatusReasons []enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason `protobuf:"varint,8,rep,packed,name=primary_status_reasons,json=primaryStatusReasons,proto3,enum=google.ads.googleads.v17.enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason" json:"primary_status_reasons,omitempty"` } func (x *CustomerAsset) Reset() { *x = CustomerAsset{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_asset_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_asset_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -87,7 +87,7 @@ func (x *CustomerAsset) String() string { func (*CustomerAsset) ProtoMessage() {} func (x *CustomerAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_asset_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_asset_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -100,7 +100,7 @@ func (x *CustomerAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerAsset.ProtoReflect.Descriptor instead. func (*CustomerAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_asset_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_customer_asset_proto_rawDescGZIP(), []int{0} } func (x *CustomerAsset) GetResourceName() string { @@ -159,36 +159,36 @@ func (x *CustomerAsset) GetPrimaryStatusReasons() []enums.AssetLinkPrimaryStatus return nil } -var File_google_ads_googleads_v16_resources_customer_asset_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_customer_asset_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_customer_asset_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_customer_asset_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, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x61, 0x73, 0x73, 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, 0x32, 0x67, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x6e, 0x2f, 0x61, + 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, 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, + 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, 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, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, + 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, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, + 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, 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, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 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, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x6f, + 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, 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, @@ -206,26 +206,26 @@ var file_google_ads_googleads_v16_resources_customer_asset_proto_rawDesc = []byt 0x6d, 0x2f, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, 0x12, 0x68, 0x0a, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 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, + 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, 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, 0x42, 0x06, 0xe0, 0x41, 0x02, 0xe0, 0x41, 0x05, 0x52, 0x09, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x58, 0x0a, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x05, 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, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, + 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x5b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 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, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x7d, 0x0a, 0x0e, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x06, 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, 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, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, @@ -233,7 +233,7 @@ var file_google_ads_googleads_v16_resources_customer_asset_proto_rawDesc = []byt 0x0a, 0x16, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x18, 0x07, 0x20, 0x03, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x14, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, @@ -241,7 +241,7 @@ var file_google_ads_googleads_v16_resources_customer_asset_proto_rawDesc = []byt 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x73, 0x18, 0x08, 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, 0x73, 0x73, 0x65, + 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, 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, @@ -256,52 +256,52 @@ var file_google_ads_googleads_v16_resources_customer_asset_proto_rawDesc = []byt 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x7d, 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, 0x12, 0x43, 0x75, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x12, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 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, 0x65, 0x73, 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, + 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, 0x36, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 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, + 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_customer_asset_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_customer_asset_proto_rawDescData = file_google_ads_googleads_v16_resources_customer_asset_proto_rawDesc + file_google_ads_googleads_v17_resources_customer_asset_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_customer_asset_proto_rawDescData = file_google_ads_googleads_v17_resources_customer_asset_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_customer_asset_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_customer_asset_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_customer_asset_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_customer_asset_proto_rawDescData) +func file_google_ads_googleads_v17_resources_customer_asset_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_customer_asset_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_customer_asset_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_customer_asset_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_customer_asset_proto_rawDescData + return file_google_ads_googleads_v17_resources_customer_asset_proto_rawDescData } -var file_google_ads_googleads_v16_resources_customer_asset_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_customer_asset_proto_goTypes = []interface{}{ - (*CustomerAsset)(nil), // 0: google.ads.googleads.v16.resources.CustomerAsset - (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 1: google.ads.googleads.v16.enums.AssetFieldTypeEnum.AssetFieldType - (enums.AssetSourceEnum_AssetSource)(0), // 2: google.ads.googleads.v16.enums.AssetSourceEnum.AssetSource - (enums.AssetLinkStatusEnum_AssetLinkStatus)(0), // 3: google.ads.googleads.v16.enums.AssetLinkStatusEnum.AssetLinkStatus - (enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus)(0), // 4: google.ads.googleads.v16.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus - (*common.AssetLinkPrimaryStatusDetails)(nil), // 5: google.ads.googleads.v16.common.AssetLinkPrimaryStatusDetails - (enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason)(0), // 6: google.ads.googleads.v16.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason +var file_google_ads_googleads_v17_resources_customer_asset_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_customer_asset_proto_goTypes = []interface{}{ + (*CustomerAsset)(nil), // 0: google.ads.googleads.v17.resources.CustomerAsset + (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 1: google.ads.googleads.v17.enums.AssetFieldTypeEnum.AssetFieldType + (enums.AssetSourceEnum_AssetSource)(0), // 2: google.ads.googleads.v17.enums.AssetSourceEnum.AssetSource + (enums.AssetLinkStatusEnum_AssetLinkStatus)(0), // 3: google.ads.googleads.v17.enums.AssetLinkStatusEnum.AssetLinkStatus + (enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus)(0), // 4: google.ads.googleads.v17.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus + (*common.AssetLinkPrimaryStatusDetails)(nil), // 5: google.ads.googleads.v17.common.AssetLinkPrimaryStatusDetails + (enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason)(0), // 6: google.ads.googleads.v17.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason } -var file_google_ads_googleads_v16_resources_customer_asset_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CustomerAsset.field_type:type_name -> google.ads.googleads.v16.enums.AssetFieldTypeEnum.AssetFieldType - 2, // 1: google.ads.googleads.v16.resources.CustomerAsset.source:type_name -> google.ads.googleads.v16.enums.AssetSourceEnum.AssetSource - 3, // 2: google.ads.googleads.v16.resources.CustomerAsset.status:type_name -> google.ads.googleads.v16.enums.AssetLinkStatusEnum.AssetLinkStatus - 4, // 3: google.ads.googleads.v16.resources.CustomerAsset.primary_status:type_name -> google.ads.googleads.v16.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus - 5, // 4: google.ads.googleads.v16.resources.CustomerAsset.primary_status_details:type_name -> google.ads.googleads.v16.common.AssetLinkPrimaryStatusDetails - 6, // 5: google.ads.googleads.v16.resources.CustomerAsset.primary_status_reasons:type_name -> google.ads.googleads.v16.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason +var file_google_ads_googleads_v17_resources_customer_asset_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CustomerAsset.field_type:type_name -> google.ads.googleads.v17.enums.AssetFieldTypeEnum.AssetFieldType + 2, // 1: google.ads.googleads.v17.resources.CustomerAsset.source:type_name -> google.ads.googleads.v17.enums.AssetSourceEnum.AssetSource + 3, // 2: google.ads.googleads.v17.resources.CustomerAsset.status:type_name -> google.ads.googleads.v17.enums.AssetLinkStatusEnum.AssetLinkStatus + 4, // 3: google.ads.googleads.v17.resources.CustomerAsset.primary_status:type_name -> google.ads.googleads.v17.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus + 5, // 4: google.ads.googleads.v17.resources.CustomerAsset.primary_status_details:type_name -> google.ads.googleads.v17.common.AssetLinkPrimaryStatusDetails + 6, // 5: google.ads.googleads.v17.resources.CustomerAsset.primary_status_reasons:type_name -> google.ads.googleads.v17.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason 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 @@ -309,13 +309,13 @@ var file_google_ads_googleads_v16_resources_customer_asset_proto_depIdxs = []int 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_customer_asset_proto_init() } -func file_google_ads_googleads_v16_resources_customer_asset_proto_init() { - if File_google_ads_googleads_v16_resources_customer_asset_proto != nil { +func init() { file_google_ads_googleads_v17_resources_customer_asset_proto_init() } +func file_google_ads_googleads_v17_resources_customer_asset_proto_init() { + if File_google_ads_googleads_v17_resources_customer_asset_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_customer_asset_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_asset_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerAsset); i { case 0: return &v.state @@ -332,18 +332,18 @@ func file_google_ads_googleads_v16_resources_customer_asset_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_customer_asset_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_customer_asset_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_customer_asset_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_customer_asset_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_customer_asset_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_customer_asset_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_customer_asset_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_customer_asset_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_customer_asset_proto = out.File - file_google_ads_googleads_v16_resources_customer_asset_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_customer_asset_proto_goTypes = nil - file_google_ads_googleads_v16_resources_customer_asset_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_customer_asset_proto = out.File + file_google_ads_googleads_v17_resources_customer_asset_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_customer_asset_proto_goTypes = nil + file_google_ads_googleads_v17_resources_customer_asset_proto_depIdxs = nil } diff --git a/resources/customer_asset_set.pb.go b/resources/customer_asset_set.pb.go index 2a0e4830..26b7d2d5 100644 --- a/resources/customer_asset_set.pb.go +++ b/resources/customer_asset_set.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/customer_asset_set.proto +// source: google/ads/googleads/v17/resources/customer_asset_set.proto package resources @@ -53,13 +53,13 @@ type CustomerAssetSet struct { // Immutable. The customer to which this asset set is linked. Customer string `protobuf:"bytes,3,opt,name=customer,proto3" json:"customer,omitempty"` // Output only. The status of the customer asset set asset. Read-only. - Status enums.AssetSetLinkStatusEnum_AssetSetLinkStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.AssetSetLinkStatusEnum_AssetSetLinkStatus" json:"status,omitempty"` + Status enums.AssetSetLinkStatusEnum_AssetSetLinkStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.AssetSetLinkStatusEnum_AssetSetLinkStatus" json:"status,omitempty"` } func (x *CustomerAssetSet) Reset() { *x = CustomerAssetSet{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_asset_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_asset_set_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -72,7 +72,7 @@ func (x *CustomerAssetSet) String() string { func (*CustomerAssetSet) ProtoMessage() {} func (x *CustomerAssetSet) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_asset_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_asset_set_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85,7 +85,7 @@ func (x *CustomerAssetSet) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerAssetSet.ProtoReflect.Descriptor instead. func (*CustomerAssetSet) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_asset_set_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_customer_asset_set_proto_rawDescGZIP(), []int{0} } func (x *CustomerAssetSet) GetResourceName() string { @@ -116,17 +116,17 @@ func (x *CustomerAssetSet) GetStatus() enums.AssetSetLinkStatusEnum_AssetSetLink return enums.AssetSetLinkStatusEnum_AssetSetLinkStatus(0) } -var File_google_ads_googleads_v16_resources_customer_asset_set_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_customer_asset_set_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_customer_asset_set_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_customer_asset_set_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, 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, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 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, + 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, + 0x6f, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, @@ -150,7 +150,7 @@ var file_google_ads_googleads_v16_resources_customer_asset_set_proto_rawDesc = [ 0x6f, 0x6d, 0x2f, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x08, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x12, 0x66, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 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, + 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, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, @@ -163,43 +163,43 @@ var file_google_ads_googleads_v16_resources_customer_asset_set_proto_rawDesc = [ 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x73, 0x2f, 0x7b, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x87, 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, 0x15, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 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, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, + 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, + 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, + 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, 0x63, 0x65, + 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_customer_asset_set_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_customer_asset_set_proto_rawDescData = file_google_ads_googleads_v16_resources_customer_asset_set_proto_rawDesc + file_google_ads_googleads_v17_resources_customer_asset_set_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_customer_asset_set_proto_rawDescData = file_google_ads_googleads_v17_resources_customer_asset_set_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_customer_asset_set_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_customer_asset_set_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_customer_asset_set_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_customer_asset_set_proto_rawDescData) +func file_google_ads_googleads_v17_resources_customer_asset_set_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_customer_asset_set_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_customer_asset_set_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_customer_asset_set_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_customer_asset_set_proto_rawDescData + return file_google_ads_googleads_v17_resources_customer_asset_set_proto_rawDescData } -var file_google_ads_googleads_v16_resources_customer_asset_set_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_customer_asset_set_proto_goTypes = []interface{}{ - (*CustomerAssetSet)(nil), // 0: google.ads.googleads.v16.resources.CustomerAssetSet - (enums.AssetSetLinkStatusEnum_AssetSetLinkStatus)(0), // 1: google.ads.googleads.v16.enums.AssetSetLinkStatusEnum.AssetSetLinkStatus +var file_google_ads_googleads_v17_resources_customer_asset_set_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_customer_asset_set_proto_goTypes = []interface{}{ + (*CustomerAssetSet)(nil), // 0: google.ads.googleads.v17.resources.CustomerAssetSet + (enums.AssetSetLinkStatusEnum_AssetSetLinkStatus)(0), // 1: google.ads.googleads.v17.enums.AssetSetLinkStatusEnum.AssetSetLinkStatus } -var file_google_ads_googleads_v16_resources_customer_asset_set_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CustomerAssetSet.status:type_name -> google.ads.googleads.v16.enums.AssetSetLinkStatusEnum.AssetSetLinkStatus +var file_google_ads_googleads_v17_resources_customer_asset_set_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CustomerAssetSet.status:type_name -> google.ads.googleads.v17.enums.AssetSetLinkStatusEnum.AssetSetLinkStatus 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 @@ -207,13 +207,13 @@ var file_google_ads_googleads_v16_resources_customer_asset_set_proto_depIdxs = [ 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_customer_asset_set_proto_init() } -func file_google_ads_googleads_v16_resources_customer_asset_set_proto_init() { - if File_google_ads_googleads_v16_resources_customer_asset_set_proto != nil { +func init() { file_google_ads_googleads_v17_resources_customer_asset_set_proto_init() } +func file_google_ads_googleads_v17_resources_customer_asset_set_proto_init() { + if File_google_ads_googleads_v17_resources_customer_asset_set_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_customer_asset_set_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_asset_set_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerAssetSet); i { case 0: return &v.state @@ -230,18 +230,18 @@ func file_google_ads_googleads_v16_resources_customer_asset_set_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_customer_asset_set_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_customer_asset_set_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_customer_asset_set_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_customer_asset_set_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_customer_asset_set_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_customer_asset_set_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_customer_asset_set_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_customer_asset_set_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_customer_asset_set_proto = out.File - file_google_ads_googleads_v16_resources_customer_asset_set_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_customer_asset_set_proto_goTypes = nil - file_google_ads_googleads_v16_resources_customer_asset_set_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_customer_asset_set_proto = out.File + file_google_ads_googleads_v17_resources_customer_asset_set_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_customer_asset_set_proto_goTypes = nil + file_google_ads_googleads_v17_resources_customer_asset_set_proto_depIdxs = nil } diff --git a/resources/customer_client.pb.go b/resources/customer_client.pb.go index 65b44277..e777f879 100644 --- a/resources/customer_client.pb.go +++ b/resources/customer_client.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/customer_client.proto +// source: google/ads/googleads/v17/resources/customer_client.proto package resources @@ -79,13 +79,13 @@ type CustomerClient struct { // `customers/{customer_id}/labels/{label_id}` AppliedLabels []string `protobuf:"bytes,21,rep,name=applied_labels,json=appliedLabels,proto3" json:"applied_labels,omitempty"` // Output only. The status of the client customer. Read only. - Status enums.CustomerStatusEnum_CustomerStatus `protobuf:"varint,22,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.CustomerStatusEnum_CustomerStatus" json:"status,omitempty"` + Status enums.CustomerStatusEnum_CustomerStatus `protobuf:"varint,22,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.CustomerStatusEnum_CustomerStatus" json:"status,omitempty"` } func (x *CustomerClient) Reset() { *x = CustomerClient{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_client_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_client_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -98,7 +98,7 @@ func (x *CustomerClient) String() string { func (*CustomerClient) ProtoMessage() {} func (x *CustomerClient) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_client_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_client_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -111,7 +111,7 @@ func (x *CustomerClient) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerClient.ProtoReflect.Descriptor instead. func (*CustomerClient) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_client_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_customer_client_proto_rawDescGZIP(), []int{0} } func (x *CustomerClient) GetResourceName() string { @@ -198,17 +198,17 @@ func (x *CustomerClient) GetStatus() enums.CustomerStatusEnum_CustomerStatus { return enums.CustomerStatusEnum_CustomerStatus(0) } -var File_google_ads_googleads_v16_resources_customer_client_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_customer_client_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_customer_client_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_customer_client_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, 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, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 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, 0x34, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x63, + 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, 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, @@ -253,7 +253,7 @@ var file_google_ads_googleads_v16_resources_customer_client_proto_rawDesc = []by 0x69, 0x65, 0x64, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x12, 0x5e, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x16, 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, 0x43, 0x75, 0x73, 0x74, 0x6f, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x3a, 0x6a, 0xea, 0x41, 0x67, 0x0a, 0x27, @@ -273,43 +273,43 @@ var file_google_ads_googleads_v16_resources_customer_client_proto_rawDesc = []by 0x0a, 0x0e, 0x5f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x42, 0x05, 0x0a, 0x03, 0x5f, 0x69, 0x64, 0x42, 0x85, 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, 0x13, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6c, 0x69, 0x65, 0x6e, 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, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, + 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, + 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, 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, + 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_customer_client_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_customer_client_proto_rawDescData = file_google_ads_googleads_v16_resources_customer_client_proto_rawDesc + file_google_ads_googleads_v17_resources_customer_client_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_customer_client_proto_rawDescData = file_google_ads_googleads_v17_resources_customer_client_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_customer_client_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_customer_client_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_customer_client_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_customer_client_proto_rawDescData) +func file_google_ads_googleads_v17_resources_customer_client_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_customer_client_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_customer_client_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_customer_client_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_customer_client_proto_rawDescData + return file_google_ads_googleads_v17_resources_customer_client_proto_rawDescData } -var file_google_ads_googleads_v16_resources_customer_client_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_customer_client_proto_goTypes = []interface{}{ - (*CustomerClient)(nil), // 0: google.ads.googleads.v16.resources.CustomerClient - (enums.CustomerStatusEnum_CustomerStatus)(0), // 1: google.ads.googleads.v16.enums.CustomerStatusEnum.CustomerStatus +var file_google_ads_googleads_v17_resources_customer_client_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_customer_client_proto_goTypes = []interface{}{ + (*CustomerClient)(nil), // 0: google.ads.googleads.v17.resources.CustomerClient + (enums.CustomerStatusEnum_CustomerStatus)(0), // 1: google.ads.googleads.v17.enums.CustomerStatusEnum.CustomerStatus } -var file_google_ads_googleads_v16_resources_customer_client_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CustomerClient.status:type_name -> google.ads.googleads.v16.enums.CustomerStatusEnum.CustomerStatus +var file_google_ads_googleads_v17_resources_customer_client_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CustomerClient.status:type_name -> google.ads.googleads.v17.enums.CustomerStatusEnum.CustomerStatus 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 @@ -317,13 +317,13 @@ var file_google_ads_googleads_v16_resources_customer_client_proto_depIdxs = []in 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_customer_client_proto_init() } -func file_google_ads_googleads_v16_resources_customer_client_proto_init() { - if File_google_ads_googleads_v16_resources_customer_client_proto != nil { +func init() { file_google_ads_googleads_v17_resources_customer_client_proto_init() } +func file_google_ads_googleads_v17_resources_customer_client_proto_init() { + if File_google_ads_googleads_v17_resources_customer_client_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_customer_client_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_client_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerClient); i { case 0: return &v.state @@ -336,23 +336,23 @@ func file_google_ads_googleads_v16_resources_customer_client_proto_init() { } } } - file_google_ads_googleads_v16_resources_customer_client_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_customer_client_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_customer_client_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_customer_client_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_customer_client_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_customer_client_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_customer_client_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_customer_client_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_customer_client_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_customer_client_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_customer_client_proto = out.File - file_google_ads_googleads_v16_resources_customer_client_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_customer_client_proto_goTypes = nil - file_google_ads_googleads_v16_resources_customer_client_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_customer_client_proto = out.File + file_google_ads_googleads_v17_resources_customer_client_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_customer_client_proto_goTypes = nil + file_google_ads_googleads_v17_resources_customer_client_proto_depIdxs = nil } diff --git a/resources/customer_client_link.pb.go b/resources/customer_client_link.pb.go index 623dfdeb..23461c95 100644 --- a/resources/customer_client_link.pb.go +++ b/resources/customer_client_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/customer_client_link.proto +// source: google/ads/googleads/v17/resources/customer_client_link.proto package resources @@ -51,7 +51,7 @@ type CustomerClientLink struct { // Output only. This is uniquely identifies a customer client link. Read only. ManagerLinkId *int64 `protobuf:"varint,8,opt,name=manager_link_id,json=managerLinkId,proto3,oneof" json:"manager_link_id,omitempty"` // This is the status of the link between client and manager. - Status enums.ManagerLinkStatusEnum_ManagerLinkStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.ManagerLinkStatusEnum_ManagerLinkStatus" json:"status,omitempty"` + Status enums.ManagerLinkStatusEnum_ManagerLinkStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.ManagerLinkStatusEnum_ManagerLinkStatus" json:"status,omitempty"` // The visibility of the link. Users can choose whether or not to see hidden // links in the Google Ads UI. // Default value is false @@ -61,7 +61,7 @@ type CustomerClientLink struct { func (x *CustomerClientLink) Reset() { *x = CustomerClientLink{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_client_link_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_client_link_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74,7 +74,7 @@ func (x *CustomerClientLink) String() string { func (*CustomerClientLink) ProtoMessage() {} func (x *CustomerClientLink) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_client_link_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_client_link_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -87,7 +87,7 @@ func (x *CustomerClientLink) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerClientLink.ProtoReflect.Descriptor instead. func (*CustomerClientLink) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_client_link_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_customer_client_link_proto_rawDescGZIP(), []int{0} } func (x *CustomerClientLink) GetResourceName() string { @@ -125,17 +125,17 @@ func (x *CustomerClientLink) GetHidden() bool { return false } -var File_google_ads_googleads_v16_resources_customer_client_link_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_customer_client_link_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_customer_client_link_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_customer_client_link_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, 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, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6c, 0x69, 0x65, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 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, + 0x67, 0x6f, 0x6f, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, @@ -159,7 +159,7 @@ var file_google_ads_googleads_v16_resources_customer_client_link_proto_rawDesc = 0x03, 0x48, 0x01, 0x52, 0x0d, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x5f, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 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, + 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, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, @@ -178,44 +178,44 @@ var file_google_ads_googleads_v16_resources_customer_client_link_proto_rawDesc = 0x12, 0x0a, 0x10, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x69, 0x64, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x68, 0x69, 0x64, 0x64, 0x65, 0x6e, 0x42, 0x89, 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, + 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, 0x17, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6c, 0x69, 0x65, 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, + 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_customer_client_link_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_customer_client_link_proto_rawDescData = file_google_ads_googleads_v16_resources_customer_client_link_proto_rawDesc + file_google_ads_googleads_v17_resources_customer_client_link_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_customer_client_link_proto_rawDescData = file_google_ads_googleads_v17_resources_customer_client_link_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_customer_client_link_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_customer_client_link_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_customer_client_link_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_customer_client_link_proto_rawDescData) +func file_google_ads_googleads_v17_resources_customer_client_link_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_customer_client_link_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_customer_client_link_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_customer_client_link_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_customer_client_link_proto_rawDescData + return file_google_ads_googleads_v17_resources_customer_client_link_proto_rawDescData } -var file_google_ads_googleads_v16_resources_customer_client_link_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_customer_client_link_proto_goTypes = []interface{}{ - (*CustomerClientLink)(nil), // 0: google.ads.googleads.v16.resources.CustomerClientLink - (enums.ManagerLinkStatusEnum_ManagerLinkStatus)(0), // 1: google.ads.googleads.v16.enums.ManagerLinkStatusEnum.ManagerLinkStatus +var file_google_ads_googleads_v17_resources_customer_client_link_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_customer_client_link_proto_goTypes = []interface{}{ + (*CustomerClientLink)(nil), // 0: google.ads.googleads.v17.resources.CustomerClientLink + (enums.ManagerLinkStatusEnum_ManagerLinkStatus)(0), // 1: google.ads.googleads.v17.enums.ManagerLinkStatusEnum.ManagerLinkStatus } -var file_google_ads_googleads_v16_resources_customer_client_link_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CustomerClientLink.status:type_name -> google.ads.googleads.v16.enums.ManagerLinkStatusEnum.ManagerLinkStatus +var file_google_ads_googleads_v17_resources_customer_client_link_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CustomerClientLink.status:type_name -> google.ads.googleads.v17.enums.ManagerLinkStatusEnum.ManagerLinkStatus 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 @@ -223,13 +223,13 @@ var file_google_ads_googleads_v16_resources_customer_client_link_proto_depIdxs = 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_customer_client_link_proto_init() } -func file_google_ads_googleads_v16_resources_customer_client_link_proto_init() { - if File_google_ads_googleads_v16_resources_customer_client_link_proto != nil { +func init() { file_google_ads_googleads_v17_resources_customer_client_link_proto_init() } +func file_google_ads_googleads_v17_resources_customer_client_link_proto_init() { + if File_google_ads_googleads_v17_resources_customer_client_link_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_customer_client_link_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_client_link_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerClientLink); i { case 0: return &v.state @@ -242,23 +242,23 @@ func file_google_ads_googleads_v16_resources_customer_client_link_proto_init() { } } } - file_google_ads_googleads_v16_resources_customer_client_link_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_customer_client_link_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_customer_client_link_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_customer_client_link_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_customer_client_link_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_customer_client_link_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_customer_client_link_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_customer_client_link_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_customer_client_link_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_customer_client_link_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_customer_client_link_proto = out.File - file_google_ads_googleads_v16_resources_customer_client_link_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_customer_client_link_proto_goTypes = nil - file_google_ads_googleads_v16_resources_customer_client_link_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_customer_client_link_proto = out.File + file_google_ads_googleads_v17_resources_customer_client_link_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_customer_client_link_proto_goTypes = nil + file_google_ads_googleads_v17_resources_customer_client_link_proto_depIdxs = nil } diff --git a/resources/customer_conversion_goal.pb.go b/resources/customer_conversion_goal.pb.go index 325e4afe..a5cd5968 100644 --- a/resources/customer_conversion_goal.pb.go +++ b/resources/customer_conversion_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/resources/customer_conversion_goal.proto +// source: google/ads/googleads/v17/resources/customer_conversion_goal.proto package resources @@ -50,11 +50,11 @@ type CustomerConversionGoal struct { ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` // The conversion category of this customer conversion goal. Only // conversion actions that have this category will be included in this goal. - Category enums.ConversionActionCategoryEnum_ConversionActionCategory `protobuf:"varint,2,opt,name=category,proto3,enum=google.ads.googleads.v16.enums.ConversionActionCategoryEnum_ConversionActionCategory" json:"category,omitempty"` + Category enums.ConversionActionCategoryEnum_ConversionActionCategory `protobuf:"varint,2,opt,name=category,proto3,enum=google.ads.googleads.v17.enums.ConversionActionCategoryEnum_ConversionActionCategory" json:"category,omitempty"` // The conversion origin of this customer conversion goal. Only // conversion actions that have this conversion origin will be included in // this goal. - Origin enums.ConversionOriginEnum_ConversionOrigin `protobuf:"varint,3,opt,name=origin,proto3,enum=google.ads.googleads.v16.enums.ConversionOriginEnum_ConversionOrigin" json:"origin,omitempty"` + Origin enums.ConversionOriginEnum_ConversionOrigin `protobuf:"varint,3,opt,name=origin,proto3,enum=google.ads.googleads.v17.enums.ConversionOriginEnum_ConversionOrigin" json:"origin,omitempty"` // The biddability of the customer conversion goal. Biddable bool `protobuf:"varint,4,opt,name=biddable,proto3" json:"biddable,omitempty"` } @@ -62,7 +62,7 @@ type CustomerConversionGoal struct { func (x *CustomerConversionGoal) Reset() { *x = CustomerConversionGoal{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_conversion_goal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_conversion_goal_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75,7 +75,7 @@ func (x *CustomerConversionGoal) String() string { func (*CustomerConversionGoal) ProtoMessage() {} func (x *CustomerConversionGoal) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_conversion_goal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_conversion_goal_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88,7 +88,7 @@ func (x *CustomerConversionGoal) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerConversionGoal.ProtoReflect.Descriptor instead. func (*CustomerConversionGoal) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_conversion_goal_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_customer_conversion_goal_proto_rawDescGZIP(), []int{0} } func (x *CustomerConversionGoal) GetResourceName() string { @@ -119,22 +119,22 @@ func (x *CustomerConversionGoal) GetBiddable() bool { return false } -var File_google_ads_googleads_v16_resources_customer_conversion_goal_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_customer_conversion_goal_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_customer_conversion_goal_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_customer_conversion_goal_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, 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, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x65, 0x72, 0x73, 0x69, + 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, 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, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, + 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, 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, @@ -150,14 +150,14 @@ var file_google_ads_googleads_v16_resources_customer_conversion_goal_proto_rawDe 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x71, 0x0a, 0x08, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 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, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, + 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, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x52, 0x08, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x12, 0x5d, 0x0a, 0x06, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x18, 0x03, 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, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, + 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x52, 0x06, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x69, 0x64, 0x64, 0x61, @@ -171,46 +171,46 @@ var file_google_ads_googleads_v16_resources_customer_conversion_goal_proto_rawDe 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x73, 0x2f, 0x7b, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x7d, 0x7e, 0x7b, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x7d, 0x42, 0x8d, 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, + 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, 0x1b, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 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, 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_customer_conversion_goal_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_customer_conversion_goal_proto_rawDescData = file_google_ads_googleads_v16_resources_customer_conversion_goal_proto_rawDesc + file_google_ads_googleads_v17_resources_customer_conversion_goal_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_customer_conversion_goal_proto_rawDescData = file_google_ads_googleads_v17_resources_customer_conversion_goal_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_customer_conversion_goal_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_customer_conversion_goal_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_customer_conversion_goal_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_customer_conversion_goal_proto_rawDescData) +func file_google_ads_googleads_v17_resources_customer_conversion_goal_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_customer_conversion_goal_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_customer_conversion_goal_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_customer_conversion_goal_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_customer_conversion_goal_proto_rawDescData + return file_google_ads_googleads_v17_resources_customer_conversion_goal_proto_rawDescData } -var file_google_ads_googleads_v16_resources_customer_conversion_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_customer_conversion_goal_proto_goTypes = []interface{}{ - (*CustomerConversionGoal)(nil), // 0: google.ads.googleads.v16.resources.CustomerConversionGoal - (enums.ConversionActionCategoryEnum_ConversionActionCategory)(0), // 1: google.ads.googleads.v16.enums.ConversionActionCategoryEnum.ConversionActionCategory - (enums.ConversionOriginEnum_ConversionOrigin)(0), // 2: google.ads.googleads.v16.enums.ConversionOriginEnum.ConversionOrigin +var file_google_ads_googleads_v17_resources_customer_conversion_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_customer_conversion_goal_proto_goTypes = []interface{}{ + (*CustomerConversionGoal)(nil), // 0: google.ads.googleads.v17.resources.CustomerConversionGoal + (enums.ConversionActionCategoryEnum_ConversionActionCategory)(0), // 1: google.ads.googleads.v17.enums.ConversionActionCategoryEnum.ConversionActionCategory + (enums.ConversionOriginEnum_ConversionOrigin)(0), // 2: google.ads.googleads.v17.enums.ConversionOriginEnum.ConversionOrigin } -var file_google_ads_googleads_v16_resources_customer_conversion_goal_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CustomerConversionGoal.category:type_name -> google.ads.googleads.v16.enums.ConversionActionCategoryEnum.ConversionActionCategory - 2, // 1: google.ads.googleads.v16.resources.CustomerConversionGoal.origin:type_name -> google.ads.googleads.v16.enums.ConversionOriginEnum.ConversionOrigin +var file_google_ads_googleads_v17_resources_customer_conversion_goal_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CustomerConversionGoal.category:type_name -> google.ads.googleads.v17.enums.ConversionActionCategoryEnum.ConversionActionCategory + 2, // 1: google.ads.googleads.v17.resources.CustomerConversionGoal.origin:type_name -> google.ads.googleads.v17.enums.ConversionOriginEnum.ConversionOrigin 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 @@ -218,13 +218,13 @@ var file_google_ads_googleads_v16_resources_customer_conversion_goal_proto_depId 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_customer_conversion_goal_proto_init() } -func file_google_ads_googleads_v16_resources_customer_conversion_goal_proto_init() { - if File_google_ads_googleads_v16_resources_customer_conversion_goal_proto != nil { +func init() { file_google_ads_googleads_v17_resources_customer_conversion_goal_proto_init() } +func file_google_ads_googleads_v17_resources_customer_conversion_goal_proto_init() { + if File_google_ads_googleads_v17_resources_customer_conversion_goal_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_customer_conversion_goal_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_conversion_goal_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerConversionGoal); i { case 0: return &v.state @@ -241,18 +241,18 @@ func file_google_ads_googleads_v16_resources_customer_conversion_goal_proto_init out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_customer_conversion_goal_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_customer_conversion_goal_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_customer_conversion_goal_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_customer_conversion_goal_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_customer_conversion_goal_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_customer_conversion_goal_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_customer_conversion_goal_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_customer_conversion_goal_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_customer_conversion_goal_proto = out.File - file_google_ads_googleads_v16_resources_customer_conversion_goal_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_customer_conversion_goal_proto_goTypes = nil - file_google_ads_googleads_v16_resources_customer_conversion_goal_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_customer_conversion_goal_proto = out.File + file_google_ads_googleads_v17_resources_customer_conversion_goal_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_customer_conversion_goal_proto_goTypes = nil + file_google_ads_googleads_v17_resources_customer_conversion_goal_proto_depIdxs = nil } diff --git a/resources/customer_customizer.pb.go b/resources/customer_customizer.pb.go index 8feaff72..bb6f2679 100644 --- a/resources/customer_customizer.pb.go +++ b/resources/customer_customizer.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/customer_customizer.proto +// source: google/ads/googleads/v17/resources/customer_customizer.proto package resources @@ -53,7 +53,7 @@ type CustomerCustomizer struct { // customer. CustomizerAttribute string `protobuf:"bytes,2,opt,name=customizer_attribute,json=customizerAttribute,proto3" json:"customizer_attribute,omitempty"` // Output only. The status of the customer customizer attribute. - Status enums.CustomizerValueStatusEnum_CustomizerValueStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.CustomizerValueStatusEnum_CustomizerValueStatus" json:"status,omitempty"` + Status enums.CustomizerValueStatusEnum_CustomizerValueStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.CustomizerValueStatusEnum_CustomizerValueStatus" json:"status,omitempty"` // Required. The value to associate with the customizer attribute at this // level. The value must be of the type specified for the CustomizerAttribute. Value *common.CustomizerValue `protobuf:"bytes,4,opt,name=value,proto3" json:"value,omitempty"` @@ -62,7 +62,7 @@ type CustomerCustomizer struct { func (x *CustomerCustomizer) Reset() { *x = CustomerCustomizer{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_customizer_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_customizer_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75,7 +75,7 @@ func (x *CustomerCustomizer) String() string { func (*CustomerCustomizer) ProtoMessage() {} func (x *CustomerCustomizer) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_customizer_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_customizer_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88,7 +88,7 @@ func (x *CustomerCustomizer) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerCustomizer.ProtoReflect.Descriptor instead. func (*CustomerCustomizer) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_customizer_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_customer_customizer_proto_rawDescGZIP(), []int{0} } func (x *CustomerCustomizer) GetResourceName() string { @@ -119,21 +119,21 @@ func (x *CustomerCustomizer) GetValue() *common.CustomizerValue { return nil } -var File_google_ads_googleads_v16_resources_customer_customizer_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_customer_customizer_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_customer_customizer_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_customer_customizer_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, 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, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 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, 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, + 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, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x76, 0x61, 0x6c, 0x75, 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, 0x63, 0x75, 0x73, 0x74, 0x6f, + 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76, @@ -155,14 +155,14 @@ var file_google_ads_googleads_v16_resources_customer_customizer_proto_rawDesc = 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x12, 0x6c, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 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, + 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, 0x69, 0x7a, 0x65, 0x72, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x4b, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x04, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x77, 0xea, 0x41, 0x74, 0x0a, 0x2b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, @@ -174,45 +174,45 @@ var file_google_ads_googleads_v16_resources_customer_customizer_proto_rawDesc = 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x89, 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, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x17, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 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, + 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, + 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, + 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, 0x63, 0x65, + 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_customer_customizer_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_customer_customizer_proto_rawDescData = file_google_ads_googleads_v16_resources_customer_customizer_proto_rawDesc + file_google_ads_googleads_v17_resources_customer_customizer_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_customer_customizer_proto_rawDescData = file_google_ads_googleads_v17_resources_customer_customizer_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_customer_customizer_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_customer_customizer_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_customer_customizer_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_customer_customizer_proto_rawDescData) +func file_google_ads_googleads_v17_resources_customer_customizer_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_customer_customizer_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_customer_customizer_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_customer_customizer_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_customer_customizer_proto_rawDescData + return file_google_ads_googleads_v17_resources_customer_customizer_proto_rawDescData } -var file_google_ads_googleads_v16_resources_customer_customizer_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_customer_customizer_proto_goTypes = []interface{}{ - (*CustomerCustomizer)(nil), // 0: google.ads.googleads.v16.resources.CustomerCustomizer - (enums.CustomizerValueStatusEnum_CustomizerValueStatus)(0), // 1: google.ads.googleads.v16.enums.CustomizerValueStatusEnum.CustomizerValueStatus - (*common.CustomizerValue)(nil), // 2: google.ads.googleads.v16.common.CustomizerValue +var file_google_ads_googleads_v17_resources_customer_customizer_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_customer_customizer_proto_goTypes = []interface{}{ + (*CustomerCustomizer)(nil), // 0: google.ads.googleads.v17.resources.CustomerCustomizer + (enums.CustomizerValueStatusEnum_CustomizerValueStatus)(0), // 1: google.ads.googleads.v17.enums.CustomizerValueStatusEnum.CustomizerValueStatus + (*common.CustomizerValue)(nil), // 2: google.ads.googleads.v17.common.CustomizerValue } -var file_google_ads_googleads_v16_resources_customer_customizer_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CustomerCustomizer.status:type_name -> google.ads.googleads.v16.enums.CustomizerValueStatusEnum.CustomizerValueStatus - 2, // 1: google.ads.googleads.v16.resources.CustomerCustomizer.value:type_name -> google.ads.googleads.v16.common.CustomizerValue +var file_google_ads_googleads_v17_resources_customer_customizer_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CustomerCustomizer.status:type_name -> google.ads.googleads.v17.enums.CustomizerValueStatusEnum.CustomizerValueStatus + 2, // 1: google.ads.googleads.v17.resources.CustomerCustomizer.value:type_name -> google.ads.googleads.v17.common.CustomizerValue 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 @@ -220,13 +220,13 @@ var file_google_ads_googleads_v16_resources_customer_customizer_proto_depIdxs = 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_customer_customizer_proto_init() } -func file_google_ads_googleads_v16_resources_customer_customizer_proto_init() { - if File_google_ads_googleads_v16_resources_customer_customizer_proto != nil { +func init() { file_google_ads_googleads_v17_resources_customer_customizer_proto_init() } +func file_google_ads_googleads_v17_resources_customer_customizer_proto_init() { + if File_google_ads_googleads_v17_resources_customer_customizer_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_customer_customizer_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_customizer_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerCustomizer); i { case 0: return &v.state @@ -243,18 +243,18 @@ func file_google_ads_googleads_v16_resources_customer_customizer_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_customer_customizer_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_customer_customizer_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_customer_customizer_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_customer_customizer_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_customer_customizer_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_customer_customizer_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_customer_customizer_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_customer_customizer_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_customer_customizer_proto = out.File - file_google_ads_googleads_v16_resources_customer_customizer_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_customer_customizer_proto_goTypes = nil - file_google_ads_googleads_v16_resources_customer_customizer_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_customer_customizer_proto = out.File + file_google_ads_googleads_v17_resources_customer_customizer_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_customer_customizer_proto_goTypes = nil + file_google_ads_googleads_v17_resources_customer_customizer_proto_depIdxs = nil } diff --git a/resources/customer_extension_setting.pb.go b/resources/customer_extension_setting.pb.go index 386b1da5..143edb51 100644 --- a/resources/customer_extension_setting.pb.go +++ b/resources/customer_extension_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/resources/customer_extension_setting.proto +// source: google/ads/googleads/v17/resources/customer_extension_setting.proto package resources @@ -48,20 +48,20 @@ type CustomerExtensionSetting struct { // `customers/{customer_id}/customerExtensionSettings/{extension_type}` ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` // Immutable. The extension type of the customer extension setting. - ExtensionType enums.ExtensionTypeEnum_ExtensionType `protobuf:"varint,2,opt,name=extension_type,json=extensionType,proto3,enum=google.ads.googleads.v16.enums.ExtensionTypeEnum_ExtensionType" json:"extension_type,omitempty"` + ExtensionType enums.ExtensionTypeEnum_ExtensionType `protobuf:"varint,2,opt,name=extension_type,json=extensionType,proto3,enum=google.ads.googleads.v17.enums.ExtensionTypeEnum_ExtensionType" json:"extension_type,omitempty"` // The resource names of the extension feed items to serve under the customer. // ExtensionFeedItem resource names have the form: // // `customers/{customer_id}/extensionFeedItems/{feed_item_id}` ExtensionFeedItems []string `protobuf:"bytes,5,rep,name=extension_feed_items,json=extensionFeedItems,proto3" json:"extension_feed_items,omitempty"` // The device for which the extensions will serve. Optional. - Device enums.ExtensionSettingDeviceEnum_ExtensionSettingDevice `protobuf:"varint,4,opt,name=device,proto3,enum=google.ads.googleads.v16.enums.ExtensionSettingDeviceEnum_ExtensionSettingDevice" json:"device,omitempty"` + Device enums.ExtensionSettingDeviceEnum_ExtensionSettingDevice `protobuf:"varint,4,opt,name=device,proto3,enum=google.ads.googleads.v17.enums.ExtensionSettingDeviceEnum_ExtensionSettingDevice" json:"device,omitempty"` } func (x *CustomerExtensionSetting) Reset() { *x = CustomerExtensionSetting{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_extension_setting_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_extension_setting_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74,7 +74,7 @@ func (x *CustomerExtensionSetting) String() string { func (*CustomerExtensionSetting) ProtoMessage() {} func (x *CustomerExtensionSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_extension_setting_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_extension_setting_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -87,7 +87,7 @@ func (x *CustomerExtensionSetting) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerExtensionSetting.ProtoReflect.Descriptor instead. func (*CustomerExtensionSetting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_extension_setting_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_customer_extension_setting_proto_rawDescGZIP(), []int{0} } func (x *CustomerExtensionSetting) GetResourceName() string { @@ -118,22 +118,22 @@ func (x *CustomerExtensionSetting) GetDevice() enums.ExtensionSettingDeviceEnum_ return enums.ExtensionSettingDeviceEnum_ExtensionSettingDevice(0) } -var File_google_ads_googleads_v16_resources_customer_extension_setting_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_customer_extension_setting_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_customer_extension_setting_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_customer_extension_setting_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, 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, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 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, + 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, 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, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, + 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, 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, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, + 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, 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, @@ -149,7 +149,7 @@ var file_google_ads_googleads_v16_resources_customer_extension_setting_proto_raw 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x6b, 0x0a, 0x0e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 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, 0x73, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x52, 0x0d, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x54, @@ -162,7 +162,7 @@ var file_google_ads_googleads_v16_resources_customer_extension_setting_proto_raw 0x64, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x12, 0x69, 0x0a, 0x06, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x18, 0x04, 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, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, + 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x52, 0x06, 0x64, 0x65, 0x76, 0x69, 0x63, @@ -175,46 +175,46 @@ var file_google_ads_googleads_v16_resources_customer_extension_setting_proto_raw 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x2f, 0x7b, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x7d, 0x42, 0x8f, 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, + 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, 0x1d, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 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, + 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, + 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, 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, + 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_customer_extension_setting_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_customer_extension_setting_proto_rawDescData = file_google_ads_googleads_v16_resources_customer_extension_setting_proto_rawDesc + file_google_ads_googleads_v17_resources_customer_extension_setting_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_customer_extension_setting_proto_rawDescData = file_google_ads_googleads_v17_resources_customer_extension_setting_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_customer_extension_setting_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_customer_extension_setting_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_customer_extension_setting_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_customer_extension_setting_proto_rawDescData) +func file_google_ads_googleads_v17_resources_customer_extension_setting_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_customer_extension_setting_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_customer_extension_setting_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_customer_extension_setting_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_customer_extension_setting_proto_rawDescData + return file_google_ads_googleads_v17_resources_customer_extension_setting_proto_rawDescData } -var file_google_ads_googleads_v16_resources_customer_extension_setting_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_customer_extension_setting_proto_goTypes = []interface{}{ - (*CustomerExtensionSetting)(nil), // 0: google.ads.googleads.v16.resources.CustomerExtensionSetting - (enums.ExtensionTypeEnum_ExtensionType)(0), // 1: google.ads.googleads.v16.enums.ExtensionTypeEnum.ExtensionType - (enums.ExtensionSettingDeviceEnum_ExtensionSettingDevice)(0), // 2: google.ads.googleads.v16.enums.ExtensionSettingDeviceEnum.ExtensionSettingDevice +var file_google_ads_googleads_v17_resources_customer_extension_setting_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_customer_extension_setting_proto_goTypes = []interface{}{ + (*CustomerExtensionSetting)(nil), // 0: google.ads.googleads.v17.resources.CustomerExtensionSetting + (enums.ExtensionTypeEnum_ExtensionType)(0), // 1: google.ads.googleads.v17.enums.ExtensionTypeEnum.ExtensionType + (enums.ExtensionSettingDeviceEnum_ExtensionSettingDevice)(0), // 2: google.ads.googleads.v17.enums.ExtensionSettingDeviceEnum.ExtensionSettingDevice } -var file_google_ads_googleads_v16_resources_customer_extension_setting_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CustomerExtensionSetting.extension_type:type_name -> google.ads.googleads.v16.enums.ExtensionTypeEnum.ExtensionType - 2, // 1: google.ads.googleads.v16.resources.CustomerExtensionSetting.device:type_name -> google.ads.googleads.v16.enums.ExtensionSettingDeviceEnum.ExtensionSettingDevice +var file_google_ads_googleads_v17_resources_customer_extension_setting_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CustomerExtensionSetting.extension_type:type_name -> google.ads.googleads.v17.enums.ExtensionTypeEnum.ExtensionType + 2, // 1: google.ads.googleads.v17.resources.CustomerExtensionSetting.device:type_name -> google.ads.googleads.v17.enums.ExtensionSettingDeviceEnum.ExtensionSettingDevice 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 @@ -222,13 +222,13 @@ var file_google_ads_googleads_v16_resources_customer_extension_setting_proto_dep 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_customer_extension_setting_proto_init() } -func file_google_ads_googleads_v16_resources_customer_extension_setting_proto_init() { - if File_google_ads_googleads_v16_resources_customer_extension_setting_proto != nil { +func init() { file_google_ads_googleads_v17_resources_customer_extension_setting_proto_init() } +func file_google_ads_googleads_v17_resources_customer_extension_setting_proto_init() { + if File_google_ads_googleads_v17_resources_customer_extension_setting_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_customer_extension_setting_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_extension_setting_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerExtensionSetting); i { case 0: return &v.state @@ -245,18 +245,18 @@ func file_google_ads_googleads_v16_resources_customer_extension_setting_proto_in out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_customer_extension_setting_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_customer_extension_setting_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_customer_extension_setting_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_customer_extension_setting_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_customer_extension_setting_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_customer_extension_setting_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_customer_extension_setting_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_customer_extension_setting_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_customer_extension_setting_proto = out.File - file_google_ads_googleads_v16_resources_customer_extension_setting_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_customer_extension_setting_proto_goTypes = nil - file_google_ads_googleads_v16_resources_customer_extension_setting_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_customer_extension_setting_proto = out.File + file_google_ads_googleads_v17_resources_customer_extension_setting_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_customer_extension_setting_proto_goTypes = nil + file_google_ads_googleads_v17_resources_customer_extension_setting_proto_depIdxs = nil } diff --git a/resources/customer_feed.pb.go b/resources/customer_feed.pb.go index 8939581b..9d56e139 100644 --- a/resources/customer_feed.pb.go +++ b/resources/customer_feed.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/customer_feed.proto +// source: google/ads/googleads/v17/resources/customer_feed.proto package resources @@ -52,20 +52,20 @@ type CustomerFeed struct { Feed *string `protobuf:"bytes,6,opt,name=feed,proto3,oneof" json:"feed,omitempty"` // Indicates which placeholder types the feed may populate under the connected // customer. Required. - PlaceholderTypes []enums.PlaceholderTypeEnum_PlaceholderType `protobuf:"varint,3,rep,packed,name=placeholder_types,json=placeholderTypes,proto3,enum=google.ads.googleads.v16.enums.PlaceholderTypeEnum_PlaceholderType" json:"placeholder_types,omitempty"` + PlaceholderTypes []enums.PlaceholderTypeEnum_PlaceholderType `protobuf:"varint,3,rep,packed,name=placeholder_types,json=placeholderTypes,proto3,enum=google.ads.googleads.v17.enums.PlaceholderTypeEnum_PlaceholderType" json:"placeholder_types,omitempty"` // Matching function associated with the CustomerFeed. // The matching function is used to filter the set of feed items selected. // Required. MatchingFunction *common.MatchingFunction `protobuf:"bytes,4,opt,name=matching_function,json=matchingFunction,proto3" json:"matching_function,omitempty"` // Output only. Status of the customer feed. // This field is read-only. - Status enums.FeedLinkStatusEnum_FeedLinkStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.FeedLinkStatusEnum_FeedLinkStatus" json:"status,omitempty"` + Status enums.FeedLinkStatusEnum_FeedLinkStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.FeedLinkStatusEnum_FeedLinkStatus" json:"status,omitempty"` } func (x *CustomerFeed) Reset() { *x = CustomerFeed{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_feed_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_feed_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *CustomerFeed) String() string { func (*CustomerFeed) ProtoMessage() {} func (x *CustomerFeed) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_feed_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_feed_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 *CustomerFeed) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerFeed.ProtoReflect.Descriptor instead. func (*CustomerFeed) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_feed_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_customer_feed_proto_rawDescGZIP(), []int{0} } func (x *CustomerFeed) GetResourceName() string { @@ -129,24 +129,24 @@ func (x *CustomerFeed) GetStatus() enums.FeedLinkStatusEnum_FeedLinkStatus { return enums.FeedLinkStatusEnum_FeedLinkStatus(0) } -var File_google_ads_googleads_v16_resources_customer_feed_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_customer_feed_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_customer_feed_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_customer_feed_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, 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, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x66, 0x65, 0x65, 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, 0x73, 0x1a, 0x37, 0x67, 0x6f, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x2f, 0x6d, 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, 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, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 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, 0x70, 0x6c, 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, 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, @@ -165,20 +165,20 @@ var file_google_ads_googleads_v16_resources_customer_feed_proto_rawDesc = []byte 0x64, 0x88, 0x01, 0x01, 0x12, 0x70, 0x0a, 0x11, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x03, 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, + 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, 0x10, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x5e, 0x0a, 0x11, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x5f, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 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, 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, 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, 0x12, 0x5e, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 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, 0x46, 0x65, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, + 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x3a, 0x5b, 0xea, 0x41, 0x58, 0x0a, 0x25, 0x67, 0x6f, 0x6f, @@ -189,47 +189,47 @@ var file_google_ads_googleads_v16_resources_customer_feed_proto_rawDesc = []byte 0x6f, 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, 0x73, 0x2f, 0x7b, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x42, 0x83, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x11, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, 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, + 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, + 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, + 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, 0x63, + 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_customer_feed_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_customer_feed_proto_rawDescData = file_google_ads_googleads_v16_resources_customer_feed_proto_rawDesc + file_google_ads_googleads_v17_resources_customer_feed_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_customer_feed_proto_rawDescData = file_google_ads_googleads_v17_resources_customer_feed_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_customer_feed_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_customer_feed_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_customer_feed_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_customer_feed_proto_rawDescData) +func file_google_ads_googleads_v17_resources_customer_feed_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_customer_feed_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_customer_feed_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_customer_feed_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_customer_feed_proto_rawDescData + return file_google_ads_googleads_v17_resources_customer_feed_proto_rawDescData } -var file_google_ads_googleads_v16_resources_customer_feed_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_customer_feed_proto_goTypes = []interface{}{ - (*CustomerFeed)(nil), // 0: google.ads.googleads.v16.resources.CustomerFeed - (enums.PlaceholderTypeEnum_PlaceholderType)(0), // 1: google.ads.googleads.v16.enums.PlaceholderTypeEnum.PlaceholderType - (*common.MatchingFunction)(nil), // 2: google.ads.googleads.v16.common.MatchingFunction - (enums.FeedLinkStatusEnum_FeedLinkStatus)(0), // 3: google.ads.googleads.v16.enums.FeedLinkStatusEnum.FeedLinkStatus +var file_google_ads_googleads_v17_resources_customer_feed_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_customer_feed_proto_goTypes = []interface{}{ + (*CustomerFeed)(nil), // 0: google.ads.googleads.v17.resources.CustomerFeed + (enums.PlaceholderTypeEnum_PlaceholderType)(0), // 1: google.ads.googleads.v17.enums.PlaceholderTypeEnum.PlaceholderType + (*common.MatchingFunction)(nil), // 2: google.ads.googleads.v17.common.MatchingFunction + (enums.FeedLinkStatusEnum_FeedLinkStatus)(0), // 3: google.ads.googleads.v17.enums.FeedLinkStatusEnum.FeedLinkStatus } -var file_google_ads_googleads_v16_resources_customer_feed_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CustomerFeed.placeholder_types:type_name -> google.ads.googleads.v16.enums.PlaceholderTypeEnum.PlaceholderType - 2, // 1: google.ads.googleads.v16.resources.CustomerFeed.matching_function:type_name -> google.ads.googleads.v16.common.MatchingFunction - 3, // 2: google.ads.googleads.v16.resources.CustomerFeed.status:type_name -> google.ads.googleads.v16.enums.FeedLinkStatusEnum.FeedLinkStatus +var file_google_ads_googleads_v17_resources_customer_feed_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CustomerFeed.placeholder_types:type_name -> google.ads.googleads.v17.enums.PlaceholderTypeEnum.PlaceholderType + 2, // 1: google.ads.googleads.v17.resources.CustomerFeed.matching_function:type_name -> google.ads.googleads.v17.common.MatchingFunction + 3, // 2: google.ads.googleads.v17.resources.CustomerFeed.status:type_name -> google.ads.googleads.v17.enums.FeedLinkStatusEnum.FeedLinkStatus 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 @@ -237,13 +237,13 @@ var file_google_ads_googleads_v16_resources_customer_feed_proto_depIdxs = []int3 0, // [0:3] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_customer_feed_proto_init() } -func file_google_ads_googleads_v16_resources_customer_feed_proto_init() { - if File_google_ads_googleads_v16_resources_customer_feed_proto != nil { +func init() { file_google_ads_googleads_v17_resources_customer_feed_proto_init() } +func file_google_ads_googleads_v17_resources_customer_feed_proto_init() { + if File_google_ads_googleads_v17_resources_customer_feed_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_customer_feed_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_feed_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerFeed); i { case 0: return &v.state @@ -256,23 +256,23 @@ func file_google_ads_googleads_v16_resources_customer_feed_proto_init() { } } } - file_google_ads_googleads_v16_resources_customer_feed_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_customer_feed_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_customer_feed_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_customer_feed_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_customer_feed_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_customer_feed_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_customer_feed_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_customer_feed_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_customer_feed_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_customer_feed_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_customer_feed_proto = out.File - file_google_ads_googleads_v16_resources_customer_feed_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_customer_feed_proto_goTypes = nil - file_google_ads_googleads_v16_resources_customer_feed_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_customer_feed_proto = out.File + file_google_ads_googleads_v17_resources_customer_feed_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_customer_feed_proto_goTypes = nil + file_google_ads_googleads_v17_resources_customer_feed_proto_depIdxs = nil } diff --git a/resources/customer_label.pb.go b/resources/customer_label.pb.go index 86d54866..a7c6fa36 100644 --- a/resources/customer_label.pb.go +++ b/resources/customer_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/resources/customer_label.proto +// source: google/ads/googleads/v17/resources/customer_label.proto package resources @@ -60,7 +60,7 @@ type CustomerLabel struct { func (x *CustomerLabel) Reset() { *x = CustomerLabel{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_label_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_label_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73,7 +73,7 @@ func (x *CustomerLabel) String() string { func (*CustomerLabel) ProtoMessage() {} func (x *CustomerLabel) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_label_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_label_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 *CustomerLabel) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerLabel.ProtoReflect.Descriptor instead. func (*CustomerLabel) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_label_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_customer_label_proto_rawDescGZIP(), []int{0} } func (x *CustomerLabel) GetResourceName() string { @@ -110,15 +110,15 @@ func (x *CustomerLabel) GetLabel() string { return "" } -var File_google_ads_googleads_v16_resources_customer_label_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_customer_label_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_customer_label_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_customer_label_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, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6c, 0x61, 0x62, 0x65, 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, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x1f, 0x67, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -147,41 +147,41 @@ var file_google_ads_googleads_v16_resources_customer_label_proto_rawDesc = []byt 0x0b, 0x0a, 0x09, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 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, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x12, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x61, 0x62, 0x65, 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, + 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, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, + 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, + 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, 0x70, + 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_customer_label_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_customer_label_proto_rawDescData = file_google_ads_googleads_v16_resources_customer_label_proto_rawDesc + file_google_ads_googleads_v17_resources_customer_label_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_customer_label_proto_rawDescData = file_google_ads_googleads_v17_resources_customer_label_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_customer_label_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_customer_label_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_customer_label_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_customer_label_proto_rawDescData) +func file_google_ads_googleads_v17_resources_customer_label_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_customer_label_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_customer_label_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_customer_label_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_customer_label_proto_rawDescData + return file_google_ads_googleads_v17_resources_customer_label_proto_rawDescData } -var file_google_ads_googleads_v16_resources_customer_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_customer_label_proto_goTypes = []interface{}{ - (*CustomerLabel)(nil), // 0: google.ads.googleads.v16.resources.CustomerLabel +var file_google_ads_googleads_v17_resources_customer_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_customer_label_proto_goTypes = []interface{}{ + (*CustomerLabel)(nil), // 0: google.ads.googleads.v17.resources.CustomerLabel } -var file_google_ads_googleads_v16_resources_customer_label_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_customer_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 @@ -189,13 +189,13 @@ var file_google_ads_googleads_v16_resources_customer_label_proto_depIdxs = []int 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_customer_label_proto_init() } -func file_google_ads_googleads_v16_resources_customer_label_proto_init() { - if File_google_ads_googleads_v16_resources_customer_label_proto != nil { +func init() { file_google_ads_googleads_v17_resources_customer_label_proto_init() } +func file_google_ads_googleads_v17_resources_customer_label_proto_init() { + if File_google_ads_googleads_v17_resources_customer_label_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_customer_label_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_label_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerLabel); i { case 0: return &v.state @@ -208,23 +208,23 @@ func file_google_ads_googleads_v16_resources_customer_label_proto_init() { } } } - file_google_ads_googleads_v16_resources_customer_label_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_customer_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_resources_customer_label_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_customer_label_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_customer_label_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_customer_label_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_customer_label_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_customer_label_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_customer_label_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_customer_label_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_customer_label_proto = out.File - file_google_ads_googleads_v16_resources_customer_label_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_customer_label_proto_goTypes = nil - file_google_ads_googleads_v16_resources_customer_label_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_customer_label_proto = out.File + file_google_ads_googleads_v17_resources_customer_label_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_customer_label_proto_goTypes = nil + file_google_ads_googleads_v17_resources_customer_label_proto_depIdxs = nil } diff --git a/resources/customer_lifecycle_goal.pb.go b/resources/customer_lifecycle_goal.pb.go index 46fdb816..5856f685 100644 --- a/resources/customer_lifecycle_goal.pb.go +++ b/resources/customer_lifecycle_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/resources/customer_lifecycle_goal.proto +// source: google/ads/googleads/v17/resources/customer_lifecycle_goal.proto package resources @@ -47,9 +47,6 @@ type CustomerLifecycleGoal struct { // // `customers/{customer_id}/customerLifecycleGoal` ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` - // Output only. Common lifecycle goal settings shared among different types of - // lifecycle goals. - LifecycleGoalCustomerDefinitionSettings *CustomerLifecycleGoal_LifecycleGoalCustomerDefinitionSettings `protobuf:"bytes,2,opt,name=lifecycle_goal_customer_definition_settings,json=lifecycleGoalCustomerDefinitionSettings,proto3" json:"lifecycle_goal_customer_definition_settings,omitempty"` // Output only. Customer acquisition goal customer level value settings. CustomerAcquisitionGoalValueSettings *common.LifecycleGoalValueSettings `protobuf:"bytes,3,opt,name=customer_acquisition_goal_value_settings,json=customerAcquisitionGoalValueSettings,proto3" json:"customer_acquisition_goal_value_settings,omitempty"` } @@ -57,7 +54,7 @@ type CustomerLifecycleGoal struct { func (x *CustomerLifecycleGoal) Reset() { *x = CustomerLifecycleGoal{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_lifecycle_goal_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -70,7 +67,7 @@ func (x *CustomerLifecycleGoal) String() string { func (*CustomerLifecycleGoal) ProtoMessage() {} func (x *CustomerLifecycleGoal) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_lifecycle_goal_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -83,7 +80,7 @@ func (x *CustomerLifecycleGoal) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerLifecycleGoal.ProtoReflect.Descriptor instead. func (*CustomerLifecycleGoal) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_customer_lifecycle_goal_proto_rawDescGZIP(), []int{0} } func (x *CustomerLifecycleGoal) GetResourceName() string { @@ -93,13 +90,6 @@ func (x *CustomerLifecycleGoal) GetResourceName() string { return "" } -func (x *CustomerLifecycleGoal) GetLifecycleGoalCustomerDefinitionSettings() *CustomerLifecycleGoal_LifecycleGoalCustomerDefinitionSettings { - if x != nil { - return x.LifecycleGoalCustomerDefinitionSettings - } - return nil -} - func (x *CustomerLifecycleGoal) GetCustomerAcquisitionGoalValueSettings() *common.LifecycleGoalValueSettings { if x != nil { return x.CustomerAcquisitionGoalValueSettings @@ -107,85 +97,23 @@ func (x *CustomerLifecycleGoal) GetCustomerAcquisitionGoalValueSettings() *commo return nil } -// Lifecycle goal common settings, including existing user lists and existing -// high lifetime value user lists, shared among different types of lifecycle -// goals. -type CustomerLifecycleGoal_LifecycleGoalCustomerDefinitionSettings struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - // Output only. User lists which represent existing customers. - ExistingUserLists []string `protobuf:"bytes,1,rep,name=existing_user_lists,json=existingUserLists,proto3" json:"existing_user_lists,omitempty"` - // Output only. User lists which represent customers of high lifetime value. - // In current stage, high lifetime value feature is in beta and this field - // is read-only. - HighLifetimeValueUserLists []string `protobuf:"bytes,2,rep,name=high_lifetime_value_user_lists,json=highLifetimeValueUserLists,proto3" json:"high_lifetime_value_user_lists,omitempty"` -} - -func (x *CustomerLifecycleGoal_LifecycleGoalCustomerDefinitionSettings) Reset() { - *x = CustomerLifecycleGoal_LifecycleGoalCustomerDefinitionSettings{} - if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto_msgTypes[1] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *CustomerLifecycleGoal_LifecycleGoalCustomerDefinitionSettings) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*CustomerLifecycleGoal_LifecycleGoalCustomerDefinitionSettings) ProtoMessage() {} - -func (x *CustomerLifecycleGoal_LifecycleGoalCustomerDefinitionSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto_msgTypes[1] - 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 CustomerLifecycleGoal_LifecycleGoalCustomerDefinitionSettings.ProtoReflect.Descriptor instead. -func (*CustomerLifecycleGoal_LifecycleGoalCustomerDefinitionSettings) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto_rawDescGZIP(), []int{0, 0} -} - -func (x *CustomerLifecycleGoal_LifecycleGoalCustomerDefinitionSettings) GetExistingUserLists() []string { - if x != nil { - return x.ExistingUserLists - } - return nil -} - -func (x *CustomerLifecycleGoal_LifecycleGoalCustomerDefinitionSettings) GetHighLifetimeValueUserLists() []string { - if x != nil { - return x.HighLifetimeValueUserLists - } - return nil -} - -var File_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_customer_lifecycle_goal_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_customer_lifecycle_goal_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, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x5f, 0x67, 0x6f, 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, 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, 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, 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, 0xb1, 0x06, 0x0a, 0x15, 0x43, 0x75, + 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xf4, 0x02, 0x0a, 0x15, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x12, 0x5b, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x36, 0xe0, 0x41, 0x05, 0xfa, @@ -193,105 +121,75 @@ var file_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto_rawDes 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, - 0x12, 0xc4, 0x01, 0x0a, 0x2b, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x5f, 0x67, - 0x6f, 0x61, 0x6c, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x64, 0x65, 0x66, - 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, - 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x61, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, + 0x12, 0x98, 0x01, 0x0a, 0x28, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x61, 0x63, + 0x71, 0x75, 0x69, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x76, + 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 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, 0x37, 0x2e, 0x63, + 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 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, + 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x24, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, + 0x63, 0x71, 0x75, 0x69, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x56, 0x61, + 0x6c, 0x75, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x3a, 0x63, 0xea, 0x41, 0x60, + 0x0a, 0x2e, 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, 0x43, 0x75, 0x73, 0x74, 0x6f, + 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, + 0x12, 0x2e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x73, + 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, 0x2e, 0x43, 0x75, 0x73, 0x74, - 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, - 0x6c, 0x2e, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x43, - 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x44, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, - 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x27, - 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x43, 0x75, 0x73, - 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x44, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x53, - 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x98, 0x01, 0x0a, 0x28, 0x63, 0x75, 0x73, 0x74, - 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x71, 0x75, 0x69, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, - 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x74, - 0x69, 0x6e, 0x67, 0x73, 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, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x24, 0x63, 0x75, - 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x63, 0x71, 0x75, 0x69, 0x73, 0x69, 0x74, 0x69, 0x6f, - 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, - 0x67, 0x73, 0x1a, 0xf3, 0x01, 0x0a, 0x27, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, - 0x47, 0x6f, 0x61, 0x6c, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x44, 0x65, 0x66, 0x69, - 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x59, - 0x0a, 0x13, 0x65, 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, - 0x6c, 0x69, 0x73, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x42, 0x29, 0xe0, 0x41, 0x03, - 0xfa, 0x41, 0x23, 0x0a, 0x21, 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, 0x55, 0x73, - 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x11, 0x65, 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, - 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x73, 0x12, 0x6d, 0x0a, 0x1e, 0x68, 0x69, 0x67, - 0x68, 0x5f, 0x6c, 0x69, 0x66, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, - 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, - 0x09, 0x42, 0x29, 0xe0, 0x41, 0x03, 0xfa, 0x41, 0x23, 0x0a, 0x21, 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, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x1a, 0x68, 0x69, - 0x67, 0x68, 0x4c, 0x69, 0x66, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x55, - 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x73, 0x3a, 0x63, 0xea, 0x41, 0x60, 0x0a, 0x2e, 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, - 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x12, 0x2e, 0x63, - 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, - 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, - 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x73, 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, 0x1a, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, - 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 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, 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, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x1a, 0x43, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, + 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, 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_customer_lifecycle_goal_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto_rawDescData = file_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto_rawDesc + file_google_ads_googleads_v17_resources_customer_lifecycle_goal_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_customer_lifecycle_goal_proto_rawDescData = file_google_ads_googleads_v17_resources_customer_lifecycle_goal_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto_rawDescData) +func file_google_ads_googleads_v17_resources_customer_lifecycle_goal_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_customer_lifecycle_goal_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_customer_lifecycle_goal_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_customer_lifecycle_goal_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto_rawDescData + return file_google_ads_googleads_v17_resources_customer_lifecycle_goal_proto_rawDescData } -var file_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto_goTypes = []interface{}{ - (*CustomerLifecycleGoal)(nil), // 0: google.ads.googleads.v16.resources.CustomerLifecycleGoal - (*CustomerLifecycleGoal_LifecycleGoalCustomerDefinitionSettings)(nil), // 1: google.ads.googleads.v16.resources.CustomerLifecycleGoal.LifecycleGoalCustomerDefinitionSettings - (*common.LifecycleGoalValueSettings)(nil), // 2: google.ads.googleads.v16.common.LifecycleGoalValueSettings +var file_google_ads_googleads_v17_resources_customer_lifecycle_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_customer_lifecycle_goal_proto_goTypes = []interface{}{ + (*CustomerLifecycleGoal)(nil), // 0: google.ads.googleads.v17.resources.CustomerLifecycleGoal + (*common.LifecycleGoalValueSettings)(nil), // 1: google.ads.googleads.v17.common.LifecycleGoalValueSettings } -var file_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CustomerLifecycleGoal.lifecycle_goal_customer_definition_settings:type_name -> google.ads.googleads.v16.resources.CustomerLifecycleGoal.LifecycleGoalCustomerDefinitionSettings - 2, // 1: google.ads.googleads.v16.resources.CustomerLifecycleGoal.customer_acquisition_goal_value_settings:type_name -> google.ads.googleads.v16.common.LifecycleGoalValueSettings - 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 - 2, // [2:2] is the sub-list for extension extendee - 0, // [0:2] is the sub-list for field type_name +var file_google_ads_googleads_v17_resources_customer_lifecycle_goal_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CustomerLifecycleGoal.customer_acquisition_goal_value_settings:type_name -> google.ads.googleads.v17.common.LifecycleGoalValueSettings + 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 + 1, // [1:1] is the sub-list for extension extendee + 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto_init() } -func file_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto_init() { - if File_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto != nil { +func init() { file_google_ads_googleads_v17_resources_customer_lifecycle_goal_proto_init() } +func file_google_ads_googleads_v17_resources_customer_lifecycle_goal_proto_init() { + if File_google_ads_googleads_v17_resources_customer_lifecycle_goal_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_lifecycle_goal_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerLifecycleGoal); i { case 0: return &v.state @@ -303,35 +201,23 @@ func file_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto_init( return nil } } - file_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CustomerLifecycleGoal_LifecycleGoalCustomerDefinitionSettings); 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_v16_resources_customer_lifecycle_goal_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_customer_lifecycle_goal_proto_rawDesc, NumEnums: 0, - NumMessages: 2, + NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_customer_lifecycle_goal_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_customer_lifecycle_goal_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_customer_lifecycle_goal_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto = out.File - file_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto_goTypes = nil - file_google_ads_googleads_v16_resources_customer_lifecycle_goal_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_customer_lifecycle_goal_proto = out.File + file_google_ads_googleads_v17_resources_customer_lifecycle_goal_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_customer_lifecycle_goal_proto_goTypes = nil + file_google_ads_googleads_v17_resources_customer_lifecycle_goal_proto_depIdxs = nil } diff --git a/resources/customer_manager_link.pb.go b/resources/customer_manager_link.pb.go index 90aa8d48..37b044aa 100644 --- a/resources/customer_manager_link.pb.go +++ b/resources/customer_manager_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/customer_manager_link.proto +// source: google/ads/googleads/v17/resources/customer_manager_link.proto package resources @@ -51,13 +51,13 @@ type CustomerManagerLink struct { // Output only. ID of the customer-manager link. This field is read only. ManagerLinkId *int64 `protobuf:"varint,7,opt,name=manager_link_id,json=managerLinkId,proto3,oneof" json:"manager_link_id,omitempty"` // Status of the link between the customer and the manager. - Status enums.ManagerLinkStatusEnum_ManagerLinkStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.ManagerLinkStatusEnum_ManagerLinkStatus" json:"status,omitempty"` + Status enums.ManagerLinkStatusEnum_ManagerLinkStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.ManagerLinkStatusEnum_ManagerLinkStatus" json:"status,omitempty"` } func (x *CustomerManagerLink) Reset() { *x = CustomerManagerLink{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_manager_link_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_manager_link_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -70,7 +70,7 @@ func (x *CustomerManagerLink) String() string { func (*CustomerManagerLink) ProtoMessage() {} func (x *CustomerManagerLink) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_manager_link_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_manager_link_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 *CustomerManagerLink) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerManagerLink.ProtoReflect.Descriptor instead. func (*CustomerManagerLink) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_manager_link_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_customer_manager_link_proto_rawDescGZIP(), []int{0} } func (x *CustomerManagerLink) GetResourceName() string { @@ -114,17 +114,17 @@ func (x *CustomerManagerLink) GetStatus() enums.ManagerLinkStatusEnum_ManagerLin return enums.ManagerLinkStatusEnum_ManagerLinkStatus(0) } -var File_google_ads_googleads_v16_resources_customer_manager_link_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_customer_manager_link_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_customer_manager_link_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_customer_manager_link_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, 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, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 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, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 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, + 0x2f, 0x67, 0x6f, 0x6f, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, @@ -149,7 +149,7 @@ var file_google_ads_googleads_v16_resources_customer_manager_link_proto_rawDesc 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x5f, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 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, 0x4d, 0x61, 0x6e, 0x61, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x3a, 0x88, 0x01, 0xea, 0x41, @@ -165,44 +165,44 @@ var file_google_ads_googleads_v16_resources_customer_manager_link_proto_rawDesc 0x65, 0x72, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x69, 0x64, 0x42, 0x8a, 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, + 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, 0x18, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 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, + 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, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, + 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, + 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, 0x70, 0x72, + 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_customer_manager_link_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_customer_manager_link_proto_rawDescData = file_google_ads_googleads_v16_resources_customer_manager_link_proto_rawDesc + file_google_ads_googleads_v17_resources_customer_manager_link_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_customer_manager_link_proto_rawDescData = file_google_ads_googleads_v17_resources_customer_manager_link_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_customer_manager_link_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_customer_manager_link_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_customer_manager_link_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_customer_manager_link_proto_rawDescData) +func file_google_ads_googleads_v17_resources_customer_manager_link_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_customer_manager_link_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_customer_manager_link_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_customer_manager_link_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_customer_manager_link_proto_rawDescData + return file_google_ads_googleads_v17_resources_customer_manager_link_proto_rawDescData } -var file_google_ads_googleads_v16_resources_customer_manager_link_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_customer_manager_link_proto_goTypes = []interface{}{ - (*CustomerManagerLink)(nil), // 0: google.ads.googleads.v16.resources.CustomerManagerLink - (enums.ManagerLinkStatusEnum_ManagerLinkStatus)(0), // 1: google.ads.googleads.v16.enums.ManagerLinkStatusEnum.ManagerLinkStatus +var file_google_ads_googleads_v17_resources_customer_manager_link_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_customer_manager_link_proto_goTypes = []interface{}{ + (*CustomerManagerLink)(nil), // 0: google.ads.googleads.v17.resources.CustomerManagerLink + (enums.ManagerLinkStatusEnum_ManagerLinkStatus)(0), // 1: google.ads.googleads.v17.enums.ManagerLinkStatusEnum.ManagerLinkStatus } -var file_google_ads_googleads_v16_resources_customer_manager_link_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CustomerManagerLink.status:type_name -> google.ads.googleads.v16.enums.ManagerLinkStatusEnum.ManagerLinkStatus +var file_google_ads_googleads_v17_resources_customer_manager_link_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CustomerManagerLink.status:type_name -> google.ads.googleads.v17.enums.ManagerLinkStatusEnum.ManagerLinkStatus 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 @@ -210,13 +210,13 @@ var file_google_ads_googleads_v16_resources_customer_manager_link_proto_depIdxs 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_customer_manager_link_proto_init() } -func file_google_ads_googleads_v16_resources_customer_manager_link_proto_init() { - if File_google_ads_googleads_v16_resources_customer_manager_link_proto != nil { +func init() { file_google_ads_googleads_v17_resources_customer_manager_link_proto_init() } +func file_google_ads_googleads_v17_resources_customer_manager_link_proto_init() { + if File_google_ads_googleads_v17_resources_customer_manager_link_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_customer_manager_link_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_manager_link_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerManagerLink); i { case 0: return &v.state @@ -229,23 +229,23 @@ func file_google_ads_googleads_v16_resources_customer_manager_link_proto_init() } } } - file_google_ads_googleads_v16_resources_customer_manager_link_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_customer_manager_link_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_customer_manager_link_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_customer_manager_link_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_customer_manager_link_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_customer_manager_link_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_customer_manager_link_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_customer_manager_link_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_customer_manager_link_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_customer_manager_link_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_customer_manager_link_proto = out.File - file_google_ads_googleads_v16_resources_customer_manager_link_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_customer_manager_link_proto_goTypes = nil - file_google_ads_googleads_v16_resources_customer_manager_link_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_customer_manager_link_proto = out.File + file_google_ads_googleads_v17_resources_customer_manager_link_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_customer_manager_link_proto_goTypes = nil + file_google_ads_googleads_v17_resources_customer_manager_link_proto_depIdxs = nil } diff --git a/resources/customer_negative_criterion.pb.go b/resources/customer_negative_criterion.pb.go index 3e3171ab..e8896315 100644 --- a/resources/customer_negative_criterion.pb.go +++ b/resources/customer_negative_criterion.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/customer_negative_criterion.proto +// source: google/ads/googleads/v17/resources/customer_negative_criterion.proto package resources @@ -51,7 +51,7 @@ type CustomerNegativeCriterion struct { // Output only. The ID of the criterion. Id *int64 `protobuf:"varint,10,opt,name=id,proto3,oneof" json:"id,omitempty"` // Output only. The type of the criterion. - Type enums.CriterionTypeEnum_CriterionType `protobuf:"varint,3,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.CriterionTypeEnum_CriterionType" json:"type,omitempty"` + Type enums.CriterionTypeEnum_CriterionType `protobuf:"varint,3,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.CriterionTypeEnum_CriterionType" json:"type,omitempty"` // The customer negative criterion. // // Exactly one must be set. @@ -72,7 +72,7 @@ type CustomerNegativeCriterion struct { func (x *CustomerNegativeCriterion) Reset() { *x = CustomerNegativeCriterion{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_negative_criterion_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -85,7 +85,7 @@ func (x *CustomerNegativeCriterion) String() string { func (*CustomerNegativeCriterion) ProtoMessage() {} func (x *CustomerNegativeCriterion) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_negative_criterion_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -98,7 +98,7 @@ func (x *CustomerNegativeCriterion) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerNegativeCriterion.ProtoReflect.Descriptor instead. func (*CustomerNegativeCriterion) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_customer_negative_criterion_proto_rawDescGZIP(), []int{0} } func (x *CustomerNegativeCriterion) GetResourceName() string { @@ -245,21 +245,21 @@ func (*CustomerNegativeCriterion_NegativeKeywordList) isCustomerNegativeCriterio func (*CustomerNegativeCriterion_IpBlock) isCustomerNegativeCriterion_Criterion() {} -var File_google_ads_googleads_v16_resources_customer_negative_criterion_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_customer_negative_criterion_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_customer_negative_criterion_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, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 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, 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, 0x6e, 0x2f, 0x63, 0x72, 0x69, 0x74, + 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, 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, 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, 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, @@ -276,58 +276,58 @@ var file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_ra 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x01, 0x52, 0x02, 0x69, 0x64, 0x88, 0x01, 0x01, 0x12, 0x58, 0x0a, 0x04, 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, + 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, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x5d, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 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, 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, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0c, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x6c, 0x0a, 0x12, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x2e, 0x4d, 0x6f, 0x62, 0x69, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x11, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x6d, 0x0a, 0x13, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x18, 0x06, 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, 0x4d, 0x6f, 0x62, 0x69, 0x6c, + 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x11, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x12, 0x53, 0x0a, 0x09, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x07, 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, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x09, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x5d, 0x0a, 0x0d, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x18, 0x08, 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, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, + 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0c, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x12, 0x63, 0x0a, 0x0f, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x18, 0x09, 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, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, + 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0e, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x12, 0x73, 0x0a, 0x15, 0x6e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x0b, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x13, 0x6e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x4e, 0x0a, 0x08, 0x69, 0x70, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x18, 0x0c, 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, 0x70, 0x42, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x70, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x07, 0x69, 0x70, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x3a, 0x78, 0xea, 0x41, 0x75, 0x0a, 0x32, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, @@ -340,60 +340,60 @@ var file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_ra 0x64, 0x7d, 0x42, 0x0b, 0x0a, 0x09, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x42, 0x05, 0x0a, 0x03, 0x5f, 0x69, 0x64, 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 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, 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, 0x6f, + 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, + 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_customer_negative_criterion_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_rawDescData = file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_rawDesc + file_google_ads_googleads_v17_resources_customer_negative_criterion_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_customer_negative_criterion_proto_rawDescData = file_google_ads_googleads_v17_resources_customer_negative_criterion_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_rawDescData) +func file_google_ads_googleads_v17_resources_customer_negative_criterion_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_customer_negative_criterion_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_customer_negative_criterion_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_customer_negative_criterion_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_rawDescData + return file_google_ads_googleads_v17_resources_customer_negative_criterion_proto_rawDescData } -var file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_goTypes = []interface{}{ - (*CustomerNegativeCriterion)(nil), // 0: google.ads.googleads.v16.resources.CustomerNegativeCriterion - (enums.CriterionTypeEnum_CriterionType)(0), // 1: google.ads.googleads.v16.enums.CriterionTypeEnum.CriterionType - (*common.ContentLabelInfo)(nil), // 2: google.ads.googleads.v16.common.ContentLabelInfo - (*common.MobileApplicationInfo)(nil), // 3: google.ads.googleads.v16.common.MobileApplicationInfo - (*common.MobileAppCategoryInfo)(nil), // 4: google.ads.googleads.v16.common.MobileAppCategoryInfo - (*common.PlacementInfo)(nil), // 5: google.ads.googleads.v16.common.PlacementInfo - (*common.YouTubeVideoInfo)(nil), // 6: google.ads.googleads.v16.common.YouTubeVideoInfo - (*common.YouTubeChannelInfo)(nil), // 7: google.ads.googleads.v16.common.YouTubeChannelInfo - (*common.NegativeKeywordListInfo)(nil), // 8: google.ads.googleads.v16.common.NegativeKeywordListInfo - (*common.IpBlockInfo)(nil), // 9: google.ads.googleads.v16.common.IpBlockInfo +var file_google_ads_googleads_v17_resources_customer_negative_criterion_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_customer_negative_criterion_proto_goTypes = []interface{}{ + (*CustomerNegativeCriterion)(nil), // 0: google.ads.googleads.v17.resources.CustomerNegativeCriterion + (enums.CriterionTypeEnum_CriterionType)(0), // 1: google.ads.googleads.v17.enums.CriterionTypeEnum.CriterionType + (*common.ContentLabelInfo)(nil), // 2: google.ads.googleads.v17.common.ContentLabelInfo + (*common.MobileApplicationInfo)(nil), // 3: google.ads.googleads.v17.common.MobileApplicationInfo + (*common.MobileAppCategoryInfo)(nil), // 4: google.ads.googleads.v17.common.MobileAppCategoryInfo + (*common.PlacementInfo)(nil), // 5: google.ads.googleads.v17.common.PlacementInfo + (*common.YouTubeVideoInfo)(nil), // 6: google.ads.googleads.v17.common.YouTubeVideoInfo + (*common.YouTubeChannelInfo)(nil), // 7: google.ads.googleads.v17.common.YouTubeChannelInfo + (*common.NegativeKeywordListInfo)(nil), // 8: google.ads.googleads.v17.common.NegativeKeywordListInfo + (*common.IpBlockInfo)(nil), // 9: google.ads.googleads.v17.common.IpBlockInfo } -var file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CustomerNegativeCriterion.type:type_name -> google.ads.googleads.v16.enums.CriterionTypeEnum.CriterionType - 2, // 1: google.ads.googleads.v16.resources.CustomerNegativeCriterion.content_label:type_name -> google.ads.googleads.v16.common.ContentLabelInfo - 3, // 2: google.ads.googleads.v16.resources.CustomerNegativeCriterion.mobile_application:type_name -> google.ads.googleads.v16.common.MobileApplicationInfo - 4, // 3: google.ads.googleads.v16.resources.CustomerNegativeCriterion.mobile_app_category:type_name -> google.ads.googleads.v16.common.MobileAppCategoryInfo - 5, // 4: google.ads.googleads.v16.resources.CustomerNegativeCriterion.placement:type_name -> google.ads.googleads.v16.common.PlacementInfo - 6, // 5: google.ads.googleads.v16.resources.CustomerNegativeCriterion.youtube_video:type_name -> google.ads.googleads.v16.common.YouTubeVideoInfo - 7, // 6: google.ads.googleads.v16.resources.CustomerNegativeCriterion.youtube_channel:type_name -> google.ads.googleads.v16.common.YouTubeChannelInfo - 8, // 7: google.ads.googleads.v16.resources.CustomerNegativeCriterion.negative_keyword_list:type_name -> google.ads.googleads.v16.common.NegativeKeywordListInfo - 9, // 8: google.ads.googleads.v16.resources.CustomerNegativeCriterion.ip_block:type_name -> google.ads.googleads.v16.common.IpBlockInfo +var file_google_ads_googleads_v17_resources_customer_negative_criterion_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CustomerNegativeCriterion.type:type_name -> google.ads.googleads.v17.enums.CriterionTypeEnum.CriterionType + 2, // 1: google.ads.googleads.v17.resources.CustomerNegativeCriterion.content_label:type_name -> google.ads.googleads.v17.common.ContentLabelInfo + 3, // 2: google.ads.googleads.v17.resources.CustomerNegativeCriterion.mobile_application:type_name -> google.ads.googleads.v17.common.MobileApplicationInfo + 4, // 3: google.ads.googleads.v17.resources.CustomerNegativeCriterion.mobile_app_category:type_name -> google.ads.googleads.v17.common.MobileAppCategoryInfo + 5, // 4: google.ads.googleads.v17.resources.CustomerNegativeCriterion.placement:type_name -> google.ads.googleads.v17.common.PlacementInfo + 6, // 5: google.ads.googleads.v17.resources.CustomerNegativeCriterion.youtube_video:type_name -> google.ads.googleads.v17.common.YouTubeVideoInfo + 7, // 6: google.ads.googleads.v17.resources.CustomerNegativeCriterion.youtube_channel:type_name -> google.ads.googleads.v17.common.YouTubeChannelInfo + 8, // 7: google.ads.googleads.v17.resources.CustomerNegativeCriterion.negative_keyword_list:type_name -> google.ads.googleads.v17.common.NegativeKeywordListInfo + 9, // 8: google.ads.googleads.v17.resources.CustomerNegativeCriterion.ip_block:type_name -> google.ads.googleads.v17.common.IpBlockInfo 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 @@ -401,13 +401,13 @@ var file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_de 0, // [0:9] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_init() } -func file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_init() { - if File_google_ads_googleads_v16_resources_customer_negative_criterion_proto != nil { +func init() { file_google_ads_googleads_v17_resources_customer_negative_criterion_proto_init() } +func file_google_ads_googleads_v17_resources_customer_negative_criterion_proto_init() { + if File_google_ads_googleads_v17_resources_customer_negative_criterion_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_negative_criterion_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerNegativeCriterion); i { case 0: return &v.state @@ -420,7 +420,7 @@ func file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_i } } } - file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_customer_negative_criterion_proto_msgTypes[0].OneofWrappers = []interface{}{ (*CustomerNegativeCriterion_ContentLabel)(nil), (*CustomerNegativeCriterion_MobileApplication)(nil), (*CustomerNegativeCriterion_MobileAppCategory)(nil), @@ -434,18 +434,18 @@ func file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_i out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_customer_negative_criterion_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_customer_negative_criterion_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_customer_negative_criterion_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_customer_negative_criterion_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_customer_negative_criterion_proto = out.File - file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_goTypes = nil - file_google_ads_googleads_v16_resources_customer_negative_criterion_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_customer_negative_criterion_proto = out.File + file_google_ads_googleads_v17_resources_customer_negative_criterion_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_customer_negative_criterion_proto_goTypes = nil + file_google_ads_googleads_v17_resources_customer_negative_criterion_proto_depIdxs = nil } diff --git a/resources/customer_search_term_insight.pb.go b/resources/customer_search_term_insight.pb.go index 4cb75570..16c4d7da 100644 --- a/resources/customer_search_term_insight.pb.go +++ b/resources/customer_search_term_insight.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/customer_search_term_insight.proto +// source: google/ads/googleads/v17/resources/customer_search_term_insight.proto package resources @@ -57,7 +57,7 @@ type CustomerSearchTermInsight struct { func (x *CustomerSearchTermInsight) Reset() { *x = CustomerSearchTermInsight{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_search_term_insight_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_search_term_insight_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -70,7 +70,7 @@ func (x *CustomerSearchTermInsight) String() string { func (*CustomerSearchTermInsight) ProtoMessage() {} func (x *CustomerSearchTermInsight) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_search_term_insight_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_search_term_insight_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 *CustomerSearchTermInsight) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerSearchTermInsight.ProtoReflect.Descriptor instead. func (*CustomerSearchTermInsight) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_search_term_insight_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_customer_search_term_insight_proto_rawDescGZIP(), []int{0} } func (x *CustomerSearchTermInsight) GetResourceName() string { @@ -107,16 +107,16 @@ func (x *CustomerSearchTermInsight) GetId() int64 { return 0 } -var File_google_ads_googleads_v16_resources_customer_search_term_insight_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_customer_search_term_insight_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_customer_search_term_insight_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_customer_search_term_insight_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, 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, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 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, 0x1f, 0x67, 0x6f, 0x6f, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -144,41 +144,41 @@ var file_google_ads_googleads_v16_resources_customer_search_term_insight_proto_r 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x42, 0x05, 0x0a, 0x03, 0x5f, 0x69, 0x64, 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, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x1e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 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, 0x65, 0x73, 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, + 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, 0x36, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 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, + 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_customer_search_term_insight_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_customer_search_term_insight_proto_rawDescData = file_google_ads_googleads_v16_resources_customer_search_term_insight_proto_rawDesc + file_google_ads_googleads_v17_resources_customer_search_term_insight_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_customer_search_term_insight_proto_rawDescData = file_google_ads_googleads_v17_resources_customer_search_term_insight_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_customer_search_term_insight_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_customer_search_term_insight_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_customer_search_term_insight_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_customer_search_term_insight_proto_rawDescData) +func file_google_ads_googleads_v17_resources_customer_search_term_insight_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_customer_search_term_insight_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_customer_search_term_insight_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_customer_search_term_insight_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_customer_search_term_insight_proto_rawDescData + return file_google_ads_googleads_v17_resources_customer_search_term_insight_proto_rawDescData } -var file_google_ads_googleads_v16_resources_customer_search_term_insight_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_customer_search_term_insight_proto_goTypes = []interface{}{ - (*CustomerSearchTermInsight)(nil), // 0: google.ads.googleads.v16.resources.CustomerSearchTermInsight +var file_google_ads_googleads_v17_resources_customer_search_term_insight_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_customer_search_term_insight_proto_goTypes = []interface{}{ + (*CustomerSearchTermInsight)(nil), // 0: google.ads.googleads.v17.resources.CustomerSearchTermInsight } -var file_google_ads_googleads_v16_resources_customer_search_term_insight_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_customer_search_term_insight_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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_resources_customer_search_term_insight_proto_d 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_customer_search_term_insight_proto_init() } -func file_google_ads_googleads_v16_resources_customer_search_term_insight_proto_init() { - if File_google_ads_googleads_v16_resources_customer_search_term_insight_proto != nil { +func init() { file_google_ads_googleads_v17_resources_customer_search_term_insight_proto_init() } +func file_google_ads_googleads_v17_resources_customer_search_term_insight_proto_init() { + if File_google_ads_googleads_v17_resources_customer_search_term_insight_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_customer_search_term_insight_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_search_term_insight_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerSearchTermInsight); i { case 0: return &v.state @@ -205,23 +205,23 @@ func file_google_ads_googleads_v16_resources_customer_search_term_insight_proto_ } } } - file_google_ads_googleads_v16_resources_customer_search_term_insight_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_customer_search_term_insight_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_customer_search_term_insight_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_customer_search_term_insight_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_customer_search_term_insight_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_customer_search_term_insight_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_customer_search_term_insight_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_customer_search_term_insight_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_customer_search_term_insight_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_customer_search_term_insight_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_customer_search_term_insight_proto = out.File - file_google_ads_googleads_v16_resources_customer_search_term_insight_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_customer_search_term_insight_proto_goTypes = nil - file_google_ads_googleads_v16_resources_customer_search_term_insight_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_customer_search_term_insight_proto = out.File + file_google_ads_googleads_v17_resources_customer_search_term_insight_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_customer_search_term_insight_proto_goTypes = nil + file_google_ads_googleads_v17_resources_customer_search_term_insight_proto_depIdxs = nil } diff --git a/resources/customer_sk_ad_network_conversion_value_schema.pb.go b/resources/customer_sk_ad_network_conversion_value_schema.pb.go index 7b8be0c4..44589298 100644 --- a/resources/customer_sk_ad_network_conversion_value_schema.pb.go +++ b/resources/customer_sk_ad_network_conversion_value_schema.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/customer_sk_ad_network_conversion_value_schema.proto +// source: google/ads/googleads/v17/resources/customer_sk_ad_network_conversion_value_schema.proto package resources @@ -53,7 +53,7 @@ type CustomerSkAdNetworkConversionValueSchema struct { func (x *CustomerSkAdNetworkConversionValueSchema) Reset() { *x = CustomerSkAdNetworkConversionValueSchema{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -66,7 +66,7 @@ func (x *CustomerSkAdNetworkConversionValueSchema) String() string { func (*CustomerSkAdNetworkConversionValueSchema) ProtoMessage() {} func (x *CustomerSkAdNetworkConversionValueSchema) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_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 *CustomerSkAdNetworkConversionValueSchema) ProtoReflect() protoreflect.M // Deprecated: Use CustomerSkAdNetworkConversionValueSchema.ProtoReflect.Descriptor instead. func (*CustomerSkAdNetworkConversionValueSchema) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0} } func (x *CustomerSkAdNetworkConversionValueSchema) GetResourceName() string { @@ -123,7 +123,7 @@ type CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema s func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema) Reset() { *x = CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -136,7 +136,7 @@ func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSche func (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema) ProtoMessage() {} func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -149,7 +149,7 @@ func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSche // Deprecated: Use CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema.ProtoReflect.Descriptor instead. func (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0} } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema) GetAppId() string { @@ -197,7 +197,7 @@ type CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_F func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_FineGrainedConversionValueMappings) Reset() { *x = CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_FineGrainedConversionValueMappings{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -211,7 +211,7 @@ func (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_FineGrainedConversionValueMappings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_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 *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSche // Deprecated: Use CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_FineGrainedConversionValueMappings.ProtoReflect.Descriptor instead. func (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_FineGrainedConversionValueMappings) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0, 0} + return file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0, 0} } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_FineGrainedConversionValueMappings) GetFineGrainedConversionValue() int32 { @@ -266,7 +266,7 @@ type CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_P func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_PostbackMapping) Reset() { *x = CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_PostbackMapping{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -280,7 +280,7 @@ func (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_PostbackMapping) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -293,7 +293,7 @@ func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSche // Deprecated: Use CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_PostbackMapping.ProtoReflect.Descriptor instead. func (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_PostbackMapping) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0, 1} + return file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0, 1} } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_PostbackMapping) GetPostbackSequenceIndex() int32 { @@ -345,7 +345,7 @@ type isCustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema type CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_PostbackMapping_LockWindowCoarseConversionValue struct { // Output only. Coarse grained conversion value that triggers conversion // window lock. - LockWindowCoarseConversionValue enums.SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue `protobuf:"varint,3,opt,name=lock_window_coarse_conversion_value,json=lockWindowCoarseConversionValue,proto3,enum=google.ads.googleads.v16.enums.SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue,oneof"` + LockWindowCoarseConversionValue enums.SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue `protobuf:"varint,3,opt,name=lock_window_coarse_conversion_value,json=lockWindowCoarseConversionValue,proto3,enum=google.ads.googleads.v17.enums.SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue,oneof"` } type CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_PostbackMapping_LockWindowFineConversionValue struct { @@ -385,7 +385,7 @@ type CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_C func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_CoarseGrainedConversionValueMappings) Reset() { *x = CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_CoarseGrainedConversionValueMappings{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -399,7 +399,7 @@ func (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_CoarseGrainedConversionValueMappings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -412,7 +412,7 @@ func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSche // Deprecated: Use CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_CoarseGrainedConversionValueMappings.ProtoReflect.Descriptor instead. func (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_CoarseGrainedConversionValueMappings) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0, 2} + return file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0, 2} } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_CoarseGrainedConversionValueMappings) GetLowConversionValueMapping() *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_ConversionValueMapping { @@ -457,7 +457,7 @@ type CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_C func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_ConversionValueMapping) Reset() { *x = CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_ConversionValueMapping{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -471,7 +471,7 @@ func (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_ConversionValueMapping) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -484,7 +484,7 @@ func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSche // Deprecated: Use CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_ConversionValueMapping.ProtoReflect.Descriptor instead. func (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_ConversionValueMapping) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0, 3} + return file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0, 3} } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_ConversionValueMapping) GetMinTimePostInstallHours() int64 { @@ -538,7 +538,7 @@ type CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_E func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event) Reset() { *x = CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -552,7 +552,7 @@ func (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[6] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -565,7 +565,7 @@ func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSche // Deprecated: Use CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event.ProtoReflect.Descriptor instead. func (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0, 4} + return file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0, 4} } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event) GetMappedEventName() string { @@ -683,7 +683,7 @@ type CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_E func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_RevenueRange) Reset() { *x = CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_RevenueRange{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -697,7 +697,7 @@ func (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_RevenueRange) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[7] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -710,7 +710,7 @@ func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSche // Deprecated: Use CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_RevenueRange.ProtoReflect.Descriptor instead. func (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_RevenueRange) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0, 4, 0} + return file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0, 4, 0} } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_RevenueRange) GetMinEventRevenue() float64 { @@ -744,7 +744,7 @@ type CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_E func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_EventOccurrenceRange) Reset() { *x = CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_EventOccurrenceRange{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[8] + mi := &file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -758,7 +758,7 @@ func (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_EventOccurrenceRange) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[8] + mi := &file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[8] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -771,7 +771,7 @@ func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSche // Deprecated: Use CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_EventOccurrenceRange.ProtoReflect.Descriptor instead. func (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_EventOccurrenceRange) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0, 4, 1} + return file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0, 4, 1} } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_EventOccurrenceRange) GetMinEventCount() int64 { @@ -788,19 +788,19 @@ func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSche return 0 } -var File_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDesc = []byte{ 0x0a, 0x57, 0x67, 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, 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, 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, 0x4a, 0x67, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x73, 0x6b, + 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, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, @@ -819,7 +819,7 @@ var file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_va 0x68, 0x65, 0x6d, 0x61, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x8a, 0x01, 0x0a, 0x06, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x6d, 0x2e, 0x67, 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, + 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, 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, @@ -838,7 +838,7 @@ var file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_va 0x6e, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x90, 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, + 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, 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, @@ -852,7 +852,7 @@ var file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_va 0xaf, 0x01, 0x0a, 0x11, 0x70, 0x6f, 0x73, 0x74, 0x62, 0x61, 0x63, 0x6b, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x7d, 0x2e, 0x67, 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, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x2e, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, @@ -870,7 +870,7 @@ var file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_va 0x12, 0xc4, 0x01, 0x0a, 0x18, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x84, 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, + 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, 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, @@ -889,7 +889,7 @@ var file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_va 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x92, 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, 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, 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, 0x2e, 0x53, 0x6b, 0x41, 0x64, 0x4e, @@ -904,7 +904,7 @@ var file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_va 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 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, + 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, @@ -927,7 +927,7 @@ var file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_va 0x1c, 0x6c, 0x6f, 0x77, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x84, 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, + 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, 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, @@ -940,7 +940,7 @@ var file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_va 0x65, 0x64, 0x69, 0x75, 0x6d, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x84, 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, + 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, 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, @@ -954,7 +954,7 @@ var file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_va 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x84, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x2e, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, @@ -976,7 +976,7 @@ var file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_va 0x9d, 0x01, 0x0a, 0x0d, 0x6d, 0x61, 0x70, 0x70, 0x65, 0x64, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x2e, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, @@ -992,7 +992,7 @@ var file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_va 0x43, 0x6f, 0x64, 0x65, 0x12, 0xb8, 0x01, 0x0a, 0x13, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x72, 0x65, 0x76, 0x65, 0x6e, 0x75, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 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, 0x72, + 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, 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, @@ -1008,7 +1008,7 @@ var file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_va 0x5f, 0x6f, 0x63, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x88, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x2e, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, @@ -1047,7 +1047,7 @@ var file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_va 0x6c, 0x75, 0x65, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x73, 0x2f, 0x7b, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x9f, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x2d, 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, @@ -1055,56 +1055,56 @@ var file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_va 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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_customer_sk_ad_network_conversion_value_schema_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescData = file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDesc + file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescData = file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescData) +func file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescData -} - -var file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes = make([]protoimpl.MessageInfo, 9) -var file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_goTypes = []interface{}{ - (*CustomerSkAdNetworkConversionValueSchema)(nil), // 0: google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema - (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema)(nil), // 1: google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema - (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_FineGrainedConversionValueMappings)(nil), // 2: google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.FineGrainedConversionValueMappings - (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_PostbackMapping)(nil), // 3: google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.PostbackMapping - (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_CoarseGrainedConversionValueMappings)(nil), // 4: google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.CoarseGrainedConversionValueMappings - (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_ConversionValueMapping)(nil), // 5: google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.ConversionValueMapping - (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event)(nil), // 6: google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event - (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_RevenueRange)(nil), // 7: google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event.RevenueRange - (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_EventOccurrenceRange)(nil), // 8: google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event.EventOccurrenceRange - (enums.SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue)(0), // 9: google.ads.googleads.v16.enums.SkAdNetworkCoarseConversionValueEnum.SkAdNetworkCoarseConversionValue -} -var file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.schema:type_name -> google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema - 2, // 1: google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.fine_grained_conversion_value_mappings:type_name -> google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.FineGrainedConversionValueMappings - 3, // 2: google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.postback_mappings:type_name -> google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.PostbackMapping - 5, // 3: google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.FineGrainedConversionValueMappings.conversion_value_mapping:type_name -> google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.ConversionValueMapping - 4, // 4: google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.PostbackMapping.coarse_grained_conversion_value_mappings:type_name -> google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.CoarseGrainedConversionValueMappings - 9, // 5: google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.PostbackMapping.lock_window_coarse_conversion_value:type_name -> google.ads.googleads.v16.enums.SkAdNetworkCoarseConversionValueEnum.SkAdNetworkCoarseConversionValue - 5, // 6: google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.CoarseGrainedConversionValueMappings.low_conversion_value_mapping:type_name -> google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.ConversionValueMapping - 5, // 7: google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.CoarseGrainedConversionValueMappings.medium_conversion_value_mapping:type_name -> google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.ConversionValueMapping - 5, // 8: google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.CoarseGrainedConversionValueMappings.high_conversion_value_mapping:type_name -> google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.ConversionValueMapping - 6, // 9: google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.ConversionValueMapping.mapped_events:type_name -> google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event - 7, // 10: google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event.event_revenue_range:type_name -> google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event.RevenueRange - 8, // 11: google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event.event_occurrence_range:type_name -> google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event.EventOccurrenceRange + return file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes = make([]protoimpl.MessageInfo, 9) +var file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_goTypes = []interface{}{ + (*CustomerSkAdNetworkConversionValueSchema)(nil), // 0: google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema + (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema)(nil), // 1: google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema + (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_FineGrainedConversionValueMappings)(nil), // 2: google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.FineGrainedConversionValueMappings + (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_PostbackMapping)(nil), // 3: google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.PostbackMapping + (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_CoarseGrainedConversionValueMappings)(nil), // 4: google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.CoarseGrainedConversionValueMappings + (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_ConversionValueMapping)(nil), // 5: google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.ConversionValueMapping + (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event)(nil), // 6: google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event + (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_RevenueRange)(nil), // 7: google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event.RevenueRange + (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_EventOccurrenceRange)(nil), // 8: google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event.EventOccurrenceRange + (enums.SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue)(0), // 9: google.ads.googleads.v17.enums.SkAdNetworkCoarseConversionValueEnum.SkAdNetworkCoarseConversionValue +} +var file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.schema:type_name -> google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema + 2, // 1: google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.fine_grained_conversion_value_mappings:type_name -> google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.FineGrainedConversionValueMappings + 3, // 2: google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.postback_mappings:type_name -> google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.PostbackMapping + 5, // 3: google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.FineGrainedConversionValueMappings.conversion_value_mapping:type_name -> google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.ConversionValueMapping + 4, // 4: google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.PostbackMapping.coarse_grained_conversion_value_mappings:type_name -> google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.CoarseGrainedConversionValueMappings + 9, // 5: google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.PostbackMapping.lock_window_coarse_conversion_value:type_name -> google.ads.googleads.v17.enums.SkAdNetworkCoarseConversionValueEnum.SkAdNetworkCoarseConversionValue + 5, // 6: google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.CoarseGrainedConversionValueMappings.low_conversion_value_mapping:type_name -> google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.ConversionValueMapping + 5, // 7: google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.CoarseGrainedConversionValueMappings.medium_conversion_value_mapping:type_name -> google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.ConversionValueMapping + 5, // 8: google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.CoarseGrainedConversionValueMappings.high_conversion_value_mapping:type_name -> google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.ConversionValueMapping + 6, // 9: google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.ConversionValueMapping.mapped_events:type_name -> google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event + 7, // 10: google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event.event_revenue_range:type_name -> google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event.RevenueRange + 8, // 11: google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event.event_occurrence_range:type_name -> google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event.EventOccurrenceRange 12, // [12:12] is the sub-list for method output_type 12, // [12:12] is the sub-list for method input_type 12, // [12:12] is the sub-list for extension type_name @@ -1113,14 +1113,14 @@ var file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_va } func init() { - file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_init() + file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_init() } -func file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_init() { - if File_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto != nil { +func file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_init() { + if File_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerSkAdNetworkConversionValueSchema); i { case 0: return &v.state @@ -1132,7 +1132,7 @@ func file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_v return nil } } - file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema); i { case 0: return &v.state @@ -1144,7 +1144,7 @@ func file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_v return nil } } - file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_FineGrainedConversionValueMappings); i { case 0: return &v.state @@ -1156,7 +1156,7 @@ func file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_v return nil } } - file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_PostbackMapping); i { case 0: return &v.state @@ -1168,7 +1168,7 @@ func file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_v return nil } } - file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_CoarseGrainedConversionValueMappings); i { case 0: return &v.state @@ -1180,7 +1180,7 @@ func file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_v return nil } } - file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_ConversionValueMapping); i { case 0: return &v.state @@ -1192,7 +1192,7 @@ func file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_v return nil } } - file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event); i { case 0: return &v.state @@ -1204,7 +1204,7 @@ func file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_v return nil } } - file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_RevenueRange); i { case 0: return &v.state @@ -1216,7 +1216,7 @@ func file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_v return nil } } - file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_EventOccurrenceRange); i { case 0: return &v.state @@ -1229,12 +1229,12 @@ func file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_v } } } - file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[3].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[3].OneofWrappers = []interface{}{ (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_PostbackMapping_LockWindowCoarseConversionValue)(nil), (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_PostbackMapping_LockWindowFineConversionValue)(nil), (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_PostbackMapping_LockWindowEvent)(nil), } - file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[6].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[6].OneofWrappers = []interface{}{ (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_EventRevenueRange)(nil), (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_EventRevenueValue)(nil), (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_EventOccurrenceRange_)(nil), @@ -1244,18 +1244,18 @@ func file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_v out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDesc, NumEnums: 0, NumMessages: 9, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto = out.File - file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_goTypes = nil - file_google_ads_googleads_v16_resources_customer_sk_ad_network_conversion_value_schema_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto = out.File + file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_goTypes = nil + file_google_ads_googleads_v17_resources_customer_sk_ad_network_conversion_value_schema_proto_depIdxs = nil } diff --git a/resources/customer_user_access.pb.go b/resources/customer_user_access.pb.go index 3ae6c764..ea0de7b8 100644 --- a/resources/customer_user_access.pb.go +++ b/resources/customer_user_access.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/customer_user_access.proto +// source: google/ads/googleads/v17/resources/customer_user_access.proto package resources @@ -53,7 +53,7 @@ type CustomerUserAccess struct { // Read only field EmailAddress *string `protobuf:"bytes,3,opt,name=email_address,json=emailAddress,proto3,oneof" json:"email_address,omitempty"` // Access role of the user. - AccessRole enums.AccessRoleEnum_AccessRole `protobuf:"varint,4,opt,name=access_role,json=accessRole,proto3,enum=google.ads.googleads.v16.enums.AccessRoleEnum_AccessRole" json:"access_role,omitempty"` + AccessRole enums.AccessRoleEnum_AccessRole `protobuf:"varint,4,opt,name=access_role,json=accessRole,proto3,enum=google.ads.googleads.v17.enums.AccessRoleEnum_AccessRole" json:"access_role,omitempty"` // Output only. The customer user access creation time. // Read only field // The format is "YYYY-MM-DD HH:MM:SS". @@ -67,7 +67,7 @@ type CustomerUserAccess struct { func (x *CustomerUserAccess) Reset() { *x = CustomerUserAccess{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_user_access_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_user_access_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80,7 +80,7 @@ func (x *CustomerUserAccess) String() string { func (*CustomerUserAccess) ProtoMessage() {} func (x *CustomerUserAccess) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_user_access_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_user_access_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93,7 +93,7 @@ func (x *CustomerUserAccess) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerUserAccess.ProtoReflect.Descriptor instead. func (*CustomerUserAccess) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_user_access_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_customer_user_access_proto_rawDescGZIP(), []int{0} } func (x *CustomerUserAccess) GetResourceName() string { @@ -138,17 +138,17 @@ func (x *CustomerUserAccess) GetInviterUserEmailAddress() string { return "" } -var File_google_ads_googleads_v16_resources_customer_user_access_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_customer_user_access_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_customer_user_access_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_customer_user_access_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, 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, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x72, 0x6f, 0x6c, 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, @@ -168,7 +168,7 @@ var file_google_ads_googleads_v16_resources_customer_user_access_proto_rawDesc = 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x88, 0x01, 0x01, 0x12, 0x5a, 0x0a, 0x0b, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x72, 0x6f, 0x6c, 0x65, 0x18, 0x04, 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, + 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, 0x65, 0x73, 0x73, 0x52, 0x6f, 0x6c, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x0a, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x52, 0x6f, 0x6c, 0x65, 0x12, 0x43, 0x0a, 0x19, 0x61, @@ -194,43 +194,43 @@ var file_google_ads_googleads_v16_resources_customer_user_access_proto_rawDesc = 0x65, 0x72, 0x5f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x42, 0x89, 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, 0x17, 0x43, 0x75, 0x73, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x17, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 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, + 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, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, + 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, + 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, 0x70, 0x72, + 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_customer_user_access_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_customer_user_access_proto_rawDescData = file_google_ads_googleads_v16_resources_customer_user_access_proto_rawDesc + file_google_ads_googleads_v17_resources_customer_user_access_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_customer_user_access_proto_rawDescData = file_google_ads_googleads_v17_resources_customer_user_access_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_customer_user_access_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_customer_user_access_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_customer_user_access_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_customer_user_access_proto_rawDescData) +func file_google_ads_googleads_v17_resources_customer_user_access_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_customer_user_access_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_customer_user_access_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_customer_user_access_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_customer_user_access_proto_rawDescData + return file_google_ads_googleads_v17_resources_customer_user_access_proto_rawDescData } -var file_google_ads_googleads_v16_resources_customer_user_access_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_customer_user_access_proto_goTypes = []interface{}{ - (*CustomerUserAccess)(nil), // 0: google.ads.googleads.v16.resources.CustomerUserAccess - (enums.AccessRoleEnum_AccessRole)(0), // 1: google.ads.googleads.v16.enums.AccessRoleEnum.AccessRole +var file_google_ads_googleads_v17_resources_customer_user_access_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_customer_user_access_proto_goTypes = []interface{}{ + (*CustomerUserAccess)(nil), // 0: google.ads.googleads.v17.resources.CustomerUserAccess + (enums.AccessRoleEnum_AccessRole)(0), // 1: google.ads.googleads.v17.enums.AccessRoleEnum.AccessRole } -var file_google_ads_googleads_v16_resources_customer_user_access_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CustomerUserAccess.access_role:type_name -> google.ads.googleads.v16.enums.AccessRoleEnum.AccessRole +var file_google_ads_googleads_v17_resources_customer_user_access_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CustomerUserAccess.access_role:type_name -> google.ads.googleads.v17.enums.AccessRoleEnum.AccessRole 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 @@ -238,13 +238,13 @@ var file_google_ads_googleads_v16_resources_customer_user_access_proto_depIdxs = 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_customer_user_access_proto_init() } -func file_google_ads_googleads_v16_resources_customer_user_access_proto_init() { - if File_google_ads_googleads_v16_resources_customer_user_access_proto != nil { +func init() { file_google_ads_googleads_v17_resources_customer_user_access_proto_init() } +func file_google_ads_googleads_v17_resources_customer_user_access_proto_init() { + if File_google_ads_googleads_v17_resources_customer_user_access_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_customer_user_access_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_user_access_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerUserAccess); i { case 0: return &v.state @@ -257,23 +257,23 @@ func file_google_ads_googleads_v16_resources_customer_user_access_proto_init() { } } } - file_google_ads_googleads_v16_resources_customer_user_access_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_customer_user_access_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_customer_user_access_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_customer_user_access_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_customer_user_access_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_customer_user_access_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_customer_user_access_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_customer_user_access_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_customer_user_access_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_customer_user_access_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_customer_user_access_proto = out.File - file_google_ads_googleads_v16_resources_customer_user_access_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_customer_user_access_proto_goTypes = nil - file_google_ads_googleads_v16_resources_customer_user_access_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_customer_user_access_proto = out.File + file_google_ads_googleads_v17_resources_customer_user_access_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_customer_user_access_proto_goTypes = nil + file_google_ads_googleads_v17_resources_customer_user_access_proto_depIdxs = nil } diff --git a/resources/customer_user_access_invitation.pb.go b/resources/customer_user_access_invitation.pb.go index bb78f233..3aa03916 100644 --- a/resources/customer_user_access_invitation.pb.go +++ b/resources/customer_user_access_invitation.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/customer_user_access_invitation.proto +// source: google/ads/googleads/v17/resources/customer_user_access_invitation.proto package resources @@ -50,7 +50,7 @@ type CustomerUserAccessInvitation struct { // This field is read-only. InvitationId int64 `protobuf:"varint,2,opt,name=invitation_id,json=invitationId,proto3" json:"invitation_id,omitempty"` // Immutable. Access role of the user. - AccessRole enums.AccessRoleEnum_AccessRole `protobuf:"varint,3,opt,name=access_role,json=accessRole,proto3,enum=google.ads.googleads.v16.enums.AccessRoleEnum_AccessRole" json:"access_role,omitempty"` + AccessRole enums.AccessRoleEnum_AccessRole `protobuf:"varint,3,opt,name=access_role,json=accessRole,proto3,enum=google.ads.googleads.v17.enums.AccessRoleEnum_AccessRole" json:"access_role,omitempty"` // Immutable. Email address the invitation was sent to. // This can differ from the email address of the account // that accepts the invite. @@ -61,13 +61,13 @@ type CustomerUserAccessInvitation struct { // Examples: "2018-03-05 09:15:00" or "2018-02-01 14:34:30" CreationDateTime string `protobuf:"bytes,5,opt,name=creation_date_time,json=creationDateTime,proto3" json:"creation_date_time,omitempty"` // Output only. Invitation status of the user. - InvitationStatus enums.AccessInvitationStatusEnum_AccessInvitationStatus `protobuf:"varint,6,opt,name=invitation_status,json=invitationStatus,proto3,enum=google.ads.googleads.v16.enums.AccessInvitationStatusEnum_AccessInvitationStatus" json:"invitation_status,omitempty"` + InvitationStatus enums.AccessInvitationStatusEnum_AccessInvitationStatus `protobuf:"varint,6,opt,name=invitation_status,json=invitationStatus,proto3,enum=google.ads.googleads.v17.enums.AccessInvitationStatusEnum_AccessInvitationStatus" json:"invitation_status,omitempty"` } func (x *CustomerUserAccessInvitation) Reset() { *x = CustomerUserAccessInvitation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customer_user_access_invitation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_user_access_invitation_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80,7 +80,7 @@ func (x *CustomerUserAccessInvitation) String() string { func (*CustomerUserAccessInvitation) ProtoMessage() {} func (x *CustomerUserAccessInvitation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customer_user_access_invitation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customer_user_access_invitation_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93,7 +93,7 @@ func (x *CustomerUserAccessInvitation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerUserAccessInvitation.ProtoReflect.Descriptor instead. func (*CustomerUserAccessInvitation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customer_user_access_invitation_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_customer_user_access_invitation_proto_rawDescGZIP(), []int{0} } func (x *CustomerUserAccessInvitation) GetResourceName() string { @@ -138,22 +138,22 @@ func (x *CustomerUserAccessInvitation) GetInvitationStatus() enums.AccessInvitat return enums.AccessInvitationStatusEnum_AccessInvitationStatus(0) } -var File_google_ads_googleads_v16_resources_customer_user_access_invitation_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_customer_user_access_invitation_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_customer_user_access_invitation_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_customer_user_access_invitation_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, 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, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x3d, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, + 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, 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, 0x63, + 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, 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, @@ -172,7 +172,7 @@ var file_google_ads_googleads_v16_resources_customer_user_access_invitation_prot 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x5f, 0x0a, 0x0b, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x72, 0x6f, 0x6c, 0x65, 0x18, 0x03, 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, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x52, 0x6f, 0x6c, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x52, 0x6f, 0x6c, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x52, 0x0a, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x52, 0x6f, 0x6c, 0x65, 0x12, 0x28, 0x0a, 0x0d, 0x65, @@ -184,7 +184,7 @@ var file_google_ads_googleads_v16_resources_customer_user_access_invitation_prot 0x44, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x83, 0x01, 0x0a, 0x11, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x06, 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, + 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, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, @@ -200,45 +200,45 @@ var file_google_ads_googleads_v16_resources_customer_user_access_invitation_prot 0x6e, 0x73, 0x2f, 0x7b, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x93, 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, 0x21, 0x43, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x21, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, + 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, + 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, 0x36, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 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, + 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_customer_user_access_invitation_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_customer_user_access_invitation_proto_rawDescData = file_google_ads_googleads_v16_resources_customer_user_access_invitation_proto_rawDesc + file_google_ads_googleads_v17_resources_customer_user_access_invitation_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_customer_user_access_invitation_proto_rawDescData = file_google_ads_googleads_v17_resources_customer_user_access_invitation_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_customer_user_access_invitation_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_customer_user_access_invitation_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_customer_user_access_invitation_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_customer_user_access_invitation_proto_rawDescData) +func file_google_ads_googleads_v17_resources_customer_user_access_invitation_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_customer_user_access_invitation_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_customer_user_access_invitation_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_customer_user_access_invitation_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_customer_user_access_invitation_proto_rawDescData + return file_google_ads_googleads_v17_resources_customer_user_access_invitation_proto_rawDescData } -var file_google_ads_googleads_v16_resources_customer_user_access_invitation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_customer_user_access_invitation_proto_goTypes = []interface{}{ - (*CustomerUserAccessInvitation)(nil), // 0: google.ads.googleads.v16.resources.CustomerUserAccessInvitation - (enums.AccessRoleEnum_AccessRole)(0), // 1: google.ads.googleads.v16.enums.AccessRoleEnum.AccessRole - (enums.AccessInvitationStatusEnum_AccessInvitationStatus)(0), // 2: google.ads.googleads.v16.enums.AccessInvitationStatusEnum.AccessInvitationStatus +var file_google_ads_googleads_v17_resources_customer_user_access_invitation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_customer_user_access_invitation_proto_goTypes = []interface{}{ + (*CustomerUserAccessInvitation)(nil), // 0: google.ads.googleads.v17.resources.CustomerUserAccessInvitation + (enums.AccessRoleEnum_AccessRole)(0), // 1: google.ads.googleads.v17.enums.AccessRoleEnum.AccessRole + (enums.AccessInvitationStatusEnum_AccessInvitationStatus)(0), // 2: google.ads.googleads.v17.enums.AccessInvitationStatusEnum.AccessInvitationStatus } -var file_google_ads_googleads_v16_resources_customer_user_access_invitation_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CustomerUserAccessInvitation.access_role:type_name -> google.ads.googleads.v16.enums.AccessRoleEnum.AccessRole - 2, // 1: google.ads.googleads.v16.resources.CustomerUserAccessInvitation.invitation_status:type_name -> google.ads.googleads.v16.enums.AccessInvitationStatusEnum.AccessInvitationStatus +var file_google_ads_googleads_v17_resources_customer_user_access_invitation_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CustomerUserAccessInvitation.access_role:type_name -> google.ads.googleads.v17.enums.AccessRoleEnum.AccessRole + 2, // 1: google.ads.googleads.v17.resources.CustomerUserAccessInvitation.invitation_status:type_name -> google.ads.googleads.v17.enums.AccessInvitationStatusEnum.AccessInvitationStatus 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 @@ -246,13 +246,13 @@ var file_google_ads_googleads_v16_resources_customer_user_access_invitation_prot 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_customer_user_access_invitation_proto_init() } -func file_google_ads_googleads_v16_resources_customer_user_access_invitation_proto_init() { - if File_google_ads_googleads_v16_resources_customer_user_access_invitation_proto != nil { +func init() { file_google_ads_googleads_v17_resources_customer_user_access_invitation_proto_init() } +func file_google_ads_googleads_v17_resources_customer_user_access_invitation_proto_init() { + if File_google_ads_googleads_v17_resources_customer_user_access_invitation_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_customer_user_access_invitation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customer_user_access_invitation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerUserAccessInvitation); i { case 0: return &v.state @@ -269,18 +269,18 @@ func file_google_ads_googleads_v16_resources_customer_user_access_invitation_pro out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_customer_user_access_invitation_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_customer_user_access_invitation_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_customer_user_access_invitation_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_customer_user_access_invitation_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_customer_user_access_invitation_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_customer_user_access_invitation_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_customer_user_access_invitation_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_customer_user_access_invitation_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_customer_user_access_invitation_proto = out.File - file_google_ads_googleads_v16_resources_customer_user_access_invitation_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_customer_user_access_invitation_proto_goTypes = nil - file_google_ads_googleads_v16_resources_customer_user_access_invitation_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_customer_user_access_invitation_proto = out.File + file_google_ads_googleads_v17_resources_customer_user_access_invitation_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_customer_user_access_invitation_proto_goTypes = nil + file_google_ads_googleads_v17_resources_customer_user_access_invitation_proto_depIdxs = nil } diff --git a/resources/customizer_attribute.pb.go b/resources/customizer_attribute.pb.go index b9ea9e66..4daf2473 100644 --- a/resources/customizer_attribute.pb.go +++ b/resources/customizer_attribute.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/customizer_attribute.proto +// source: google/ads/googleads/v17/resources/customizer_attribute.proto package resources @@ -58,15 +58,15 @@ type CustomizerAttribute struct { // customizer attribute must be unique (case insensitive). Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"` // Immutable. The type of the customizer attribute. - Type enums.CustomizerAttributeTypeEnum_CustomizerAttributeType `protobuf:"varint,4,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.CustomizerAttributeTypeEnum_CustomizerAttributeType" json:"type,omitempty"` + Type enums.CustomizerAttributeTypeEnum_CustomizerAttributeType `protobuf:"varint,4,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.CustomizerAttributeTypeEnum_CustomizerAttributeType" json:"type,omitempty"` // Output only. The status of the customizer attribute. - Status enums.CustomizerAttributeStatusEnum_CustomizerAttributeStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.CustomizerAttributeStatusEnum_CustomizerAttributeStatus" json:"status,omitempty"` + Status enums.CustomizerAttributeStatusEnum_CustomizerAttributeStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.CustomizerAttributeStatusEnum_CustomizerAttributeStatus" json:"status,omitempty"` } func (x *CustomizerAttribute) Reset() { *x = CustomizerAttribute{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_customizer_attribute_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customizer_attribute_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *CustomizerAttribute) String() string { func (*CustomizerAttribute) ProtoMessage() {} func (x *CustomizerAttribute) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_customizer_attribute_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_customizer_attribute_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *CustomizerAttribute) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomizerAttribute.ProtoReflect.Descriptor instead. func (*CustomizerAttribute) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_customizer_attribute_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_customizer_attribute_proto_rawDescGZIP(), []int{0} } func (x *CustomizerAttribute) GetResourceName() string { @@ -130,21 +130,21 @@ func (x *CustomizerAttribute) GetStatus() enums.CustomizerAttributeStatusEnum_Cu return enums.CustomizerAttributeStatusEnum_CustomizerAttributeStatus(0) } -var File_google_ads_googleads_v16_resources_customizer_attribute_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_customizer_attribute_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_customizer_attribute_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_customizer_attribute_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, 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, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 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, 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, + 0x73, 0x2f, 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, 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, @@ -163,14 +163,14 @@ var file_google_ads_googleads_v16_resources_customizer_attribute_proto_rawDesc = 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe0, 0x41, 0x02, 0xe0, 0x41, 0x05, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x6c, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 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, + 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, 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, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x74, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 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, + 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, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, @@ -185,45 +185,45 @@ var file_google_ads_googleads_v16_resources_customizer_attribute_proto_rawDesc = 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x8a, 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, 0x18, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 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, + 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, + 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, + 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, 0x63, 0x65, + 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_customizer_attribute_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_customizer_attribute_proto_rawDescData = file_google_ads_googleads_v16_resources_customizer_attribute_proto_rawDesc + file_google_ads_googleads_v17_resources_customizer_attribute_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_customizer_attribute_proto_rawDescData = file_google_ads_googleads_v17_resources_customizer_attribute_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_customizer_attribute_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_customizer_attribute_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_customizer_attribute_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_customizer_attribute_proto_rawDescData) +func file_google_ads_googleads_v17_resources_customizer_attribute_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_customizer_attribute_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_customizer_attribute_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_customizer_attribute_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_customizer_attribute_proto_rawDescData + return file_google_ads_googleads_v17_resources_customizer_attribute_proto_rawDescData } -var file_google_ads_googleads_v16_resources_customizer_attribute_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_customizer_attribute_proto_goTypes = []interface{}{ - (*CustomizerAttribute)(nil), // 0: google.ads.googleads.v16.resources.CustomizerAttribute - (enums.CustomizerAttributeTypeEnum_CustomizerAttributeType)(0), // 1: google.ads.googleads.v16.enums.CustomizerAttributeTypeEnum.CustomizerAttributeType - (enums.CustomizerAttributeStatusEnum_CustomizerAttributeStatus)(0), // 2: google.ads.googleads.v16.enums.CustomizerAttributeStatusEnum.CustomizerAttributeStatus +var file_google_ads_googleads_v17_resources_customizer_attribute_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_customizer_attribute_proto_goTypes = []interface{}{ + (*CustomizerAttribute)(nil), // 0: google.ads.googleads.v17.resources.CustomizerAttribute + (enums.CustomizerAttributeTypeEnum_CustomizerAttributeType)(0), // 1: google.ads.googleads.v17.enums.CustomizerAttributeTypeEnum.CustomizerAttributeType + (enums.CustomizerAttributeStatusEnum_CustomizerAttributeStatus)(0), // 2: google.ads.googleads.v17.enums.CustomizerAttributeStatusEnum.CustomizerAttributeStatus } -var file_google_ads_googleads_v16_resources_customizer_attribute_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.CustomizerAttribute.type:type_name -> google.ads.googleads.v16.enums.CustomizerAttributeTypeEnum.CustomizerAttributeType - 2, // 1: google.ads.googleads.v16.resources.CustomizerAttribute.status:type_name -> google.ads.googleads.v16.enums.CustomizerAttributeStatusEnum.CustomizerAttributeStatus +var file_google_ads_googleads_v17_resources_customizer_attribute_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.CustomizerAttribute.type:type_name -> google.ads.googleads.v17.enums.CustomizerAttributeTypeEnum.CustomizerAttributeType + 2, // 1: google.ads.googleads.v17.resources.CustomizerAttribute.status:type_name -> google.ads.googleads.v17.enums.CustomizerAttributeStatusEnum.CustomizerAttributeStatus 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 @@ -231,13 +231,13 @@ var file_google_ads_googleads_v16_resources_customizer_attribute_proto_depIdxs = 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_customizer_attribute_proto_init() } -func file_google_ads_googleads_v16_resources_customizer_attribute_proto_init() { - if File_google_ads_googleads_v16_resources_customizer_attribute_proto != nil { +func init() { file_google_ads_googleads_v17_resources_customizer_attribute_proto_init() } +func file_google_ads_googleads_v17_resources_customizer_attribute_proto_init() { + if File_google_ads_googleads_v17_resources_customizer_attribute_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_customizer_attribute_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_customizer_attribute_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomizerAttribute); i { case 0: return &v.state @@ -254,18 +254,18 @@ func file_google_ads_googleads_v16_resources_customizer_attribute_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_customizer_attribute_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_customizer_attribute_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_customizer_attribute_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_customizer_attribute_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_customizer_attribute_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_customizer_attribute_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_customizer_attribute_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_customizer_attribute_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_customizer_attribute_proto = out.File - file_google_ads_googleads_v16_resources_customizer_attribute_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_customizer_attribute_proto_goTypes = nil - file_google_ads_googleads_v16_resources_customizer_attribute_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_customizer_attribute_proto = out.File + file_google_ads_googleads_v17_resources_customizer_attribute_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_customizer_attribute_proto_goTypes = nil + file_google_ads_googleads_v17_resources_customizer_attribute_proto_depIdxs = nil } diff --git a/resources/detail_placement_view.pb.go b/resources/detail_placement_view.pb.go index 927a2f1e..372bdcab 100644 --- a/resources/detail_placement_view.pb.go +++ b/resources/detail_placement_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/detail_placement_view.proto +// source: google/ads/googleads/v17/resources/detail_placement_view.proto package resources @@ -61,13 +61,13 @@ type DetailPlacementView struct { TargetUrl *string `protobuf:"bytes,10,opt,name=target_url,json=targetUrl,proto3,oneof" json:"target_url,omitempty"` // Output only. Type of the placement, for example, Website, YouTube Video, // and Mobile Application. - PlacementType enums.PlacementTypeEnum_PlacementType `protobuf:"varint,6,opt,name=placement_type,json=placementType,proto3,enum=google.ads.googleads.v16.enums.PlacementTypeEnum_PlacementType" json:"placement_type,omitempty"` + PlacementType enums.PlacementTypeEnum_PlacementType `protobuf:"varint,6,opt,name=placement_type,json=placementType,proto3,enum=google.ads.googleads.v17.enums.PlacementTypeEnum_PlacementType" json:"placement_type,omitempty"` } func (x *DetailPlacementView) Reset() { *x = DetailPlacementView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_detail_placement_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_detail_placement_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80,7 +80,7 @@ func (x *DetailPlacementView) String() string { func (*DetailPlacementView) ProtoMessage() {} func (x *DetailPlacementView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_detail_placement_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_detail_placement_view_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93,7 +93,7 @@ func (x *DetailPlacementView) ProtoReflect() protoreflect.Message { // Deprecated: Use DetailPlacementView.ProtoReflect.Descriptor instead. func (*DetailPlacementView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_detail_placement_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_detail_placement_view_proto_rawDescGZIP(), []int{0} } func (x *DetailPlacementView) GetResourceName() string { @@ -138,17 +138,17 @@ func (x *DetailPlacementView) GetPlacementType() enums.PlacementTypeEnum_Placeme return enums.PlacementTypeEnum_PlacementType(0) } -var File_google_ads_googleads_v16_resources_detail_placement_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_detail_placement_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_detail_placement_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_detail_placement_view_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, 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, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 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, + 0x67, 0x6c, 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, 0x65, + 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, 0x6d, 0x65, 0x6e, 0x74, 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, @@ -176,7 +176,7 @@ var file_google_ads_googleads_v16_resources_detail_placement_view_proto_rawDesc 0x09, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x6b, 0x0a, 0x0e, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x06, 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, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0d, 0x70, 0x6c, 0x61, @@ -195,43 +195,43 @@ var file_google_ads_googleads_v16_resources_detail_placement_view_proto_rawDesc 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x8a, 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, 0x18, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 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, 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_detail_placement_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_detail_placement_view_proto_rawDescData = file_google_ads_googleads_v16_resources_detail_placement_view_proto_rawDesc + file_google_ads_googleads_v17_resources_detail_placement_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_detail_placement_view_proto_rawDescData = file_google_ads_googleads_v17_resources_detail_placement_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_detail_placement_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_detail_placement_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_detail_placement_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_detail_placement_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_detail_placement_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_detail_placement_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_detail_placement_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_detail_placement_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_detail_placement_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_detail_placement_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_detail_placement_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_detail_placement_view_proto_goTypes = []interface{}{ - (*DetailPlacementView)(nil), // 0: google.ads.googleads.v16.resources.DetailPlacementView - (enums.PlacementTypeEnum_PlacementType)(0), // 1: google.ads.googleads.v16.enums.PlacementTypeEnum.PlacementType +var file_google_ads_googleads_v17_resources_detail_placement_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_detail_placement_view_proto_goTypes = []interface{}{ + (*DetailPlacementView)(nil), // 0: google.ads.googleads.v17.resources.DetailPlacementView + (enums.PlacementTypeEnum_PlacementType)(0), // 1: google.ads.googleads.v17.enums.PlacementTypeEnum.PlacementType } -var file_google_ads_googleads_v16_resources_detail_placement_view_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.DetailPlacementView.placement_type:type_name -> google.ads.googleads.v16.enums.PlacementTypeEnum.PlacementType +var file_google_ads_googleads_v17_resources_detail_placement_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.DetailPlacementView.placement_type:type_name -> google.ads.googleads.v17.enums.PlacementTypeEnum.PlacementType 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 @@ -239,13 +239,13 @@ var file_google_ads_googleads_v16_resources_detail_placement_view_proto_depIdxs 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_detail_placement_view_proto_init() } -func file_google_ads_googleads_v16_resources_detail_placement_view_proto_init() { - if File_google_ads_googleads_v16_resources_detail_placement_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_detail_placement_view_proto_init() } +func file_google_ads_googleads_v17_resources_detail_placement_view_proto_init() { + if File_google_ads_googleads_v17_resources_detail_placement_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_detail_placement_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_detail_placement_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DetailPlacementView); i { case 0: return &v.state @@ -258,23 +258,23 @@ func file_google_ads_googleads_v16_resources_detail_placement_view_proto_init() } } } - file_google_ads_googleads_v16_resources_detail_placement_view_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_detail_placement_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_detail_placement_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_detail_placement_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_detail_placement_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_detail_placement_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_detail_placement_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_detail_placement_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_detail_placement_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_detail_placement_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_detail_placement_view_proto = out.File - file_google_ads_googleads_v16_resources_detail_placement_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_detail_placement_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_detail_placement_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_detail_placement_view_proto = out.File + file_google_ads_googleads_v17_resources_detail_placement_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_detail_placement_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_detail_placement_view_proto_depIdxs = nil } diff --git a/resources/detailed_demographic.pb.go b/resources/detailed_demographic.pb.go index b22c04fd..e871c12c 100644 --- a/resources/detailed_demographic.pb.go +++ b/resources/detailed_demographic.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/detailed_demographic.proto +// source: google/ads/googleads/v17/resources/detailed_demographic.proto package resources @@ -65,7 +65,7 @@ type DetailedDemographic struct { func (x *DetailedDemographic) Reset() { *x = DetailedDemographic{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_detailed_demographic_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_detailed_demographic_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *DetailedDemographic) String() string { func (*DetailedDemographic) ProtoMessage() {} func (x *DetailedDemographic) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_detailed_demographic_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_detailed_demographic_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 *DetailedDemographic) ProtoReflect() protoreflect.Message { // Deprecated: Use DetailedDemographic.ProtoReflect.Descriptor instead. func (*DetailedDemographic) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_detailed_demographic_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_detailed_demographic_proto_rawDescGZIP(), []int{0} } func (x *DetailedDemographic) GetResourceName() string { @@ -136,17 +136,17 @@ func (x *DetailedDemographic) GetAvailabilities() []*common.CriterionCategoryAva return nil } -var File_google_ads_googleads_v16_resources_detailed_demographic_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_detailed_demographic_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_detailed_demographic_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_detailed_demographic_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, 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, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x5f, 0x64, 0x65, 0x6d, 0x6f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x63, 0x6f, + 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, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, @@ -174,7 +174,7 @@ var file_google_ads_googleads_v16_resources_detailed_demographic_proto_rawDesc = 0x6c, 0x6c, 0x12, 0x6b, 0x0a, 0x0e, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x69, 0x65, 0x73, 0x18, 0x06, 0x20, 0x03, 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, 0x43, 0x72, 0x69, + 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, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0e, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x69, 0x65, 0x73, 0x3a, @@ -187,43 +187,43 @@ var file_google_ads_googleads_v16_resources_detailed_demographic_proto_rawDesc = 0x2f, 0x7b, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x5f, 0x64, 0x65, 0x6d, 0x6f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x8a, 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, 0x18, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x44, 0x65, 0x6d, 0x6f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 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_detailed_demographic_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_detailed_demographic_proto_rawDescData = file_google_ads_googleads_v16_resources_detailed_demographic_proto_rawDesc + file_google_ads_googleads_v17_resources_detailed_demographic_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_detailed_demographic_proto_rawDescData = file_google_ads_googleads_v17_resources_detailed_demographic_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_detailed_demographic_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_detailed_demographic_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_detailed_demographic_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_detailed_demographic_proto_rawDescData) +func file_google_ads_googleads_v17_resources_detailed_demographic_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_detailed_demographic_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_detailed_demographic_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_detailed_demographic_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_detailed_demographic_proto_rawDescData + return file_google_ads_googleads_v17_resources_detailed_demographic_proto_rawDescData } -var file_google_ads_googleads_v16_resources_detailed_demographic_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_detailed_demographic_proto_goTypes = []interface{}{ - (*DetailedDemographic)(nil), // 0: google.ads.googleads.v16.resources.DetailedDemographic - (*common.CriterionCategoryAvailability)(nil), // 1: google.ads.googleads.v16.common.CriterionCategoryAvailability +var file_google_ads_googleads_v17_resources_detailed_demographic_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_detailed_demographic_proto_goTypes = []interface{}{ + (*DetailedDemographic)(nil), // 0: google.ads.googleads.v17.resources.DetailedDemographic + (*common.CriterionCategoryAvailability)(nil), // 1: google.ads.googleads.v17.common.CriterionCategoryAvailability } -var file_google_ads_googleads_v16_resources_detailed_demographic_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.DetailedDemographic.availabilities:type_name -> google.ads.googleads.v16.common.CriterionCategoryAvailability +var file_google_ads_googleads_v17_resources_detailed_demographic_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.DetailedDemographic.availabilities:type_name -> google.ads.googleads.v17.common.CriterionCategoryAvailability 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 @@ -231,13 +231,13 @@ var file_google_ads_googleads_v16_resources_detailed_demographic_proto_depIdxs = 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_detailed_demographic_proto_init() } -func file_google_ads_googleads_v16_resources_detailed_demographic_proto_init() { - if File_google_ads_googleads_v16_resources_detailed_demographic_proto != nil { +func init() { file_google_ads_googleads_v17_resources_detailed_demographic_proto_init() } +func file_google_ads_googleads_v17_resources_detailed_demographic_proto_init() { + if File_google_ads_googleads_v17_resources_detailed_demographic_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_detailed_demographic_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_detailed_demographic_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DetailedDemographic); i { case 0: return &v.state @@ -254,18 +254,18 @@ func file_google_ads_googleads_v16_resources_detailed_demographic_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_detailed_demographic_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_detailed_demographic_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_detailed_demographic_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_detailed_demographic_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_detailed_demographic_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_detailed_demographic_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_detailed_demographic_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_detailed_demographic_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_detailed_demographic_proto = out.File - file_google_ads_googleads_v16_resources_detailed_demographic_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_detailed_demographic_proto_goTypes = nil - file_google_ads_googleads_v16_resources_detailed_demographic_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_detailed_demographic_proto = out.File + file_google_ads_googleads_v17_resources_detailed_demographic_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_detailed_demographic_proto_goTypes = nil + file_google_ads_googleads_v17_resources_detailed_demographic_proto_depIdxs = nil } diff --git a/resources/display_keyword_view.pb.go b/resources/display_keyword_view.pb.go index 1c52380e..49e9d579 100644 --- a/resources/display_keyword_view.pb.go +++ b/resources/display_keyword_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/display_keyword_view.proto +// source: google/ads/googleads/v17/resources/display_keyword_view.proto package resources @@ -51,7 +51,7 @@ type DisplayKeywordView struct { func (x *DisplayKeywordView) Reset() { *x = DisplayKeywordView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_display_keyword_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_display_keyword_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64,7 +64,7 @@ func (x *DisplayKeywordView) String() string { func (*DisplayKeywordView) ProtoMessage() {} func (x *DisplayKeywordView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_display_keyword_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_display_keyword_view_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 *DisplayKeywordView) ProtoReflect() protoreflect.Message { // Deprecated: Use DisplayKeywordView.ProtoReflect.Descriptor instead. func (*DisplayKeywordView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_display_keyword_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_display_keyword_view_proto_rawDescGZIP(), []int{0} } func (x *DisplayKeywordView) GetResourceName() string { @@ -87,15 +87,15 @@ func (x *DisplayKeywordView) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_resources_display_keyword_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_display_keyword_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_display_keyword_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_display_keyword_view_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, 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, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -116,41 +116,41 @@ var file_google_ads_googleads_v16_resources_display_keyword_view_proto_rawDesc = 0x7b, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x89, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x17, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 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, 0x73, 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, + 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, 0x36, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 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, + 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_display_keyword_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_display_keyword_view_proto_rawDescData = file_google_ads_googleads_v16_resources_display_keyword_view_proto_rawDesc + file_google_ads_googleads_v17_resources_display_keyword_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_display_keyword_view_proto_rawDescData = file_google_ads_googleads_v17_resources_display_keyword_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_display_keyword_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_display_keyword_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_display_keyword_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_display_keyword_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_display_keyword_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_display_keyword_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_display_keyword_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_display_keyword_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_display_keyword_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_display_keyword_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_display_keyword_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_display_keyword_view_proto_goTypes = []interface{}{ - (*DisplayKeywordView)(nil), // 0: google.ads.googleads.v16.resources.DisplayKeywordView +var file_google_ads_googleads_v17_resources_display_keyword_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_display_keyword_view_proto_goTypes = []interface{}{ + (*DisplayKeywordView)(nil), // 0: google.ads.googleads.v17.resources.DisplayKeywordView } -var file_google_ads_googleads_v16_resources_display_keyword_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_display_keyword_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method output_type 0, // [0:0] is the sub-list for method input_type 0, // [0:0] is the sub-list for extension type_name @@ -158,13 +158,13 @@ var file_google_ads_googleads_v16_resources_display_keyword_view_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_display_keyword_view_proto_init() } -func file_google_ads_googleads_v16_resources_display_keyword_view_proto_init() { - if File_google_ads_googleads_v16_resources_display_keyword_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_display_keyword_view_proto_init() } +func file_google_ads_googleads_v17_resources_display_keyword_view_proto_init() { + if File_google_ads_googleads_v17_resources_display_keyword_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_display_keyword_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_display_keyword_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DisplayKeywordView); i { case 0: return &v.state @@ -181,18 +181,18 @@ func file_google_ads_googleads_v16_resources_display_keyword_view_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_display_keyword_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_display_keyword_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_display_keyword_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_display_keyword_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_display_keyword_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_display_keyword_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_display_keyword_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_display_keyword_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_display_keyword_view_proto = out.File - file_google_ads_googleads_v16_resources_display_keyword_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_display_keyword_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_display_keyword_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_display_keyword_view_proto = out.File + file_google_ads_googleads_v17_resources_display_keyword_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_display_keyword_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_display_keyword_view_proto_depIdxs = nil } diff --git a/resources/distance_view.pb.go b/resources/distance_view.pb.go index d0e09e09..2e657eca 100644 --- a/resources/distance_view.pb.go +++ b/resources/distance_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/distance_view.proto +// source: google/ads/googleads/v17/resources/distance_view.proto package resources @@ -52,7 +52,7 @@ type DistanceView struct { // `customers/{customer_id}/distanceViews/1~{distance_bucket}` ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` // Output only. Grouping of user distance from location extensions. - DistanceBucket enums.DistanceBucketEnum_DistanceBucket `protobuf:"varint,2,opt,name=distance_bucket,json=distanceBucket,proto3,enum=google.ads.googleads.v16.enums.DistanceBucketEnum_DistanceBucket" json:"distance_bucket,omitempty"` + DistanceBucket enums.DistanceBucketEnum_DistanceBucket `protobuf:"varint,2,opt,name=distance_bucket,json=distanceBucket,proto3,enum=google.ads.googleads.v17.enums.DistanceBucketEnum_DistanceBucket" json:"distance_bucket,omitempty"` // Output only. True if the DistanceBucket is using the metric system, false // otherwise. MetricSystem *bool `protobuf:"varint,4,opt,name=metric_system,json=metricSystem,proto3,oneof" json:"metric_system,omitempty"` @@ -61,7 +61,7 @@ type DistanceView struct { func (x *DistanceView) Reset() { *x = DistanceView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_distance_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_distance_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74,7 +74,7 @@ func (x *DistanceView) String() string { func (*DistanceView) ProtoMessage() {} func (x *DistanceView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_distance_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_distance_view_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -87,7 +87,7 @@ func (x *DistanceView) ProtoReflect() protoreflect.Message { // Deprecated: Use DistanceView.ProtoReflect.Descriptor instead. func (*DistanceView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_distance_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_distance_view_proto_rawDescGZIP(), []int{0} } func (x *DistanceView) GetResourceName() string { @@ -111,17 +111,17 @@ func (x *DistanceView) GetMetricSystem() bool { return false } -var File_google_ads_googleads_v16_resources_distance_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_distance_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_distance_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_distance_view_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, 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, 0x64, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 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, 0x73, 0x1a, 0x34, 0x67, 0x6f, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x64, 0x69, 0x73, + 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, 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, @@ -136,7 +136,7 @@ var file_google_ads_googleads_v16_resources_distance_view_proto_rawDesc = []byte 0x61, 0x6d, 0x65, 0x12, 0x6f, 0x0a, 0x0f, 0x64, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x02, 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, 0x44, 0x69, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x44, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x44, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0e, 0x64, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x42, 0x75, @@ -154,42 +154,42 @@ var file_google_ads_googleads_v16_resources_distance_view_proto_rawDesc = []byte 0x10, 0x0a, 0x0e, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x5f, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x42, 0x83, 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, 0x11, 0x44, 0x69, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x11, 0x44, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 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, 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_distance_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_distance_view_proto_rawDescData = file_google_ads_googleads_v16_resources_distance_view_proto_rawDesc + file_google_ads_googleads_v17_resources_distance_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_distance_view_proto_rawDescData = file_google_ads_googleads_v17_resources_distance_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_distance_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_distance_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_distance_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_distance_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_distance_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_distance_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_distance_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_distance_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_distance_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_distance_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_distance_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_distance_view_proto_goTypes = []interface{}{ - (*DistanceView)(nil), // 0: google.ads.googleads.v16.resources.DistanceView - (enums.DistanceBucketEnum_DistanceBucket)(0), // 1: google.ads.googleads.v16.enums.DistanceBucketEnum.DistanceBucket +var file_google_ads_googleads_v17_resources_distance_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_distance_view_proto_goTypes = []interface{}{ + (*DistanceView)(nil), // 0: google.ads.googleads.v17.resources.DistanceView + (enums.DistanceBucketEnum_DistanceBucket)(0), // 1: google.ads.googleads.v17.enums.DistanceBucketEnum.DistanceBucket } -var file_google_ads_googleads_v16_resources_distance_view_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.DistanceView.distance_bucket:type_name -> google.ads.googleads.v16.enums.DistanceBucketEnum.DistanceBucket +var file_google_ads_googleads_v17_resources_distance_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.DistanceView.distance_bucket:type_name -> google.ads.googleads.v17.enums.DistanceBucketEnum.DistanceBucket 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 @@ -197,13 +197,13 @@ var file_google_ads_googleads_v16_resources_distance_view_proto_depIdxs = []int3 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_distance_view_proto_init() } -func file_google_ads_googleads_v16_resources_distance_view_proto_init() { - if File_google_ads_googleads_v16_resources_distance_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_distance_view_proto_init() } +func file_google_ads_googleads_v17_resources_distance_view_proto_init() { + if File_google_ads_googleads_v17_resources_distance_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_distance_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_distance_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DistanceView); i { case 0: return &v.state @@ -216,23 +216,23 @@ func file_google_ads_googleads_v16_resources_distance_view_proto_init() { } } } - file_google_ads_googleads_v16_resources_distance_view_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_distance_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_distance_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_distance_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_distance_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_distance_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_distance_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_distance_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_distance_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_distance_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_distance_view_proto = out.File - file_google_ads_googleads_v16_resources_distance_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_distance_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_distance_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_distance_view_proto = out.File + file_google_ads_googleads_v17_resources_distance_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_distance_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_distance_view_proto_depIdxs = nil } diff --git a/resources/domain_category.pb.go b/resources/domain_category.pb.go index 74f869dd..19231815 100644 --- a/resources/domain_category.pb.go +++ b/resources/domain_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/resources/domain_category.proto +// source: google/ads/googleads/v17/resources/domain_category.proto package resources @@ -79,7 +79,7 @@ type DomainCategory struct { func (x *DomainCategory) Reset() { *x = DomainCategory{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_domain_category_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_domain_category_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -92,7 +92,7 @@ func (x *DomainCategory) String() string { func (*DomainCategory) ProtoMessage() {} func (x *DomainCategory) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_domain_category_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_domain_category_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -105,7 +105,7 @@ func (x *DomainCategory) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainCategory.ProtoReflect.Descriptor instead. func (*DomainCategory) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_domain_category_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_domain_category_proto_rawDescGZIP(), []int{0} } func (x *DomainCategory) GetResourceName() string { @@ -171,15 +171,15 @@ func (x *DomainCategory) GetRecommendedCpcBidMicros() int64 { return 0 } -var File_google_ads_googleads_v16_resources_domain_category_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_domain_category_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_domain_category_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_domain_category_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, 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, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 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, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x1f, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -235,41 +235,41 @@ var file_google_ads_googleads_v16_resources_domain_category_proto_rawDesc = []by 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x5f, 0x63, 0x70, 0x63, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x85, 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, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x13, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 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, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, + 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, + 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, + 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, 0x63, 0x65, + 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_domain_category_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_domain_category_proto_rawDescData = file_google_ads_googleads_v16_resources_domain_category_proto_rawDesc + file_google_ads_googleads_v17_resources_domain_category_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_domain_category_proto_rawDescData = file_google_ads_googleads_v17_resources_domain_category_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_domain_category_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_domain_category_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_domain_category_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_domain_category_proto_rawDescData) +func file_google_ads_googleads_v17_resources_domain_category_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_domain_category_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_domain_category_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_domain_category_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_domain_category_proto_rawDescData + return file_google_ads_googleads_v17_resources_domain_category_proto_rawDescData } -var file_google_ads_googleads_v16_resources_domain_category_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_domain_category_proto_goTypes = []interface{}{ - (*DomainCategory)(nil), // 0: google.ads.googleads.v16.resources.DomainCategory +var file_google_ads_googleads_v17_resources_domain_category_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_domain_category_proto_goTypes = []interface{}{ + (*DomainCategory)(nil), // 0: google.ads.googleads.v17.resources.DomainCategory } -var file_google_ads_googleads_v16_resources_domain_category_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_domain_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 @@ -277,13 +277,13 @@ var file_google_ads_googleads_v16_resources_domain_category_proto_depIdxs = []in 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_domain_category_proto_init() } -func file_google_ads_googleads_v16_resources_domain_category_proto_init() { - if File_google_ads_googleads_v16_resources_domain_category_proto != nil { +func init() { file_google_ads_googleads_v17_resources_domain_category_proto_init() } +func file_google_ads_googleads_v17_resources_domain_category_proto_init() { + if File_google_ads_googleads_v17_resources_domain_category_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_domain_category_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_domain_category_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DomainCategory); i { case 0: return &v.state @@ -296,23 +296,23 @@ func file_google_ads_googleads_v16_resources_domain_category_proto_init() { } } } - file_google_ads_googleads_v16_resources_domain_category_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_domain_category_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_domain_category_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_domain_category_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_domain_category_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_domain_category_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_domain_category_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_domain_category_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_domain_category_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_domain_category_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_domain_category_proto = out.File - file_google_ads_googleads_v16_resources_domain_category_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_domain_category_proto_goTypes = nil - file_google_ads_googleads_v16_resources_domain_category_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_domain_category_proto = out.File + file_google_ads_googleads_v17_resources_domain_category_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_domain_category_proto_goTypes = nil + file_google_ads_googleads_v17_resources_domain_category_proto_depIdxs = nil } diff --git a/resources/dynamic_search_ads_search_term_view.pb.go b/resources/dynamic_search_ads_search_term_view.pb.go index a61be1ad..b030755d 100644 --- a/resources/dynamic_search_ads_search_term_view.pb.go +++ b/resources/dynamic_search_ads_search_term_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/dynamic_search_ads_search_term_view.proto +// source: google/ads/googleads/v17/resources/dynamic_search_ads_search_term_view.proto package resources @@ -79,7 +79,7 @@ type DynamicSearchAdsSearchTermView struct { func (x *DynamicSearchAdsSearchTermView) Reset() { *x = DynamicSearchAdsSearchTermView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_dynamic_search_ads_search_term_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -92,7 +92,7 @@ func (x *DynamicSearchAdsSearchTermView) String() string { func (*DynamicSearchAdsSearchTermView) ProtoMessage() {} func (x *DynamicSearchAdsSearchTermView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_dynamic_search_ads_search_term_view_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -105,7 +105,7 @@ func (x *DynamicSearchAdsSearchTermView) ProtoReflect() protoreflect.Message { // Deprecated: Use DynamicSearchAdsSearchTermView.ProtoReflect.Descriptor instead. func (*DynamicSearchAdsSearchTermView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_dynamic_search_ads_search_term_view_proto_rawDescGZIP(), []int{0} } func (x *DynamicSearchAdsSearchTermView) GetResourceName() string { @@ -164,16 +164,16 @@ func (x *DynamicSearchAdsSearchTermView) GetHasNegativeUrl() bool { return false } -var File_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_dynamic_search_ads_search_term_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_dynamic_search_ads_search_term_view_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, 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, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x61, 0x64, 0x73, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 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, 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, @@ -232,42 +232,42 @@ var file_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view_ 0x0a, 0x11, 0x5f, 0x68, 0x61, 0x73, 0x5f, 0x6e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x95, 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, 0x23, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x23, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x64, 0x73, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 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, + 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_dynamic_search_ads_search_term_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view_proto_rawDescData = file_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view_proto_rawDesc + file_google_ads_googleads_v17_resources_dynamic_search_ads_search_term_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_dynamic_search_ads_search_term_view_proto_rawDescData = file_google_ads_googleads_v17_resources_dynamic_search_ads_search_term_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_dynamic_search_ads_search_term_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_dynamic_search_ads_search_term_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_dynamic_search_ads_search_term_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_dynamic_search_ads_search_term_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_dynamic_search_ads_search_term_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view_proto_goTypes = []interface{}{ - (*DynamicSearchAdsSearchTermView)(nil), // 0: google.ads.googleads.v16.resources.DynamicSearchAdsSearchTermView +var file_google_ads_googleads_v17_resources_dynamic_search_ads_search_term_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_dynamic_search_ads_search_term_view_proto_goTypes = []interface{}{ + (*DynamicSearchAdsSearchTermView)(nil), // 0: google.ads.googleads.v17.resources.DynamicSearchAdsSearchTermView } -var file_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_dynamic_search_ads_search_term_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method output_type 0, // [0:0] is the sub-list for method input_type 0, // [0:0] is the sub-list for extension type_name @@ -275,13 +275,13 @@ var file_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view_ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view_proto_init() } -func file_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view_proto_init() { - if File_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_dynamic_search_ads_search_term_view_proto_init() } +func file_google_ads_googleads_v17_resources_dynamic_search_ads_search_term_view_proto_init() { + if File_google_ads_googleads_v17_resources_dynamic_search_ads_search_term_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_dynamic_search_ads_search_term_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DynamicSearchAdsSearchTermView); i { case 0: return &v.state @@ -294,23 +294,23 @@ func file_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view } } } - file_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_dynamic_search_ads_search_term_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_dynamic_search_ads_search_term_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_dynamic_search_ads_search_term_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_dynamic_search_ads_search_term_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_dynamic_search_ads_search_term_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_dynamic_search_ads_search_term_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view_proto = out.File - file_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_dynamic_search_ads_search_term_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_dynamic_search_ads_search_term_view_proto = out.File + file_google_ads_googleads_v17_resources_dynamic_search_ads_search_term_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_dynamic_search_ads_search_term_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_dynamic_search_ads_search_term_view_proto_depIdxs = nil } diff --git a/resources/expanded_landing_page_view.pb.go b/resources/expanded_landing_page_view.pb.go index a35bb530..f2f054bd 100644 --- a/resources/expanded_landing_page_view.pb.go +++ b/resources/expanded_landing_page_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/expanded_landing_page_view.proto +// source: google/ads/googleads/v17/resources/expanded_landing_page_view.proto package resources @@ -54,7 +54,7 @@ type ExpandedLandingPageView struct { func (x *ExpandedLandingPageView) Reset() { *x = ExpandedLandingPageView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_expanded_landing_page_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_expanded_landing_page_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67,7 +67,7 @@ func (x *ExpandedLandingPageView) String() string { func (*ExpandedLandingPageView) ProtoMessage() {} func (x *ExpandedLandingPageView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_expanded_landing_page_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_expanded_landing_page_view_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80,7 +80,7 @@ func (x *ExpandedLandingPageView) ProtoReflect() protoreflect.Message { // Deprecated: Use ExpandedLandingPageView.ProtoReflect.Descriptor instead. func (*ExpandedLandingPageView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_expanded_landing_page_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_expanded_landing_page_view_proto_rawDescGZIP(), []int{0} } func (x *ExpandedLandingPageView) GetResourceName() string { @@ -97,15 +97,15 @@ func (x *ExpandedLandingPageView) GetExpandedFinalUrl() string { return "" } -var File_google_ads_googleads_v16_resources_expanded_landing_page_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_expanded_landing_page_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_expanded_landing_page_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_expanded_landing_page_view_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, 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, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x65, 0x64, 0x5f, 0x6c, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x61, 0x67, 0x65, 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, + 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, 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, @@ -133,42 +133,42 @@ var file_google_ads_googleads_v16_resources_expanded_landing_page_view_proto_raw 0x69, 0x6e, 0x74, 0x7d, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x8e, 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, 0x1c, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x65, 0x64, 0x4c, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x50, 0x61, 0x67, 0x65, 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, + 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, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, + 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, + 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, 0x70, 0x72, + 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_expanded_landing_page_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_expanded_landing_page_view_proto_rawDescData = file_google_ads_googleads_v16_resources_expanded_landing_page_view_proto_rawDesc + file_google_ads_googleads_v17_resources_expanded_landing_page_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_expanded_landing_page_view_proto_rawDescData = file_google_ads_googleads_v17_resources_expanded_landing_page_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_expanded_landing_page_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_expanded_landing_page_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_expanded_landing_page_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_expanded_landing_page_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_expanded_landing_page_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_expanded_landing_page_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_expanded_landing_page_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_expanded_landing_page_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_expanded_landing_page_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_expanded_landing_page_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_expanded_landing_page_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_expanded_landing_page_view_proto_goTypes = []interface{}{ - (*ExpandedLandingPageView)(nil), // 0: google.ads.googleads.v16.resources.ExpandedLandingPageView +var file_google_ads_googleads_v17_resources_expanded_landing_page_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_expanded_landing_page_view_proto_goTypes = []interface{}{ + (*ExpandedLandingPageView)(nil), // 0: google.ads.googleads.v17.resources.ExpandedLandingPageView } -var file_google_ads_googleads_v16_resources_expanded_landing_page_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_expanded_landing_page_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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_resources_expanded_landing_page_view_proto_dep 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_expanded_landing_page_view_proto_init() } -func file_google_ads_googleads_v16_resources_expanded_landing_page_view_proto_init() { - if File_google_ads_googleads_v16_resources_expanded_landing_page_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_expanded_landing_page_view_proto_init() } +func file_google_ads_googleads_v17_resources_expanded_landing_page_view_proto_init() { + if File_google_ads_googleads_v17_resources_expanded_landing_page_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_expanded_landing_page_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_expanded_landing_page_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ExpandedLandingPageView); i { case 0: return &v.state @@ -195,23 +195,23 @@ func file_google_ads_googleads_v16_resources_expanded_landing_page_view_proto_in } } } - file_google_ads_googleads_v16_resources_expanded_landing_page_view_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_expanded_landing_page_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_expanded_landing_page_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_expanded_landing_page_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_expanded_landing_page_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_expanded_landing_page_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_expanded_landing_page_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_expanded_landing_page_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_expanded_landing_page_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_expanded_landing_page_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_expanded_landing_page_view_proto = out.File - file_google_ads_googleads_v16_resources_expanded_landing_page_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_expanded_landing_page_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_expanded_landing_page_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_expanded_landing_page_view_proto = out.File + file_google_ads_googleads_v17_resources_expanded_landing_page_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_expanded_landing_page_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_expanded_landing_page_view_proto_depIdxs = nil } diff --git a/resources/experiment.pb.go b/resources/experiment.pb.go index 9dc31899..cf850c90 100644 --- a/resources/experiment.pb.go +++ b/resources/experiment.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/experiment.proto +// source: google/ads/googleads/v17/resources/experiment.proto package resources @@ -63,9 +63,9 @@ type Experiment struct { // name is base campaign name + suffix. Suffix string `protobuf:"bytes,12,opt,name=suffix,proto3" json:"suffix,omitempty"` // Required. The product/feature that uses this experiment. - Type enums.ExperimentTypeEnum_ExperimentType `protobuf:"varint,13,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.ExperimentTypeEnum_ExperimentType" json:"type,omitempty"` + Type enums.ExperimentTypeEnum_ExperimentType `protobuf:"varint,13,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.ExperimentTypeEnum_ExperimentType" json:"type,omitempty"` // The Advertiser-chosen status of this experiment. - Status enums.ExperimentStatusEnum_ExperimentStatus `protobuf:"varint,14,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.ExperimentStatusEnum_ExperimentStatus" json:"status,omitempty"` + Status enums.ExperimentStatusEnum_ExperimentStatus `protobuf:"varint,14,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.ExperimentStatusEnum_ExperimentStatus" json:"status,omitempty"` // Date when the experiment starts. By default, the experiment starts // now or on the campaign's start date, whichever is later. If this field is // set, then the experiment starts at the beginning of the specified date in @@ -88,7 +88,7 @@ type Experiment struct { // recent long running operation is returned. LongRunningOperation *string `protobuf:"bytes,18,opt,name=long_running_operation,json=longRunningOperation,proto3,oneof" json:"long_running_operation,omitempty"` // Output only. The status of the experiment promotion process. - PromoteStatus enums.AsyncActionStatusEnum_AsyncActionStatus `protobuf:"varint,19,opt,name=promote_status,json=promoteStatus,proto3,enum=google.ads.googleads.v16.enums.AsyncActionStatusEnum_AsyncActionStatus" json:"promote_status,omitempty"` + PromoteStatus enums.AsyncActionStatusEnum_AsyncActionStatus `protobuf:"varint,19,opt,name=promote_status,json=promoteStatus,proto3,enum=google.ads.googleads.v17.enums.AsyncActionStatusEnum_AsyncActionStatus" json:"promote_status,omitempty"` // Immutable. Set to true if changes to base campaigns should be synced to the // trial campaigns. Any changes made directly to trial campaigns will be // preserved. This field can only be set when the experiment is being created. @@ -98,7 +98,7 @@ type Experiment struct { func (x *Experiment) Reset() { *x = Experiment{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_experiment_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_experiment_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -111,7 +111,7 @@ func (x *Experiment) String() string { func (*Experiment) ProtoMessage() {} func (x *Experiment) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_experiment_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_experiment_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -124,7 +124,7 @@ func (x *Experiment) ProtoReflect() protoreflect.Message { // Deprecated: Use Experiment.ProtoReflect.Descriptor instead. func (*Experiment) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_experiment_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_experiment_proto_rawDescGZIP(), []int{0} } func (x *Experiment) GetResourceName() string { @@ -218,27 +218,27 @@ func (x *Experiment) GetSyncEnabled() bool { return false } -var File_google_ads_googleads_v16_resources_experiment_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_experiment_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_experiment_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_experiment_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, 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, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 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, + 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, 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, 0x6d, 0x65, 0x74, 0x72, 0x69, + 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, 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, 0x73, 0x79, + 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, 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, 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, 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, 0x65, + 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, 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, @@ -260,13 +260,13 @@ var file_google_ads_googleads_v16_resources_experiment_proto_rawDesc = []byte{ 0x75, 0x66, 0x66, 0x69, 0x78, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x75, 0x66, 0x66, 0x69, 0x78, 0x12, 0x5a, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0d, 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, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x5d, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x0e, 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, + 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, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x22, @@ -276,7 +276,7 @@ var file_google_ads_googleads_v16_resources_experiment_proto_rawDesc = []byte{ 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x41, 0x0a, 0x05, 0x67, 0x6f, 0x61, 0x6c, 0x73, 0x18, 0x11, 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, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x47, 0x6f, 0x61, 0x6c, 0x52, 0x05, 0x67, 0x6f, 0x61, 0x6c, 0x73, 0x12, 0x3e, 0x0a, 0x16, 0x6c, 0x6f, 0x6e, 0x67, 0x5f, 0x72, 0x75, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, @@ -285,7 +285,7 @@ var file_google_ads_googleads_v16_resources_experiment_proto_rawDesc = []byte{ 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x73, 0x0a, 0x0e, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x13, 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, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x79, 0x6e, 0x63, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x79, 0x6e, 0x63, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0d, 0x70, 0x72, 0x6f, @@ -305,49 +305,49 @@ var file_google_ads_googleads_v16_resources_experiment_proto_rawDesc = []byte{ 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x73, 0x79, 0x6e, 0x63, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x42, 0x81, 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, 0x0f, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 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, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, + 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, + 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, 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, + 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_experiment_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_experiment_proto_rawDescData = file_google_ads_googleads_v16_resources_experiment_proto_rawDesc + file_google_ads_googleads_v17_resources_experiment_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_experiment_proto_rawDescData = file_google_ads_googleads_v17_resources_experiment_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_experiment_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_experiment_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_experiment_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_experiment_proto_rawDescData) +func file_google_ads_googleads_v17_resources_experiment_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_experiment_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_experiment_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_experiment_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_experiment_proto_rawDescData + return file_google_ads_googleads_v17_resources_experiment_proto_rawDescData } -var file_google_ads_googleads_v16_resources_experiment_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_experiment_proto_goTypes = []interface{}{ - (*Experiment)(nil), // 0: google.ads.googleads.v16.resources.Experiment - (enums.ExperimentTypeEnum_ExperimentType)(0), // 1: google.ads.googleads.v16.enums.ExperimentTypeEnum.ExperimentType - (enums.ExperimentStatusEnum_ExperimentStatus)(0), // 2: google.ads.googleads.v16.enums.ExperimentStatusEnum.ExperimentStatus - (*common.MetricGoal)(nil), // 3: google.ads.googleads.v16.common.MetricGoal - (enums.AsyncActionStatusEnum_AsyncActionStatus)(0), // 4: google.ads.googleads.v16.enums.AsyncActionStatusEnum.AsyncActionStatus +var file_google_ads_googleads_v17_resources_experiment_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_experiment_proto_goTypes = []interface{}{ + (*Experiment)(nil), // 0: google.ads.googleads.v17.resources.Experiment + (enums.ExperimentTypeEnum_ExperimentType)(0), // 1: google.ads.googleads.v17.enums.ExperimentTypeEnum.ExperimentType + (enums.ExperimentStatusEnum_ExperimentStatus)(0), // 2: google.ads.googleads.v17.enums.ExperimentStatusEnum.ExperimentStatus + (*common.MetricGoal)(nil), // 3: google.ads.googleads.v17.common.MetricGoal + (enums.AsyncActionStatusEnum_AsyncActionStatus)(0), // 4: google.ads.googleads.v17.enums.AsyncActionStatusEnum.AsyncActionStatus } -var file_google_ads_googleads_v16_resources_experiment_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.Experiment.type:type_name -> google.ads.googleads.v16.enums.ExperimentTypeEnum.ExperimentType - 2, // 1: google.ads.googleads.v16.resources.Experiment.status:type_name -> google.ads.googleads.v16.enums.ExperimentStatusEnum.ExperimentStatus - 3, // 2: google.ads.googleads.v16.resources.Experiment.goals:type_name -> google.ads.googleads.v16.common.MetricGoal - 4, // 3: google.ads.googleads.v16.resources.Experiment.promote_status:type_name -> google.ads.googleads.v16.enums.AsyncActionStatusEnum.AsyncActionStatus +var file_google_ads_googleads_v17_resources_experiment_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.Experiment.type:type_name -> google.ads.googleads.v17.enums.ExperimentTypeEnum.ExperimentType + 2, // 1: google.ads.googleads.v17.resources.Experiment.status:type_name -> google.ads.googleads.v17.enums.ExperimentStatusEnum.ExperimentStatus + 3, // 2: google.ads.googleads.v17.resources.Experiment.goals:type_name -> google.ads.googleads.v17.common.MetricGoal + 4, // 3: google.ads.googleads.v17.resources.Experiment.promote_status:type_name -> google.ads.googleads.v17.enums.AsyncActionStatusEnum.AsyncActionStatus 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 @@ -355,13 +355,13 @@ var file_google_ads_googleads_v16_resources_experiment_proto_depIdxs = []int32{ 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_experiment_proto_init() } -func file_google_ads_googleads_v16_resources_experiment_proto_init() { - if File_google_ads_googleads_v16_resources_experiment_proto != nil { +func init() { file_google_ads_googleads_v17_resources_experiment_proto_init() } +func file_google_ads_googleads_v17_resources_experiment_proto_init() { + if File_google_ads_googleads_v17_resources_experiment_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_experiment_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_experiment_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Experiment); i { case 0: return &v.state @@ -374,23 +374,23 @@ func file_google_ads_googleads_v16_resources_experiment_proto_init() { } } } - file_google_ads_googleads_v16_resources_experiment_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_experiment_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_experiment_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_experiment_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_experiment_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_experiment_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_experiment_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_experiment_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_experiment_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_experiment_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_experiment_proto = out.File - file_google_ads_googleads_v16_resources_experiment_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_experiment_proto_goTypes = nil - file_google_ads_googleads_v16_resources_experiment_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_experiment_proto = out.File + file_google_ads_googleads_v17_resources_experiment_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_experiment_proto_goTypes = nil + file_google_ads_googleads_v17_resources_experiment_proto_depIdxs = nil } diff --git a/resources/experimentarm.pb.go b/resources/experimentarm.pb.go index bf2f527f..35ff30e6 100644 --- a/resources/experimentarm.pb.go +++ b/resources/experimentarm.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/experiment_arm.proto +// source: google/ads/googleads/v17/resources/experiment_arm.proto package resources @@ -67,7 +67,7 @@ type ExperimentArm struct { func (x *ExperimentArm) Reset() { *x = ExperimentArm{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_experiment_arm_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_experiment_arm_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80,7 +80,7 @@ func (x *ExperimentArm) String() string { func (*ExperimentArm) ProtoMessage() {} func (x *ExperimentArm) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_experiment_arm_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_experiment_arm_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93,7 +93,7 @@ func (x *ExperimentArm) ProtoReflect() protoreflect.Message { // Deprecated: Use ExperimentArm.ProtoReflect.Descriptor instead. func (*ExperimentArm) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_experiment_arm_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_experiment_arm_proto_rawDescGZIP(), []int{0} } func (x *ExperimentArm) GetResourceName() string { @@ -145,15 +145,15 @@ func (x *ExperimentArm) GetInDesignCampaigns() []string { return nil } -var File_google_ads_googleads_v16_resources_experiment_arm_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_experiment_arm_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_experiment_arm_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_experiment_arm_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, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x72, 0x6d, 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, 0x1f, 0x67, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -193,41 +193,41 @@ var file_google_ads_googleads_v16_resources_experiment_arm_proto_rawDesc = []byt 0x61, 0x6c, 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x74, 0x72, 0x69, 0x61, 0x6c, 0x5f, 0x61, 0x72, 0x6d, 0x5f, 0x69, 0x64, 0x7d, 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, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x12, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x72, 0x6d, 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, + 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, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, + 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, + 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, 0x70, 0x72, + 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_experiment_arm_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_experiment_arm_proto_rawDescData = file_google_ads_googleads_v16_resources_experiment_arm_proto_rawDesc + file_google_ads_googleads_v17_resources_experiment_arm_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_experiment_arm_proto_rawDescData = file_google_ads_googleads_v17_resources_experiment_arm_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_experiment_arm_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_experiment_arm_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_experiment_arm_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_experiment_arm_proto_rawDescData) +func file_google_ads_googleads_v17_resources_experiment_arm_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_experiment_arm_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_experiment_arm_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_experiment_arm_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_experiment_arm_proto_rawDescData + return file_google_ads_googleads_v17_resources_experiment_arm_proto_rawDescData } -var file_google_ads_googleads_v16_resources_experiment_arm_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_experiment_arm_proto_goTypes = []interface{}{ - (*ExperimentArm)(nil), // 0: google.ads.googleads.v16.resources.ExperimentArm +var file_google_ads_googleads_v17_resources_experiment_arm_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_experiment_arm_proto_goTypes = []interface{}{ + (*ExperimentArm)(nil), // 0: google.ads.googleads.v17.resources.ExperimentArm } -var file_google_ads_googleads_v16_resources_experiment_arm_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_experiment_arm_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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_resources_experiment_arm_proto_depIdxs = []int 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_experiment_arm_proto_init() } -func file_google_ads_googleads_v16_resources_experiment_arm_proto_init() { - if File_google_ads_googleads_v16_resources_experiment_arm_proto != nil { +func init() { file_google_ads_googleads_v17_resources_experiment_arm_proto_init() } +func file_google_ads_googleads_v17_resources_experiment_arm_proto_init() { + if File_google_ads_googleads_v17_resources_experiment_arm_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_experiment_arm_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_experiment_arm_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ExperimentArm); i { case 0: return &v.state @@ -258,18 +258,18 @@ func file_google_ads_googleads_v16_resources_experiment_arm_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_experiment_arm_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_experiment_arm_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_experiment_arm_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_experiment_arm_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_experiment_arm_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_experiment_arm_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_experiment_arm_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_experiment_arm_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_experiment_arm_proto = out.File - file_google_ads_googleads_v16_resources_experiment_arm_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_experiment_arm_proto_goTypes = nil - file_google_ads_googleads_v16_resources_experiment_arm_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_experiment_arm_proto = out.File + file_google_ads_googleads_v17_resources_experiment_arm_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_experiment_arm_proto_goTypes = nil + file_google_ads_googleads_v17_resources_experiment_arm_proto_depIdxs = nil } diff --git a/resources/extension_feed_item.pb.go b/resources/extension_feed_item.pb.go index c030657e..7428928c 100644 --- a/resources/extension_feed_item.pb.go +++ b/resources/extension_feed_item.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/extension_feed_item.proto +// source: google/ads/googleads/v17/resources/extension_feed_item.proto package resources @@ -52,7 +52,7 @@ type ExtensionFeedItem struct { Id *int64 `protobuf:"varint,25,opt,name=id,proto3,oneof" json:"id,omitempty"` // Output only. The extension type of the extension feed item. // This field is read-only. - ExtensionType enums.ExtensionTypeEnum_ExtensionType `protobuf:"varint,13,opt,name=extension_type,json=extensionType,proto3,enum=google.ads.googleads.v16.enums.ExtensionTypeEnum_ExtensionType" json:"extension_type,omitempty"` + ExtensionType enums.ExtensionTypeEnum_ExtensionType `protobuf:"varint,13,opt,name=extension_type,json=extensionType,proto3,enum=google.ads.googleads.v17.enums.ExtensionTypeEnum_ExtensionType" json:"extension_type,omitempty"` // Start time in which this feed item is effective and can begin serving. The // time is in the customer's time zone. // The format is "YYYY-MM-DD HH:MM:SS". @@ -68,14 +68,14 @@ type ExtensionFeedItem struct { // per day. AdSchedules []*common.AdScheduleInfo `protobuf:"bytes,16,rep,name=ad_schedules,json=adSchedules,proto3" json:"ad_schedules,omitempty"` // The targeted device. - Device enums.FeedItemTargetDeviceEnum_FeedItemTargetDevice `protobuf:"varint,17,opt,name=device,proto3,enum=google.ads.googleads.v16.enums.FeedItemTargetDeviceEnum_FeedItemTargetDevice" json:"device,omitempty"` + Device enums.FeedItemTargetDeviceEnum_FeedItemTargetDevice `protobuf:"varint,17,opt,name=device,proto3,enum=google.ads.googleads.v17.enums.FeedItemTargetDeviceEnum_FeedItemTargetDevice" json:"device,omitempty"` // The targeted geo target constant. TargetedGeoTargetConstant *string `protobuf:"bytes,30,opt,name=targeted_geo_target_constant,json=targetedGeoTargetConstant,proto3,oneof" json:"targeted_geo_target_constant,omitempty"` // The targeted keyword. TargetedKeyword *common.KeywordInfo `protobuf:"bytes,22,opt,name=targeted_keyword,json=targetedKeyword,proto3" json:"targeted_keyword,omitempty"` // Output only. Status of the feed item. // This field is read-only. - Status enums.FeedItemStatusEnum_FeedItemStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.FeedItemStatusEnum_FeedItemStatus" json:"status,omitempty"` + Status enums.FeedItemStatusEnum_FeedItemStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.FeedItemStatusEnum_FeedItemStatus" json:"status,omitempty"` // Extension type. // // Types that are assignable to Extension: @@ -106,7 +106,7 @@ type ExtensionFeedItem struct { func (x *ExtensionFeedItem) Reset() { *x = ExtensionFeedItem{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_extension_feed_item_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_extension_feed_item_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -119,7 +119,7 @@ func (x *ExtensionFeedItem) String() string { func (*ExtensionFeedItem) ProtoMessage() {} func (x *ExtensionFeedItem) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_extension_feed_item_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_extension_feed_item_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -132,7 +132,7 @@ func (x *ExtensionFeedItem) ProtoReflect() protoreflect.Message { // Deprecated: Use ExtensionFeedItem.ProtoReflect.Descriptor instead. func (*ExtensionFeedItem) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_extension_feed_item_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_extension_feed_item_proto_rawDescGZIP(), []int{0} } func (x *ExtensionFeedItem) GetResourceName() string { @@ -425,30 +425,30 @@ func (*ExtensionFeedItem_TargetedCampaign) isExtensionFeedItem_ServingResourceTa func (*ExtensionFeedItem_TargetedAdGroup) isExtensionFeedItem_ServingResourceTargeting() {} -var File_google_ads_googleads_v16_resources_extension_feed_item_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_extension_feed_item_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_extension_feed_item_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_extension_feed_item_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, 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, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 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, 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, + 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, 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, + 0x6f, 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, 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, + 0x2f, 0x67, 0x6f, 0x6f, 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, 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, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, + 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, 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, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, @@ -466,7 +466,7 @@ var file_google_ads_googleads_v16_resources_extension_feed_item_proto_rawDesc = 0x88, 0x01, 0x01, 0x12, 0x6b, 0x0a, 0x0e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0d, 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, 0x45, 0x78, 0x74, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0d, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, @@ -478,12 +478,12 @@ var file_google_ads_googleads_v16_resources_extension_feed_item_proto_rawDesc = 0x69, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x52, 0x0a, 0x0c, 0x61, 0x64, 0x5f, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x73, 0x18, 0x10, 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, 0x0b, 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x73, 0x12, 0x65, 0x0a, 0x06, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x18, 0x11, 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, 0x65, 0x65, 0x64, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x52, 0x06, 0x64, 0x65, 0x76, 0x69, 0x63, @@ -497,76 +497,76 @@ var file_google_ads_googleads_v16_resources_extension_feed_item_proto_rawDesc = 0x73, 0x74, 0x61, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x57, 0x0a, 0x10, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x65, 0x64, 0x5f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 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, + 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, 0x0f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x65, 0x64, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x5e, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 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, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x61, 0x0a, 0x12, 0x73, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x18, 0x02, 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, 0x53, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x00, 0x52, 0x10, 0x73, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x7d, 0x0a, 0x1c, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x75, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x6e, 0x69, 0x70, 0x70, 0x65, 0x74, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 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, 0x53, 0x74, 0x72, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x75, 0x72, 0x65, 0x64, 0x53, 0x6e, 0x69, 0x70, 0x70, 0x65, 0x74, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x00, 0x52, 0x19, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x75, 0x72, 0x65, 0x64, 0x53, 0x6e, 0x69, 0x70, 0x70, 0x65, 0x74, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x52, 0x0a, 0x0d, 0x61, 0x70, 0x70, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x18, 0x07, 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, 0x70, 0x70, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x70, 0x70, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x00, 0x52, 0x0b, 0x61, 0x70, 0x70, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x55, 0x0a, 0x0e, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 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, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x00, 0x52, 0x0c, 0x63, 0x61, 0x6c, 0x6c, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x5e, 0x0a, 0x11, 0x63, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x18, 0x09, 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, 0x43, 0x61, 0x6c, 0x6c, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x00, 0x52, 0x0f, 0x63, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x6b, 0x0a, 0x16, 0x74, 0x65, 0x78, 0x74, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x18, 0x0a, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x65, 0x78, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x00, 0x52, 0x13, 0x74, 0x65, 0x78, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x58, 0x0a, 0x0f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x18, 0x0b, 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, 0x50, 0x72, 0x69, 0x63, 0x65, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x00, 0x52, 0x0d, 0x70, 0x72, 0x69, 0x63, 0x65, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x64, 0x0a, 0x13, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x18, 0x0c, 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, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x00, 0x52, 0x11, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x66, 0x0a, 0x12, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x18, 0x0e, 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, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, + 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x10, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x82, 0x01, 0x0a, 0x1c, 0x61, 0x66, 0x66, 0x69, 0x6c, 0x69, 0x61, 0x74, 0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x18, 0x0f, 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, 0x41, 0x66, 0x66, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x66, 0x66, 0x69, 0x6c, 0x69, 0x61, 0x74, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x19, 0x61, 0x66, 0x66, 0x69, 0x6c, 0x69, 0x61, 0x74, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, @@ -574,13 +574,13 @@ var file_google_ads_googleads_v16_resources_extension_feed_item_proto_rawDesc = 0x6c, 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x18, 0x17, 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, 0x48, 0x6f, 0x74, 0x65, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x43, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x00, 0x52, 0x14, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x43, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x5d, 0x0a, 0x0f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x18, 0x1f, 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, + 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, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0d, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x55, 0x0a, 0x11, 0x74, 0x61, 0x72, 0x67, 0x65, @@ -610,75 +610,75 @@ var file_google_ads_googleads_v16_resources_extension_feed_item_proto_rawDesc = 0x65, 0x74, 0x65, 0x64, 0x5f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x42, 0x88, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x16, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 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_extension_feed_item_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_extension_feed_item_proto_rawDescData = file_google_ads_googleads_v16_resources_extension_feed_item_proto_rawDesc + file_google_ads_googleads_v17_resources_extension_feed_item_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_extension_feed_item_proto_rawDescData = file_google_ads_googleads_v17_resources_extension_feed_item_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_extension_feed_item_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_extension_feed_item_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_extension_feed_item_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_extension_feed_item_proto_rawDescData) +func file_google_ads_googleads_v17_resources_extension_feed_item_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_extension_feed_item_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_extension_feed_item_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_extension_feed_item_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_extension_feed_item_proto_rawDescData -} - -var file_google_ads_googleads_v16_resources_extension_feed_item_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_extension_feed_item_proto_goTypes = []interface{}{ - (*ExtensionFeedItem)(nil), // 0: google.ads.googleads.v16.resources.ExtensionFeedItem - (enums.ExtensionTypeEnum_ExtensionType)(0), // 1: google.ads.googleads.v16.enums.ExtensionTypeEnum.ExtensionType - (*common.AdScheduleInfo)(nil), // 2: google.ads.googleads.v16.common.AdScheduleInfo - (enums.FeedItemTargetDeviceEnum_FeedItemTargetDevice)(0), // 3: google.ads.googleads.v16.enums.FeedItemTargetDeviceEnum.FeedItemTargetDevice - (*common.KeywordInfo)(nil), // 4: google.ads.googleads.v16.common.KeywordInfo - (enums.FeedItemStatusEnum_FeedItemStatus)(0), // 5: google.ads.googleads.v16.enums.FeedItemStatusEnum.FeedItemStatus - (*common.SitelinkFeedItem)(nil), // 6: google.ads.googleads.v16.common.SitelinkFeedItem - (*common.StructuredSnippetFeedItem)(nil), // 7: google.ads.googleads.v16.common.StructuredSnippetFeedItem - (*common.AppFeedItem)(nil), // 8: google.ads.googleads.v16.common.AppFeedItem - (*common.CallFeedItem)(nil), // 9: google.ads.googleads.v16.common.CallFeedItem - (*common.CalloutFeedItem)(nil), // 10: google.ads.googleads.v16.common.CalloutFeedItem - (*common.TextMessageFeedItem)(nil), // 11: google.ads.googleads.v16.common.TextMessageFeedItem - (*common.PriceFeedItem)(nil), // 12: google.ads.googleads.v16.common.PriceFeedItem - (*common.PromotionFeedItem)(nil), // 13: google.ads.googleads.v16.common.PromotionFeedItem - (*common.LocationFeedItem)(nil), // 14: google.ads.googleads.v16.common.LocationFeedItem - (*common.AffiliateLocationFeedItem)(nil), // 15: google.ads.googleads.v16.common.AffiliateLocationFeedItem - (*common.HotelCalloutFeedItem)(nil), // 16: google.ads.googleads.v16.common.HotelCalloutFeedItem - (*common.ImageFeedItem)(nil), // 17: google.ads.googleads.v16.common.ImageFeedItem -} -var file_google_ads_googleads_v16_resources_extension_feed_item_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.ExtensionFeedItem.extension_type:type_name -> google.ads.googleads.v16.enums.ExtensionTypeEnum.ExtensionType - 2, // 1: google.ads.googleads.v16.resources.ExtensionFeedItem.ad_schedules:type_name -> google.ads.googleads.v16.common.AdScheduleInfo - 3, // 2: google.ads.googleads.v16.resources.ExtensionFeedItem.device:type_name -> google.ads.googleads.v16.enums.FeedItemTargetDeviceEnum.FeedItemTargetDevice - 4, // 3: google.ads.googleads.v16.resources.ExtensionFeedItem.targeted_keyword:type_name -> google.ads.googleads.v16.common.KeywordInfo - 5, // 4: google.ads.googleads.v16.resources.ExtensionFeedItem.status:type_name -> google.ads.googleads.v16.enums.FeedItemStatusEnum.FeedItemStatus - 6, // 5: google.ads.googleads.v16.resources.ExtensionFeedItem.sitelink_feed_item:type_name -> google.ads.googleads.v16.common.SitelinkFeedItem - 7, // 6: google.ads.googleads.v16.resources.ExtensionFeedItem.structured_snippet_feed_item:type_name -> google.ads.googleads.v16.common.StructuredSnippetFeedItem - 8, // 7: google.ads.googleads.v16.resources.ExtensionFeedItem.app_feed_item:type_name -> google.ads.googleads.v16.common.AppFeedItem - 9, // 8: google.ads.googleads.v16.resources.ExtensionFeedItem.call_feed_item:type_name -> google.ads.googleads.v16.common.CallFeedItem - 10, // 9: google.ads.googleads.v16.resources.ExtensionFeedItem.callout_feed_item:type_name -> google.ads.googleads.v16.common.CalloutFeedItem - 11, // 10: google.ads.googleads.v16.resources.ExtensionFeedItem.text_message_feed_item:type_name -> google.ads.googleads.v16.common.TextMessageFeedItem - 12, // 11: google.ads.googleads.v16.resources.ExtensionFeedItem.price_feed_item:type_name -> google.ads.googleads.v16.common.PriceFeedItem - 13, // 12: google.ads.googleads.v16.resources.ExtensionFeedItem.promotion_feed_item:type_name -> google.ads.googleads.v16.common.PromotionFeedItem - 14, // 13: google.ads.googleads.v16.resources.ExtensionFeedItem.location_feed_item:type_name -> google.ads.googleads.v16.common.LocationFeedItem - 15, // 14: google.ads.googleads.v16.resources.ExtensionFeedItem.affiliate_location_feed_item:type_name -> google.ads.googleads.v16.common.AffiliateLocationFeedItem - 16, // 15: google.ads.googleads.v16.resources.ExtensionFeedItem.hotel_callout_feed_item:type_name -> google.ads.googleads.v16.common.HotelCalloutFeedItem - 17, // 16: google.ads.googleads.v16.resources.ExtensionFeedItem.image_feed_item:type_name -> google.ads.googleads.v16.common.ImageFeedItem + return file_google_ads_googleads_v17_resources_extension_feed_item_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_extension_feed_item_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_extension_feed_item_proto_goTypes = []interface{}{ + (*ExtensionFeedItem)(nil), // 0: google.ads.googleads.v17.resources.ExtensionFeedItem + (enums.ExtensionTypeEnum_ExtensionType)(0), // 1: google.ads.googleads.v17.enums.ExtensionTypeEnum.ExtensionType + (*common.AdScheduleInfo)(nil), // 2: google.ads.googleads.v17.common.AdScheduleInfo + (enums.FeedItemTargetDeviceEnum_FeedItemTargetDevice)(0), // 3: google.ads.googleads.v17.enums.FeedItemTargetDeviceEnum.FeedItemTargetDevice + (*common.KeywordInfo)(nil), // 4: google.ads.googleads.v17.common.KeywordInfo + (enums.FeedItemStatusEnum_FeedItemStatus)(0), // 5: google.ads.googleads.v17.enums.FeedItemStatusEnum.FeedItemStatus + (*common.SitelinkFeedItem)(nil), // 6: google.ads.googleads.v17.common.SitelinkFeedItem + (*common.StructuredSnippetFeedItem)(nil), // 7: google.ads.googleads.v17.common.StructuredSnippetFeedItem + (*common.AppFeedItem)(nil), // 8: google.ads.googleads.v17.common.AppFeedItem + (*common.CallFeedItem)(nil), // 9: google.ads.googleads.v17.common.CallFeedItem + (*common.CalloutFeedItem)(nil), // 10: google.ads.googleads.v17.common.CalloutFeedItem + (*common.TextMessageFeedItem)(nil), // 11: google.ads.googleads.v17.common.TextMessageFeedItem + (*common.PriceFeedItem)(nil), // 12: google.ads.googleads.v17.common.PriceFeedItem + (*common.PromotionFeedItem)(nil), // 13: google.ads.googleads.v17.common.PromotionFeedItem + (*common.LocationFeedItem)(nil), // 14: google.ads.googleads.v17.common.LocationFeedItem + (*common.AffiliateLocationFeedItem)(nil), // 15: google.ads.googleads.v17.common.AffiliateLocationFeedItem + (*common.HotelCalloutFeedItem)(nil), // 16: google.ads.googleads.v17.common.HotelCalloutFeedItem + (*common.ImageFeedItem)(nil), // 17: google.ads.googleads.v17.common.ImageFeedItem +} +var file_google_ads_googleads_v17_resources_extension_feed_item_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.ExtensionFeedItem.extension_type:type_name -> google.ads.googleads.v17.enums.ExtensionTypeEnum.ExtensionType + 2, // 1: google.ads.googleads.v17.resources.ExtensionFeedItem.ad_schedules:type_name -> google.ads.googleads.v17.common.AdScheduleInfo + 3, // 2: google.ads.googleads.v17.resources.ExtensionFeedItem.device:type_name -> google.ads.googleads.v17.enums.FeedItemTargetDeviceEnum.FeedItemTargetDevice + 4, // 3: google.ads.googleads.v17.resources.ExtensionFeedItem.targeted_keyword:type_name -> google.ads.googleads.v17.common.KeywordInfo + 5, // 4: google.ads.googleads.v17.resources.ExtensionFeedItem.status:type_name -> google.ads.googleads.v17.enums.FeedItemStatusEnum.FeedItemStatus + 6, // 5: google.ads.googleads.v17.resources.ExtensionFeedItem.sitelink_feed_item:type_name -> google.ads.googleads.v17.common.SitelinkFeedItem + 7, // 6: google.ads.googleads.v17.resources.ExtensionFeedItem.structured_snippet_feed_item:type_name -> google.ads.googleads.v17.common.StructuredSnippetFeedItem + 8, // 7: google.ads.googleads.v17.resources.ExtensionFeedItem.app_feed_item:type_name -> google.ads.googleads.v17.common.AppFeedItem + 9, // 8: google.ads.googleads.v17.resources.ExtensionFeedItem.call_feed_item:type_name -> google.ads.googleads.v17.common.CallFeedItem + 10, // 9: google.ads.googleads.v17.resources.ExtensionFeedItem.callout_feed_item:type_name -> google.ads.googleads.v17.common.CalloutFeedItem + 11, // 10: google.ads.googleads.v17.resources.ExtensionFeedItem.text_message_feed_item:type_name -> google.ads.googleads.v17.common.TextMessageFeedItem + 12, // 11: google.ads.googleads.v17.resources.ExtensionFeedItem.price_feed_item:type_name -> google.ads.googleads.v17.common.PriceFeedItem + 13, // 12: google.ads.googleads.v17.resources.ExtensionFeedItem.promotion_feed_item:type_name -> google.ads.googleads.v17.common.PromotionFeedItem + 14, // 13: google.ads.googleads.v17.resources.ExtensionFeedItem.location_feed_item:type_name -> google.ads.googleads.v17.common.LocationFeedItem + 15, // 14: google.ads.googleads.v17.resources.ExtensionFeedItem.affiliate_location_feed_item:type_name -> google.ads.googleads.v17.common.AffiliateLocationFeedItem + 16, // 15: google.ads.googleads.v17.resources.ExtensionFeedItem.hotel_callout_feed_item:type_name -> google.ads.googleads.v17.common.HotelCalloutFeedItem + 17, // 16: google.ads.googleads.v17.resources.ExtensionFeedItem.image_feed_item:type_name -> google.ads.googleads.v17.common.ImageFeedItem 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 @@ -686,13 +686,13 @@ var file_google_ads_googleads_v16_resources_extension_feed_item_proto_depIdxs = 0, // [0:17] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_extension_feed_item_proto_init() } -func file_google_ads_googleads_v16_resources_extension_feed_item_proto_init() { - if File_google_ads_googleads_v16_resources_extension_feed_item_proto != nil { +func init() { file_google_ads_googleads_v17_resources_extension_feed_item_proto_init() } +func file_google_ads_googleads_v17_resources_extension_feed_item_proto_init() { + if File_google_ads_googleads_v17_resources_extension_feed_item_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_extension_feed_item_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_extension_feed_item_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ExtensionFeedItem); i { case 0: return &v.state @@ -705,7 +705,7 @@ func file_google_ads_googleads_v16_resources_extension_feed_item_proto_init() { } } } - file_google_ads_googleads_v16_resources_extension_feed_item_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_extension_feed_item_proto_msgTypes[0].OneofWrappers = []interface{}{ (*ExtensionFeedItem_SitelinkFeedItem)(nil), (*ExtensionFeedItem_StructuredSnippetFeedItem)(nil), (*ExtensionFeedItem_AppFeedItem)(nil), @@ -725,18 +725,18 @@ func file_google_ads_googleads_v16_resources_extension_feed_item_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_extension_feed_item_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_extension_feed_item_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_extension_feed_item_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_extension_feed_item_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_extension_feed_item_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_extension_feed_item_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_extension_feed_item_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_extension_feed_item_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_extension_feed_item_proto = out.File - file_google_ads_googleads_v16_resources_extension_feed_item_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_extension_feed_item_proto_goTypes = nil - file_google_ads_googleads_v16_resources_extension_feed_item_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_extension_feed_item_proto = out.File + file_google_ads_googleads_v17_resources_extension_feed_item_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_extension_feed_item_proto_goTypes = nil + file_google_ads_googleads_v17_resources_extension_feed_item_proto_depIdxs = nil } diff --git a/resources/feed.pb.go b/resources/feed.pb.go index b6bed4f7..e7bd9fa4 100644 --- a/resources/feed.pb.go +++ b/resources/feed.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/feed.proto +// source: google/ads/googleads/v17/resources/feed.proto package resources @@ -73,11 +73,11 @@ func (x FeedAttributeOperation_Operator) String() string { } func (FeedAttributeOperation_Operator) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v16_resources_feed_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v17_resources_feed_proto_enumTypes[0].Descriptor() } func (FeedAttributeOperation_Operator) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v16_resources_feed_proto_enumTypes[0] + return &file_google_ads_googleads_v17_resources_feed_proto_enumTypes[0] } func (x FeedAttributeOperation_Operator) Number() protoreflect.EnumNumber { @@ -86,7 +86,7 @@ func (x FeedAttributeOperation_Operator) Number() protoreflect.EnumNumber { // Deprecated: Use FeedAttributeOperation_Operator.Descriptor instead. func (FeedAttributeOperation_Operator) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_feed_proto_rawDescGZIP(), []int{2, 0} + return file_google_ads_googleads_v17_resources_feed_proto_rawDescGZIP(), []int{2, 0} } // A feed. @@ -114,10 +114,10 @@ type Feed struct { // be added, not removed. AttributeOperations []*FeedAttributeOperation `protobuf:"bytes,9,rep,name=attribute_operations,json=attributeOperations,proto3" json:"attribute_operations,omitempty"` // Immutable. Specifies who manages the FeedAttributes for the Feed. - Origin enums.FeedOriginEnum_FeedOrigin `protobuf:"varint,5,opt,name=origin,proto3,enum=google.ads.googleads.v16.enums.FeedOriginEnum_FeedOrigin" json:"origin,omitempty"` + Origin enums.FeedOriginEnum_FeedOrigin `protobuf:"varint,5,opt,name=origin,proto3,enum=google.ads.googleads.v17.enums.FeedOriginEnum_FeedOrigin" json:"origin,omitempty"` // Output only. Status of the feed. // This field is read-only. - Status enums.FeedStatusEnum_FeedStatus `protobuf:"varint,8,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.FeedStatusEnum_FeedStatus" json:"status,omitempty"` + Status enums.FeedStatusEnum_FeedStatus `protobuf:"varint,8,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.FeedStatusEnum_FeedStatus" json:"status,omitempty"` // The system data for the Feed. This data specifies information for // generating the feed items of the system generated feed. // @@ -131,7 +131,7 @@ type Feed struct { func (x *Feed) Reset() { *x = Feed{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_feed_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_feed_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -144,7 +144,7 @@ func (x *Feed) String() string { func (*Feed) ProtoMessage() {} func (x *Feed) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_feed_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_feed_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -157,7 +157,7 @@ func (x *Feed) ProtoReflect() protoreflect.Message { // Deprecated: Use Feed.ProtoReflect.Descriptor instead. func (*Feed) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_feed_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_feed_proto_rawDescGZIP(), []int{0} } func (x *Feed) GetResourceName() string { @@ -263,7 +263,7 @@ type FeedAttribute struct { // The name of the attribute. Required. Name *string `protobuf:"bytes,6,opt,name=name,proto3,oneof" json:"name,omitempty"` // Data type for feed attribute. Required. - Type enums.FeedAttributeTypeEnum_FeedAttributeType `protobuf:"varint,3,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.FeedAttributeTypeEnum_FeedAttributeType" json:"type,omitempty"` + Type enums.FeedAttributeTypeEnum_FeedAttributeType `protobuf:"varint,3,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.FeedAttributeTypeEnum_FeedAttributeType" json:"type,omitempty"` // Indicates that data corresponding to this attribute is part of a // FeedItem's unique key. It defaults to false if it is unspecified. Note // that a unique key is not required in a Feed's schema, in which case the @@ -274,7 +274,7 @@ type FeedAttribute struct { func (x *FeedAttribute) Reset() { *x = FeedAttribute{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_feed_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_feed_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -287,7 +287,7 @@ func (x *FeedAttribute) String() string { func (*FeedAttribute) ProtoMessage() {} func (x *FeedAttribute) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_feed_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_feed_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -300,7 +300,7 @@ func (x *FeedAttribute) ProtoReflect() protoreflect.Message { // Deprecated: Use FeedAttribute.ProtoReflect.Descriptor instead. func (*FeedAttribute) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_feed_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_resources_feed_proto_rawDescGZIP(), []int{1} } func (x *FeedAttribute) GetId() int64 { @@ -338,7 +338,7 @@ type FeedAttributeOperation struct { unknownFields protoimpl.UnknownFields // Output only. Type of list operation to perform. - Operator FeedAttributeOperation_Operator `protobuf:"varint,1,opt,name=operator,proto3,enum=google.ads.googleads.v16.resources.FeedAttributeOperation_Operator" json:"operator,omitempty"` + Operator FeedAttributeOperation_Operator `protobuf:"varint,1,opt,name=operator,proto3,enum=google.ads.googleads.v17.resources.FeedAttributeOperation_Operator" json:"operator,omitempty"` // Output only. The feed attribute being added to the list. Value *FeedAttribute `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` } @@ -346,7 +346,7 @@ type FeedAttributeOperation struct { func (x *FeedAttributeOperation) Reset() { *x = FeedAttributeOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_feed_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_feed_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -359,7 +359,7 @@ func (x *FeedAttributeOperation) String() string { func (*FeedAttributeOperation) ProtoMessage() {} func (x *FeedAttributeOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_feed_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_feed_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -372,7 +372,7 @@ func (x *FeedAttributeOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use FeedAttributeOperation.ProtoReflect.Descriptor instead. func (*FeedAttributeOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_feed_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_resources_feed_proto_rawDescGZIP(), []int{2} } func (x *FeedAttributeOperation) GetOperator() FeedAttributeOperation_Operator { @@ -426,7 +426,7 @@ type Feed_PlacesLocationFeedData struct { func (x *Feed_PlacesLocationFeedData) Reset() { *x = Feed_PlacesLocationFeedData{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_feed_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_feed_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -439,7 +439,7 @@ func (x *Feed_PlacesLocationFeedData) String() string { func (*Feed_PlacesLocationFeedData) ProtoMessage() {} func (x *Feed_PlacesLocationFeedData) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_feed_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_feed_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -452,7 +452,7 @@ func (x *Feed_PlacesLocationFeedData) ProtoReflect() protoreflect.Message { // Deprecated: Use Feed_PlacesLocationFeedData.ProtoReflect.Descriptor instead. func (*Feed_PlacesLocationFeedData) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_feed_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v17_resources_feed_proto_rawDescGZIP(), []int{0, 0} } func (x *Feed_PlacesLocationFeedData) GetOauthInfo() *Feed_PlacesLocationFeedData_OAuthInfo { @@ -508,13 +508,13 @@ type Feed_AffiliateLocationFeedData struct { // locations from. ChainIds []int64 `protobuf:"varint,3,rep,packed,name=chain_ids,json=chainIds,proto3" json:"chain_ids,omitempty"` // The relationship the chains have with the advertiser. - RelationshipType enums.AffiliateLocationFeedRelationshipTypeEnum_AffiliateLocationFeedRelationshipType `protobuf:"varint,2,opt,name=relationship_type,json=relationshipType,proto3,enum=google.ads.googleads.v16.enums.AffiliateLocationFeedRelationshipTypeEnum_AffiliateLocationFeedRelationshipType" json:"relationship_type,omitempty"` + RelationshipType enums.AffiliateLocationFeedRelationshipTypeEnum_AffiliateLocationFeedRelationshipType `protobuf:"varint,2,opt,name=relationship_type,json=relationshipType,proto3,enum=google.ads.googleads.v17.enums.AffiliateLocationFeedRelationshipTypeEnum_AffiliateLocationFeedRelationshipType" json:"relationship_type,omitempty"` } func (x *Feed_AffiliateLocationFeedData) Reset() { *x = Feed_AffiliateLocationFeedData{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_feed_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_resources_feed_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -527,7 +527,7 @@ func (x *Feed_AffiliateLocationFeedData) String() string { func (*Feed_AffiliateLocationFeedData) ProtoMessage() {} func (x *Feed_AffiliateLocationFeedData) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_feed_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_resources_feed_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -540,7 +540,7 @@ func (x *Feed_AffiliateLocationFeedData) ProtoReflect() protoreflect.Message { // Deprecated: Use Feed_AffiliateLocationFeedData.ProtoReflect.Descriptor instead. func (*Feed_AffiliateLocationFeedData) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_feed_proto_rawDescGZIP(), []int{0, 1} + return file_google_ads_googleads_v17_resources_feed_proto_rawDescGZIP(), []int{0, 1} } func (x *Feed_AffiliateLocationFeedData) GetChainIds() []int64 { @@ -574,7 +574,7 @@ type Feed_PlacesLocationFeedData_OAuthInfo struct { func (x *Feed_PlacesLocationFeedData_OAuthInfo) Reset() { *x = Feed_PlacesLocationFeedData_OAuthInfo{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_feed_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_resources_feed_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -587,7 +587,7 @@ func (x *Feed_PlacesLocationFeedData_OAuthInfo) String() string { func (*Feed_PlacesLocationFeedData_OAuthInfo) ProtoMessage() {} func (x *Feed_PlacesLocationFeedData_OAuthInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_feed_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_resources_feed_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 *Feed_PlacesLocationFeedData_OAuthInfo) ProtoReflect() protoreflect.Mess // Deprecated: Use Feed_PlacesLocationFeedData_OAuthInfo.ProtoReflect.Descriptor instead. func (*Feed_PlacesLocationFeedData_OAuthInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_feed_proto_rawDescGZIP(), []int{0, 0, 0} + return file_google_ads_googleads_v17_resources_feed_proto_rawDescGZIP(), []int{0, 0, 0} } func (x *Feed_PlacesLocationFeedData_OAuthInfo) GetHttpMethod() string { @@ -624,28 +624,28 @@ func (x *Feed_PlacesLocationFeedData_OAuthInfo) GetHttpAuthorizationHeader() str return "" } -var File_google_ads_googleads_v16_resources_feed_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_feed_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_feed_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_feed_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, 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, 0x66, 0x65, 0x65, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, + 0x67, 0x6f, 0x6f, 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, 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, + 0x67, 0x6f, 0x6f, 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, 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, 0x66, 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, 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, + 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, 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, @@ -662,31 +662,31 @@ var file_google_ads_googleads_v16_resources_feed_proto_rawDesc = []byte{ 0x02, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x51, 0x0a, 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x18, 0x04, 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, 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, 0x46, 0x65, 0x65, 0x64, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x52, 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x12, 0x6d, 0x0a, 0x14, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x09, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x13, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x56, 0x0a, 0x06, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 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, 0x46, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x4f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x4f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x52, 0x06, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x12, 0x56, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x08, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x7c, 0x0a, 0x19, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x73, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0x06, 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, 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, 0x46, 0x65, 0x65, 0x64, 0x2e, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x73, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x44, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, 0x16, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x73, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, @@ -694,7 +694,7 @@ var file_google_ads_googleads_v16_resources_feed_proto_rawDesc = []byte{ 0x66, 0x66, 0x69, 0x6c, 0x69, 0x61, 0x74, 0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0x07, 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, 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, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x2e, 0x41, 0x66, 0x66, 0x69, 0x6c, 0x69, 0x61, 0x74, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x44, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, 0x19, 0x61, 0x66, 0x66, 0x69, 0x6c, 0x69, 0x61, @@ -703,7 +703,7 @@ var file_google_ads_googleads_v16_resources_feed_proto_rawDesc = []byte{ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x44, 0x61, 0x74, 0x61, 0x12, 0x6d, 0x0a, 0x0a, 0x6f, 0x61, 0x75, 0x74, 0x68, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01, 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, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x2e, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x73, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x4f, 0x41, 0x75, 0x74, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, @@ -746,7 +746,7 @@ var file_google_ads_googleads_v16_resources_feed_proto_rawDesc = []byte{ 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x6f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 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, 0x66, 0x66, 0x69, 0x6c, 0x69, 0x61, 0x74, + 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x41, 0x66, 0x66, 0x69, 0x6c, 0x69, 0x61, 0x74, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74, @@ -766,7 +766,7 @@ var file_google_ads_googleads_v16_resources_feed_proto_rawDesc = []byte{ 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x5b, 0x0a, 0x04, 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, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, @@ -779,13 +779,13 @@ var file_google_ads_googleads_v16_resources_feed_proto_rawDesc = []byte{ 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x64, 0x0a, 0x08, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 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, 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, 0x46, 0x65, 0x65, 0x64, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x08, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x12, 0x4c, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 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, 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, 0x46, 0x65, 0x65, 0x64, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x31, 0x0a, 0x08, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, @@ -793,62 +793,62 @@ var file_google_ads_googleads_v16_resources_feed_proto_rawDesc = []byte{ 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x07, 0x0a, 0x03, 0x41, 0x44, 0x44, 0x10, 0x02, 0x42, 0xfb, 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, 0x09, 0x46, 0x65, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x09, 0x46, 0x65, 0x65, 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, + 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, + 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, 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, + 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_feed_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_feed_proto_rawDescData = file_google_ads_googleads_v16_resources_feed_proto_rawDesc + file_google_ads_googleads_v17_resources_feed_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_feed_proto_rawDescData = file_google_ads_googleads_v17_resources_feed_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_feed_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_feed_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_feed_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_feed_proto_rawDescData) +func file_google_ads_googleads_v17_resources_feed_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_feed_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_feed_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_feed_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_feed_proto_rawDescData -} - -var file_google_ads_googleads_v16_resources_feed_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v16_resources_feed_proto_msgTypes = make([]protoimpl.MessageInfo, 6) -var file_google_ads_googleads_v16_resources_feed_proto_goTypes = []interface{}{ - (FeedAttributeOperation_Operator)(0), // 0: google.ads.googleads.v16.resources.FeedAttributeOperation.Operator - (*Feed)(nil), // 1: google.ads.googleads.v16.resources.Feed - (*FeedAttribute)(nil), // 2: google.ads.googleads.v16.resources.FeedAttribute - (*FeedAttributeOperation)(nil), // 3: google.ads.googleads.v16.resources.FeedAttributeOperation - (*Feed_PlacesLocationFeedData)(nil), // 4: google.ads.googleads.v16.resources.Feed.PlacesLocationFeedData - (*Feed_AffiliateLocationFeedData)(nil), // 5: google.ads.googleads.v16.resources.Feed.AffiliateLocationFeedData - (*Feed_PlacesLocationFeedData_OAuthInfo)(nil), // 6: google.ads.googleads.v16.resources.Feed.PlacesLocationFeedData.OAuthInfo - (enums.FeedOriginEnum_FeedOrigin)(0), // 7: google.ads.googleads.v16.enums.FeedOriginEnum.FeedOrigin - (enums.FeedStatusEnum_FeedStatus)(0), // 8: google.ads.googleads.v16.enums.FeedStatusEnum.FeedStatus - (enums.FeedAttributeTypeEnum_FeedAttributeType)(0), // 9: google.ads.googleads.v16.enums.FeedAttributeTypeEnum.FeedAttributeType - (enums.AffiliateLocationFeedRelationshipTypeEnum_AffiliateLocationFeedRelationshipType)(0), // 10: google.ads.googleads.v16.enums.AffiliateLocationFeedRelationshipTypeEnum.AffiliateLocationFeedRelationshipType -} -var file_google_ads_googleads_v16_resources_feed_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v16.resources.Feed.attributes:type_name -> google.ads.googleads.v16.resources.FeedAttribute - 3, // 1: google.ads.googleads.v16.resources.Feed.attribute_operations:type_name -> google.ads.googleads.v16.resources.FeedAttributeOperation - 7, // 2: google.ads.googleads.v16.resources.Feed.origin:type_name -> google.ads.googleads.v16.enums.FeedOriginEnum.FeedOrigin - 8, // 3: google.ads.googleads.v16.resources.Feed.status:type_name -> google.ads.googleads.v16.enums.FeedStatusEnum.FeedStatus - 4, // 4: google.ads.googleads.v16.resources.Feed.places_location_feed_data:type_name -> google.ads.googleads.v16.resources.Feed.PlacesLocationFeedData - 5, // 5: google.ads.googleads.v16.resources.Feed.affiliate_location_feed_data:type_name -> google.ads.googleads.v16.resources.Feed.AffiliateLocationFeedData - 9, // 6: google.ads.googleads.v16.resources.FeedAttribute.type:type_name -> google.ads.googleads.v16.enums.FeedAttributeTypeEnum.FeedAttributeType - 0, // 7: google.ads.googleads.v16.resources.FeedAttributeOperation.operator:type_name -> google.ads.googleads.v16.resources.FeedAttributeOperation.Operator - 2, // 8: google.ads.googleads.v16.resources.FeedAttributeOperation.value:type_name -> google.ads.googleads.v16.resources.FeedAttribute - 6, // 9: google.ads.googleads.v16.resources.Feed.PlacesLocationFeedData.oauth_info:type_name -> google.ads.googleads.v16.resources.Feed.PlacesLocationFeedData.OAuthInfo - 10, // 10: google.ads.googleads.v16.resources.Feed.AffiliateLocationFeedData.relationship_type:type_name -> google.ads.googleads.v16.enums.AffiliateLocationFeedRelationshipTypeEnum.AffiliateLocationFeedRelationshipType + return file_google_ads_googleads_v17_resources_feed_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_feed_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v17_resources_feed_proto_msgTypes = make([]protoimpl.MessageInfo, 6) +var file_google_ads_googleads_v17_resources_feed_proto_goTypes = []interface{}{ + (FeedAttributeOperation_Operator)(0), // 0: google.ads.googleads.v17.resources.FeedAttributeOperation.Operator + (*Feed)(nil), // 1: google.ads.googleads.v17.resources.Feed + (*FeedAttribute)(nil), // 2: google.ads.googleads.v17.resources.FeedAttribute + (*FeedAttributeOperation)(nil), // 3: google.ads.googleads.v17.resources.FeedAttributeOperation + (*Feed_PlacesLocationFeedData)(nil), // 4: google.ads.googleads.v17.resources.Feed.PlacesLocationFeedData + (*Feed_AffiliateLocationFeedData)(nil), // 5: google.ads.googleads.v17.resources.Feed.AffiliateLocationFeedData + (*Feed_PlacesLocationFeedData_OAuthInfo)(nil), // 6: google.ads.googleads.v17.resources.Feed.PlacesLocationFeedData.OAuthInfo + (enums.FeedOriginEnum_FeedOrigin)(0), // 7: google.ads.googleads.v17.enums.FeedOriginEnum.FeedOrigin + (enums.FeedStatusEnum_FeedStatus)(0), // 8: google.ads.googleads.v17.enums.FeedStatusEnum.FeedStatus + (enums.FeedAttributeTypeEnum_FeedAttributeType)(0), // 9: google.ads.googleads.v17.enums.FeedAttributeTypeEnum.FeedAttributeType + (enums.AffiliateLocationFeedRelationshipTypeEnum_AffiliateLocationFeedRelationshipType)(0), // 10: google.ads.googleads.v17.enums.AffiliateLocationFeedRelationshipTypeEnum.AffiliateLocationFeedRelationshipType +} +var file_google_ads_googleads_v17_resources_feed_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v17.resources.Feed.attributes:type_name -> google.ads.googleads.v17.resources.FeedAttribute + 3, // 1: google.ads.googleads.v17.resources.Feed.attribute_operations:type_name -> google.ads.googleads.v17.resources.FeedAttributeOperation + 7, // 2: google.ads.googleads.v17.resources.Feed.origin:type_name -> google.ads.googleads.v17.enums.FeedOriginEnum.FeedOrigin + 8, // 3: google.ads.googleads.v17.resources.Feed.status:type_name -> google.ads.googleads.v17.enums.FeedStatusEnum.FeedStatus + 4, // 4: google.ads.googleads.v17.resources.Feed.places_location_feed_data:type_name -> google.ads.googleads.v17.resources.Feed.PlacesLocationFeedData + 5, // 5: google.ads.googleads.v17.resources.Feed.affiliate_location_feed_data:type_name -> google.ads.googleads.v17.resources.Feed.AffiliateLocationFeedData + 9, // 6: google.ads.googleads.v17.resources.FeedAttribute.type:type_name -> google.ads.googleads.v17.enums.FeedAttributeTypeEnum.FeedAttributeType + 0, // 7: google.ads.googleads.v17.resources.FeedAttributeOperation.operator:type_name -> google.ads.googleads.v17.resources.FeedAttributeOperation.Operator + 2, // 8: google.ads.googleads.v17.resources.FeedAttributeOperation.value:type_name -> google.ads.googleads.v17.resources.FeedAttribute + 6, // 9: google.ads.googleads.v17.resources.Feed.PlacesLocationFeedData.oauth_info:type_name -> google.ads.googleads.v17.resources.Feed.PlacesLocationFeedData.OAuthInfo + 10, // 10: google.ads.googleads.v17.resources.Feed.AffiliateLocationFeedData.relationship_type:type_name -> google.ads.googleads.v17.enums.AffiliateLocationFeedRelationshipTypeEnum.AffiliateLocationFeedRelationshipType 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 @@ -856,13 +856,13 @@ var file_google_ads_googleads_v16_resources_feed_proto_depIdxs = []int32{ 0, // [0:11] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_feed_proto_init() } -func file_google_ads_googleads_v16_resources_feed_proto_init() { - if File_google_ads_googleads_v16_resources_feed_proto != nil { +func init() { file_google_ads_googleads_v17_resources_feed_proto_init() } +func file_google_ads_googleads_v17_resources_feed_proto_init() { + if File_google_ads_googleads_v17_resources_feed_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_feed_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_feed_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Feed); i { case 0: return &v.state @@ -874,7 +874,7 @@ func file_google_ads_googleads_v16_resources_feed_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_feed_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_feed_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*FeedAttribute); i { case 0: return &v.state @@ -886,7 +886,7 @@ func file_google_ads_googleads_v16_resources_feed_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_feed_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_feed_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*FeedAttributeOperation); i { case 0: return &v.state @@ -898,7 +898,7 @@ func file_google_ads_googleads_v16_resources_feed_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_feed_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_feed_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Feed_PlacesLocationFeedData); i { case 0: return &v.state @@ -910,7 +910,7 @@ func file_google_ads_googleads_v16_resources_feed_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_feed_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_feed_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Feed_AffiliateLocationFeedData); i { case 0: return &v.state @@ -922,7 +922,7 @@ func file_google_ads_googleads_v16_resources_feed_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_feed_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_feed_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Feed_PlacesLocationFeedData_OAuthInfo); i { case 0: return &v.state @@ -935,30 +935,30 @@ func file_google_ads_googleads_v16_resources_feed_proto_init() { } } } - file_google_ads_googleads_v16_resources_feed_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_feed_proto_msgTypes[0].OneofWrappers = []interface{}{ (*Feed_PlacesLocationFeedData_)(nil), (*Feed_AffiliateLocationFeedData_)(nil), } - file_google_ads_googleads_v16_resources_feed_proto_msgTypes[1].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_feed_proto_msgTypes[3].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_feed_proto_msgTypes[5].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_feed_proto_msgTypes[1].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_feed_proto_msgTypes[3].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_feed_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_resources_feed_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_feed_proto_rawDesc, NumEnums: 1, NumMessages: 6, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_feed_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_feed_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v16_resources_feed_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v16_resources_feed_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_feed_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_feed_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v17_resources_feed_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v17_resources_feed_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_feed_proto = out.File - file_google_ads_googleads_v16_resources_feed_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_feed_proto_goTypes = nil - file_google_ads_googleads_v16_resources_feed_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_feed_proto = out.File + file_google_ads_googleads_v17_resources_feed_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_feed_proto_goTypes = nil + file_google_ads_googleads_v17_resources_feed_proto_depIdxs = nil } diff --git a/resources/feed_item.pb.go b/resources/feed_item.pb.go index 044af265..c8f18684 100644 --- a/resources/feed_item.pb.go +++ b/resources/feed_item.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/feed_item.proto +// source: google/ads/googleads/v17/resources/feed_item.proto package resources @@ -67,13 +67,13 @@ type FeedItem struct { AttributeValues []*FeedItemAttributeValue `protobuf:"bytes,6,rep,name=attribute_values,json=attributeValues,proto3" json:"attribute_values,omitempty"` // Geo targeting restriction specifies the type of location that can be used // for targeting. - GeoTargetingRestriction enums.GeoTargetingRestrictionEnum_GeoTargetingRestriction `protobuf:"varint,7,opt,name=geo_targeting_restriction,json=geoTargetingRestriction,proto3,enum=google.ads.googleads.v16.enums.GeoTargetingRestrictionEnum_GeoTargetingRestriction" json:"geo_targeting_restriction,omitempty"` + GeoTargetingRestriction enums.GeoTargetingRestrictionEnum_GeoTargetingRestriction `protobuf:"varint,7,opt,name=geo_targeting_restriction,json=geoTargetingRestriction,proto3,enum=google.ads.googleads.v17.enums.GeoTargetingRestrictionEnum_GeoTargetingRestriction" json:"geo_targeting_restriction,omitempty"` // The list of mappings used to substitute custom parameter tags in a // `tracking_url_template`, `final_urls`, or `mobile_final_urls`. UrlCustomParameters []*common.CustomParameter `protobuf:"bytes,8,rep,name=url_custom_parameters,json=urlCustomParameters,proto3" json:"url_custom_parameters,omitempty"` // Output only. Status of the feed item. // This field is read-only. - Status enums.FeedItemStatusEnum_FeedItemStatus `protobuf:"varint,9,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.FeedItemStatusEnum_FeedItemStatus" json:"status,omitempty"` + Status enums.FeedItemStatusEnum_FeedItemStatus `protobuf:"varint,9,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.FeedItemStatusEnum_FeedItemStatus" json:"status,omitempty"` // Output only. List of info about a feed item's validation and approval state // for active feed mappings. There will be an entry in the list for each type // of feed mapping associated with the feed, for example, a feed with a @@ -86,7 +86,7 @@ type FeedItem struct { func (x *FeedItem) Reset() { *x = FeedItem{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_feed_item_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_feed_item_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -99,7 +99,7 @@ func (x *FeedItem) String() string { func (*FeedItem) ProtoMessage() {} func (x *FeedItem) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_feed_item_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_feed_item_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -112,7 +112,7 @@ func (x *FeedItem) ProtoReflect() protoreflect.Message { // Deprecated: Use FeedItem.ProtoReflect.Descriptor instead. func (*FeedItem) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_feed_item_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_feed_item_proto_rawDescGZIP(), []int{0} } func (x *FeedItem) GetResourceName() string { @@ -235,7 +235,7 @@ type FeedItemAttributeValue struct { func (x *FeedItemAttributeValue) Reset() { *x = FeedItemAttributeValue{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_feed_item_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_feed_item_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -248,7 +248,7 @@ func (x *FeedItemAttributeValue) String() string { func (*FeedItemAttributeValue) ProtoMessage() {} func (x *FeedItemAttributeValue) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_feed_item_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_feed_item_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -261,7 +261,7 @@ func (x *FeedItemAttributeValue) ProtoReflect() protoreflect.Message { // Deprecated: Use FeedItemAttributeValue.ProtoReflect.Descriptor instead. func (*FeedItemAttributeValue) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_feed_item_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_resources_feed_item_proto_rawDescGZIP(), []int{1} } func (x *FeedItemAttributeValue) GetFeedAttributeId() int64 { @@ -342,31 +342,31 @@ type FeedItemPlaceholderPolicyInfo struct { unknownFields protoimpl.UnknownFields // Output only. The placeholder type. - PlaceholderTypeEnum enums.PlaceholderTypeEnum_PlaceholderType `protobuf:"varint,10,opt,name=placeholder_type_enum,json=placeholderTypeEnum,proto3,enum=google.ads.googleads.v16.enums.PlaceholderTypeEnum_PlaceholderType" json:"placeholder_type_enum,omitempty"` + PlaceholderTypeEnum enums.PlaceholderTypeEnum_PlaceholderType `protobuf:"varint,10,opt,name=placeholder_type_enum,json=placeholderTypeEnum,proto3,enum=google.ads.googleads.v17.enums.PlaceholderTypeEnum_PlaceholderType" json:"placeholder_type_enum,omitempty"` // Output only. The FeedMapping that contains the placeholder type. FeedMappingResourceName *string `protobuf:"bytes,11,opt,name=feed_mapping_resource_name,json=feedMappingResourceName,proto3,oneof" json:"feed_mapping_resource_name,omitempty"` // Output only. Where the placeholder type is in the review process. - ReviewStatus enums.PolicyReviewStatusEnum_PolicyReviewStatus `protobuf:"varint,3,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,3,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 the placeholder type, // calculated based on the status of its individual policy topic entries. - ApprovalStatus enums.PolicyApprovalStatusEnum_PolicyApprovalStatus `protobuf:"varint,4,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,4,opt,name=approval_status,json=approvalStatus,proto3,enum=google.ads.googleads.v17.enums.PolicyApprovalStatusEnum_PolicyApprovalStatus" json:"approval_status,omitempty"` // Output only. The list of policy findings for the placeholder type. PolicyTopicEntries []*common.PolicyTopicEntry `protobuf:"bytes,5,rep,name=policy_topic_entries,json=policyTopicEntries,proto3" json:"policy_topic_entries,omitempty"` // Output only. The validation status of the placeholder type. - ValidationStatus enums.FeedItemValidationStatusEnum_FeedItemValidationStatus `protobuf:"varint,6,opt,name=validation_status,json=validationStatus,proto3,enum=google.ads.googleads.v16.enums.FeedItemValidationStatusEnum_FeedItemValidationStatus" json:"validation_status,omitempty"` + ValidationStatus enums.FeedItemValidationStatusEnum_FeedItemValidationStatus `protobuf:"varint,6,opt,name=validation_status,json=validationStatus,proto3,enum=google.ads.googleads.v17.enums.FeedItemValidationStatusEnum_FeedItemValidationStatus" json:"validation_status,omitempty"` // Output only. List of placeholder type validation errors. ValidationErrors []*FeedItemValidationError `protobuf:"bytes,7,rep,name=validation_errors,json=validationErrors,proto3" json:"validation_errors,omitempty"` // Output only. Placeholder type quality evaluation approval status. - QualityApprovalStatus enums.FeedItemQualityApprovalStatusEnum_FeedItemQualityApprovalStatus `protobuf:"varint,8,opt,name=quality_approval_status,json=qualityApprovalStatus,proto3,enum=google.ads.googleads.v16.enums.FeedItemQualityApprovalStatusEnum_FeedItemQualityApprovalStatus" json:"quality_approval_status,omitempty"` + QualityApprovalStatus enums.FeedItemQualityApprovalStatusEnum_FeedItemQualityApprovalStatus `protobuf:"varint,8,opt,name=quality_approval_status,json=qualityApprovalStatus,proto3,enum=google.ads.googleads.v17.enums.FeedItemQualityApprovalStatusEnum_FeedItemQualityApprovalStatus" json:"quality_approval_status,omitempty"` // Output only. List of placeholder type quality evaluation disapproval // reasons. - QualityDisapprovalReasons []enums.FeedItemQualityDisapprovalReasonEnum_FeedItemQualityDisapprovalReason `protobuf:"varint,9,rep,packed,name=quality_disapproval_reasons,json=qualityDisapprovalReasons,proto3,enum=google.ads.googleads.v16.enums.FeedItemQualityDisapprovalReasonEnum_FeedItemQualityDisapprovalReason" json:"quality_disapproval_reasons,omitempty"` + QualityDisapprovalReasons []enums.FeedItemQualityDisapprovalReasonEnum_FeedItemQualityDisapprovalReason `protobuf:"varint,9,rep,packed,name=quality_disapproval_reasons,json=qualityDisapprovalReasons,proto3,enum=google.ads.googleads.v17.enums.FeedItemQualityDisapprovalReasonEnum_FeedItemQualityDisapprovalReason" json:"quality_disapproval_reasons,omitempty"` } func (x *FeedItemPlaceholderPolicyInfo) Reset() { *x = FeedItemPlaceholderPolicyInfo{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_feed_item_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_feed_item_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -379,7 +379,7 @@ func (x *FeedItemPlaceholderPolicyInfo) String() string { func (*FeedItemPlaceholderPolicyInfo) ProtoMessage() {} func (x *FeedItemPlaceholderPolicyInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_feed_item_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_feed_item_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -392,7 +392,7 @@ func (x *FeedItemPlaceholderPolicyInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use FeedItemPlaceholderPolicyInfo.ProtoReflect.Descriptor instead. func (*FeedItemPlaceholderPolicyInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_feed_item_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_resources_feed_item_proto_rawDescGZIP(), []int{2} } func (x *FeedItemPlaceholderPolicyInfo) GetPlaceholderTypeEnum() enums.PlaceholderTypeEnum_PlaceholderType { @@ -467,7 +467,7 @@ type FeedItemValidationError struct { // Output only. Error code indicating what validation error was triggered. The // description of the error can be found in the 'description' field. - ValidationError errors.FeedItemValidationErrorEnum_FeedItemValidationError `protobuf:"varint,1,opt,name=validation_error,json=validationError,proto3,enum=google.ads.googleads.v16.errors.FeedItemValidationErrorEnum_FeedItemValidationError" json:"validation_error,omitempty"` + ValidationError errors.FeedItemValidationErrorEnum_FeedItemValidationError `protobuf:"varint,1,opt,name=validation_error,json=validationError,proto3,enum=google.ads.googleads.v17.errors.FeedItemValidationErrorEnum_FeedItemValidationError" json:"validation_error,omitempty"` // Output only. The description of the validation error. Description *string `protobuf:"bytes,6,opt,name=description,proto3,oneof" json:"description,omitempty"` // Output only. Set of feed attributes in the feed item flagged during @@ -484,7 +484,7 @@ type FeedItemValidationError struct { func (x *FeedItemValidationError) Reset() { *x = FeedItemValidationError{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_feed_item_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_feed_item_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -497,7 +497,7 @@ func (x *FeedItemValidationError) String() string { func (*FeedItemValidationError) ProtoMessage() {} func (x *FeedItemValidationError) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_feed_item_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_feed_item_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -510,7 +510,7 @@ func (x *FeedItemValidationError) ProtoReflect() protoreflect.Message { // Deprecated: Use FeedItemValidationError.ProtoReflect.Descriptor instead. func (*FeedItemValidationError) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_feed_item_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_resources_feed_item_proto_rawDescGZIP(), []int{3} } func (x *FeedItemValidationError) GetValidationError() errors.FeedItemValidationErrorEnum_FeedItemValidationError { @@ -541,58 +541,58 @@ func (x *FeedItemValidationError) GetExtraInfo() string { return "" } -var File_google_ads_googleads_v16_resources_feed_item_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_feed_item_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_feed_item_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_feed_item_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, 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, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 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, + 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, 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, + 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, + 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, 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, + 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, 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, + 0x6f, 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, 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, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, + 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, 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, + 0x2f, 0x67, 0x6f, 0x6f, 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, 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, 0x66, 0x65, 0x65, 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, 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, 0x67, 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, 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, 0x70, 0x6c, + 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, 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, 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, + 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, 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, 0x66, 0x65, + 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, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, @@ -618,14 +618,14 @@ var file_google_ads_googleads_v16_resources_feed_item_proto_rawDesc = []byte{ 0x54, 0x69, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x65, 0x0a, 0x10, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18, 0x06, 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, 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, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x12, 0x8f, 0x01, 0x0a, 0x19, 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, 0x18, 0x07, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x74, @@ -634,19 +634,19 @@ var file_google_ads_googleads_v16_resources_feed_item_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, 0x08, 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, 0x5e, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x09, 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, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, + 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x69, 0x0a, 0x0c, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x73, 0x18, 0x0a, 0x20, 0x03, 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, 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, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0b, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x49, 0x6e, 0x66, 0x6f, @@ -677,7 +677,7 @@ var file_google_ads_googleads_v16_resources_feed_item_proto_rawDesc = []byte{ 0x62, 0x6c, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x88, 0x01, 0x01, 0x12, 0x47, 0x0a, 0x0b, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 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, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x6e, 0x65, 0x79, 0x52, 0x0a, 0x70, 0x72, 0x69, 0x63, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x65, 0x72, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18, 0x10, 0x20, 0x03, 0x28, 0x03, 0x52, 0x0d, 0x69, 0x6e, @@ -700,7 +700,7 @@ var file_google_ads_googleads_v16_resources_feed_item_proto_rawDesc = []byte{ 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x0a, 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, 0x50, 0x6c, 0x61, 0x63, 0x65, + 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x13, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, @@ -712,14 +712,14 @@ var file_google_ads_googleads_v16_resources_feed_item_proto_rawDesc = []byte{ 0x73, 0x0a, 0x0d, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 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, 0x69, 0x63, 0x79, 0x52, 0x65, + 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, 0x52, 0x0c, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x7b, 0x0a, 0x0f, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 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, 0x42, 0x03, 0xe0, 0x41, @@ -727,14 +727,14 @@ var file_google_ads_googleads_v16_resources_feed_item_proto_rawDesc = []byte{ 0x73, 0x12, 0x68, 0x0a, 0x14, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x5f, 0x65, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x18, 0x05, 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, + 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, 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, 0x87, 0x01, 0x0a, 0x11, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x06, 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, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, + 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, @@ -742,7 +742,7 @@ var file_google_ads_googleads_v16_resources_feed_item_proto_rawDesc = []byte{ 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x6d, 0x0a, 0x11, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x18, 0x07, 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, 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, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x10, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, @@ -750,7 +750,7 @@ var file_google_ads_googleads_v16_resources_feed_item_proto_rawDesc = []byte{ 0x5f, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x08, 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, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, + 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, @@ -760,7 +760,7 @@ var file_google_ads_googleads_v16_resources_feed_item_proto_rawDesc = []byte{ 0x64, 0x69, 0x73, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x73, 0x18, 0x09, 0x20, 0x03, 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, 0x46, 0x65, 0x65, 0x64, 0x49, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x44, @@ -774,7 +774,7 @@ var file_google_ads_googleads_v16_resources_feed_item_proto_rawDesc = []byte{ 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 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, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, + 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, 0x42, 0x03, 0xe0, 0x41, @@ -791,71 +791,71 @@ var file_google_ads_googleads_v16_resources_feed_item_proto_rawDesc = []byte{ 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x65, 0x78, 0x74, 0x72, 0x61, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x42, 0xff, 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, 0x0d, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 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_feed_item_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_feed_item_proto_rawDescData = file_google_ads_googleads_v16_resources_feed_item_proto_rawDesc + file_google_ads_googleads_v17_resources_feed_item_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_feed_item_proto_rawDescData = file_google_ads_googleads_v17_resources_feed_item_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_feed_item_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_feed_item_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_feed_item_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_feed_item_proto_rawDescData) +func file_google_ads_googleads_v17_resources_feed_item_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_feed_item_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_feed_item_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_feed_item_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_feed_item_proto_rawDescData -} - -var file_google_ads_googleads_v16_resources_feed_item_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_resources_feed_item_proto_goTypes = []interface{}{ - (*FeedItem)(nil), // 0: google.ads.googleads.v16.resources.FeedItem - (*FeedItemAttributeValue)(nil), // 1: google.ads.googleads.v16.resources.FeedItemAttributeValue - (*FeedItemPlaceholderPolicyInfo)(nil), // 2: google.ads.googleads.v16.resources.FeedItemPlaceholderPolicyInfo - (*FeedItemValidationError)(nil), // 3: google.ads.googleads.v16.resources.FeedItemValidationError - (enums.GeoTargetingRestrictionEnum_GeoTargetingRestriction)(0), // 4: google.ads.googleads.v16.enums.GeoTargetingRestrictionEnum.GeoTargetingRestriction - (*common.CustomParameter)(nil), // 5: google.ads.googleads.v16.common.CustomParameter - (enums.FeedItemStatusEnum_FeedItemStatus)(0), // 6: google.ads.googleads.v16.enums.FeedItemStatusEnum.FeedItemStatus - (*common.Money)(nil), // 7: google.ads.googleads.v16.common.Money - (enums.PlaceholderTypeEnum_PlaceholderType)(0), // 8: google.ads.googleads.v16.enums.PlaceholderTypeEnum.PlaceholderType - (enums.PolicyReviewStatusEnum_PolicyReviewStatus)(0), // 9: google.ads.googleads.v16.enums.PolicyReviewStatusEnum.PolicyReviewStatus - (enums.PolicyApprovalStatusEnum_PolicyApprovalStatus)(0), // 10: google.ads.googleads.v16.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus - (*common.PolicyTopicEntry)(nil), // 11: google.ads.googleads.v16.common.PolicyTopicEntry - (enums.FeedItemValidationStatusEnum_FeedItemValidationStatus)(0), // 12: google.ads.googleads.v16.enums.FeedItemValidationStatusEnum.FeedItemValidationStatus - (enums.FeedItemQualityApprovalStatusEnum_FeedItemQualityApprovalStatus)(0), // 13: google.ads.googleads.v16.enums.FeedItemQualityApprovalStatusEnum.FeedItemQualityApprovalStatus - (enums.FeedItemQualityDisapprovalReasonEnum_FeedItemQualityDisapprovalReason)(0), // 14: google.ads.googleads.v16.enums.FeedItemQualityDisapprovalReasonEnum.FeedItemQualityDisapprovalReason - (errors.FeedItemValidationErrorEnum_FeedItemValidationError)(0), // 15: google.ads.googleads.v16.errors.FeedItemValidationErrorEnum.FeedItemValidationError -} -var file_google_ads_googleads_v16_resources_feed_item_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.FeedItem.attribute_values:type_name -> google.ads.googleads.v16.resources.FeedItemAttributeValue - 4, // 1: google.ads.googleads.v16.resources.FeedItem.geo_targeting_restriction:type_name -> google.ads.googleads.v16.enums.GeoTargetingRestrictionEnum.GeoTargetingRestriction - 5, // 2: google.ads.googleads.v16.resources.FeedItem.url_custom_parameters:type_name -> google.ads.googleads.v16.common.CustomParameter - 6, // 3: google.ads.googleads.v16.resources.FeedItem.status:type_name -> google.ads.googleads.v16.enums.FeedItemStatusEnum.FeedItemStatus - 2, // 4: google.ads.googleads.v16.resources.FeedItem.policy_infos:type_name -> google.ads.googleads.v16.resources.FeedItemPlaceholderPolicyInfo - 7, // 5: google.ads.googleads.v16.resources.FeedItemAttributeValue.price_value:type_name -> google.ads.googleads.v16.common.Money - 8, // 6: google.ads.googleads.v16.resources.FeedItemPlaceholderPolicyInfo.placeholder_type_enum:type_name -> google.ads.googleads.v16.enums.PlaceholderTypeEnum.PlaceholderType - 9, // 7: google.ads.googleads.v16.resources.FeedItemPlaceholderPolicyInfo.review_status:type_name -> google.ads.googleads.v16.enums.PolicyReviewStatusEnum.PolicyReviewStatus - 10, // 8: google.ads.googleads.v16.resources.FeedItemPlaceholderPolicyInfo.approval_status:type_name -> google.ads.googleads.v16.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus - 11, // 9: google.ads.googleads.v16.resources.FeedItemPlaceholderPolicyInfo.policy_topic_entries:type_name -> google.ads.googleads.v16.common.PolicyTopicEntry - 12, // 10: google.ads.googleads.v16.resources.FeedItemPlaceholderPolicyInfo.validation_status:type_name -> google.ads.googleads.v16.enums.FeedItemValidationStatusEnum.FeedItemValidationStatus - 3, // 11: google.ads.googleads.v16.resources.FeedItemPlaceholderPolicyInfo.validation_errors:type_name -> google.ads.googleads.v16.resources.FeedItemValidationError - 13, // 12: google.ads.googleads.v16.resources.FeedItemPlaceholderPolicyInfo.quality_approval_status:type_name -> google.ads.googleads.v16.enums.FeedItemQualityApprovalStatusEnum.FeedItemQualityApprovalStatus - 14, // 13: google.ads.googleads.v16.resources.FeedItemPlaceholderPolicyInfo.quality_disapproval_reasons:type_name -> google.ads.googleads.v16.enums.FeedItemQualityDisapprovalReasonEnum.FeedItemQualityDisapprovalReason - 15, // 14: google.ads.googleads.v16.resources.FeedItemValidationError.validation_error:type_name -> google.ads.googleads.v16.errors.FeedItemValidationErrorEnum.FeedItemValidationError + return file_google_ads_googleads_v17_resources_feed_item_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_feed_item_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_resources_feed_item_proto_goTypes = []interface{}{ + (*FeedItem)(nil), // 0: google.ads.googleads.v17.resources.FeedItem + (*FeedItemAttributeValue)(nil), // 1: google.ads.googleads.v17.resources.FeedItemAttributeValue + (*FeedItemPlaceholderPolicyInfo)(nil), // 2: google.ads.googleads.v17.resources.FeedItemPlaceholderPolicyInfo + (*FeedItemValidationError)(nil), // 3: google.ads.googleads.v17.resources.FeedItemValidationError + (enums.GeoTargetingRestrictionEnum_GeoTargetingRestriction)(0), // 4: google.ads.googleads.v17.enums.GeoTargetingRestrictionEnum.GeoTargetingRestriction + (*common.CustomParameter)(nil), // 5: google.ads.googleads.v17.common.CustomParameter + (enums.FeedItemStatusEnum_FeedItemStatus)(0), // 6: google.ads.googleads.v17.enums.FeedItemStatusEnum.FeedItemStatus + (*common.Money)(nil), // 7: google.ads.googleads.v17.common.Money + (enums.PlaceholderTypeEnum_PlaceholderType)(0), // 8: google.ads.googleads.v17.enums.PlaceholderTypeEnum.PlaceholderType + (enums.PolicyReviewStatusEnum_PolicyReviewStatus)(0), // 9: google.ads.googleads.v17.enums.PolicyReviewStatusEnum.PolicyReviewStatus + (enums.PolicyApprovalStatusEnum_PolicyApprovalStatus)(0), // 10: google.ads.googleads.v17.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus + (*common.PolicyTopicEntry)(nil), // 11: google.ads.googleads.v17.common.PolicyTopicEntry + (enums.FeedItemValidationStatusEnum_FeedItemValidationStatus)(0), // 12: google.ads.googleads.v17.enums.FeedItemValidationStatusEnum.FeedItemValidationStatus + (enums.FeedItemQualityApprovalStatusEnum_FeedItemQualityApprovalStatus)(0), // 13: google.ads.googleads.v17.enums.FeedItemQualityApprovalStatusEnum.FeedItemQualityApprovalStatus + (enums.FeedItemQualityDisapprovalReasonEnum_FeedItemQualityDisapprovalReason)(0), // 14: google.ads.googleads.v17.enums.FeedItemQualityDisapprovalReasonEnum.FeedItemQualityDisapprovalReason + (errors.FeedItemValidationErrorEnum_FeedItemValidationError)(0), // 15: google.ads.googleads.v17.errors.FeedItemValidationErrorEnum.FeedItemValidationError +} +var file_google_ads_googleads_v17_resources_feed_item_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.FeedItem.attribute_values:type_name -> google.ads.googleads.v17.resources.FeedItemAttributeValue + 4, // 1: google.ads.googleads.v17.resources.FeedItem.geo_targeting_restriction:type_name -> google.ads.googleads.v17.enums.GeoTargetingRestrictionEnum.GeoTargetingRestriction + 5, // 2: google.ads.googleads.v17.resources.FeedItem.url_custom_parameters:type_name -> google.ads.googleads.v17.common.CustomParameter + 6, // 3: google.ads.googleads.v17.resources.FeedItem.status:type_name -> google.ads.googleads.v17.enums.FeedItemStatusEnum.FeedItemStatus + 2, // 4: google.ads.googleads.v17.resources.FeedItem.policy_infos:type_name -> google.ads.googleads.v17.resources.FeedItemPlaceholderPolicyInfo + 7, // 5: google.ads.googleads.v17.resources.FeedItemAttributeValue.price_value:type_name -> google.ads.googleads.v17.common.Money + 8, // 6: google.ads.googleads.v17.resources.FeedItemPlaceholderPolicyInfo.placeholder_type_enum:type_name -> google.ads.googleads.v17.enums.PlaceholderTypeEnum.PlaceholderType + 9, // 7: google.ads.googleads.v17.resources.FeedItemPlaceholderPolicyInfo.review_status:type_name -> google.ads.googleads.v17.enums.PolicyReviewStatusEnum.PolicyReviewStatus + 10, // 8: google.ads.googleads.v17.resources.FeedItemPlaceholderPolicyInfo.approval_status:type_name -> google.ads.googleads.v17.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus + 11, // 9: google.ads.googleads.v17.resources.FeedItemPlaceholderPolicyInfo.policy_topic_entries:type_name -> google.ads.googleads.v17.common.PolicyTopicEntry + 12, // 10: google.ads.googleads.v17.resources.FeedItemPlaceholderPolicyInfo.validation_status:type_name -> google.ads.googleads.v17.enums.FeedItemValidationStatusEnum.FeedItemValidationStatus + 3, // 11: google.ads.googleads.v17.resources.FeedItemPlaceholderPolicyInfo.validation_errors:type_name -> google.ads.googleads.v17.resources.FeedItemValidationError + 13, // 12: google.ads.googleads.v17.resources.FeedItemPlaceholderPolicyInfo.quality_approval_status:type_name -> google.ads.googleads.v17.enums.FeedItemQualityApprovalStatusEnum.FeedItemQualityApprovalStatus + 14, // 13: google.ads.googleads.v17.resources.FeedItemPlaceholderPolicyInfo.quality_disapproval_reasons:type_name -> google.ads.googleads.v17.enums.FeedItemQualityDisapprovalReasonEnum.FeedItemQualityDisapprovalReason + 15, // 14: google.ads.googleads.v17.resources.FeedItemValidationError.validation_error:type_name -> google.ads.googleads.v17.errors.FeedItemValidationErrorEnum.FeedItemValidationError 15, // [15:15] is the sub-list for method output_type 15, // [15:15] is the sub-list for method input_type 15, // [15:15] is the sub-list for extension type_name @@ -863,13 +863,13 @@ var file_google_ads_googleads_v16_resources_feed_item_proto_depIdxs = []int32{ 0, // [0:15] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_feed_item_proto_init() } -func file_google_ads_googleads_v16_resources_feed_item_proto_init() { - if File_google_ads_googleads_v16_resources_feed_item_proto != nil { +func init() { file_google_ads_googleads_v17_resources_feed_item_proto_init() } +func file_google_ads_googleads_v17_resources_feed_item_proto_init() { + if File_google_ads_googleads_v17_resources_feed_item_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_feed_item_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_feed_item_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*FeedItem); i { case 0: return &v.state @@ -881,7 +881,7 @@ func file_google_ads_googleads_v16_resources_feed_item_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_feed_item_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_feed_item_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*FeedItemAttributeValue); i { case 0: return &v.state @@ -893,7 +893,7 @@ func file_google_ads_googleads_v16_resources_feed_item_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_feed_item_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_feed_item_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*FeedItemPlaceholderPolicyInfo); i { case 0: return &v.state @@ -905,7 +905,7 @@ func file_google_ads_googleads_v16_resources_feed_item_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_feed_item_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_feed_item_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*FeedItemValidationError); i { case 0: return &v.state @@ -918,26 +918,26 @@ func file_google_ads_googleads_v16_resources_feed_item_proto_init() { } } } - file_google_ads_googleads_v16_resources_feed_item_proto_msgTypes[0].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_feed_item_proto_msgTypes[1].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_feed_item_proto_msgTypes[2].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_feed_item_proto_msgTypes[3].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_feed_item_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_feed_item_proto_msgTypes[1].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_feed_item_proto_msgTypes[2].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_feed_item_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_resources_feed_item_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_feed_item_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_feed_item_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_feed_item_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_feed_item_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_feed_item_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_feed_item_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_feed_item_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_feed_item_proto = out.File - file_google_ads_googleads_v16_resources_feed_item_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_feed_item_proto_goTypes = nil - file_google_ads_googleads_v16_resources_feed_item_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_feed_item_proto = out.File + file_google_ads_googleads_v17_resources_feed_item_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_feed_item_proto_goTypes = nil + file_google_ads_googleads_v17_resources_feed_item_proto_depIdxs = nil } diff --git a/resources/feed_item_set.pb.go b/resources/feed_item_set.pb.go index 5337eca4..c9263965 100644 --- a/resources/feed_item_set.pb.go +++ b/resources/feed_item_set.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/feed_item_set.proto +// source: google/ads/googleads/v17/resources/feed_item_set.proto package resources @@ -58,7 +58,7 @@ type FeedItemSet struct { DisplayName string `protobuf:"bytes,4,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"` // Output only. Status of the feed item set. // This field is read-only. - Status enums.FeedItemSetStatusEnum_FeedItemSetStatus `protobuf:"varint,8,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.FeedItemSetStatusEnum_FeedItemSetStatus" json:"status,omitempty"` + Status enums.FeedItemSetStatusEnum_FeedItemSetStatus `protobuf:"varint,8,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.FeedItemSetStatusEnum_FeedItemSetStatus" json:"status,omitempty"` // Represents a filter on locations in a feed item set. // Only applicable if the parent Feed of the FeedItemSet is a LOCATION feed. // @@ -72,7 +72,7 @@ type FeedItemSet struct { func (x *FeedItemSet) Reset() { *x = FeedItemSet{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_feed_item_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_feed_item_set_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -85,7 +85,7 @@ func (x *FeedItemSet) String() string { func (*FeedItemSet) ProtoMessage() {} func (x *FeedItemSet) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_feed_item_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_feed_item_set_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -98,7 +98,7 @@ func (x *FeedItemSet) ProtoReflect() protoreflect.Message { // Deprecated: Use FeedItemSet.ProtoReflect.Descriptor instead. func (*FeedItemSet) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_feed_item_set_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_feed_item_set_proto_rawDescGZIP(), []int{0} } func (x *FeedItemSet) GetResourceName() string { @@ -178,21 +178,21 @@ func (*FeedItemSet_DynamicLocationSetFilter) isFeedItemSet_DynamicSetFilter() {} func (*FeedItemSet_DynamicAffiliateLocationSetFilter) isFeedItemSet_DynamicSetFilter() {} -var File_google_ads_googleads_v16_resources_feed_item_set_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_feed_item_set_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_feed_item_set_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_feed_item_set_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, 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, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 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, 0x45, 0x67, 0x6f, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x66, 0x65, + 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, 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, + 0x67, 0x6f, 0x6f, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, @@ -216,14 +216,14 @@ var file_google_ads_googleads_v16_resources_feed_item_set_proto_rawDesc = []byte 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x64, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 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, 0x46, 0x65, 0x65, 0x64, 0x49, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x7a, 0x0a, 0x1b, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 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, + 0x73, 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, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x48, 0x00, 0x52, 0x18, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, @@ -232,7 +232,7 @@ var file_google_ads_googleads_v16_resources_feed_item_set_proto_rawDesc = []byte 0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x06, 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, 0x44, 0x79, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x41, 0x66, 0x66, 0x69, 0x6c, 0x69, 0x61, 0x74, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x48, 0x00, 0x52, 0x21, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x41, 0x66, 0x66, 0x69, 0x6c, 0x69, @@ -247,47 +247,47 @@ var file_google_ads_googleads_v16_resources_feed_item_set_proto_rawDesc = []byte 0x64, 0x7d, 0x42, 0x14, 0x0a, 0x12, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x10, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 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, + 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, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, + 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, + 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, 0x70, + 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_feed_item_set_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_feed_item_set_proto_rawDescData = file_google_ads_googleads_v16_resources_feed_item_set_proto_rawDesc + file_google_ads_googleads_v17_resources_feed_item_set_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_feed_item_set_proto_rawDescData = file_google_ads_googleads_v17_resources_feed_item_set_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_feed_item_set_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_feed_item_set_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_feed_item_set_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_feed_item_set_proto_rawDescData) +func file_google_ads_googleads_v17_resources_feed_item_set_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_feed_item_set_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_feed_item_set_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_feed_item_set_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_feed_item_set_proto_rawDescData + return file_google_ads_googleads_v17_resources_feed_item_set_proto_rawDescData } -var file_google_ads_googleads_v16_resources_feed_item_set_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_feed_item_set_proto_goTypes = []interface{}{ - (*FeedItemSet)(nil), // 0: google.ads.googleads.v16.resources.FeedItemSet - (enums.FeedItemSetStatusEnum_FeedItemSetStatus)(0), // 1: google.ads.googleads.v16.enums.FeedItemSetStatusEnum.FeedItemSetStatus - (*common.DynamicLocationSetFilter)(nil), // 2: google.ads.googleads.v16.common.DynamicLocationSetFilter - (*common.DynamicAffiliateLocationSetFilter)(nil), // 3: google.ads.googleads.v16.common.DynamicAffiliateLocationSetFilter +var file_google_ads_googleads_v17_resources_feed_item_set_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_feed_item_set_proto_goTypes = []interface{}{ + (*FeedItemSet)(nil), // 0: google.ads.googleads.v17.resources.FeedItemSet + (enums.FeedItemSetStatusEnum_FeedItemSetStatus)(0), // 1: google.ads.googleads.v17.enums.FeedItemSetStatusEnum.FeedItemSetStatus + (*common.DynamicLocationSetFilter)(nil), // 2: google.ads.googleads.v17.common.DynamicLocationSetFilter + (*common.DynamicAffiliateLocationSetFilter)(nil), // 3: google.ads.googleads.v17.common.DynamicAffiliateLocationSetFilter } -var file_google_ads_googleads_v16_resources_feed_item_set_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.FeedItemSet.status:type_name -> google.ads.googleads.v16.enums.FeedItemSetStatusEnum.FeedItemSetStatus - 2, // 1: google.ads.googleads.v16.resources.FeedItemSet.dynamic_location_set_filter:type_name -> google.ads.googleads.v16.common.DynamicLocationSetFilter - 3, // 2: google.ads.googleads.v16.resources.FeedItemSet.dynamic_affiliate_location_set_filter:type_name -> google.ads.googleads.v16.common.DynamicAffiliateLocationSetFilter +var file_google_ads_googleads_v17_resources_feed_item_set_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.FeedItemSet.status:type_name -> google.ads.googleads.v17.enums.FeedItemSetStatusEnum.FeedItemSetStatus + 2, // 1: google.ads.googleads.v17.resources.FeedItemSet.dynamic_location_set_filter:type_name -> google.ads.googleads.v17.common.DynamicLocationSetFilter + 3, // 2: google.ads.googleads.v17.resources.FeedItemSet.dynamic_affiliate_location_set_filter:type_name -> google.ads.googleads.v17.common.DynamicAffiliateLocationSetFilter 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 @@ -295,13 +295,13 @@ var file_google_ads_googleads_v16_resources_feed_item_set_proto_depIdxs = []int3 0, // [0:3] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_feed_item_set_proto_init() } -func file_google_ads_googleads_v16_resources_feed_item_set_proto_init() { - if File_google_ads_googleads_v16_resources_feed_item_set_proto != nil { +func init() { file_google_ads_googleads_v17_resources_feed_item_set_proto_init() } +func file_google_ads_googleads_v17_resources_feed_item_set_proto_init() { + if File_google_ads_googleads_v17_resources_feed_item_set_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_feed_item_set_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_feed_item_set_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*FeedItemSet); i { case 0: return &v.state @@ -314,7 +314,7 @@ func file_google_ads_googleads_v16_resources_feed_item_set_proto_init() { } } } - file_google_ads_googleads_v16_resources_feed_item_set_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_feed_item_set_proto_msgTypes[0].OneofWrappers = []interface{}{ (*FeedItemSet_DynamicLocationSetFilter)(nil), (*FeedItemSet_DynamicAffiliateLocationSetFilter)(nil), } @@ -322,18 +322,18 @@ func file_google_ads_googleads_v16_resources_feed_item_set_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_feed_item_set_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_feed_item_set_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_feed_item_set_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_feed_item_set_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_feed_item_set_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_feed_item_set_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_feed_item_set_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_feed_item_set_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_feed_item_set_proto = out.File - file_google_ads_googleads_v16_resources_feed_item_set_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_feed_item_set_proto_goTypes = nil - file_google_ads_googleads_v16_resources_feed_item_set_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_feed_item_set_proto = out.File + file_google_ads_googleads_v17_resources_feed_item_set_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_feed_item_set_proto_goTypes = nil + file_google_ads_googleads_v17_resources_feed_item_set_proto_depIdxs = nil } diff --git a/resources/feed_item_set_link.pb.go b/resources/feed_item_set_link.pb.go index 3bcb7eb6..89104a9f 100644 --- a/resources/feed_item_set_link.pb.go +++ b/resources/feed_item_set_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/feed_item_set_link.proto +// source: google/ads/googleads/v17/resources/feed_item_set_link.proto package resources @@ -54,7 +54,7 @@ type FeedItemSetLink struct { func (x *FeedItemSetLink) Reset() { *x = FeedItemSetLink{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_feed_item_set_link_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_feed_item_set_link_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67,7 +67,7 @@ func (x *FeedItemSetLink) String() string { func (*FeedItemSetLink) ProtoMessage() {} func (x *FeedItemSetLink) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_feed_item_set_link_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_feed_item_set_link_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80,7 +80,7 @@ func (x *FeedItemSetLink) ProtoReflect() protoreflect.Message { // Deprecated: Use FeedItemSetLink.ProtoReflect.Descriptor instead. func (*FeedItemSetLink) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_feed_item_set_link_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_feed_item_set_link_proto_rawDescGZIP(), []int{0} } func (x *FeedItemSetLink) GetResourceName() string { @@ -104,15 +104,15 @@ func (x *FeedItemSetLink) GetFeedItemSet() string { return "" } -var File_google_ads_googleads_v16_resources_feed_item_set_link_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_feed_item_set_link_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_feed_item_set_link_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_feed_item_set_link_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, 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, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 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, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -143,41 +143,41 @@ var file_google_ads_googleads_v16_resources_feed_item_set_link_proto_rawDesc = [ 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x86, 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, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x14, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 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, 0x72, 0x63, 0x65, 0x73, 0x3b, + 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, + 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, + 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, 0x63, + 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_feed_item_set_link_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_feed_item_set_link_proto_rawDescData = file_google_ads_googleads_v16_resources_feed_item_set_link_proto_rawDesc + file_google_ads_googleads_v17_resources_feed_item_set_link_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_feed_item_set_link_proto_rawDescData = file_google_ads_googleads_v17_resources_feed_item_set_link_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_feed_item_set_link_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_feed_item_set_link_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_feed_item_set_link_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_feed_item_set_link_proto_rawDescData) +func file_google_ads_googleads_v17_resources_feed_item_set_link_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_feed_item_set_link_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_feed_item_set_link_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_feed_item_set_link_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_feed_item_set_link_proto_rawDescData + return file_google_ads_googleads_v17_resources_feed_item_set_link_proto_rawDescData } -var file_google_ads_googleads_v16_resources_feed_item_set_link_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_feed_item_set_link_proto_goTypes = []interface{}{ - (*FeedItemSetLink)(nil), // 0: google.ads.googleads.v16.resources.FeedItemSetLink +var file_google_ads_googleads_v17_resources_feed_item_set_link_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_feed_item_set_link_proto_goTypes = []interface{}{ + (*FeedItemSetLink)(nil), // 0: google.ads.googleads.v17.resources.FeedItemSetLink } -var file_google_ads_googleads_v16_resources_feed_item_set_link_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_feed_item_set_link_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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_resources_feed_item_set_link_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_feed_item_set_link_proto_init() } -func file_google_ads_googleads_v16_resources_feed_item_set_link_proto_init() { - if File_google_ads_googleads_v16_resources_feed_item_set_link_proto != nil { +func init() { file_google_ads_googleads_v17_resources_feed_item_set_link_proto_init() } +func file_google_ads_googleads_v17_resources_feed_item_set_link_proto_init() { + if File_google_ads_googleads_v17_resources_feed_item_set_link_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_feed_item_set_link_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_feed_item_set_link_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*FeedItemSetLink); i { case 0: return &v.state @@ -208,18 +208,18 @@ func file_google_ads_googleads_v16_resources_feed_item_set_link_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_feed_item_set_link_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_feed_item_set_link_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_feed_item_set_link_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_feed_item_set_link_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_feed_item_set_link_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_feed_item_set_link_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_feed_item_set_link_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_feed_item_set_link_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_feed_item_set_link_proto = out.File - file_google_ads_googleads_v16_resources_feed_item_set_link_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_feed_item_set_link_proto_goTypes = nil - file_google_ads_googleads_v16_resources_feed_item_set_link_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_feed_item_set_link_proto = out.File + file_google_ads_googleads_v17_resources_feed_item_set_link_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_feed_item_set_link_proto_goTypes = nil + file_google_ads_googleads_v17_resources_feed_item_set_link_proto_depIdxs = nil } diff --git a/resources/feed_item_target.pb.go b/resources/feed_item_target.pb.go index 0118c25b..8455f3f7 100644 --- a/resources/feed_item_target.pb.go +++ b/resources/feed_item_target.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/feed_item_target.proto +// source: google/ads/googleads/v17/resources/feed_item_target.proto package resources @@ -51,12 +51,12 @@ type FeedItemTarget struct { FeedItem *string `protobuf:"bytes,12,opt,name=feed_item,json=feedItem,proto3,oneof" json:"feed_item,omitempty"` // Output only. The target type of this feed item target. This field is // read-only. - FeedItemTargetType enums.FeedItemTargetTypeEnum_FeedItemTargetType `protobuf:"varint,3,opt,name=feed_item_target_type,json=feedItemTargetType,proto3,enum=google.ads.googleads.v16.enums.FeedItemTargetTypeEnum_FeedItemTargetType" json:"feed_item_target_type,omitempty"` + FeedItemTargetType enums.FeedItemTargetTypeEnum_FeedItemTargetType `protobuf:"varint,3,opt,name=feed_item_target_type,json=feedItemTargetType,proto3,enum=google.ads.googleads.v17.enums.FeedItemTargetTypeEnum_FeedItemTargetType" json:"feed_item_target_type,omitempty"` // Output only. The ID of the targeted resource. This field is read-only. FeedItemTargetId *int64 `protobuf:"varint,13,opt,name=feed_item_target_id,json=feedItemTargetId,proto3,oneof" json:"feed_item_target_id,omitempty"` // Output only. Status of the feed item target. // This field is read-only. - Status enums.FeedItemTargetStatusEnum_FeedItemTargetStatus `protobuf:"varint,11,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.FeedItemTargetStatusEnum_FeedItemTargetStatus" json:"status,omitempty"` + Status enums.FeedItemTargetStatusEnum_FeedItemTargetStatus `protobuf:"varint,11,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.FeedItemTargetStatusEnum_FeedItemTargetStatus" json:"status,omitempty"` // The targeted resource. // // Types that are assignable to Target: @@ -73,7 +73,7 @@ type FeedItemTarget struct { func (x *FeedItemTarget) Reset() { *x = FeedItemTarget{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_feed_item_target_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_feed_item_target_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -86,7 +86,7 @@ func (x *FeedItemTarget) String() string { func (*FeedItemTarget) ProtoMessage() {} func (x *FeedItemTarget) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_feed_item_target_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_feed_item_target_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 *FeedItemTarget) ProtoReflect() protoreflect.Message { // Deprecated: Use FeedItemTarget.ProtoReflect.Descriptor instead. func (*FeedItemTarget) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_feed_item_target_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_feed_item_target_proto_rawDescGZIP(), []int{0} } func (x *FeedItemTarget) GetResourceName() string { @@ -212,7 +212,7 @@ type FeedItemTarget_GeoTargetConstant struct { type FeedItemTarget_Device struct { // Immutable. The targeted device. - Device enums.FeedItemTargetDeviceEnum_FeedItemTargetDevice `protobuf:"varint,9,opt,name=device,proto3,enum=google.ads.googleads.v16.enums.FeedItemTargetDeviceEnum_FeedItemTargetDevice,oneof"` + Device enums.FeedItemTargetDeviceEnum_FeedItemTargetDevice `protobuf:"varint,9,opt,name=device,proto3,enum=google.ads.googleads.v17.enums.FeedItemTargetDeviceEnum_FeedItemTargetDevice,oneof"` } type FeedItemTarget_AdSchedule struct { @@ -232,28 +232,28 @@ func (*FeedItemTarget_Device) isFeedItemTarget_Target() {} func (*FeedItemTarget_AdSchedule) isFeedItemTarget_Target() {} -var File_google_ads_googleads_v16_resources_feed_item_target_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_feed_item_target_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_feed_item_target_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_feed_item_target_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, 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, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x74, 0x61, 0x72, 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, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x6e, + 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, 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, 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, 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, 0x66, 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, 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, 0x66, 0x65, 0x65, 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, 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, @@ -274,7 +274,7 @@ var file_google_ads_googleads_v16_resources_feed_item_target_proto_rawDesc = []b 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 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, 0x46, 0x65, 0x65, 0x64, 0x49, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x12, 0x66, 0x65, 0x65, 0x64, 0x49, @@ -285,7 +285,7 @@ var file_google_ads_googleads_v16_resources_feed_item_target_proto_rawDesc = []b 0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x6a, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x0b, 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, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, + 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, @@ -300,7 +300,7 @@ var file_google_ads_googleads_v16_resources_feed_item_target_proto_rawDesc = []b 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x48, 0x00, 0x52, 0x07, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x4d, 0x0a, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x07, 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, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x64, 0x0a, 0x13, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, @@ -312,14 +312,14 @@ var file_google_ads_googleads_v16_resources_feed_item_target_proto_rawDesc = []b 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x12, 0x6c, 0x0a, 0x06, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x18, 0x09, 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, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, + 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x06, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x12, 0x57, 0x0a, 0x0b, 0x61, 0x64, 0x5f, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x18, 0x0a, 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, 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, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0a, 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x3a, 0x9d, 0x01, 0xea, 0x41, 0x99, 0x01, 0x0a, 0x27, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, @@ -336,51 +336,51 @@ var file_google_ads_googleads_v16_resources_feed_item_target_proto_rawDesc = []b 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x69, 0x64, 0x42, 0x85, 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, + 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, 0x13, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 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, 0x65, 0x73, 0x6f, 0x75, 0x72, + 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, + 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, 0x26, + 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, + 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_feed_item_target_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_feed_item_target_proto_rawDescData = file_google_ads_googleads_v16_resources_feed_item_target_proto_rawDesc + file_google_ads_googleads_v17_resources_feed_item_target_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_feed_item_target_proto_rawDescData = file_google_ads_googleads_v17_resources_feed_item_target_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_feed_item_target_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_feed_item_target_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_feed_item_target_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_feed_item_target_proto_rawDescData) +func file_google_ads_googleads_v17_resources_feed_item_target_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_feed_item_target_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_feed_item_target_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_feed_item_target_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_feed_item_target_proto_rawDescData + return file_google_ads_googleads_v17_resources_feed_item_target_proto_rawDescData } -var file_google_ads_googleads_v16_resources_feed_item_target_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_feed_item_target_proto_goTypes = []interface{}{ - (*FeedItemTarget)(nil), // 0: google.ads.googleads.v16.resources.FeedItemTarget - (enums.FeedItemTargetTypeEnum_FeedItemTargetType)(0), // 1: google.ads.googleads.v16.enums.FeedItemTargetTypeEnum.FeedItemTargetType - (enums.FeedItemTargetStatusEnum_FeedItemTargetStatus)(0), // 2: google.ads.googleads.v16.enums.FeedItemTargetStatusEnum.FeedItemTargetStatus - (*common.KeywordInfo)(nil), // 3: google.ads.googleads.v16.common.KeywordInfo - (enums.FeedItemTargetDeviceEnum_FeedItemTargetDevice)(0), // 4: google.ads.googleads.v16.enums.FeedItemTargetDeviceEnum.FeedItemTargetDevice - (*common.AdScheduleInfo)(nil), // 5: google.ads.googleads.v16.common.AdScheduleInfo +var file_google_ads_googleads_v17_resources_feed_item_target_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_feed_item_target_proto_goTypes = []interface{}{ + (*FeedItemTarget)(nil), // 0: google.ads.googleads.v17.resources.FeedItemTarget + (enums.FeedItemTargetTypeEnum_FeedItemTargetType)(0), // 1: google.ads.googleads.v17.enums.FeedItemTargetTypeEnum.FeedItemTargetType + (enums.FeedItemTargetStatusEnum_FeedItemTargetStatus)(0), // 2: google.ads.googleads.v17.enums.FeedItemTargetStatusEnum.FeedItemTargetStatus + (*common.KeywordInfo)(nil), // 3: google.ads.googleads.v17.common.KeywordInfo + (enums.FeedItemTargetDeviceEnum_FeedItemTargetDevice)(0), // 4: google.ads.googleads.v17.enums.FeedItemTargetDeviceEnum.FeedItemTargetDevice + (*common.AdScheduleInfo)(nil), // 5: google.ads.googleads.v17.common.AdScheduleInfo } -var file_google_ads_googleads_v16_resources_feed_item_target_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.FeedItemTarget.feed_item_target_type:type_name -> google.ads.googleads.v16.enums.FeedItemTargetTypeEnum.FeedItemTargetType - 2, // 1: google.ads.googleads.v16.resources.FeedItemTarget.status:type_name -> google.ads.googleads.v16.enums.FeedItemTargetStatusEnum.FeedItemTargetStatus - 3, // 2: google.ads.googleads.v16.resources.FeedItemTarget.keyword:type_name -> google.ads.googleads.v16.common.KeywordInfo - 4, // 3: google.ads.googleads.v16.resources.FeedItemTarget.device:type_name -> google.ads.googleads.v16.enums.FeedItemTargetDeviceEnum.FeedItemTargetDevice - 5, // 4: google.ads.googleads.v16.resources.FeedItemTarget.ad_schedule:type_name -> google.ads.googleads.v16.common.AdScheduleInfo +var file_google_ads_googleads_v17_resources_feed_item_target_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.FeedItemTarget.feed_item_target_type:type_name -> google.ads.googleads.v17.enums.FeedItemTargetTypeEnum.FeedItemTargetType + 2, // 1: google.ads.googleads.v17.resources.FeedItemTarget.status:type_name -> google.ads.googleads.v17.enums.FeedItemTargetStatusEnum.FeedItemTargetStatus + 3, // 2: google.ads.googleads.v17.resources.FeedItemTarget.keyword:type_name -> google.ads.googleads.v17.common.KeywordInfo + 4, // 3: google.ads.googleads.v17.resources.FeedItemTarget.device:type_name -> google.ads.googleads.v17.enums.FeedItemTargetDeviceEnum.FeedItemTargetDevice + 5, // 4: google.ads.googleads.v17.resources.FeedItemTarget.ad_schedule:type_name -> google.ads.googleads.v17.common.AdScheduleInfo 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 @@ -388,13 +388,13 @@ var file_google_ads_googleads_v16_resources_feed_item_target_proto_depIdxs = []i 0, // [0:5] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_feed_item_target_proto_init() } -func file_google_ads_googleads_v16_resources_feed_item_target_proto_init() { - if File_google_ads_googleads_v16_resources_feed_item_target_proto != nil { +func init() { file_google_ads_googleads_v17_resources_feed_item_target_proto_init() } +func file_google_ads_googleads_v17_resources_feed_item_target_proto_init() { + if File_google_ads_googleads_v17_resources_feed_item_target_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_feed_item_target_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_feed_item_target_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*FeedItemTarget); i { case 0: return &v.state @@ -407,7 +407,7 @@ func file_google_ads_googleads_v16_resources_feed_item_target_proto_init() { } } } - file_google_ads_googleads_v16_resources_feed_item_target_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_feed_item_target_proto_msgTypes[0].OneofWrappers = []interface{}{ (*FeedItemTarget_Campaign)(nil), (*FeedItemTarget_AdGroup)(nil), (*FeedItemTarget_Keyword)(nil), @@ -419,18 +419,18 @@ func file_google_ads_googleads_v16_resources_feed_item_target_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_feed_item_target_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_feed_item_target_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_feed_item_target_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_feed_item_target_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_feed_item_target_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_feed_item_target_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_feed_item_target_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_feed_item_target_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_feed_item_target_proto = out.File - file_google_ads_googleads_v16_resources_feed_item_target_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_feed_item_target_proto_goTypes = nil - file_google_ads_googleads_v16_resources_feed_item_target_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_feed_item_target_proto = out.File + file_google_ads_googleads_v17_resources_feed_item_target_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_feed_item_target_proto_goTypes = nil + file_google_ads_googleads_v17_resources_feed_item_target_proto_depIdxs = nil } diff --git a/resources/feed_mapping.pb.go b/resources/feed_mapping.pb.go index be2b5ba8..7eddced4 100644 --- a/resources/feed_mapping.pb.go +++ b/resources/feed_mapping.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/feed_mapping.proto +// source: google/ads/googleads/v17/resources/feed_mapping.proto package resources @@ -57,7 +57,7 @@ type FeedMapping struct { AttributeFieldMappings []*AttributeFieldMapping `protobuf:"bytes,5,rep,name=attribute_field_mappings,json=attributeFieldMappings,proto3" json:"attribute_field_mappings,omitempty"` // Output only. Status of the feed mapping. // This field is read-only. - Status enums.FeedMappingStatusEnum_FeedMappingStatus `protobuf:"varint,6,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.FeedMappingStatusEnum_FeedMappingStatus" json:"status,omitempty"` + Status enums.FeedMappingStatusEnum_FeedMappingStatus `protobuf:"varint,6,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.FeedMappingStatusEnum_FeedMappingStatus" json:"status,omitempty"` // Feed mapping target. Can be either a placeholder or a criterion. For a // given feed, the active FeedMappings must have unique targets. Required. // @@ -71,7 +71,7 @@ type FeedMapping struct { func (x *FeedMapping) Reset() { *x = FeedMapping{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_feed_mapping_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_feed_mapping_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -84,7 +84,7 @@ func (x *FeedMapping) String() string { func (*FeedMapping) ProtoMessage() {} func (x *FeedMapping) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_feed_mapping_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_feed_mapping_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -97,7 +97,7 @@ func (x *FeedMapping) ProtoReflect() protoreflect.Message { // Deprecated: Use FeedMapping.ProtoReflect.Descriptor instead. func (*FeedMapping) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_feed_mapping_proto_rawDescGZIP(), []int{0} } func (x *FeedMapping) GetResourceName() string { @@ -156,13 +156,13 @@ type isFeedMapping_Target interface { type FeedMapping_PlaceholderType struct { // Immutable. The placeholder type of this mapping (for example, if the // mapping maps feed attributes to placeholder fields). - PlaceholderType enums.PlaceholderTypeEnum_PlaceholderType `protobuf:"varint,3,opt,name=placeholder_type,json=placeholderType,proto3,enum=google.ads.googleads.v16.enums.PlaceholderTypeEnum_PlaceholderType,oneof"` + PlaceholderType enums.PlaceholderTypeEnum_PlaceholderType `protobuf:"varint,3,opt,name=placeholder_type,json=placeholderType,proto3,enum=google.ads.googleads.v17.enums.PlaceholderTypeEnum_PlaceholderType,oneof"` } type FeedMapping_CriterionType struct { // Immutable. The criterion type of this mapping (for example, if the // mapping maps feed attributes to criterion fields). - CriterionType enums.FeedMappingCriterionTypeEnum_FeedMappingCriterionType `protobuf:"varint,4,opt,name=criterion_type,json=criterionType,proto3,enum=google.ads.googleads.v16.enums.FeedMappingCriterionTypeEnum_FeedMappingCriterionType,oneof"` + CriterionType enums.FeedMappingCriterionTypeEnum_FeedMappingCriterionType `protobuf:"varint,4,opt,name=criterion_type,json=criterionType,proto3,enum=google.ads.googleads.v17.enums.FeedMappingCriterionTypeEnum_FeedMappingCriterionType,oneof"` } func (*FeedMapping_PlaceholderType) isFeedMapping_Target() {} @@ -214,7 +214,7 @@ type AttributeFieldMapping struct { func (x *AttributeFieldMapping) Reset() { *x = AttributeFieldMapping{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_feed_mapping_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_feed_mapping_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -227,7 +227,7 @@ func (x *AttributeFieldMapping) String() string { func (*AttributeFieldMapping) ProtoMessage() {} func (x *AttributeFieldMapping) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_feed_mapping_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_feed_mapping_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -240,7 +240,7 @@ func (x *AttributeFieldMapping) ProtoReflect() protoreflect.Message { // Deprecated: Use AttributeFieldMapping.ProtoReflect.Descriptor instead. func (*AttributeFieldMapping) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_resources_feed_mapping_proto_rawDescGZIP(), []int{1} } func (x *AttributeFieldMapping) GetFeedAttributeId() int64 { @@ -424,113 +424,113 @@ type isAttributeFieldMapping_Field interface { type AttributeFieldMapping_SitelinkField struct { // Immutable. Sitelink Placeholder Fields. - SitelinkField enums.SitelinkPlaceholderFieldEnum_SitelinkPlaceholderField `protobuf:"varint,3,opt,name=sitelink_field,json=sitelinkField,proto3,enum=google.ads.googleads.v16.enums.SitelinkPlaceholderFieldEnum_SitelinkPlaceholderField,oneof"` + SitelinkField enums.SitelinkPlaceholderFieldEnum_SitelinkPlaceholderField `protobuf:"varint,3,opt,name=sitelink_field,json=sitelinkField,proto3,enum=google.ads.googleads.v17.enums.SitelinkPlaceholderFieldEnum_SitelinkPlaceholderField,oneof"` } type AttributeFieldMapping_CallField struct { // Immutable. Call Placeholder Fields. - CallField enums.CallPlaceholderFieldEnum_CallPlaceholderField `protobuf:"varint,4,opt,name=call_field,json=callField,proto3,enum=google.ads.googleads.v16.enums.CallPlaceholderFieldEnum_CallPlaceholderField,oneof"` + CallField enums.CallPlaceholderFieldEnum_CallPlaceholderField `protobuf:"varint,4,opt,name=call_field,json=callField,proto3,enum=google.ads.googleads.v17.enums.CallPlaceholderFieldEnum_CallPlaceholderField,oneof"` } type AttributeFieldMapping_AppField struct { // Immutable. App Placeholder Fields. - AppField enums.AppPlaceholderFieldEnum_AppPlaceholderField `protobuf:"varint,5,opt,name=app_field,json=appField,proto3,enum=google.ads.googleads.v16.enums.AppPlaceholderFieldEnum_AppPlaceholderField,oneof"` + AppField enums.AppPlaceholderFieldEnum_AppPlaceholderField `protobuf:"varint,5,opt,name=app_field,json=appField,proto3,enum=google.ads.googleads.v17.enums.AppPlaceholderFieldEnum_AppPlaceholderField,oneof"` } type AttributeFieldMapping_LocationField struct { // Output only. Location Placeholder Fields. This field is read-only. - LocationField enums.LocationPlaceholderFieldEnum_LocationPlaceholderField `protobuf:"varint,6,opt,name=location_field,json=locationField,proto3,enum=google.ads.googleads.v16.enums.LocationPlaceholderFieldEnum_LocationPlaceholderField,oneof"` + LocationField enums.LocationPlaceholderFieldEnum_LocationPlaceholderField `protobuf:"varint,6,opt,name=location_field,json=locationField,proto3,enum=google.ads.googleads.v17.enums.LocationPlaceholderFieldEnum_LocationPlaceholderField,oneof"` } type AttributeFieldMapping_AffiliateLocationField struct { // Output only. Affiliate Location Placeholder Fields. This field is // read-only. - AffiliateLocationField enums.AffiliateLocationPlaceholderFieldEnum_AffiliateLocationPlaceholderField `protobuf:"varint,7,opt,name=affiliate_location_field,json=affiliateLocationField,proto3,enum=google.ads.googleads.v16.enums.AffiliateLocationPlaceholderFieldEnum_AffiliateLocationPlaceholderField,oneof"` + AffiliateLocationField enums.AffiliateLocationPlaceholderFieldEnum_AffiliateLocationPlaceholderField `protobuf:"varint,7,opt,name=affiliate_location_field,json=affiliateLocationField,proto3,enum=google.ads.googleads.v17.enums.AffiliateLocationPlaceholderFieldEnum_AffiliateLocationPlaceholderField,oneof"` } type AttributeFieldMapping_CalloutField struct { // Immutable. Callout Placeholder Fields. - CalloutField enums.CalloutPlaceholderFieldEnum_CalloutPlaceholderField `protobuf:"varint,8,opt,name=callout_field,json=calloutField,proto3,enum=google.ads.googleads.v16.enums.CalloutPlaceholderFieldEnum_CalloutPlaceholderField,oneof"` + CalloutField enums.CalloutPlaceholderFieldEnum_CalloutPlaceholderField `protobuf:"varint,8,opt,name=callout_field,json=calloutField,proto3,enum=google.ads.googleads.v17.enums.CalloutPlaceholderFieldEnum_CalloutPlaceholderField,oneof"` } type AttributeFieldMapping_StructuredSnippetField struct { // Immutable. Structured Snippet Placeholder Fields. - StructuredSnippetField enums.StructuredSnippetPlaceholderFieldEnum_StructuredSnippetPlaceholderField `protobuf:"varint,9,opt,name=structured_snippet_field,json=structuredSnippetField,proto3,enum=google.ads.googleads.v16.enums.StructuredSnippetPlaceholderFieldEnum_StructuredSnippetPlaceholderField,oneof"` + StructuredSnippetField enums.StructuredSnippetPlaceholderFieldEnum_StructuredSnippetPlaceholderField `protobuf:"varint,9,opt,name=structured_snippet_field,json=structuredSnippetField,proto3,enum=google.ads.googleads.v17.enums.StructuredSnippetPlaceholderFieldEnum_StructuredSnippetPlaceholderField,oneof"` } type AttributeFieldMapping_MessageField struct { // Immutable. Message Placeholder Fields. - MessageField enums.MessagePlaceholderFieldEnum_MessagePlaceholderField `protobuf:"varint,10,opt,name=message_field,json=messageField,proto3,enum=google.ads.googleads.v16.enums.MessagePlaceholderFieldEnum_MessagePlaceholderField,oneof"` + MessageField enums.MessagePlaceholderFieldEnum_MessagePlaceholderField `protobuf:"varint,10,opt,name=message_field,json=messageField,proto3,enum=google.ads.googleads.v17.enums.MessagePlaceholderFieldEnum_MessagePlaceholderField,oneof"` } type AttributeFieldMapping_PriceField struct { // Immutable. Price Placeholder Fields. - PriceField enums.PricePlaceholderFieldEnum_PricePlaceholderField `protobuf:"varint,11,opt,name=price_field,json=priceField,proto3,enum=google.ads.googleads.v16.enums.PricePlaceholderFieldEnum_PricePlaceholderField,oneof"` + PriceField enums.PricePlaceholderFieldEnum_PricePlaceholderField `protobuf:"varint,11,opt,name=price_field,json=priceField,proto3,enum=google.ads.googleads.v17.enums.PricePlaceholderFieldEnum_PricePlaceholderField,oneof"` } type AttributeFieldMapping_PromotionField struct { // Immutable. Promotion Placeholder Fields. - PromotionField enums.PromotionPlaceholderFieldEnum_PromotionPlaceholderField `protobuf:"varint,12,opt,name=promotion_field,json=promotionField,proto3,enum=google.ads.googleads.v16.enums.PromotionPlaceholderFieldEnum_PromotionPlaceholderField,oneof"` + PromotionField enums.PromotionPlaceholderFieldEnum_PromotionPlaceholderField `protobuf:"varint,12,opt,name=promotion_field,json=promotionField,proto3,enum=google.ads.googleads.v17.enums.PromotionPlaceholderFieldEnum_PromotionPlaceholderField,oneof"` } type AttributeFieldMapping_AdCustomizerField struct { // Immutable. Ad Customizer Placeholder Fields - AdCustomizerField enums.AdCustomizerPlaceholderFieldEnum_AdCustomizerPlaceholderField `protobuf:"varint,13,opt,name=ad_customizer_field,json=adCustomizerField,proto3,enum=google.ads.googleads.v16.enums.AdCustomizerPlaceholderFieldEnum_AdCustomizerPlaceholderField,oneof"` + AdCustomizerField enums.AdCustomizerPlaceholderFieldEnum_AdCustomizerPlaceholderField `protobuf:"varint,13,opt,name=ad_customizer_field,json=adCustomizerField,proto3,enum=google.ads.googleads.v17.enums.AdCustomizerPlaceholderFieldEnum_AdCustomizerPlaceholderField,oneof"` } type AttributeFieldMapping_DsaPageFeedField struct { // Immutable. Dynamic Search Ad Page Feed Fields. - DsaPageFeedField enums.DsaPageFeedCriterionFieldEnum_DsaPageFeedCriterionField `protobuf:"varint,14,opt,name=dsa_page_feed_field,json=dsaPageFeedField,proto3,enum=google.ads.googleads.v16.enums.DsaPageFeedCriterionFieldEnum_DsaPageFeedCriterionField,oneof"` + DsaPageFeedField enums.DsaPageFeedCriterionFieldEnum_DsaPageFeedCriterionField `protobuf:"varint,14,opt,name=dsa_page_feed_field,json=dsaPageFeedField,proto3,enum=google.ads.googleads.v17.enums.DsaPageFeedCriterionFieldEnum_DsaPageFeedCriterionField,oneof"` } type AttributeFieldMapping_LocationExtensionTargetingField struct { // Immutable. Location Target Fields. - LocationExtensionTargetingField enums.LocationExtensionTargetingCriterionFieldEnum_LocationExtensionTargetingCriterionField `protobuf:"varint,15,opt,name=location_extension_targeting_field,json=locationExtensionTargetingField,proto3,enum=google.ads.googleads.v16.enums.LocationExtensionTargetingCriterionFieldEnum_LocationExtensionTargetingCriterionField,oneof"` + LocationExtensionTargetingField enums.LocationExtensionTargetingCriterionFieldEnum_LocationExtensionTargetingCriterionField `protobuf:"varint,15,opt,name=location_extension_targeting_field,json=locationExtensionTargetingField,proto3,enum=google.ads.googleads.v17.enums.LocationExtensionTargetingCriterionFieldEnum_LocationExtensionTargetingCriterionField,oneof"` } type AttributeFieldMapping_EducationField struct { // Immutable. Education Placeholder Fields - EducationField enums.EducationPlaceholderFieldEnum_EducationPlaceholderField `protobuf:"varint,16,opt,name=education_field,json=educationField,proto3,enum=google.ads.googleads.v16.enums.EducationPlaceholderFieldEnum_EducationPlaceholderField,oneof"` + EducationField enums.EducationPlaceholderFieldEnum_EducationPlaceholderField `protobuf:"varint,16,opt,name=education_field,json=educationField,proto3,enum=google.ads.googleads.v17.enums.EducationPlaceholderFieldEnum_EducationPlaceholderField,oneof"` } type AttributeFieldMapping_FlightField struct { // Immutable. Flight Placeholder Fields - FlightField enums.FlightPlaceholderFieldEnum_FlightPlaceholderField `protobuf:"varint,17,opt,name=flight_field,json=flightField,proto3,enum=google.ads.googleads.v16.enums.FlightPlaceholderFieldEnum_FlightPlaceholderField,oneof"` + FlightField enums.FlightPlaceholderFieldEnum_FlightPlaceholderField `protobuf:"varint,17,opt,name=flight_field,json=flightField,proto3,enum=google.ads.googleads.v17.enums.FlightPlaceholderFieldEnum_FlightPlaceholderField,oneof"` } type AttributeFieldMapping_CustomField struct { // Immutable. Custom Placeholder Fields - CustomField enums.CustomPlaceholderFieldEnum_CustomPlaceholderField `protobuf:"varint,18,opt,name=custom_field,json=customField,proto3,enum=google.ads.googleads.v16.enums.CustomPlaceholderFieldEnum_CustomPlaceholderField,oneof"` + CustomField enums.CustomPlaceholderFieldEnum_CustomPlaceholderField `protobuf:"varint,18,opt,name=custom_field,json=customField,proto3,enum=google.ads.googleads.v17.enums.CustomPlaceholderFieldEnum_CustomPlaceholderField,oneof"` } type AttributeFieldMapping_HotelField struct { // Immutable. Hotel Placeholder Fields - HotelField enums.HotelPlaceholderFieldEnum_HotelPlaceholderField `protobuf:"varint,19,opt,name=hotel_field,json=hotelField,proto3,enum=google.ads.googleads.v16.enums.HotelPlaceholderFieldEnum_HotelPlaceholderField,oneof"` + HotelField enums.HotelPlaceholderFieldEnum_HotelPlaceholderField `protobuf:"varint,19,opt,name=hotel_field,json=hotelField,proto3,enum=google.ads.googleads.v17.enums.HotelPlaceholderFieldEnum_HotelPlaceholderField,oneof"` } type AttributeFieldMapping_RealEstateField struct { // Immutable. Real Estate Placeholder Fields - RealEstateField enums.RealEstatePlaceholderFieldEnum_RealEstatePlaceholderField `protobuf:"varint,20,opt,name=real_estate_field,json=realEstateField,proto3,enum=google.ads.googleads.v16.enums.RealEstatePlaceholderFieldEnum_RealEstatePlaceholderField,oneof"` + RealEstateField enums.RealEstatePlaceholderFieldEnum_RealEstatePlaceholderField `protobuf:"varint,20,opt,name=real_estate_field,json=realEstateField,proto3,enum=google.ads.googleads.v17.enums.RealEstatePlaceholderFieldEnum_RealEstatePlaceholderField,oneof"` } type AttributeFieldMapping_TravelField struct { // Immutable. Travel Placeholder Fields - TravelField enums.TravelPlaceholderFieldEnum_TravelPlaceholderField `protobuf:"varint,21,opt,name=travel_field,json=travelField,proto3,enum=google.ads.googleads.v16.enums.TravelPlaceholderFieldEnum_TravelPlaceholderField,oneof"` + TravelField enums.TravelPlaceholderFieldEnum_TravelPlaceholderField `protobuf:"varint,21,opt,name=travel_field,json=travelField,proto3,enum=google.ads.googleads.v17.enums.TravelPlaceholderFieldEnum_TravelPlaceholderField,oneof"` } type AttributeFieldMapping_LocalField struct { // Immutable. Local Placeholder Fields - LocalField enums.LocalPlaceholderFieldEnum_LocalPlaceholderField `protobuf:"varint,22,opt,name=local_field,json=localField,proto3,enum=google.ads.googleads.v16.enums.LocalPlaceholderFieldEnum_LocalPlaceholderField,oneof"` + LocalField enums.LocalPlaceholderFieldEnum_LocalPlaceholderField `protobuf:"varint,22,opt,name=local_field,json=localField,proto3,enum=google.ads.googleads.v17.enums.LocalPlaceholderFieldEnum_LocalPlaceholderField,oneof"` } type AttributeFieldMapping_JobField struct { // Immutable. Job Placeholder Fields - JobField enums.JobPlaceholderFieldEnum_JobPlaceholderField `protobuf:"varint,23,opt,name=job_field,json=jobField,proto3,enum=google.ads.googleads.v16.enums.JobPlaceholderFieldEnum_JobPlaceholderField,oneof"` + JobField enums.JobPlaceholderFieldEnum_JobPlaceholderField `protobuf:"varint,23,opt,name=job_field,json=jobField,proto3,enum=google.ads.googleads.v17.enums.JobPlaceholderFieldEnum_JobPlaceholderField,oneof"` } type AttributeFieldMapping_ImageField struct { // Immutable. Image Placeholder Fields - ImageField enums.ImagePlaceholderFieldEnum_ImagePlaceholderField `protobuf:"varint,26,opt,name=image_field,json=imageField,proto3,enum=google.ads.googleads.v16.enums.ImagePlaceholderFieldEnum_ImagePlaceholderField,oneof"` + ImageField enums.ImagePlaceholderFieldEnum_ImagePlaceholderField `protobuf:"varint,26,opt,name=image_field,json=imageField,proto3,enum=google.ads.googleads.v17.enums.ImagePlaceholderFieldEnum_ImagePlaceholderField,oneof"` } func (*AttributeFieldMapping_SitelinkField) isAttributeFieldMapping_Field() {} @@ -577,114 +577,114 @@ func (*AttributeFieldMapping_JobField) isAttributeFieldMapping_Field() {} func (*AttributeFieldMapping_ImageField) isAttributeFieldMapping_Field() {} -var File_google_ads_googleads_v16_resources_feed_mapping_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_feed_mapping_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_feed_mapping_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, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 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, 0x44, 0x67, 0x6f, 0x6f, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x61, 0x64, 0x5f, 0x63, + 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, 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, 0x6e, 0x75, 0x6d, + 0x6f, 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, 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, 0x61, 0x70, 0x70, + 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, 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, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x70, 0x6c, + 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, 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, + 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, 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, 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, + 0x73, 0x2f, 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, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 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, + 0x2f, 0x67, 0x6f, 0x6f, 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, 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, 0x64, 0x75, 0x63, 0x61, 0x74, 0x69, + 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, 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, 0x66, 0x65, 0x65, 0x64, 0x5f, + 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, 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, 0x66, 0x65, 0x65, + 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, 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, 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, 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, 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, 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, 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, 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, + 0x6f, 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, 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, 0x6f, + 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, 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, 0x6c, 0x6f, 0x63, 0x61, + 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, 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, 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, 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, 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, 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, + 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, 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, 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, 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, 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, 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, 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, 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, 0x73, 0x69, 0x74, 0x65, 0x6c, + 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, 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, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x74, 0x72, 0x75, + 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, 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, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, @@ -705,27 +705,27 @@ var file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDesc = []byte{ 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x05, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x74, 0x74, 0x72, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x52, 0x16, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x64, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x06, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x75, 0x0a, 0x10, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 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, + 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, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x12, 0x83, 0x01, 0x0a, 0x0e, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x43, 0x72, @@ -749,7 +749,7 @@ var file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDesc = []byte{ 0x64, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x83, 0x01, 0x0a, 0x0e, 0x73, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x03, 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, 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, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, @@ -757,14 +757,14 @@ var file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDesc = []byte{ 0x69, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x73, 0x0a, 0x0a, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x04, 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, 0x43, 0x61, 0x6c, 0x6c, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x09, 0x63, 0x61, 0x6c, 0x6c, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x6f, 0x0a, 0x09, 0x61, 0x70, 0x70, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x05, 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, 0x41, 0x70, 0x70, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x70, 0x70, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, @@ -772,7 +772,7 @@ var file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDesc = []byte{ 0x6c, 0x64, 0x12, 0x83, 0x01, 0x0a, 0x0e, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x06, 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, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, @@ -781,7 +781,7 @@ var file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDesc = []byte{ 0x69, 0x6c, 0x69, 0x61, 0x74, 0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x67, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 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, 0x66, 0x66, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x41, 0x66, 0x66, 0x69, 0x6c, 0x69, 0x61, 0x74, 0x65, 0x4c, 0x6f, 0x63, 0x61, @@ -791,7 +791,7 @@ var file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDesc = []byte{ 0x65, 0x6c, 0x64, 0x12, 0x7f, 0x0a, 0x0d, 0x63, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x08, 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, 0x61, 0x6c, 0x6c, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x42, @@ -800,7 +800,7 @@ var file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDesc = []byte{ 0x72, 0x65, 0x64, 0x5f, 0x73, 0x6e, 0x69, 0x70, 0x70, 0x65, 0x74, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x67, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 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, 0x74, 0x72, 0x75, 0x63, 0x74, 0x75, + 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x75, 0x72, 0x65, 0x64, 0x53, 0x6e, 0x69, 0x70, 0x70, 0x65, 0x74, @@ -810,14 +810,14 @@ var file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDesc = []byte{ 0x7f, 0x0a, 0x0d, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x0a, 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, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x50, + 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0c, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x77, 0x0a, 0x0b, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x0b, 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, + 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, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, @@ -825,7 +825,7 @@ var file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDesc = []byte{ 0x72, 0x69, 0x63, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x87, 0x01, 0x0a, 0x0f, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x0c, 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, + 0x2e, 0x67, 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, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6c, 0x61, 0x63, @@ -834,7 +834,7 @@ var file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDesc = []byte{ 0x65, 0x6c, 0x64, 0x12, 0x94, 0x01, 0x0a, 0x13, 0x61, 0x64, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x0d, 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, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x41, 0x64, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, @@ -844,7 +844,7 @@ var file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDesc = []byte{ 0x73, 0x61, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x0e, 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, 0x44, 0x73, 0x61, 0x50, 0x61, 0x67, + 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x44, 0x73, 0x61, 0x50, 0x61, 0x67, 0x65, 0x46, 0x65, 0x65, 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x46, 0x69, 0x65, 0x6c, @@ -854,7 +854,7 @@ var file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDesc = []byte{ 0x6e, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x0f, 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, 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, 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, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x78, @@ -865,7 +865,7 @@ var file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDesc = []byte{ 0x67, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x87, 0x01, 0x0a, 0x0f, 0x65, 0x64, 0x75, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x10, 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, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x45, 0x64, 0x75, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, @@ -874,14 +874,14 @@ var file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDesc = []byte{ 0x12, 0x7b, 0x0a, 0x0c, 0x66, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x11, 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, 0x46, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x50, 0x6c, + 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x46, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0b, 0x66, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x7b, 0x0a, 0x0c, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x12, 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, 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, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, @@ -889,7 +889,7 @@ var file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDesc = []byte{ 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x77, 0x0a, 0x0b, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x13, 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, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, @@ -897,7 +897,7 @@ var file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDesc = []byte{ 0x65, 0x6c, 0x64, 0x12, 0x8c, 0x01, 0x0a, 0x11, 0x72, 0x65, 0x61, 0x6c, 0x5f, 0x65, 0x73, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x14, 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, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x52, 0x65, 0x61, 0x6c, 0x45, 0x73, 0x74, 0x61, 0x74, 0x65, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, @@ -906,14 +906,14 @@ var file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDesc = []byte{ 0x6c, 0x64, 0x12, 0x7b, 0x0a, 0x0c, 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x15, 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, 0x76, 0x65, 0x6c, + 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x54, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0b, 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x77, 0x0a, 0x0b, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, @@ -921,14 +921,14 @@ var file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDesc = []byte{ 0x63, 0x61, 0x6c, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x6f, 0x0a, 0x09, 0x6a, 0x6f, 0x62, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x17, 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, 0x4a, 0x6f, 0x62, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4a, 0x6f, 0x62, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x08, 0x6a, 0x6f, 0x62, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x77, 0x0a, 0x0b, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x1a, 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, 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, 0x2e, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x42, @@ -937,93 +937,93 @@ var file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDesc = []byte{ 0x66, 0x65, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 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, + 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, 0x10, 0x46, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 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_feed_mapping_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDescData = file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDesc + file_google_ads_googleads_v17_resources_feed_mapping_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_feed_mapping_proto_rawDescData = file_google_ads_googleads_v17_resources_feed_mapping_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDescData) +func file_google_ads_googleads_v17_resources_feed_mapping_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_feed_mapping_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_feed_mapping_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_feed_mapping_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDescData -} - -var file_google_ads_googleads_v16_resources_feed_mapping_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v16_resources_feed_mapping_proto_goTypes = []interface{}{ - (*FeedMapping)(nil), // 0: google.ads.googleads.v16.resources.FeedMapping - (*AttributeFieldMapping)(nil), // 1: google.ads.googleads.v16.resources.AttributeFieldMapping - (enums.FeedMappingStatusEnum_FeedMappingStatus)(0), // 2: google.ads.googleads.v16.enums.FeedMappingStatusEnum.FeedMappingStatus - (enums.PlaceholderTypeEnum_PlaceholderType)(0), // 3: google.ads.googleads.v16.enums.PlaceholderTypeEnum.PlaceholderType - (enums.FeedMappingCriterionTypeEnum_FeedMappingCriterionType)(0), // 4: google.ads.googleads.v16.enums.FeedMappingCriterionTypeEnum.FeedMappingCriterionType - (enums.SitelinkPlaceholderFieldEnum_SitelinkPlaceholderField)(0), // 5: google.ads.googleads.v16.enums.SitelinkPlaceholderFieldEnum.SitelinkPlaceholderField - (enums.CallPlaceholderFieldEnum_CallPlaceholderField)(0), // 6: google.ads.googleads.v16.enums.CallPlaceholderFieldEnum.CallPlaceholderField - (enums.AppPlaceholderFieldEnum_AppPlaceholderField)(0), // 7: google.ads.googleads.v16.enums.AppPlaceholderFieldEnum.AppPlaceholderField - (enums.LocationPlaceholderFieldEnum_LocationPlaceholderField)(0), // 8: google.ads.googleads.v16.enums.LocationPlaceholderFieldEnum.LocationPlaceholderField - (enums.AffiliateLocationPlaceholderFieldEnum_AffiliateLocationPlaceholderField)(0), // 9: google.ads.googleads.v16.enums.AffiliateLocationPlaceholderFieldEnum.AffiliateLocationPlaceholderField - (enums.CalloutPlaceholderFieldEnum_CalloutPlaceholderField)(0), // 10: google.ads.googleads.v16.enums.CalloutPlaceholderFieldEnum.CalloutPlaceholderField - (enums.StructuredSnippetPlaceholderFieldEnum_StructuredSnippetPlaceholderField)(0), // 11: google.ads.googleads.v16.enums.StructuredSnippetPlaceholderFieldEnum.StructuredSnippetPlaceholderField - (enums.MessagePlaceholderFieldEnum_MessagePlaceholderField)(0), // 12: google.ads.googleads.v16.enums.MessagePlaceholderFieldEnum.MessagePlaceholderField - (enums.PricePlaceholderFieldEnum_PricePlaceholderField)(0), // 13: google.ads.googleads.v16.enums.PricePlaceholderFieldEnum.PricePlaceholderField - (enums.PromotionPlaceholderFieldEnum_PromotionPlaceholderField)(0), // 14: google.ads.googleads.v16.enums.PromotionPlaceholderFieldEnum.PromotionPlaceholderField - (enums.AdCustomizerPlaceholderFieldEnum_AdCustomizerPlaceholderField)(0), // 15: google.ads.googleads.v16.enums.AdCustomizerPlaceholderFieldEnum.AdCustomizerPlaceholderField - (enums.DsaPageFeedCriterionFieldEnum_DsaPageFeedCriterionField)(0), // 16: google.ads.googleads.v16.enums.DsaPageFeedCriterionFieldEnum.DsaPageFeedCriterionField - (enums.LocationExtensionTargetingCriterionFieldEnum_LocationExtensionTargetingCriterionField)(0), // 17: google.ads.googleads.v16.enums.LocationExtensionTargetingCriterionFieldEnum.LocationExtensionTargetingCriterionField - (enums.EducationPlaceholderFieldEnum_EducationPlaceholderField)(0), // 18: google.ads.googleads.v16.enums.EducationPlaceholderFieldEnum.EducationPlaceholderField - (enums.FlightPlaceholderFieldEnum_FlightPlaceholderField)(0), // 19: google.ads.googleads.v16.enums.FlightPlaceholderFieldEnum.FlightPlaceholderField - (enums.CustomPlaceholderFieldEnum_CustomPlaceholderField)(0), // 20: google.ads.googleads.v16.enums.CustomPlaceholderFieldEnum.CustomPlaceholderField - (enums.HotelPlaceholderFieldEnum_HotelPlaceholderField)(0), // 21: google.ads.googleads.v16.enums.HotelPlaceholderFieldEnum.HotelPlaceholderField - (enums.RealEstatePlaceholderFieldEnum_RealEstatePlaceholderField)(0), // 22: google.ads.googleads.v16.enums.RealEstatePlaceholderFieldEnum.RealEstatePlaceholderField - (enums.TravelPlaceholderFieldEnum_TravelPlaceholderField)(0), // 23: google.ads.googleads.v16.enums.TravelPlaceholderFieldEnum.TravelPlaceholderField - (enums.LocalPlaceholderFieldEnum_LocalPlaceholderField)(0), // 24: google.ads.googleads.v16.enums.LocalPlaceholderFieldEnum.LocalPlaceholderField - (enums.JobPlaceholderFieldEnum_JobPlaceholderField)(0), // 25: google.ads.googleads.v16.enums.JobPlaceholderFieldEnum.JobPlaceholderField - (enums.ImagePlaceholderFieldEnum_ImagePlaceholderField)(0), // 26: google.ads.googleads.v16.enums.ImagePlaceholderFieldEnum.ImagePlaceholderField -} -var file_google_ads_googleads_v16_resources_feed_mapping_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.FeedMapping.attribute_field_mappings:type_name -> google.ads.googleads.v16.resources.AttributeFieldMapping - 2, // 1: google.ads.googleads.v16.resources.FeedMapping.status:type_name -> google.ads.googleads.v16.enums.FeedMappingStatusEnum.FeedMappingStatus - 3, // 2: google.ads.googleads.v16.resources.FeedMapping.placeholder_type:type_name -> google.ads.googleads.v16.enums.PlaceholderTypeEnum.PlaceholderType - 4, // 3: google.ads.googleads.v16.resources.FeedMapping.criterion_type:type_name -> google.ads.googleads.v16.enums.FeedMappingCriterionTypeEnum.FeedMappingCriterionType - 5, // 4: google.ads.googleads.v16.resources.AttributeFieldMapping.sitelink_field:type_name -> google.ads.googleads.v16.enums.SitelinkPlaceholderFieldEnum.SitelinkPlaceholderField - 6, // 5: google.ads.googleads.v16.resources.AttributeFieldMapping.call_field:type_name -> google.ads.googleads.v16.enums.CallPlaceholderFieldEnum.CallPlaceholderField - 7, // 6: google.ads.googleads.v16.resources.AttributeFieldMapping.app_field:type_name -> google.ads.googleads.v16.enums.AppPlaceholderFieldEnum.AppPlaceholderField - 8, // 7: google.ads.googleads.v16.resources.AttributeFieldMapping.location_field:type_name -> google.ads.googleads.v16.enums.LocationPlaceholderFieldEnum.LocationPlaceholderField - 9, // 8: google.ads.googleads.v16.resources.AttributeFieldMapping.affiliate_location_field:type_name -> google.ads.googleads.v16.enums.AffiliateLocationPlaceholderFieldEnum.AffiliateLocationPlaceholderField - 10, // 9: google.ads.googleads.v16.resources.AttributeFieldMapping.callout_field:type_name -> google.ads.googleads.v16.enums.CalloutPlaceholderFieldEnum.CalloutPlaceholderField - 11, // 10: google.ads.googleads.v16.resources.AttributeFieldMapping.structured_snippet_field:type_name -> google.ads.googleads.v16.enums.StructuredSnippetPlaceholderFieldEnum.StructuredSnippetPlaceholderField - 12, // 11: google.ads.googleads.v16.resources.AttributeFieldMapping.message_field:type_name -> google.ads.googleads.v16.enums.MessagePlaceholderFieldEnum.MessagePlaceholderField - 13, // 12: google.ads.googleads.v16.resources.AttributeFieldMapping.price_field:type_name -> google.ads.googleads.v16.enums.PricePlaceholderFieldEnum.PricePlaceholderField - 14, // 13: google.ads.googleads.v16.resources.AttributeFieldMapping.promotion_field:type_name -> google.ads.googleads.v16.enums.PromotionPlaceholderFieldEnum.PromotionPlaceholderField - 15, // 14: google.ads.googleads.v16.resources.AttributeFieldMapping.ad_customizer_field:type_name -> google.ads.googleads.v16.enums.AdCustomizerPlaceholderFieldEnum.AdCustomizerPlaceholderField - 16, // 15: google.ads.googleads.v16.resources.AttributeFieldMapping.dsa_page_feed_field:type_name -> google.ads.googleads.v16.enums.DsaPageFeedCriterionFieldEnum.DsaPageFeedCriterionField - 17, // 16: google.ads.googleads.v16.resources.AttributeFieldMapping.location_extension_targeting_field:type_name -> google.ads.googleads.v16.enums.LocationExtensionTargetingCriterionFieldEnum.LocationExtensionTargetingCriterionField - 18, // 17: google.ads.googleads.v16.resources.AttributeFieldMapping.education_field:type_name -> google.ads.googleads.v16.enums.EducationPlaceholderFieldEnum.EducationPlaceholderField - 19, // 18: google.ads.googleads.v16.resources.AttributeFieldMapping.flight_field:type_name -> google.ads.googleads.v16.enums.FlightPlaceholderFieldEnum.FlightPlaceholderField - 20, // 19: google.ads.googleads.v16.resources.AttributeFieldMapping.custom_field:type_name -> google.ads.googleads.v16.enums.CustomPlaceholderFieldEnum.CustomPlaceholderField - 21, // 20: google.ads.googleads.v16.resources.AttributeFieldMapping.hotel_field:type_name -> google.ads.googleads.v16.enums.HotelPlaceholderFieldEnum.HotelPlaceholderField - 22, // 21: google.ads.googleads.v16.resources.AttributeFieldMapping.real_estate_field:type_name -> google.ads.googleads.v16.enums.RealEstatePlaceholderFieldEnum.RealEstatePlaceholderField - 23, // 22: google.ads.googleads.v16.resources.AttributeFieldMapping.travel_field:type_name -> google.ads.googleads.v16.enums.TravelPlaceholderFieldEnum.TravelPlaceholderField - 24, // 23: google.ads.googleads.v16.resources.AttributeFieldMapping.local_field:type_name -> google.ads.googleads.v16.enums.LocalPlaceholderFieldEnum.LocalPlaceholderField - 25, // 24: google.ads.googleads.v16.resources.AttributeFieldMapping.job_field:type_name -> google.ads.googleads.v16.enums.JobPlaceholderFieldEnum.JobPlaceholderField - 26, // 25: google.ads.googleads.v16.resources.AttributeFieldMapping.image_field:type_name -> google.ads.googleads.v16.enums.ImagePlaceholderFieldEnum.ImagePlaceholderField + return file_google_ads_googleads_v17_resources_feed_mapping_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_feed_mapping_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v17_resources_feed_mapping_proto_goTypes = []interface{}{ + (*FeedMapping)(nil), // 0: google.ads.googleads.v17.resources.FeedMapping + (*AttributeFieldMapping)(nil), // 1: google.ads.googleads.v17.resources.AttributeFieldMapping + (enums.FeedMappingStatusEnum_FeedMappingStatus)(0), // 2: google.ads.googleads.v17.enums.FeedMappingStatusEnum.FeedMappingStatus + (enums.PlaceholderTypeEnum_PlaceholderType)(0), // 3: google.ads.googleads.v17.enums.PlaceholderTypeEnum.PlaceholderType + (enums.FeedMappingCriterionTypeEnum_FeedMappingCriterionType)(0), // 4: google.ads.googleads.v17.enums.FeedMappingCriterionTypeEnum.FeedMappingCriterionType + (enums.SitelinkPlaceholderFieldEnum_SitelinkPlaceholderField)(0), // 5: google.ads.googleads.v17.enums.SitelinkPlaceholderFieldEnum.SitelinkPlaceholderField + (enums.CallPlaceholderFieldEnum_CallPlaceholderField)(0), // 6: google.ads.googleads.v17.enums.CallPlaceholderFieldEnum.CallPlaceholderField + (enums.AppPlaceholderFieldEnum_AppPlaceholderField)(0), // 7: google.ads.googleads.v17.enums.AppPlaceholderFieldEnum.AppPlaceholderField + (enums.LocationPlaceholderFieldEnum_LocationPlaceholderField)(0), // 8: google.ads.googleads.v17.enums.LocationPlaceholderFieldEnum.LocationPlaceholderField + (enums.AffiliateLocationPlaceholderFieldEnum_AffiliateLocationPlaceholderField)(0), // 9: google.ads.googleads.v17.enums.AffiliateLocationPlaceholderFieldEnum.AffiliateLocationPlaceholderField + (enums.CalloutPlaceholderFieldEnum_CalloutPlaceholderField)(0), // 10: google.ads.googleads.v17.enums.CalloutPlaceholderFieldEnum.CalloutPlaceholderField + (enums.StructuredSnippetPlaceholderFieldEnum_StructuredSnippetPlaceholderField)(0), // 11: google.ads.googleads.v17.enums.StructuredSnippetPlaceholderFieldEnum.StructuredSnippetPlaceholderField + (enums.MessagePlaceholderFieldEnum_MessagePlaceholderField)(0), // 12: google.ads.googleads.v17.enums.MessagePlaceholderFieldEnum.MessagePlaceholderField + (enums.PricePlaceholderFieldEnum_PricePlaceholderField)(0), // 13: google.ads.googleads.v17.enums.PricePlaceholderFieldEnum.PricePlaceholderField + (enums.PromotionPlaceholderFieldEnum_PromotionPlaceholderField)(0), // 14: google.ads.googleads.v17.enums.PromotionPlaceholderFieldEnum.PromotionPlaceholderField + (enums.AdCustomizerPlaceholderFieldEnum_AdCustomizerPlaceholderField)(0), // 15: google.ads.googleads.v17.enums.AdCustomizerPlaceholderFieldEnum.AdCustomizerPlaceholderField + (enums.DsaPageFeedCriterionFieldEnum_DsaPageFeedCriterionField)(0), // 16: google.ads.googleads.v17.enums.DsaPageFeedCriterionFieldEnum.DsaPageFeedCriterionField + (enums.LocationExtensionTargetingCriterionFieldEnum_LocationExtensionTargetingCriterionField)(0), // 17: google.ads.googleads.v17.enums.LocationExtensionTargetingCriterionFieldEnum.LocationExtensionTargetingCriterionField + (enums.EducationPlaceholderFieldEnum_EducationPlaceholderField)(0), // 18: google.ads.googleads.v17.enums.EducationPlaceholderFieldEnum.EducationPlaceholderField + (enums.FlightPlaceholderFieldEnum_FlightPlaceholderField)(0), // 19: google.ads.googleads.v17.enums.FlightPlaceholderFieldEnum.FlightPlaceholderField + (enums.CustomPlaceholderFieldEnum_CustomPlaceholderField)(0), // 20: google.ads.googleads.v17.enums.CustomPlaceholderFieldEnum.CustomPlaceholderField + (enums.HotelPlaceholderFieldEnum_HotelPlaceholderField)(0), // 21: google.ads.googleads.v17.enums.HotelPlaceholderFieldEnum.HotelPlaceholderField + (enums.RealEstatePlaceholderFieldEnum_RealEstatePlaceholderField)(0), // 22: google.ads.googleads.v17.enums.RealEstatePlaceholderFieldEnum.RealEstatePlaceholderField + (enums.TravelPlaceholderFieldEnum_TravelPlaceholderField)(0), // 23: google.ads.googleads.v17.enums.TravelPlaceholderFieldEnum.TravelPlaceholderField + (enums.LocalPlaceholderFieldEnum_LocalPlaceholderField)(0), // 24: google.ads.googleads.v17.enums.LocalPlaceholderFieldEnum.LocalPlaceholderField + (enums.JobPlaceholderFieldEnum_JobPlaceholderField)(0), // 25: google.ads.googleads.v17.enums.JobPlaceholderFieldEnum.JobPlaceholderField + (enums.ImagePlaceholderFieldEnum_ImagePlaceholderField)(0), // 26: google.ads.googleads.v17.enums.ImagePlaceholderFieldEnum.ImagePlaceholderField +} +var file_google_ads_googleads_v17_resources_feed_mapping_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.FeedMapping.attribute_field_mappings:type_name -> google.ads.googleads.v17.resources.AttributeFieldMapping + 2, // 1: google.ads.googleads.v17.resources.FeedMapping.status:type_name -> google.ads.googleads.v17.enums.FeedMappingStatusEnum.FeedMappingStatus + 3, // 2: google.ads.googleads.v17.resources.FeedMapping.placeholder_type:type_name -> google.ads.googleads.v17.enums.PlaceholderTypeEnum.PlaceholderType + 4, // 3: google.ads.googleads.v17.resources.FeedMapping.criterion_type:type_name -> google.ads.googleads.v17.enums.FeedMappingCriterionTypeEnum.FeedMappingCriterionType + 5, // 4: google.ads.googleads.v17.resources.AttributeFieldMapping.sitelink_field:type_name -> google.ads.googleads.v17.enums.SitelinkPlaceholderFieldEnum.SitelinkPlaceholderField + 6, // 5: google.ads.googleads.v17.resources.AttributeFieldMapping.call_field:type_name -> google.ads.googleads.v17.enums.CallPlaceholderFieldEnum.CallPlaceholderField + 7, // 6: google.ads.googleads.v17.resources.AttributeFieldMapping.app_field:type_name -> google.ads.googleads.v17.enums.AppPlaceholderFieldEnum.AppPlaceholderField + 8, // 7: google.ads.googleads.v17.resources.AttributeFieldMapping.location_field:type_name -> google.ads.googleads.v17.enums.LocationPlaceholderFieldEnum.LocationPlaceholderField + 9, // 8: google.ads.googleads.v17.resources.AttributeFieldMapping.affiliate_location_field:type_name -> google.ads.googleads.v17.enums.AffiliateLocationPlaceholderFieldEnum.AffiliateLocationPlaceholderField + 10, // 9: google.ads.googleads.v17.resources.AttributeFieldMapping.callout_field:type_name -> google.ads.googleads.v17.enums.CalloutPlaceholderFieldEnum.CalloutPlaceholderField + 11, // 10: google.ads.googleads.v17.resources.AttributeFieldMapping.structured_snippet_field:type_name -> google.ads.googleads.v17.enums.StructuredSnippetPlaceholderFieldEnum.StructuredSnippetPlaceholderField + 12, // 11: google.ads.googleads.v17.resources.AttributeFieldMapping.message_field:type_name -> google.ads.googleads.v17.enums.MessagePlaceholderFieldEnum.MessagePlaceholderField + 13, // 12: google.ads.googleads.v17.resources.AttributeFieldMapping.price_field:type_name -> google.ads.googleads.v17.enums.PricePlaceholderFieldEnum.PricePlaceholderField + 14, // 13: google.ads.googleads.v17.resources.AttributeFieldMapping.promotion_field:type_name -> google.ads.googleads.v17.enums.PromotionPlaceholderFieldEnum.PromotionPlaceholderField + 15, // 14: google.ads.googleads.v17.resources.AttributeFieldMapping.ad_customizer_field:type_name -> google.ads.googleads.v17.enums.AdCustomizerPlaceholderFieldEnum.AdCustomizerPlaceholderField + 16, // 15: google.ads.googleads.v17.resources.AttributeFieldMapping.dsa_page_feed_field:type_name -> google.ads.googleads.v17.enums.DsaPageFeedCriterionFieldEnum.DsaPageFeedCriterionField + 17, // 16: google.ads.googleads.v17.resources.AttributeFieldMapping.location_extension_targeting_field:type_name -> google.ads.googleads.v17.enums.LocationExtensionTargetingCriterionFieldEnum.LocationExtensionTargetingCriterionField + 18, // 17: google.ads.googleads.v17.resources.AttributeFieldMapping.education_field:type_name -> google.ads.googleads.v17.enums.EducationPlaceholderFieldEnum.EducationPlaceholderField + 19, // 18: google.ads.googleads.v17.resources.AttributeFieldMapping.flight_field:type_name -> google.ads.googleads.v17.enums.FlightPlaceholderFieldEnum.FlightPlaceholderField + 20, // 19: google.ads.googleads.v17.resources.AttributeFieldMapping.custom_field:type_name -> google.ads.googleads.v17.enums.CustomPlaceholderFieldEnum.CustomPlaceholderField + 21, // 20: google.ads.googleads.v17.resources.AttributeFieldMapping.hotel_field:type_name -> google.ads.googleads.v17.enums.HotelPlaceholderFieldEnum.HotelPlaceholderField + 22, // 21: google.ads.googleads.v17.resources.AttributeFieldMapping.real_estate_field:type_name -> google.ads.googleads.v17.enums.RealEstatePlaceholderFieldEnum.RealEstatePlaceholderField + 23, // 22: google.ads.googleads.v17.resources.AttributeFieldMapping.travel_field:type_name -> google.ads.googleads.v17.enums.TravelPlaceholderFieldEnum.TravelPlaceholderField + 24, // 23: google.ads.googleads.v17.resources.AttributeFieldMapping.local_field:type_name -> google.ads.googleads.v17.enums.LocalPlaceholderFieldEnum.LocalPlaceholderField + 25, // 24: google.ads.googleads.v17.resources.AttributeFieldMapping.job_field:type_name -> google.ads.googleads.v17.enums.JobPlaceholderFieldEnum.JobPlaceholderField + 26, // 25: google.ads.googleads.v17.resources.AttributeFieldMapping.image_field:type_name -> google.ads.googleads.v17.enums.ImagePlaceholderFieldEnum.ImagePlaceholderField 26, // [26:26] is the sub-list for method output_type 26, // [26:26] is the sub-list for method input_type 26, // [26:26] is the sub-list for extension type_name @@ -1031,13 +1031,13 @@ var file_google_ads_googleads_v16_resources_feed_mapping_proto_depIdxs = []int32 0, // [0:26] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_feed_mapping_proto_init() } -func file_google_ads_googleads_v16_resources_feed_mapping_proto_init() { - if File_google_ads_googleads_v16_resources_feed_mapping_proto != nil { +func init() { file_google_ads_googleads_v17_resources_feed_mapping_proto_init() } +func file_google_ads_googleads_v17_resources_feed_mapping_proto_init() { + if File_google_ads_googleads_v17_resources_feed_mapping_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_feed_mapping_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_feed_mapping_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*FeedMapping); i { case 0: return &v.state @@ -1049,7 +1049,7 @@ func file_google_ads_googleads_v16_resources_feed_mapping_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_feed_mapping_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_feed_mapping_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AttributeFieldMapping); i { case 0: return &v.state @@ -1062,11 +1062,11 @@ func file_google_ads_googleads_v16_resources_feed_mapping_proto_init() { } } } - file_google_ads_googleads_v16_resources_feed_mapping_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_feed_mapping_proto_msgTypes[0].OneofWrappers = []interface{}{ (*FeedMapping_PlaceholderType)(nil), (*FeedMapping_CriterionType)(nil), } - file_google_ads_googleads_v16_resources_feed_mapping_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_feed_mapping_proto_msgTypes[1].OneofWrappers = []interface{}{ (*AttributeFieldMapping_SitelinkField)(nil), (*AttributeFieldMapping_CallField)(nil), (*AttributeFieldMapping_AppField)(nil), @@ -1094,18 +1094,18 @@ func file_google_ads_googleads_v16_resources_feed_mapping_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_feed_mapping_proto_rawDesc, NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_feed_mapping_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_feed_mapping_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_feed_mapping_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_feed_mapping_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_feed_mapping_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_feed_mapping_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_feed_mapping_proto = out.File - file_google_ads_googleads_v16_resources_feed_mapping_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_feed_mapping_proto_goTypes = nil - file_google_ads_googleads_v16_resources_feed_mapping_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_feed_mapping_proto = out.File + file_google_ads_googleads_v17_resources_feed_mapping_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_feed_mapping_proto_goTypes = nil + file_google_ads_googleads_v17_resources_feed_mapping_proto_depIdxs = nil } diff --git a/resources/feed_placeholder_view.pb.go b/resources/feed_placeholder_view.pb.go index 94be030e..15639584 100644 --- a/resources/feed_placeholder_view.pb.go +++ b/resources/feed_placeholder_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/feed_placeholder_view.proto +// source: google/ads/googleads/v17/resources/feed_placeholder_view.proto package resources @@ -48,13 +48,13 @@ type FeedPlaceholderView struct { // `customers/{customer_id}/feedPlaceholderViews/{placeholder_type}` ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` // Output only. The placeholder type of the feed placeholder view. - PlaceholderType enums.PlaceholderTypeEnum_PlaceholderType `protobuf:"varint,2,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,2,opt,name=placeholder_type,json=placeholderType,proto3,enum=google.ads.googleads.v17.enums.PlaceholderTypeEnum_PlaceholderType" json:"placeholder_type,omitempty"` } func (x *FeedPlaceholderView) Reset() { *x = FeedPlaceholderView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_feed_placeholder_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_feed_placeholder_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67,7 +67,7 @@ func (x *FeedPlaceholderView) String() string { func (*FeedPlaceholderView) ProtoMessage() {} func (x *FeedPlaceholderView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_feed_placeholder_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_feed_placeholder_view_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80,7 +80,7 @@ func (x *FeedPlaceholderView) ProtoReflect() protoreflect.Message { // Deprecated: Use FeedPlaceholderView.ProtoReflect.Descriptor instead. func (*FeedPlaceholderView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_feed_placeholder_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_feed_placeholder_view_proto_rawDescGZIP(), []int{0} } func (x *FeedPlaceholderView) GetResourceName() string { @@ -97,17 +97,17 @@ func (x *FeedPlaceholderView) GetPlaceholderType() enums.PlaceholderTypeEnum_Pla return enums.PlaceholderTypeEnum_PlaceholderType(0) } -var File_google_ads_googleads_v16_resources_feed_placeholder_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_feed_placeholder_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_feed_placeholder_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_feed_placeholder_view_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, 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, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 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, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, + 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, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, @@ -123,7 +123,7 @@ var file_google_ads_googleads_v16_resources_feed_placeholder_view_proto_rawDesc 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x73, 0x0a, 0x10, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 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, + 0x73, 0x2e, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0f, @@ -137,43 +137,43 @@ var file_google_ads_googleads_v16_resources_feed_placeholder_view_proto_rawDesc 0x2f, 0x7b, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x7d, 0x42, 0x8a, 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, 0x18, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x18, 0x46, 0x65, 0x65, 0x64, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 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, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, + 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, 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, + 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, 0x63, 0x65, 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_feed_placeholder_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_feed_placeholder_view_proto_rawDescData = file_google_ads_googleads_v16_resources_feed_placeholder_view_proto_rawDesc + file_google_ads_googleads_v17_resources_feed_placeholder_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_feed_placeholder_view_proto_rawDescData = file_google_ads_googleads_v17_resources_feed_placeholder_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_feed_placeholder_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_feed_placeholder_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_feed_placeholder_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_feed_placeholder_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_feed_placeholder_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_feed_placeholder_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_feed_placeholder_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_feed_placeholder_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_feed_placeholder_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_feed_placeholder_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_feed_placeholder_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_feed_placeholder_view_proto_goTypes = []interface{}{ - (*FeedPlaceholderView)(nil), // 0: google.ads.googleads.v16.resources.FeedPlaceholderView - (enums.PlaceholderTypeEnum_PlaceholderType)(0), // 1: google.ads.googleads.v16.enums.PlaceholderTypeEnum.PlaceholderType +var file_google_ads_googleads_v17_resources_feed_placeholder_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_feed_placeholder_view_proto_goTypes = []interface{}{ + (*FeedPlaceholderView)(nil), // 0: google.ads.googleads.v17.resources.FeedPlaceholderView + (enums.PlaceholderTypeEnum_PlaceholderType)(0), // 1: google.ads.googleads.v17.enums.PlaceholderTypeEnum.PlaceholderType } -var file_google_ads_googleads_v16_resources_feed_placeholder_view_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.FeedPlaceholderView.placeholder_type:type_name -> google.ads.googleads.v16.enums.PlaceholderTypeEnum.PlaceholderType +var file_google_ads_googleads_v17_resources_feed_placeholder_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.FeedPlaceholderView.placeholder_type:type_name -> google.ads.googleads.v17.enums.PlaceholderTypeEnum.PlaceholderType 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 @@ -181,13 +181,13 @@ var file_google_ads_googleads_v16_resources_feed_placeholder_view_proto_depIdxs 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_feed_placeholder_view_proto_init() } -func file_google_ads_googleads_v16_resources_feed_placeholder_view_proto_init() { - if File_google_ads_googleads_v16_resources_feed_placeholder_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_feed_placeholder_view_proto_init() } +func file_google_ads_googleads_v17_resources_feed_placeholder_view_proto_init() { + if File_google_ads_googleads_v17_resources_feed_placeholder_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_feed_placeholder_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_feed_placeholder_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*FeedPlaceholderView); i { case 0: return &v.state @@ -204,18 +204,18 @@ func file_google_ads_googleads_v16_resources_feed_placeholder_view_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_feed_placeholder_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_feed_placeholder_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_feed_placeholder_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_feed_placeholder_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_feed_placeholder_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_feed_placeholder_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_feed_placeholder_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_feed_placeholder_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_feed_placeholder_view_proto = out.File - file_google_ads_googleads_v16_resources_feed_placeholder_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_feed_placeholder_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_feed_placeholder_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_feed_placeholder_view_proto = out.File + file_google_ads_googleads_v17_resources_feed_placeholder_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_feed_placeholder_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_feed_placeholder_view_proto_depIdxs = nil } diff --git a/resources/gender_view.pb.go b/resources/gender_view.pb.go index d5cdbe38..7cf8eb3a 100644 --- a/resources/gender_view.pb.go +++ b/resources/gender_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/gender_view.proto +// source: google/ads/googleads/v17/resources/gender_view.proto package resources @@ -54,7 +54,7 @@ type GenderView struct { func (x *GenderView) Reset() { *x = GenderView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_gender_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_gender_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67,7 +67,7 @@ func (x *GenderView) String() string { func (*GenderView) ProtoMessage() {} func (x *GenderView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_gender_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_gender_view_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80,7 +80,7 @@ func (x *GenderView) ProtoReflect() protoreflect.Message { // Deprecated: Use GenderView.ProtoReflect.Descriptor instead. func (*GenderView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_gender_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_gender_view_proto_rawDescGZIP(), []int{0} } func (x *GenderView) GetResourceName() string { @@ -90,14 +90,14 @@ func (x *GenderView) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_resources_gender_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_gender_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_gender_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_gender_view_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, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 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, + 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, 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, @@ -117,40 +117,40 @@ var file_google_ads_googleads_v16_resources_gender_view_proto_rawDesc = []byte{ 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x81, 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, 0x0f, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x0f, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 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, 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_gender_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_gender_view_proto_rawDescData = file_google_ads_googleads_v16_resources_gender_view_proto_rawDesc + file_google_ads_googleads_v17_resources_gender_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_gender_view_proto_rawDescData = file_google_ads_googleads_v17_resources_gender_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_gender_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_gender_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_gender_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_gender_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_gender_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_gender_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_gender_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_gender_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_gender_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_gender_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_gender_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_gender_view_proto_goTypes = []interface{}{ - (*GenderView)(nil), // 0: google.ads.googleads.v16.resources.GenderView +var file_google_ads_googleads_v17_resources_gender_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_gender_view_proto_goTypes = []interface{}{ + (*GenderView)(nil), // 0: google.ads.googleads.v17.resources.GenderView } -var file_google_ads_googleads_v16_resources_gender_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_gender_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method output_type 0, // [0:0] is the sub-list for method input_type 0, // [0:0] is the sub-list for extension type_name @@ -158,13 +158,13 @@ var file_google_ads_googleads_v16_resources_gender_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_gender_view_proto_init() } -func file_google_ads_googleads_v16_resources_gender_view_proto_init() { - if File_google_ads_googleads_v16_resources_gender_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_gender_view_proto_init() } +func file_google_ads_googleads_v17_resources_gender_view_proto_init() { + if File_google_ads_googleads_v17_resources_gender_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_gender_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_gender_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GenderView); i { case 0: return &v.state @@ -181,18 +181,18 @@ func file_google_ads_googleads_v16_resources_gender_view_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_gender_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_gender_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_gender_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_gender_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_gender_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_gender_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_gender_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_gender_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_gender_view_proto = out.File - file_google_ads_googleads_v16_resources_gender_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_gender_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_gender_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_gender_view_proto = out.File + file_google_ads_googleads_v17_resources_gender_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_gender_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_gender_view_proto_depIdxs = nil } diff --git a/resources/geo_target_constant.pb.go b/resources/geo_target_constant.pb.go index 80ef5eaa..6c211b00 100644 --- a/resources/geo_target_constant.pb.go +++ b/resources/geo_target_constant.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/geo_target_constant.proto +// source: google/ads/googleads/v17/resources/geo_target_constant.proto package resources @@ -57,7 +57,7 @@ type GeoTargetConstant struct { // Output only. Geo target constant target type. TargetType *string `protobuf:"bytes,13,opt,name=target_type,json=targetType,proto3,oneof" json:"target_type,omitempty"` // Output only. Geo target constant status. - Status enums.GeoTargetConstantStatusEnum_GeoTargetConstantStatus `protobuf:"varint,7,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.GeoTargetConstantStatusEnum_GeoTargetConstantStatus" json:"status,omitempty"` + Status enums.GeoTargetConstantStatusEnum_GeoTargetConstantStatus `protobuf:"varint,7,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.GeoTargetConstantStatusEnum_GeoTargetConstantStatus" json:"status,omitempty"` // Output only. The fully qualified English name, consisting of the target's // name and that of its parent and country. CanonicalName *string `protobuf:"bytes,14,opt,name=canonical_name,json=canonicalName,proto3,oneof" json:"canonical_name,omitempty"` @@ -71,7 +71,7 @@ type GeoTargetConstant struct { func (x *GeoTargetConstant) Reset() { *x = GeoTargetConstant{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_geo_target_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_geo_target_constant_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -84,7 +84,7 @@ func (x *GeoTargetConstant) String() string { func (*GeoTargetConstant) ProtoMessage() {} func (x *GeoTargetConstant) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_geo_target_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_geo_target_constant_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -97,7 +97,7 @@ func (x *GeoTargetConstant) ProtoReflect() protoreflect.Message { // Deprecated: Use GeoTargetConstant.ProtoReflect.Descriptor instead. func (*GeoTargetConstant) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_geo_target_constant_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_geo_target_constant_proto_rawDescGZIP(), []int{0} } func (x *GeoTargetConstant) GetResourceName() string { @@ -156,17 +156,17 @@ func (x *GeoTargetConstant) GetParentGeoTarget() string { return "" } -var File_google_ads_googleads_v16_resources_geo_target_constant_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_geo_target_constant_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_geo_target_constant_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_geo_target_constant_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, 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, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 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, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, @@ -191,7 +191,7 @@ var file_google_ads_googleads_v16_resources_geo_target_constant_proto_rawDesc = 0x0a, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x70, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x53, 0x74, 0x61, @@ -218,43 +218,43 @@ var file_google_ads_googleads_v16_resources_geo_target_constant_proto_rawDesc = 0x0a, 0x12, 0x5f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x42, 0x88, 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, 0x16, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 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, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, + 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, + 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, 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, + 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_geo_target_constant_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_geo_target_constant_proto_rawDescData = file_google_ads_googleads_v16_resources_geo_target_constant_proto_rawDesc + file_google_ads_googleads_v17_resources_geo_target_constant_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_geo_target_constant_proto_rawDescData = file_google_ads_googleads_v17_resources_geo_target_constant_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_geo_target_constant_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_geo_target_constant_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_geo_target_constant_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_geo_target_constant_proto_rawDescData) +func file_google_ads_googleads_v17_resources_geo_target_constant_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_geo_target_constant_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_geo_target_constant_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_geo_target_constant_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_geo_target_constant_proto_rawDescData + return file_google_ads_googleads_v17_resources_geo_target_constant_proto_rawDescData } -var file_google_ads_googleads_v16_resources_geo_target_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_geo_target_constant_proto_goTypes = []interface{}{ - (*GeoTargetConstant)(nil), // 0: google.ads.googleads.v16.resources.GeoTargetConstant - (enums.GeoTargetConstantStatusEnum_GeoTargetConstantStatus)(0), // 1: google.ads.googleads.v16.enums.GeoTargetConstantStatusEnum.GeoTargetConstantStatus +var file_google_ads_googleads_v17_resources_geo_target_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_geo_target_constant_proto_goTypes = []interface{}{ + (*GeoTargetConstant)(nil), // 0: google.ads.googleads.v17.resources.GeoTargetConstant + (enums.GeoTargetConstantStatusEnum_GeoTargetConstantStatus)(0), // 1: google.ads.googleads.v17.enums.GeoTargetConstantStatusEnum.GeoTargetConstantStatus } -var file_google_ads_googleads_v16_resources_geo_target_constant_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.GeoTargetConstant.status:type_name -> google.ads.googleads.v16.enums.GeoTargetConstantStatusEnum.GeoTargetConstantStatus +var file_google_ads_googleads_v17_resources_geo_target_constant_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.GeoTargetConstant.status:type_name -> google.ads.googleads.v17.enums.GeoTargetConstantStatusEnum.GeoTargetConstantStatus 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 @@ -262,13 +262,13 @@ var file_google_ads_googleads_v16_resources_geo_target_constant_proto_depIdxs = 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_geo_target_constant_proto_init() } -func file_google_ads_googleads_v16_resources_geo_target_constant_proto_init() { - if File_google_ads_googleads_v16_resources_geo_target_constant_proto != nil { +func init() { file_google_ads_googleads_v17_resources_geo_target_constant_proto_init() } +func file_google_ads_googleads_v17_resources_geo_target_constant_proto_init() { + if File_google_ads_googleads_v17_resources_geo_target_constant_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_geo_target_constant_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_geo_target_constant_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GeoTargetConstant); i { case 0: return &v.state @@ -281,23 +281,23 @@ func file_google_ads_googleads_v16_resources_geo_target_constant_proto_init() { } } } - file_google_ads_googleads_v16_resources_geo_target_constant_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_geo_target_constant_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_geo_target_constant_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_geo_target_constant_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_geo_target_constant_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_geo_target_constant_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_geo_target_constant_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_geo_target_constant_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_geo_target_constant_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_geo_target_constant_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_geo_target_constant_proto = out.File - file_google_ads_googleads_v16_resources_geo_target_constant_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_geo_target_constant_proto_goTypes = nil - file_google_ads_googleads_v16_resources_geo_target_constant_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_geo_target_constant_proto = out.File + file_google_ads_googleads_v17_resources_geo_target_constant_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_geo_target_constant_proto_goTypes = nil + file_google_ads_googleads_v17_resources_geo_target_constant_proto_depIdxs = nil } diff --git a/resources/geographic_view.pb.go b/resources/geographic_view.pb.go index 08dbf2f3..f281ada2 100644 --- a/resources/geographic_view.pb.go +++ b/resources/geographic_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/geographic_view.proto +// source: google/ads/googleads/v17/resources/geographic_view.proto package resources @@ -53,7 +53,7 @@ type GeographicView struct { // `customers/{customer_id}/geographicViews/{country_criterion_id}~{location_type}` ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` // Output only. Type of the geo targeting of the campaign. - LocationType enums.GeoTargetingTypeEnum_GeoTargetingType `protobuf:"varint,3,opt,name=location_type,json=locationType,proto3,enum=google.ads.googleads.v16.enums.GeoTargetingTypeEnum_GeoTargetingType" json:"location_type,omitempty"` + LocationType enums.GeoTargetingTypeEnum_GeoTargetingType `protobuf:"varint,3,opt,name=location_type,json=locationType,proto3,enum=google.ads.googleads.v17.enums.GeoTargetingTypeEnum_GeoTargetingType" json:"location_type,omitempty"` // Output only. Criterion Id for the country. CountryCriterionId *int64 `protobuf:"varint,5,opt,name=country_criterion_id,json=countryCriterionId,proto3,oneof" json:"country_criterion_id,omitempty"` } @@ -61,7 +61,7 @@ type GeographicView struct { func (x *GeographicView) Reset() { *x = GeographicView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_geographic_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_geographic_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74,7 +74,7 @@ func (x *GeographicView) String() string { func (*GeographicView) ProtoMessage() {} func (x *GeographicView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_geographic_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_geographic_view_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -87,7 +87,7 @@ func (x *GeographicView) ProtoReflect() protoreflect.Message { // Deprecated: Use GeographicView.ProtoReflect.Descriptor instead. func (*GeographicView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_geographic_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_geographic_view_proto_rawDescGZIP(), []int{0} } func (x *GeographicView) GetResourceName() string { @@ -111,17 +111,17 @@ func (x *GeographicView) GetCountryCriterionId() int64 { return 0 } -var File_google_ads_googleads_v16_resources_geographic_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_geographic_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_geographic_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_geographic_view_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, 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, 0x67, 0x65, 0x6f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 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, 0x73, 0x1a, 0x37, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x67, + 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, 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, @@ -136,7 +136,7 @@ var file_google_ads_googleads_v16_resources_geographic_view_proto_rawDesc = []by 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x6f, 0x0a, 0x0d, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 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, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, @@ -156,42 +156,42 @@ var file_google_ads_googleads_v16_resources_geographic_view_proto_rawDesc = []by 0x74, 0x72, 0x79, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x42, 0x85, 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, 0x13, 0x47, 0x65, 0x6f, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x13, 0x47, 0x65, 0x6f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 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, 0x73, 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, + 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, 0x36, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 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, + 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_geographic_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_geographic_view_proto_rawDescData = file_google_ads_googleads_v16_resources_geographic_view_proto_rawDesc + file_google_ads_googleads_v17_resources_geographic_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_geographic_view_proto_rawDescData = file_google_ads_googleads_v17_resources_geographic_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_geographic_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_geographic_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_geographic_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_geographic_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_geographic_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_geographic_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_geographic_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_geographic_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_geographic_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_geographic_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_geographic_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_geographic_view_proto_goTypes = []interface{}{ - (*GeographicView)(nil), // 0: google.ads.googleads.v16.resources.GeographicView - (enums.GeoTargetingTypeEnum_GeoTargetingType)(0), // 1: google.ads.googleads.v16.enums.GeoTargetingTypeEnum.GeoTargetingType +var file_google_ads_googleads_v17_resources_geographic_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_geographic_view_proto_goTypes = []interface{}{ + (*GeographicView)(nil), // 0: google.ads.googleads.v17.resources.GeographicView + (enums.GeoTargetingTypeEnum_GeoTargetingType)(0), // 1: google.ads.googleads.v17.enums.GeoTargetingTypeEnum.GeoTargetingType } -var file_google_ads_googleads_v16_resources_geographic_view_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.GeographicView.location_type:type_name -> google.ads.googleads.v16.enums.GeoTargetingTypeEnum.GeoTargetingType +var file_google_ads_googleads_v17_resources_geographic_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.GeographicView.location_type:type_name -> google.ads.googleads.v17.enums.GeoTargetingTypeEnum.GeoTargetingType 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 @@ -199,13 +199,13 @@ var file_google_ads_googleads_v16_resources_geographic_view_proto_depIdxs = []in 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_geographic_view_proto_init() } -func file_google_ads_googleads_v16_resources_geographic_view_proto_init() { - if File_google_ads_googleads_v16_resources_geographic_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_geographic_view_proto_init() } +func file_google_ads_googleads_v17_resources_geographic_view_proto_init() { + if File_google_ads_googleads_v17_resources_geographic_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_geographic_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_geographic_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GeographicView); i { case 0: return &v.state @@ -218,23 +218,23 @@ func file_google_ads_googleads_v16_resources_geographic_view_proto_init() { } } } - file_google_ads_googleads_v16_resources_geographic_view_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_geographic_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_geographic_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_geographic_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_geographic_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_geographic_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_geographic_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_geographic_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_geographic_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_geographic_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_geographic_view_proto = out.File - file_google_ads_googleads_v16_resources_geographic_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_geographic_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_geographic_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_geographic_view_proto = out.File + file_google_ads_googleads_v17_resources_geographic_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_geographic_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_geographic_view_proto_depIdxs = nil } diff --git a/resources/google_ads_field.pb.go b/resources/google_ads_field.pb.go index 8ec4a575..11d67a10 100644 --- a/resources/google_ads_field.pb.go +++ b/resources/google_ads_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/resources/google_ads_field.proto +// source: google/ads/googleads/v17/resources/google_ads_field.proto package resources @@ -50,7 +50,7 @@ type GoogleAdsField struct { // Output only. The name of the artifact. Name *string `protobuf:"bytes,21,opt,name=name,proto3,oneof" json:"name,omitempty"` // Output only. The category of the artifact. - Category enums.GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory `protobuf:"varint,3,opt,name=category,proto3,enum=google.ads.googleads.v16.enums.GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory" json:"category,omitempty"` + Category enums.GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory `protobuf:"varint,3,opt,name=category,proto3,enum=google.ads.googleads.v17.enums.GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory" json:"category,omitempty"` // Output only. Whether the artifact can be used in a SELECT clause in search // queries. Selectable *bool `protobuf:"varint,22,opt,name=selectable,proto3,oneof" json:"selectable,omitempty"` @@ -84,7 +84,7 @@ type GoogleAdsField struct { EnumValues []string `protobuf:"bytes,29,rep,name=enum_values,json=enumValues,proto3" json:"enum_values,omitempty"` // Output only. This field determines the operators that can be used with the // artifact in WHERE clauses. - DataType enums.GoogleAdsFieldDataTypeEnum_GoogleAdsFieldDataType `protobuf:"varint,12,opt,name=data_type,json=dataType,proto3,enum=google.ads.googleads.v16.enums.GoogleAdsFieldDataTypeEnum_GoogleAdsFieldDataType" json:"data_type,omitempty"` + DataType enums.GoogleAdsFieldDataTypeEnum_GoogleAdsFieldDataType `protobuf:"varint,12,opt,name=data_type,json=dataType,proto3,enum=google.ads.googleads.v17.enums.GoogleAdsFieldDataTypeEnum_GoogleAdsFieldDataType" json:"data_type,omitempty"` // Output only. The URL of proto describing the artifact's data type. TypeUrl *string `protobuf:"bytes,30,opt,name=type_url,json=typeUrl,proto3,oneof" json:"type_url,omitempty"` // Output only. Whether the field artifact is repeated. @@ -94,7 +94,7 @@ type GoogleAdsField struct { func (x *GoogleAdsField) Reset() { *x = GoogleAdsField{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_google_ads_field_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_google_ads_field_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -107,7 +107,7 @@ func (x *GoogleAdsField) String() string { func (*GoogleAdsField) ProtoMessage() {} func (x *GoogleAdsField) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_google_ads_field_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_google_ads_field_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -120,7 +120,7 @@ func (x *GoogleAdsField) ProtoReflect() protoreflect.Message { // Deprecated: Use GoogleAdsField.ProtoReflect.Descriptor instead. func (*GoogleAdsField) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_google_ads_field_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_google_ads_field_proto_rawDescGZIP(), []int{0} } func (x *GoogleAdsField) GetResourceName() string { @@ -221,21 +221,21 @@ func (x *GoogleAdsField) GetIsRepeated() bool { return false } -var File_google_ads_googleads_v16_resources_google_ads_field_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_google_ads_field_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_google_ads_field_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_google_ads_field_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, 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, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5f, 0x61, 0x64, 0x73, 0x5f, 0x66, 0x69, 0x65, 0x6c, 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, 0x73, 0x1a, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 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, 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, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, @@ -252,7 +252,7 @@ var file_google_ads_googleads_v16_resources_google_ads_field_proto_rawDesc = []b 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x72, 0x0a, 0x08, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x18, 0x03, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x46, 0x69, 0x65, 0x6c, 0x64, @@ -280,7 +280,7 @@ var file_google_ads_googleads_v16_resources_google_ads_field_proto_rawDesc = []b 0x0a, 0x65, 0x6e, 0x75, 0x6d, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x12, 0x73, 0x0a, 0x09, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0c, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x44, 0x61, 0x74, 0x61, 0x54, 0x79, 0x70, @@ -302,45 +302,45 @@ var file_google_ads_googleads_v16_resources_google_ads_field_proto_rawDesc = []b 0x75, 0x72, 0x6c, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x69, 0x73, 0x5f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x42, 0x85, 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, 0x13, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x13, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x46, 0x69, 0x65, 0x6c, 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, + 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_google_ads_field_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_google_ads_field_proto_rawDescData = file_google_ads_googleads_v16_resources_google_ads_field_proto_rawDesc + file_google_ads_googleads_v17_resources_google_ads_field_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_google_ads_field_proto_rawDescData = file_google_ads_googleads_v17_resources_google_ads_field_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_google_ads_field_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_google_ads_field_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_google_ads_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_google_ads_field_proto_rawDescData) +func file_google_ads_googleads_v17_resources_google_ads_field_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_google_ads_field_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_google_ads_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_google_ads_field_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_google_ads_field_proto_rawDescData + return file_google_ads_googleads_v17_resources_google_ads_field_proto_rawDescData } -var file_google_ads_googleads_v16_resources_google_ads_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_google_ads_field_proto_goTypes = []interface{}{ - (*GoogleAdsField)(nil), // 0: google.ads.googleads.v16.resources.GoogleAdsField - (enums.GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory)(0), // 1: google.ads.googleads.v16.enums.GoogleAdsFieldCategoryEnum.GoogleAdsFieldCategory - (enums.GoogleAdsFieldDataTypeEnum_GoogleAdsFieldDataType)(0), // 2: google.ads.googleads.v16.enums.GoogleAdsFieldDataTypeEnum.GoogleAdsFieldDataType +var file_google_ads_googleads_v17_resources_google_ads_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_google_ads_field_proto_goTypes = []interface{}{ + (*GoogleAdsField)(nil), // 0: google.ads.googleads.v17.resources.GoogleAdsField + (enums.GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory)(0), // 1: google.ads.googleads.v17.enums.GoogleAdsFieldCategoryEnum.GoogleAdsFieldCategory + (enums.GoogleAdsFieldDataTypeEnum_GoogleAdsFieldDataType)(0), // 2: google.ads.googleads.v17.enums.GoogleAdsFieldDataTypeEnum.GoogleAdsFieldDataType } -var file_google_ads_googleads_v16_resources_google_ads_field_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.GoogleAdsField.category:type_name -> google.ads.googleads.v16.enums.GoogleAdsFieldCategoryEnum.GoogleAdsFieldCategory - 2, // 1: google.ads.googleads.v16.resources.GoogleAdsField.data_type:type_name -> google.ads.googleads.v16.enums.GoogleAdsFieldDataTypeEnum.GoogleAdsFieldDataType +var file_google_ads_googleads_v17_resources_google_ads_field_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.GoogleAdsField.category:type_name -> google.ads.googleads.v17.enums.GoogleAdsFieldCategoryEnum.GoogleAdsFieldCategory + 2, // 1: google.ads.googleads.v17.resources.GoogleAdsField.data_type:type_name -> google.ads.googleads.v17.enums.GoogleAdsFieldDataTypeEnum.GoogleAdsFieldDataType 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 @@ -348,13 +348,13 @@ var file_google_ads_googleads_v16_resources_google_ads_field_proto_depIdxs = []i 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_google_ads_field_proto_init() } -func file_google_ads_googleads_v16_resources_google_ads_field_proto_init() { - if File_google_ads_googleads_v16_resources_google_ads_field_proto != nil { +func init() { file_google_ads_googleads_v17_resources_google_ads_field_proto_init() } +func file_google_ads_googleads_v17_resources_google_ads_field_proto_init() { + if File_google_ads_googleads_v17_resources_google_ads_field_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_google_ads_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_google_ads_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GoogleAdsField); i { case 0: return &v.state @@ -367,23 +367,23 @@ func file_google_ads_googleads_v16_resources_google_ads_field_proto_init() { } } } - file_google_ads_googleads_v16_resources_google_ads_field_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_google_ads_field_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_google_ads_field_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_google_ads_field_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_google_ads_field_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_google_ads_field_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_google_ads_field_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_google_ads_field_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_google_ads_field_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_google_ads_field_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_google_ads_field_proto = out.File - file_google_ads_googleads_v16_resources_google_ads_field_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_google_ads_field_proto_goTypes = nil - file_google_ads_googleads_v16_resources_google_ads_field_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_google_ads_field_proto = out.File + file_google_ads_googleads_v17_resources_google_ads_field_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_google_ads_field_proto_goTypes = nil + file_google_ads_googleads_v17_resources_google_ads_field_proto_depIdxs = nil } diff --git a/resources/group_placement_view.pb.go b/resources/group_placement_view.pb.go index cac927dd..4d32f0d7 100644 --- a/resources/group_placement_view.pb.go +++ b/resources/group_placement_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/group_placement_view.proto +// source: google/ads/googleads/v17/resources/group_placement_view.proto package resources @@ -58,13 +58,13 @@ type GroupPlacementView struct { TargetUrl *string `protobuf:"bytes,8,opt,name=target_url,json=targetUrl,proto3,oneof" json:"target_url,omitempty"` // Output only. Type of the placement, for example, Website, YouTube Channel, // Mobile Application. - PlacementType enums.PlacementTypeEnum_PlacementType `protobuf:"varint,5,opt,name=placement_type,json=placementType,proto3,enum=google.ads.googleads.v16.enums.PlacementTypeEnum_PlacementType" json:"placement_type,omitempty"` + PlacementType enums.PlacementTypeEnum_PlacementType `protobuf:"varint,5,opt,name=placement_type,json=placementType,proto3,enum=google.ads.googleads.v17.enums.PlacementTypeEnum_PlacementType" json:"placement_type,omitempty"` } func (x *GroupPlacementView) Reset() { *x = GroupPlacementView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_group_placement_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_group_placement_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *GroupPlacementView) String() string { func (*GroupPlacementView) ProtoMessage() {} func (x *GroupPlacementView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_group_placement_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_group_placement_view_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *GroupPlacementView) ProtoReflect() protoreflect.Message { // Deprecated: Use GroupPlacementView.ProtoReflect.Descriptor instead. func (*GroupPlacementView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_group_placement_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_group_placement_view_proto_rawDescGZIP(), []int{0} } func (x *GroupPlacementView) GetResourceName() string { @@ -128,17 +128,17 @@ func (x *GroupPlacementView) GetPlacementType() enums.PlacementTypeEnum_Placemen return enums.PlacementTypeEnum_PlacementType(0) } -var File_google_ads_googleads_v16_resources_group_placement_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_group_placement_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_group_placement_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_group_placement_view_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, 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, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 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, + 0x6c, 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, 0x65, 0x6e, + 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, 0x6d, 0x65, 0x6e, 0x74, 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, @@ -162,7 +162,7 @@ var file_google_ads_googleads_v16_resources_group_placement_view_proto_rawDesc = 0x88, 0x01, 0x01, 0x12, 0x6b, 0x0a, 0x0e, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 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, 0x50, 0x6c, 0x61, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0d, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, @@ -178,44 +178,44 @@ var file_google_ads_googleads_v16_resources_group_placement_view_proto_rawDesc = 0x0a, 0x0d, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x89, 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, + 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, 0x17, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 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_group_placement_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_group_placement_view_proto_rawDescData = file_google_ads_googleads_v16_resources_group_placement_view_proto_rawDesc + file_google_ads_googleads_v17_resources_group_placement_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_group_placement_view_proto_rawDescData = file_google_ads_googleads_v17_resources_group_placement_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_group_placement_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_group_placement_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_group_placement_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_group_placement_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_group_placement_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_group_placement_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_group_placement_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_group_placement_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_group_placement_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_group_placement_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_group_placement_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_group_placement_view_proto_goTypes = []interface{}{ - (*GroupPlacementView)(nil), // 0: google.ads.googleads.v16.resources.GroupPlacementView - (enums.PlacementTypeEnum_PlacementType)(0), // 1: google.ads.googleads.v16.enums.PlacementTypeEnum.PlacementType +var file_google_ads_googleads_v17_resources_group_placement_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_group_placement_view_proto_goTypes = []interface{}{ + (*GroupPlacementView)(nil), // 0: google.ads.googleads.v17.resources.GroupPlacementView + (enums.PlacementTypeEnum_PlacementType)(0), // 1: google.ads.googleads.v17.enums.PlacementTypeEnum.PlacementType } -var file_google_ads_googleads_v16_resources_group_placement_view_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.GroupPlacementView.placement_type:type_name -> google.ads.googleads.v16.enums.PlacementTypeEnum.PlacementType +var file_google_ads_googleads_v17_resources_group_placement_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.GroupPlacementView.placement_type:type_name -> google.ads.googleads.v17.enums.PlacementTypeEnum.PlacementType 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 @@ -223,13 +223,13 @@ var file_google_ads_googleads_v16_resources_group_placement_view_proto_depIdxs = 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_group_placement_view_proto_init() } -func file_google_ads_googleads_v16_resources_group_placement_view_proto_init() { - if File_google_ads_googleads_v16_resources_group_placement_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_group_placement_view_proto_init() } +func file_google_ads_googleads_v17_resources_group_placement_view_proto_init() { + if File_google_ads_googleads_v17_resources_group_placement_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_group_placement_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_group_placement_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GroupPlacementView); i { case 0: return &v.state @@ -242,23 +242,23 @@ func file_google_ads_googleads_v16_resources_group_placement_view_proto_init() { } } } - file_google_ads_googleads_v16_resources_group_placement_view_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_group_placement_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_group_placement_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_group_placement_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_group_placement_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_group_placement_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_group_placement_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_group_placement_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_group_placement_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_group_placement_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_group_placement_view_proto = out.File - file_google_ads_googleads_v16_resources_group_placement_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_group_placement_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_group_placement_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_group_placement_view_proto = out.File + file_google_ads_googleads_v17_resources_group_placement_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_group_placement_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_group_placement_view_proto_depIdxs = nil } diff --git a/resources/hotel_group_view.pb.go b/resources/hotel_group_view.pb.go index 961678f2..891ba2a2 100644 --- a/resources/hotel_group_view.pb.go +++ b/resources/hotel_group_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/hotel_group_view.proto +// source: google/ads/googleads/v17/resources/hotel_group_view.proto package resources @@ -51,7 +51,7 @@ type HotelGroupView struct { func (x *HotelGroupView) Reset() { *x = HotelGroupView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_hotel_group_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_hotel_group_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64,7 +64,7 @@ func (x *HotelGroupView) String() string { func (*HotelGroupView) ProtoMessage() {} func (x *HotelGroupView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_hotel_group_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_hotel_group_view_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 *HotelGroupView) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelGroupView.ProtoReflect.Descriptor instead. func (*HotelGroupView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_hotel_group_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_hotel_group_view_proto_rawDescGZIP(), []int{0} } func (x *HotelGroupView) GetResourceName() string { @@ -87,15 +87,15 @@ func (x *HotelGroupView) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_resources_hotel_group_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_hotel_group_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_hotel_group_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_hotel_group_view_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, 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, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 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, 0x73, 0x1a, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -115,41 +115,41 @@ var file_google_ads_googleads_v16_resources_hotel_group_view_proto_rawDesc = []b 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x85, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x13, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70, 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, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, + 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, 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, + 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, 0x63, 0x65, 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_hotel_group_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_hotel_group_view_proto_rawDescData = file_google_ads_googleads_v16_resources_hotel_group_view_proto_rawDesc + file_google_ads_googleads_v17_resources_hotel_group_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_hotel_group_view_proto_rawDescData = file_google_ads_googleads_v17_resources_hotel_group_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_hotel_group_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_hotel_group_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_hotel_group_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_hotel_group_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_hotel_group_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_hotel_group_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_hotel_group_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_hotel_group_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_hotel_group_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_hotel_group_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_hotel_group_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_hotel_group_view_proto_goTypes = []interface{}{ - (*HotelGroupView)(nil), // 0: google.ads.googleads.v16.resources.HotelGroupView +var file_google_ads_googleads_v17_resources_hotel_group_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_hotel_group_view_proto_goTypes = []interface{}{ + (*HotelGroupView)(nil), // 0: google.ads.googleads.v17.resources.HotelGroupView } -var file_google_ads_googleads_v16_resources_hotel_group_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_hotel_group_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method output_type 0, // [0:0] is the sub-list for method input_type 0, // [0:0] is the sub-list for extension type_name @@ -157,13 +157,13 @@ var file_google_ads_googleads_v16_resources_hotel_group_view_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_hotel_group_view_proto_init() } -func file_google_ads_googleads_v16_resources_hotel_group_view_proto_init() { - if File_google_ads_googleads_v16_resources_hotel_group_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_hotel_group_view_proto_init() } +func file_google_ads_googleads_v17_resources_hotel_group_view_proto_init() { + if File_google_ads_googleads_v17_resources_hotel_group_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_hotel_group_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_hotel_group_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*HotelGroupView); i { case 0: return &v.state @@ -180,18 +180,18 @@ func file_google_ads_googleads_v16_resources_hotel_group_view_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_hotel_group_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_hotel_group_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_hotel_group_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_hotel_group_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_hotel_group_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_hotel_group_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_hotel_group_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_hotel_group_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_hotel_group_view_proto = out.File - file_google_ads_googleads_v16_resources_hotel_group_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_hotel_group_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_hotel_group_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_hotel_group_view_proto = out.File + file_google_ads_googleads_v17_resources_hotel_group_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_hotel_group_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_hotel_group_view_proto_depIdxs = nil } diff --git a/resources/hotel_performance_view.pb.go b/resources/hotel_performance_view.pb.go index a7d27ff5..9539fa70 100644 --- a/resources/hotel_performance_view.pb.go +++ b/resources/hotel_performance_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/hotel_performance_view.proto +// source: google/ads/googleads/v17/resources/hotel_performance_view.proto package resources @@ -51,7 +51,7 @@ type HotelPerformanceView struct { func (x *HotelPerformanceView) Reset() { *x = HotelPerformanceView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_hotel_performance_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_hotel_performance_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64,7 +64,7 @@ func (x *HotelPerformanceView) String() string { func (*HotelPerformanceView) ProtoMessage() {} func (x *HotelPerformanceView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_hotel_performance_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_hotel_performance_view_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 *HotelPerformanceView) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelPerformanceView.ProtoReflect.Descriptor instead. func (*HotelPerformanceView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_hotel_performance_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_hotel_performance_view_proto_rawDescGZIP(), []int{0} } func (x *HotelPerformanceView) GetResourceName() string { @@ -87,15 +87,15 @@ func (x *HotelPerformanceView) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_resources_hotel_performance_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_hotel_performance_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_hotel_performance_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_hotel_performance_view_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, 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, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 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, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -115,41 +115,41 @@ var file_google_ads_googleads_v16_resources_hotel_performance_view_proto_rawDesc 0x69, 0x64, 0x7d, 0x2f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x56, 0x69, 0x65, 0x77, 0x42, 0x8b, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x19, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 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, 0x73, 0x6f, 0x75, 0x72, + 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, + 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, 0x26, + 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, + 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_hotel_performance_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_hotel_performance_view_proto_rawDescData = file_google_ads_googleads_v16_resources_hotel_performance_view_proto_rawDesc + file_google_ads_googleads_v17_resources_hotel_performance_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_hotel_performance_view_proto_rawDescData = file_google_ads_googleads_v17_resources_hotel_performance_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_hotel_performance_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_hotel_performance_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_hotel_performance_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_hotel_performance_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_hotel_performance_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_hotel_performance_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_hotel_performance_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_hotel_performance_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_hotel_performance_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_hotel_performance_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_hotel_performance_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_hotel_performance_view_proto_goTypes = []interface{}{ - (*HotelPerformanceView)(nil), // 0: google.ads.googleads.v16.resources.HotelPerformanceView +var file_google_ads_googleads_v17_resources_hotel_performance_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_hotel_performance_view_proto_goTypes = []interface{}{ + (*HotelPerformanceView)(nil), // 0: google.ads.googleads.v17.resources.HotelPerformanceView } -var file_google_ads_googleads_v16_resources_hotel_performance_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_hotel_performance_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method output_type 0, // [0:0] is the sub-list for method input_type 0, // [0:0] is the sub-list for extension type_name @@ -157,13 +157,13 @@ var file_google_ads_googleads_v16_resources_hotel_performance_view_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_hotel_performance_view_proto_init() } -func file_google_ads_googleads_v16_resources_hotel_performance_view_proto_init() { - if File_google_ads_googleads_v16_resources_hotel_performance_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_hotel_performance_view_proto_init() } +func file_google_ads_googleads_v17_resources_hotel_performance_view_proto_init() { + if File_google_ads_googleads_v17_resources_hotel_performance_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_hotel_performance_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_hotel_performance_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*HotelPerformanceView); i { case 0: return &v.state @@ -180,18 +180,18 @@ func file_google_ads_googleads_v16_resources_hotel_performance_view_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_hotel_performance_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_hotel_performance_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_hotel_performance_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_hotel_performance_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_hotel_performance_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_hotel_performance_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_hotel_performance_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_hotel_performance_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_hotel_performance_view_proto = out.File - file_google_ads_googleads_v16_resources_hotel_performance_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_hotel_performance_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_hotel_performance_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_hotel_performance_view_proto = out.File + file_google_ads_googleads_v17_resources_hotel_performance_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_hotel_performance_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_hotel_performance_view_proto_depIdxs = nil } diff --git a/resources/hotel_reconciliation.pb.go b/resources/hotel_reconciliation.pb.go index ca1949f4..92a9a83b 100644 --- a/resources/hotel_reconciliation.pb.go +++ b/resources/hotel_reconciliation.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/hotel_reconciliation.proto +// source: google/ads/googleads/v17/resources/hotel_reconciliation.proto package resources @@ -90,13 +90,13 @@ type HotelReconciliation struct { // reconciliation and billing. Bookings should be reconciled within 45 days // after the check-out date. Any booking not reconciled within 45 days will be // billed at its original value. - Status enums.HotelReconciliationStatusEnum_HotelReconciliationStatus `protobuf:"varint,10,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.HotelReconciliationStatusEnum_HotelReconciliationStatus" json:"status,omitempty"` + Status enums.HotelReconciliationStatusEnum_HotelReconciliationStatus `protobuf:"varint,10,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.HotelReconciliationStatusEnum_HotelReconciliationStatus" json:"status,omitempty"` } func (x *HotelReconciliation) Reset() { *x = HotelReconciliation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_hotel_reconciliation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_hotel_reconciliation_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *HotelReconciliation) String() string { func (*HotelReconciliation) ProtoMessage() {} func (x *HotelReconciliation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_hotel_reconciliation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_hotel_reconciliation_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,7 +122,7 @@ func (x *HotelReconciliation) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelReconciliation.ProtoReflect.Descriptor instead. func (*HotelReconciliation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_hotel_reconciliation_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_hotel_reconciliation_proto_rawDescGZIP(), []int{0} } func (x *HotelReconciliation) GetResourceName() string { @@ -202,17 +202,17 @@ func (x *HotelReconciliation) GetStatus() enums.HotelReconciliationStatusEnum_Ho return enums.HotelReconciliationStatusEnum_HotelReconciliationStatus(0) } -var File_google_ads_googleads_v16_resources_hotel_reconciliation_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_hotel_reconciliation_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_hotel_reconciliation_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_hotel_reconciliation_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, 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, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x69, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, @@ -254,7 +254,7 @@ var file_google_ads_googleads_v16_resources_hotel_reconciliation_proto_rawDesc = 0x62, 0x69, 0x6c, 0x6c, 0x65, 0x64, 0x12, 0x77, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x0a, 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, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x52, 0x65, 0x63, + 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 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, 0x42, @@ -268,43 +268,43 @@ var file_google_ads_googleads_v16_resources_hotel_reconciliation_proto_rawDesc = 0x2f, 0x7b, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x8a, 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, 0x18, 0x48, 0x6f, 0x74, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x18, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x69, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, + 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, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, + 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, + 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, 0x70, + 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_hotel_reconciliation_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_hotel_reconciliation_proto_rawDescData = file_google_ads_googleads_v16_resources_hotel_reconciliation_proto_rawDesc + file_google_ads_googleads_v17_resources_hotel_reconciliation_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_hotel_reconciliation_proto_rawDescData = file_google_ads_googleads_v17_resources_hotel_reconciliation_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_hotel_reconciliation_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_hotel_reconciliation_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_hotel_reconciliation_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_hotel_reconciliation_proto_rawDescData) +func file_google_ads_googleads_v17_resources_hotel_reconciliation_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_hotel_reconciliation_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_hotel_reconciliation_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_hotel_reconciliation_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_hotel_reconciliation_proto_rawDescData + return file_google_ads_googleads_v17_resources_hotel_reconciliation_proto_rawDescData } -var file_google_ads_googleads_v16_resources_hotel_reconciliation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_hotel_reconciliation_proto_goTypes = []interface{}{ - (*HotelReconciliation)(nil), // 0: google.ads.googleads.v16.resources.HotelReconciliation - (enums.HotelReconciliationStatusEnum_HotelReconciliationStatus)(0), // 1: google.ads.googleads.v16.enums.HotelReconciliationStatusEnum.HotelReconciliationStatus +var file_google_ads_googleads_v17_resources_hotel_reconciliation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_hotel_reconciliation_proto_goTypes = []interface{}{ + (*HotelReconciliation)(nil), // 0: google.ads.googleads.v17.resources.HotelReconciliation + (enums.HotelReconciliationStatusEnum_HotelReconciliationStatus)(0), // 1: google.ads.googleads.v17.enums.HotelReconciliationStatusEnum.HotelReconciliationStatus } -var file_google_ads_googleads_v16_resources_hotel_reconciliation_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.HotelReconciliation.status:type_name -> google.ads.googleads.v16.enums.HotelReconciliationStatusEnum.HotelReconciliationStatus +var file_google_ads_googleads_v17_resources_hotel_reconciliation_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.HotelReconciliation.status:type_name -> google.ads.googleads.v17.enums.HotelReconciliationStatusEnum.HotelReconciliationStatus 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 @@ -312,13 +312,13 @@ var file_google_ads_googleads_v16_resources_hotel_reconciliation_proto_depIdxs = 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_hotel_reconciliation_proto_init() } -func file_google_ads_googleads_v16_resources_hotel_reconciliation_proto_init() { - if File_google_ads_googleads_v16_resources_hotel_reconciliation_proto != nil { +func init() { file_google_ads_googleads_v17_resources_hotel_reconciliation_proto_init() } +func file_google_ads_googleads_v17_resources_hotel_reconciliation_proto_init() { + if File_google_ads_googleads_v17_resources_hotel_reconciliation_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_hotel_reconciliation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_hotel_reconciliation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*HotelReconciliation); i { case 0: return &v.state @@ -335,18 +335,18 @@ func file_google_ads_googleads_v16_resources_hotel_reconciliation_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_hotel_reconciliation_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_hotel_reconciliation_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_hotel_reconciliation_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_hotel_reconciliation_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_hotel_reconciliation_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_hotel_reconciliation_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_hotel_reconciliation_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_hotel_reconciliation_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_hotel_reconciliation_proto = out.File - file_google_ads_googleads_v16_resources_hotel_reconciliation_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_hotel_reconciliation_proto_goTypes = nil - file_google_ads_googleads_v16_resources_hotel_reconciliation_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_hotel_reconciliation_proto = out.File + file_google_ads_googleads_v17_resources_hotel_reconciliation_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_hotel_reconciliation_proto_goTypes = nil + file_google_ads_googleads_v17_resources_hotel_reconciliation_proto_depIdxs = nil } diff --git a/resources/income_range_view.pb.go b/resources/income_range_view.pb.go index 927e308d..ce796df3 100644 --- a/resources/income_range_view.pb.go +++ b/resources/income_range_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/income_range_view.proto +// source: google/ads/googleads/v17/resources/income_range_view.proto package resources @@ -51,7 +51,7 @@ type IncomeRangeView struct { func (x *IncomeRangeView) Reset() { *x = IncomeRangeView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_income_range_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_income_range_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64,7 +64,7 @@ func (x *IncomeRangeView) String() string { func (*IncomeRangeView) ProtoMessage() {} func (x *IncomeRangeView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_income_range_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_income_range_view_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 *IncomeRangeView) ProtoReflect() protoreflect.Message { // Deprecated: Use IncomeRangeView.ProtoReflect.Descriptor instead. func (*IncomeRangeView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_income_range_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_income_range_view_proto_rawDescGZIP(), []int{0} } func (x *IncomeRangeView) GetResourceName() string { @@ -87,15 +87,15 @@ func (x *IncomeRangeView) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_resources_income_range_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_income_range_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_income_range_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_income_range_view_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, 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, 0x69, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 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, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -115,41 +115,41 @@ var file_google_ads_googleads_v16_resources_income_range_view_proto_rawDesc = [] 0x2f, 0x7b, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x86, 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, + 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, 0x14, 0x49, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 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, 0x73, 0x6f, 0x75, 0x72, + 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, + 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, 0x26, + 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, + 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_income_range_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_income_range_view_proto_rawDescData = file_google_ads_googleads_v16_resources_income_range_view_proto_rawDesc + file_google_ads_googleads_v17_resources_income_range_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_income_range_view_proto_rawDescData = file_google_ads_googleads_v17_resources_income_range_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_income_range_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_income_range_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_income_range_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_income_range_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_income_range_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_income_range_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_income_range_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_income_range_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_income_range_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_income_range_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_income_range_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_income_range_view_proto_goTypes = []interface{}{ - (*IncomeRangeView)(nil), // 0: google.ads.googleads.v16.resources.IncomeRangeView +var file_google_ads_googleads_v17_resources_income_range_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_income_range_view_proto_goTypes = []interface{}{ + (*IncomeRangeView)(nil), // 0: google.ads.googleads.v17.resources.IncomeRangeView } -var file_google_ads_googleads_v16_resources_income_range_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_income_range_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method output_type 0, // [0:0] is the sub-list for method input_type 0, // [0:0] is the sub-list for extension type_name @@ -157,13 +157,13 @@ var file_google_ads_googleads_v16_resources_income_range_view_proto_depIdxs = [] 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_income_range_view_proto_init() } -func file_google_ads_googleads_v16_resources_income_range_view_proto_init() { - if File_google_ads_googleads_v16_resources_income_range_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_income_range_view_proto_init() } +func file_google_ads_googleads_v17_resources_income_range_view_proto_init() { + if File_google_ads_googleads_v17_resources_income_range_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_income_range_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_income_range_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*IncomeRangeView); i { case 0: return &v.state @@ -180,18 +180,18 @@ func file_google_ads_googleads_v16_resources_income_range_view_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_income_range_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_income_range_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_income_range_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_income_range_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_income_range_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_income_range_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_income_range_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_income_range_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_income_range_view_proto = out.File - file_google_ads_googleads_v16_resources_income_range_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_income_range_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_income_range_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_income_range_view_proto = out.File + file_google_ads_googleads_v17_resources_income_range_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_income_range_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_income_range_view_proto_depIdxs = nil } diff --git a/resources/invoice.pb.go b/resources/invoice.pb.go index 006abf50..1754a609 100644 --- a/resources/invoice.pb.go +++ b/resources/invoice.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/invoice.proto +// source: google/ads/googleads/v17/resources/invoice.proto package resources @@ -55,7 +55,7 @@ type Invoice struct { // "Invoice number". Id *string `protobuf:"bytes,25,opt,name=id,proto3,oneof" json:"id,omitempty"` // Output only. The type of invoice. - Type enums.InvoiceTypeEnum_InvoiceType `protobuf:"varint,3,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.InvoiceTypeEnum_InvoiceType" json:"type,omitempty"` + Type enums.InvoiceTypeEnum_InvoiceType `protobuf:"varint,3,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.InvoiceTypeEnum_InvoiceType" json:"type,omitempty"` // Output only. The resource name of this invoice's billing setup. // // `customers/{customer_id}/billingSetups/{billing_setup_id}` @@ -146,7 +146,7 @@ type Invoice struct { func (x *Invoice) Reset() { *x = Invoice{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_invoice_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_invoice_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159,7 +159,7 @@ func (x *Invoice) String() string { func (*Invoice) ProtoMessage() {} func (x *Invoice) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_invoice_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_invoice_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -172,7 +172,7 @@ func (x *Invoice) ProtoReflect() protoreflect.Message { // Deprecated: Use Invoice.ProtoReflect.Descriptor instead. func (*Invoice) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_invoice_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_invoice_proto_rawDescGZIP(), []int{0} } func (x *Invoice) GetResourceName() string { @@ -417,7 +417,7 @@ type Invoice_AccountSummary struct { func (x *Invoice_AccountSummary) Reset() { *x = Invoice_AccountSummary{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_invoice_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_invoice_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -430,7 +430,7 @@ func (x *Invoice_AccountSummary) String() string { func (*Invoice_AccountSummary) ProtoMessage() {} func (x *Invoice_AccountSummary) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_invoice_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_invoice_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -443,7 +443,7 @@ func (x *Invoice_AccountSummary) ProtoReflect() protoreflect.Message { // Deprecated: Use Invoice_AccountSummary.ProtoReflect.Descriptor instead. func (*Invoice_AccountSummary) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_invoice_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v17_resources_invoice_proto_rawDescGZIP(), []int{0, 0} } func (x *Invoice_AccountSummary) GetCustomer() string { @@ -640,7 +640,7 @@ type Invoice_AccountBudgetSummary struct { func (x *Invoice_AccountBudgetSummary) Reset() { *x = Invoice_AccountBudgetSummary{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_invoice_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_invoice_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -653,7 +653,7 @@ func (x *Invoice_AccountBudgetSummary) String() string { func (*Invoice_AccountBudgetSummary) ProtoMessage() {} func (x *Invoice_AccountBudgetSummary) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_invoice_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_invoice_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -666,7 +666,7 @@ func (x *Invoice_AccountBudgetSummary) ProtoReflect() protoreflect.Message { // Deprecated: Use Invoice_AccountBudgetSummary.ProtoReflect.Descriptor instead. func (*Invoice_AccountBudgetSummary) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_invoice_proto_rawDescGZIP(), []int{0, 1} + return file_google_ads_googleads_v17_resources_invoice_proto_rawDescGZIP(), []int{0, 1} } func (x *Invoice_AccountBudgetSummary) GetCustomer() string { @@ -776,7 +776,7 @@ type Invoice_InvalidActivitySummary struct { // Output only. Original month of service related to this invalid activity // credit. - OriginalMonthOfService *enums.MonthOfYearEnum_MonthOfYear `protobuf:"varint,1,opt,name=original_month_of_service,json=originalMonthOfService,proto3,enum=google.ads.googleads.v16.enums.MonthOfYearEnum_MonthOfYear,oneof" json:"original_month_of_service,omitempty"` + OriginalMonthOfService *enums.MonthOfYearEnum_MonthOfYear `protobuf:"varint,1,opt,name=original_month_of_service,json=originalMonthOfService,proto3,enum=google.ads.googleads.v17.enums.MonthOfYearEnum_MonthOfYear,oneof" json:"original_month_of_service,omitempty"` // Output only. Original year of service related to this invalid activity // credit. OriginalYearOfService *string `protobuf:"bytes,2,opt,name=original_year_of_service,json=originalYearOfService,proto3,oneof" json:"original_year_of_service,omitempty"` @@ -796,7 +796,7 @@ type Invoice_InvalidActivitySummary struct { func (x *Invoice_InvalidActivitySummary) Reset() { *x = Invoice_InvalidActivitySummary{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_invoice_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_invoice_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -809,7 +809,7 @@ func (x *Invoice_InvalidActivitySummary) String() string { func (*Invoice_InvalidActivitySummary) ProtoMessage() {} func (x *Invoice_InvalidActivitySummary) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_invoice_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_invoice_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -822,7 +822,7 @@ func (x *Invoice_InvalidActivitySummary) ProtoReflect() protoreflect.Message { // Deprecated: Use Invoice_InvalidActivitySummary.ProtoReflect.Descriptor instead. func (*Invoice_InvalidActivitySummary) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_invoice_proto_rawDescGZIP(), []int{0, 2} + return file_google_ads_googleads_v17_resources_invoice_proto_rawDescGZIP(), []int{0, 2} } func (x *Invoice_InvalidActivitySummary) GetOriginalMonthOfService() enums.MonthOfYearEnum_MonthOfYear { @@ -867,22 +867,22 @@ func (x *Invoice_InvalidActivitySummary) GetAmountMicros() int64 { return 0 } -var File_google_ads_googleads_v16_resources_invoice_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_invoice_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_invoice_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_invoice_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, 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, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 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, 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, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 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, 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, 0x6e, + 0x67, 0x6f, 0x6f, 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, 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, + 0x64, 0x73, 0x2f, 0x67, 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, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, @@ -898,7 +898,7 @@ var file_google_ads_googleads_v16_resources_invoice_proto_rawDesc = []byte{ 0x41, 0x03, 0x48, 0x00, 0x52, 0x02, 0x69, 0x64, 0x88, 0x01, 0x01, 0x12, 0x54, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 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, 0x2e, 0x49, 0x6e, 0x76, 0x6f, 0x69, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x2d, 0x0a, 0x0d, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x74, @@ -919,7 +919,7 @@ var file_google_ads_googleads_v16_resources_invoice_proto_rawDesc = []byte{ 0x01, 0x01, 0x12, 0x5d, 0x0a, 0x12, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x18, 0x09, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x61, 0x74, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x10, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x44, 0x61, 0x74, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x2d, 0x0a, 0x0d, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x63, 0x6f, @@ -994,7 +994,7 @@ var file_google_ads_googleads_v16_resources_invoice_proto_rawDesc = []byte{ 0x01, 0x12, 0x7f, 0x0a, 0x18, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x69, 0x65, 0x73, 0x18, 0x12, 0x20, 0x03, 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, 0x72, + 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, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x2e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x16, 0x61, 0x63, 0x63, 0x6f, @@ -1002,7 +1002,7 @@ var file_google_ads_googleads_v16_resources_invoice_proto_rawDesc = []byte{ 0x65, 0x73, 0x12, 0x6c, 0x0a, 0x11, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x69, 0x65, 0x73, 0x18, 0x27, 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, 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, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x2e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x10, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x69, 0x65, 0x73, @@ -1187,7 +1187,7 @@ var file_google_ads_googleads_v16_resources_invoice_proto_rawDesc = []byte{ 0x0a, 0x1c, 0x62, 0x69, 0x6c, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x18, 0x09, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x61, 0x74, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x19, 0x62, 0x69, 0x6c, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x44, 0x61, 0x74, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, @@ -1211,7 +1211,7 @@ var file_google_ads_googleads_v16_resources_invoice_proto_rawDesc = []byte{ 0x85, 0x01, 0x0a, 0x1a, 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x5f, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x69, 0x65, 0x73, 0x18, 0x16, 0x20, 0x03, 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, + 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, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x2e, 0x49, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x18, 0x69, @@ -1240,7 +1240,7 @@ var file_google_ads_googleads_v16_resources_invoice_proto_rawDesc = []byte{ 0x80, 0x01, 0x0a, 0x19, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x6d, 0x6f, 0x6e, 0x74, 0x68, 0x5f, 0x6f, 0x66, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x18, 0x01, 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, + 0x2e, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x16, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, @@ -1304,54 +1304,54 @@ var file_google_ads_googleads_v16_resources_invoice_proto_rawDesc = []byte{ 0x6f, 0x72, 0x72, 0x65, 0x63, 0x74, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x70, 0x64, 0x66, 0x5f, 0x75, 0x72, 0x6c, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x0c, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 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, + 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, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, + 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, + 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, 0x70, + 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_invoice_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_invoice_proto_rawDescData = file_google_ads_googleads_v16_resources_invoice_proto_rawDesc + file_google_ads_googleads_v17_resources_invoice_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_invoice_proto_rawDescData = file_google_ads_googleads_v17_resources_invoice_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_invoice_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_invoice_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_invoice_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_invoice_proto_rawDescData) +func file_google_ads_googleads_v17_resources_invoice_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_invoice_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_invoice_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_invoice_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_invoice_proto_rawDescData -} - -var file_google_ads_googleads_v16_resources_invoice_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_resources_invoice_proto_goTypes = []interface{}{ - (*Invoice)(nil), // 0: google.ads.googleads.v16.resources.Invoice - (*Invoice_AccountSummary)(nil), // 1: google.ads.googleads.v16.resources.Invoice.AccountSummary - (*Invoice_AccountBudgetSummary)(nil), // 2: google.ads.googleads.v16.resources.Invoice.AccountBudgetSummary - (*Invoice_InvalidActivitySummary)(nil), // 3: google.ads.googleads.v16.resources.Invoice.InvalidActivitySummary - (enums.InvoiceTypeEnum_InvoiceType)(0), // 4: google.ads.googleads.v16.enums.InvoiceTypeEnum.InvoiceType - (*common.DateRange)(nil), // 5: google.ads.googleads.v16.common.DateRange - (enums.MonthOfYearEnum_MonthOfYear)(0), // 6: google.ads.googleads.v16.enums.MonthOfYearEnum.MonthOfYear -} -var file_google_ads_googleads_v16_resources_invoice_proto_depIdxs = []int32{ - 4, // 0: google.ads.googleads.v16.resources.Invoice.type:type_name -> google.ads.googleads.v16.enums.InvoiceTypeEnum.InvoiceType - 5, // 1: google.ads.googleads.v16.resources.Invoice.service_date_range:type_name -> google.ads.googleads.v16.common.DateRange - 2, // 2: google.ads.googleads.v16.resources.Invoice.account_budget_summaries:type_name -> google.ads.googleads.v16.resources.Invoice.AccountBudgetSummary - 1, // 3: google.ads.googleads.v16.resources.Invoice.account_summaries:type_name -> google.ads.googleads.v16.resources.Invoice.AccountSummary - 5, // 4: google.ads.googleads.v16.resources.Invoice.AccountBudgetSummary.billable_activity_date_range:type_name -> google.ads.googleads.v16.common.DateRange - 3, // 5: google.ads.googleads.v16.resources.Invoice.AccountBudgetSummary.invalid_activity_summaries:type_name -> google.ads.googleads.v16.resources.Invoice.InvalidActivitySummary - 6, // 6: google.ads.googleads.v16.resources.Invoice.InvalidActivitySummary.original_month_of_service:type_name -> google.ads.googleads.v16.enums.MonthOfYearEnum.MonthOfYear + return file_google_ads_googleads_v17_resources_invoice_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_invoice_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_resources_invoice_proto_goTypes = []interface{}{ + (*Invoice)(nil), // 0: google.ads.googleads.v17.resources.Invoice + (*Invoice_AccountSummary)(nil), // 1: google.ads.googleads.v17.resources.Invoice.AccountSummary + (*Invoice_AccountBudgetSummary)(nil), // 2: google.ads.googleads.v17.resources.Invoice.AccountBudgetSummary + (*Invoice_InvalidActivitySummary)(nil), // 3: google.ads.googleads.v17.resources.Invoice.InvalidActivitySummary + (enums.InvoiceTypeEnum_InvoiceType)(0), // 4: google.ads.googleads.v17.enums.InvoiceTypeEnum.InvoiceType + (*common.DateRange)(nil), // 5: google.ads.googleads.v17.common.DateRange + (enums.MonthOfYearEnum_MonthOfYear)(0), // 6: google.ads.googleads.v17.enums.MonthOfYearEnum.MonthOfYear +} +var file_google_ads_googleads_v17_resources_invoice_proto_depIdxs = []int32{ + 4, // 0: google.ads.googleads.v17.resources.Invoice.type:type_name -> google.ads.googleads.v17.enums.InvoiceTypeEnum.InvoiceType + 5, // 1: google.ads.googleads.v17.resources.Invoice.service_date_range:type_name -> google.ads.googleads.v17.common.DateRange + 2, // 2: google.ads.googleads.v17.resources.Invoice.account_budget_summaries:type_name -> google.ads.googleads.v17.resources.Invoice.AccountBudgetSummary + 1, // 3: google.ads.googleads.v17.resources.Invoice.account_summaries:type_name -> google.ads.googleads.v17.resources.Invoice.AccountSummary + 5, // 4: google.ads.googleads.v17.resources.Invoice.AccountBudgetSummary.billable_activity_date_range:type_name -> google.ads.googleads.v17.common.DateRange + 3, // 5: google.ads.googleads.v17.resources.Invoice.AccountBudgetSummary.invalid_activity_summaries:type_name -> google.ads.googleads.v17.resources.Invoice.InvalidActivitySummary + 6, // 6: google.ads.googleads.v17.resources.Invoice.InvalidActivitySummary.original_month_of_service:type_name -> google.ads.googleads.v17.enums.MonthOfYearEnum.MonthOfYear 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 @@ -1359,13 +1359,13 @@ var file_google_ads_googleads_v16_resources_invoice_proto_depIdxs = []int32{ 0, // [0:7] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_invoice_proto_init() } -func file_google_ads_googleads_v16_resources_invoice_proto_init() { - if File_google_ads_googleads_v16_resources_invoice_proto != nil { +func init() { file_google_ads_googleads_v17_resources_invoice_proto_init() } +func file_google_ads_googleads_v17_resources_invoice_proto_init() { + if File_google_ads_googleads_v17_resources_invoice_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_invoice_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_invoice_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Invoice); i { case 0: return &v.state @@ -1377,7 +1377,7 @@ func file_google_ads_googleads_v16_resources_invoice_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_invoice_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_invoice_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Invoice_AccountSummary); i { case 0: return &v.state @@ -1389,7 +1389,7 @@ func file_google_ads_googleads_v16_resources_invoice_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_invoice_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_invoice_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Invoice_AccountBudgetSummary); i { case 0: return &v.state @@ -1401,7 +1401,7 @@ func file_google_ads_googleads_v16_resources_invoice_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_invoice_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_invoice_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Invoice_InvalidActivitySummary); i { case 0: return &v.state @@ -1414,26 +1414,26 @@ func file_google_ads_googleads_v16_resources_invoice_proto_init() { } } } - file_google_ads_googleads_v16_resources_invoice_proto_msgTypes[0].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_invoice_proto_msgTypes[1].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_invoice_proto_msgTypes[2].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_invoice_proto_msgTypes[3].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_invoice_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_invoice_proto_msgTypes[1].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_invoice_proto_msgTypes[2].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_invoice_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_resources_invoice_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_invoice_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_invoice_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_invoice_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_invoice_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_invoice_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_invoice_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_invoice_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_invoice_proto = out.File - file_google_ads_googleads_v16_resources_invoice_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_invoice_proto_goTypes = nil - file_google_ads_googleads_v16_resources_invoice_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_invoice_proto = out.File + file_google_ads_googleads_v17_resources_invoice_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_invoice_proto_goTypes = nil + file_google_ads_googleads_v17_resources_invoice_proto_depIdxs = nil } diff --git a/resources/keyword_plan.pb.go b/resources/keyword_plan.pb.go index 3f5eeef7..b8be88ea 100644 --- a/resources/keyword_plan.pb.go +++ b/resources/keyword_plan.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/keyword_plan.proto +// source: google/ads/googleads/v17/resources/keyword_plan.proto package resources @@ -64,7 +64,7 @@ type KeywordPlan struct { func (x *KeywordPlan) Reset() { *x = KeywordPlan{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_keyword_plan_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_keyword_plan_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *KeywordPlan) String() string { func (*KeywordPlan) ProtoMessage() {} func (x *KeywordPlan) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_keyword_plan_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_keyword_plan_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *KeywordPlan) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlan.ProtoReflect.Descriptor instead. func (*KeywordPlan) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_keyword_plan_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_keyword_plan_proto_rawDescGZIP(), []int{0} } func (x *KeywordPlan) GetResourceName() string { @@ -139,7 +139,7 @@ type KeywordPlanForecastPeriod struct { func (x *KeywordPlanForecastPeriod) Reset() { *x = KeywordPlanForecastPeriod{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_keyword_plan_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_keyword_plan_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -152,7 +152,7 @@ func (x *KeywordPlanForecastPeriod) String() string { func (*KeywordPlanForecastPeriod) ProtoMessage() {} func (x *KeywordPlanForecastPeriod) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_keyword_plan_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_keyword_plan_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -165,7 +165,7 @@ func (x *KeywordPlanForecastPeriod) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanForecastPeriod.ProtoReflect.Descriptor instead. func (*KeywordPlanForecastPeriod) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_keyword_plan_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_resources_keyword_plan_proto_rawDescGZIP(), []int{1} } func (m *KeywordPlanForecastPeriod) GetInterval() isKeywordPlanForecastPeriod_Interval { @@ -195,7 +195,7 @@ type isKeywordPlanForecastPeriod_Interval interface { type KeywordPlanForecastPeriod_DateInterval struct { // A future date range relative to the current date used for forecasting. - DateInterval enums.KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval `protobuf:"varint,1,opt,name=date_interval,json=dateInterval,proto3,enum=google.ads.googleads.v16.enums.KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval,oneof"` + DateInterval enums.KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval `protobuf:"varint,1,opt,name=date_interval,json=dateInterval,proto3,enum=google.ads.googleads.v17.enums.KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval,oneof"` } type KeywordPlanForecastPeriod_DateRange struct { @@ -211,20 +211,20 @@ func (*KeywordPlanForecastPeriod_DateInterval) isKeywordPlanForecastPeriod_Inter func (*KeywordPlanForecastPeriod_DateRange) isKeywordPlanForecastPeriod_Interval() {} -var File_google_ads_googleads_v16_resources_keyword_plan_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_keyword_plan_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_keyword_plan_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_keyword_plan_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, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 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, 0x2b, 0x67, 0x6f, 0x6f, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x74, + 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, 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, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, + 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, @@ -243,7 +243,7 @@ var file_google_ads_googleads_v16_resources_keyword_plan_proto_rawDesc = []byte{ 0x66, 0x0a, 0x0f, 0x66, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x50, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x52, 0x0e, 0x66, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x50, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x3a, 0x61, 0xea, 0x41, 0x5e, 0x0a, 0x24, 0x67, 0x6f, @@ -258,7 +258,7 @@ var file_google_ads_googleads_v16_resources_keyword_plan_proto_rawDesc = []byte{ 0x73, 0x74, 0x50, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x12, 0x82, 0x01, 0x0a, 0x0d, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 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, + 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, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x46, 0x6f, 0x72, @@ -266,52 +266,52 @@ var file_google_ads_googleads_v16_resources_keyword_plan_proto_rawDesc = []byte{ 0x0c, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x12, 0x4b, 0x0a, 0x0a, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 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, 0x44, 0x61, 0x74, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x48, 0x00, 0x52, 0x09, 0x64, 0x61, 0x74, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x42, 0x0a, 0x0a, 0x08, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 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, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x10, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 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_keyword_plan_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_keyword_plan_proto_rawDescData = file_google_ads_googleads_v16_resources_keyword_plan_proto_rawDesc + file_google_ads_googleads_v17_resources_keyword_plan_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_keyword_plan_proto_rawDescData = file_google_ads_googleads_v17_resources_keyword_plan_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_keyword_plan_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_keyword_plan_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_keyword_plan_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_keyword_plan_proto_rawDescData) +func file_google_ads_googleads_v17_resources_keyword_plan_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_keyword_plan_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_keyword_plan_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_keyword_plan_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_keyword_plan_proto_rawDescData + return file_google_ads_googleads_v17_resources_keyword_plan_proto_rawDescData } -var file_google_ads_googleads_v16_resources_keyword_plan_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v16_resources_keyword_plan_proto_goTypes = []interface{}{ - (*KeywordPlan)(nil), // 0: google.ads.googleads.v16.resources.KeywordPlan - (*KeywordPlanForecastPeriod)(nil), // 1: google.ads.googleads.v16.resources.KeywordPlanForecastPeriod - (enums.KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval)(0), // 2: google.ads.googleads.v16.enums.KeywordPlanForecastIntervalEnum.KeywordPlanForecastInterval - (*common.DateRange)(nil), // 3: google.ads.googleads.v16.common.DateRange +var file_google_ads_googleads_v17_resources_keyword_plan_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v17_resources_keyword_plan_proto_goTypes = []interface{}{ + (*KeywordPlan)(nil), // 0: google.ads.googleads.v17.resources.KeywordPlan + (*KeywordPlanForecastPeriod)(nil), // 1: google.ads.googleads.v17.resources.KeywordPlanForecastPeriod + (enums.KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval)(0), // 2: google.ads.googleads.v17.enums.KeywordPlanForecastIntervalEnum.KeywordPlanForecastInterval + (*common.DateRange)(nil), // 3: google.ads.googleads.v17.common.DateRange } -var file_google_ads_googleads_v16_resources_keyword_plan_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.KeywordPlan.forecast_period:type_name -> google.ads.googleads.v16.resources.KeywordPlanForecastPeriod - 2, // 1: google.ads.googleads.v16.resources.KeywordPlanForecastPeriod.date_interval:type_name -> google.ads.googleads.v16.enums.KeywordPlanForecastIntervalEnum.KeywordPlanForecastInterval - 3, // 2: google.ads.googleads.v16.resources.KeywordPlanForecastPeriod.date_range:type_name -> google.ads.googleads.v16.common.DateRange +var file_google_ads_googleads_v17_resources_keyword_plan_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.KeywordPlan.forecast_period:type_name -> google.ads.googleads.v17.resources.KeywordPlanForecastPeriod + 2, // 1: google.ads.googleads.v17.resources.KeywordPlanForecastPeriod.date_interval:type_name -> google.ads.googleads.v17.enums.KeywordPlanForecastIntervalEnum.KeywordPlanForecastInterval + 3, // 2: google.ads.googleads.v17.resources.KeywordPlanForecastPeriod.date_range:type_name -> google.ads.googleads.v17.common.DateRange 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 @@ -319,13 +319,13 @@ var file_google_ads_googleads_v16_resources_keyword_plan_proto_depIdxs = []int32 0, // [0:3] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_keyword_plan_proto_init() } -func file_google_ads_googleads_v16_resources_keyword_plan_proto_init() { - if File_google_ads_googleads_v16_resources_keyword_plan_proto != nil { +func init() { file_google_ads_googleads_v17_resources_keyword_plan_proto_init() } +func file_google_ads_googleads_v17_resources_keyword_plan_proto_init() { + if File_google_ads_googleads_v17_resources_keyword_plan_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_keyword_plan_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_keyword_plan_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*KeywordPlan); i { case 0: return &v.state @@ -337,7 +337,7 @@ func file_google_ads_googleads_v16_resources_keyword_plan_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_keyword_plan_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_keyword_plan_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*KeywordPlanForecastPeriod); i { case 0: return &v.state @@ -350,8 +350,8 @@ func file_google_ads_googleads_v16_resources_keyword_plan_proto_init() { } } } - file_google_ads_googleads_v16_resources_keyword_plan_proto_msgTypes[0].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_keyword_plan_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_keyword_plan_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_keyword_plan_proto_msgTypes[1].OneofWrappers = []interface{}{ (*KeywordPlanForecastPeriod_DateInterval)(nil), (*KeywordPlanForecastPeriod_DateRange)(nil), } @@ -359,18 +359,18 @@ func file_google_ads_googleads_v16_resources_keyword_plan_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_keyword_plan_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_keyword_plan_proto_rawDesc, NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_keyword_plan_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_keyword_plan_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_keyword_plan_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_keyword_plan_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_keyword_plan_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_keyword_plan_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_keyword_plan_proto = out.File - file_google_ads_googleads_v16_resources_keyword_plan_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_keyword_plan_proto_goTypes = nil - file_google_ads_googleads_v16_resources_keyword_plan_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_keyword_plan_proto = out.File + file_google_ads_googleads_v17_resources_keyword_plan_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_keyword_plan_proto_goTypes = nil + file_google_ads_googleads_v17_resources_keyword_plan_proto_depIdxs = nil } diff --git a/resources/keyword_plan_ad_group.pb.go b/resources/keyword_plan_ad_group.pb.go index 9e9c3736..b2dd000d 100644 --- a/resources/keyword_plan_ad_group.pb.go +++ b/resources/keyword_plan_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/keyword_plan_ad_group.proto +// source: google/ads/googleads/v17/resources/keyword_plan_ad_group.proto package resources @@ -65,7 +65,7 @@ type KeywordPlanAdGroup struct { func (x *KeywordPlanAdGroup) Reset() { *x = KeywordPlanAdGroup{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_keyword_plan_ad_group_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_keyword_plan_ad_group_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *KeywordPlanAdGroup) String() string { func (*KeywordPlanAdGroup) ProtoMessage() {} func (x *KeywordPlanAdGroup) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_keyword_plan_ad_group_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_keyword_plan_ad_group_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 *KeywordPlanAdGroup) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanAdGroup.ProtoReflect.Descriptor instead. func (*KeywordPlanAdGroup) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_keyword_plan_ad_group_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_keyword_plan_ad_group_proto_rawDescGZIP(), []int{0} } func (x *KeywordPlanAdGroup) GetResourceName() string { @@ -129,15 +129,15 @@ func (x *KeywordPlanAdGroup) GetCpcBidMicros() int64 { return 0 } -var File_google_ads_googleads_v16_resources_keyword_plan_ad_group_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_keyword_plan_ad_group_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_keyword_plan_ad_group_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_keyword_plan_ad_group_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, 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, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 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, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -175,41 +175,41 @@ var file_google_ads_googleads_v16_resources_keyword_plan_ad_group_proto_rawDesc 0x11, 0x0a, 0x0f, 0x5f, 0x63, 0x70, 0x63, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x89, 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, 0x17, 0x4b, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x17, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 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, 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_keyword_plan_ad_group_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_keyword_plan_ad_group_proto_rawDescData = file_google_ads_googleads_v16_resources_keyword_plan_ad_group_proto_rawDesc + file_google_ads_googleads_v17_resources_keyword_plan_ad_group_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_keyword_plan_ad_group_proto_rawDescData = file_google_ads_googleads_v17_resources_keyword_plan_ad_group_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_keyword_plan_ad_group_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_keyword_plan_ad_group_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_keyword_plan_ad_group_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_keyword_plan_ad_group_proto_rawDescData) +func file_google_ads_googleads_v17_resources_keyword_plan_ad_group_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_keyword_plan_ad_group_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_keyword_plan_ad_group_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_keyword_plan_ad_group_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_keyword_plan_ad_group_proto_rawDescData + return file_google_ads_googleads_v17_resources_keyword_plan_ad_group_proto_rawDescData } -var file_google_ads_googleads_v16_resources_keyword_plan_ad_group_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_keyword_plan_ad_group_proto_goTypes = []interface{}{ - (*KeywordPlanAdGroup)(nil), // 0: google.ads.googleads.v16.resources.KeywordPlanAdGroup +var file_google_ads_googleads_v17_resources_keyword_plan_ad_group_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_keyword_plan_ad_group_proto_goTypes = []interface{}{ + (*KeywordPlanAdGroup)(nil), // 0: google.ads.googleads.v17.resources.KeywordPlanAdGroup } -var file_google_ads_googleads_v16_resources_keyword_plan_ad_group_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_keyword_plan_ad_group_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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_resources_keyword_plan_ad_group_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_keyword_plan_ad_group_proto_init() } -func file_google_ads_googleads_v16_resources_keyword_plan_ad_group_proto_init() { - if File_google_ads_googleads_v16_resources_keyword_plan_ad_group_proto != nil { +func init() { file_google_ads_googleads_v17_resources_keyword_plan_ad_group_proto_init() } +func file_google_ads_googleads_v17_resources_keyword_plan_ad_group_proto_init() { + if File_google_ads_googleads_v17_resources_keyword_plan_ad_group_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_keyword_plan_ad_group_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_keyword_plan_ad_group_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*KeywordPlanAdGroup); i { case 0: return &v.state @@ -236,23 +236,23 @@ func file_google_ads_googleads_v16_resources_keyword_plan_ad_group_proto_init() } } } - file_google_ads_googleads_v16_resources_keyword_plan_ad_group_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_keyword_plan_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_keyword_plan_ad_group_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_keyword_plan_ad_group_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_keyword_plan_ad_group_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_keyword_plan_ad_group_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_keyword_plan_ad_group_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_keyword_plan_ad_group_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_keyword_plan_ad_group_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_keyword_plan_ad_group_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_keyword_plan_ad_group_proto = out.File - file_google_ads_googleads_v16_resources_keyword_plan_ad_group_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_keyword_plan_ad_group_proto_goTypes = nil - file_google_ads_googleads_v16_resources_keyword_plan_ad_group_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_keyword_plan_ad_group_proto = out.File + file_google_ads_googleads_v17_resources_keyword_plan_ad_group_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_keyword_plan_ad_group_proto_goTypes = nil + file_google_ads_googleads_v17_resources_keyword_plan_ad_group_proto_depIdxs = nil } diff --git a/resources/keyword_plan_ad_group_keyword.pb.go b/resources/keyword_plan_ad_group_keyword.pb.go index 8b4ea364..b9b51134 100644 --- a/resources/keyword_plan_ad_group_keyword.pb.go +++ b/resources/keyword_plan_ad_group_keyword.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/keyword_plan_ad_group_keyword.proto +// source: google/ads/googleads/v17/resources/keyword_plan_ad_group_keyword.proto package resources @@ -55,7 +55,7 @@ type KeywordPlanAdGroupKeyword struct { // The keyword text. Text *string `protobuf:"bytes,10,opt,name=text,proto3,oneof" json:"text,omitempty"` // The keyword match type. - MatchType enums.KeywordMatchTypeEnum_KeywordMatchType `protobuf:"varint,5,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,5,opt,name=match_type,json=matchType,proto3,enum=google.ads.googleads.v17.enums.KeywordMatchTypeEnum_KeywordMatchType" json:"match_type,omitempty"` // A keyword level max cpc bid in micros (for example, $1 = 1mm). The currency // is the same as the account currency code. This will override any CPC bid // set at the keyword plan ad group level. Not applicable for negative @@ -68,7 +68,7 @@ type KeywordPlanAdGroupKeyword struct { func (x *KeywordPlanAdGroupKeyword) Reset() { *x = KeywordPlanAdGroupKeyword{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_keyword_plan_ad_group_keyword_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81,7 +81,7 @@ func (x *KeywordPlanAdGroupKeyword) String() string { func (*KeywordPlanAdGroupKeyword) ProtoMessage() {} func (x *KeywordPlanAdGroupKeyword) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_keyword_plan_ad_group_keyword_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 *KeywordPlanAdGroupKeyword) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanAdGroupKeyword.ProtoReflect.Descriptor instead. func (*KeywordPlanAdGroupKeyword) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_keyword_plan_ad_group_keyword_proto_rawDescGZIP(), []int{0} } func (x *KeywordPlanAdGroupKeyword) GetResourceName() string { @@ -146,18 +146,18 @@ func (x *KeywordPlanAdGroupKeyword) GetNegative() bool { return false } -var File_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_keyword_plan_ad_group_keyword_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_keyword_plan_ad_group_keyword_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, 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, 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, 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, 0x37, 0x67, 0x6f, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x6b, 0x65, 0x79, + 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, 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, @@ -183,7 +183,7 @@ var file_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto_ 0x28, 0x09, 0x48, 0x02, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x88, 0x01, 0x01, 0x12, 0x64, 0x0a, 0x0a, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, + 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, 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, @@ -208,43 +208,43 @@ var file_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto_ 0x72, 0x6f, 0x73, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x6e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 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, 0x73, 0x42, 0x1e, 0x4b, 0x65, 0x79, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x1e, 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, 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_keyword_plan_ad_group_keyword_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto_rawDescData = file_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto_rawDesc + file_google_ads_googleads_v17_resources_keyword_plan_ad_group_keyword_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_keyword_plan_ad_group_keyword_proto_rawDescData = file_google_ads_googleads_v17_resources_keyword_plan_ad_group_keyword_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto_rawDescData) +func file_google_ads_googleads_v17_resources_keyword_plan_ad_group_keyword_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_keyword_plan_ad_group_keyword_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_keyword_plan_ad_group_keyword_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_keyword_plan_ad_group_keyword_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto_rawDescData + return file_google_ads_googleads_v17_resources_keyword_plan_ad_group_keyword_proto_rawDescData } -var file_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto_goTypes = []interface{}{ - (*KeywordPlanAdGroupKeyword)(nil), // 0: google.ads.googleads.v16.resources.KeywordPlanAdGroupKeyword - (enums.KeywordMatchTypeEnum_KeywordMatchType)(0), // 1: google.ads.googleads.v16.enums.KeywordMatchTypeEnum.KeywordMatchType +var file_google_ads_googleads_v17_resources_keyword_plan_ad_group_keyword_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_keyword_plan_ad_group_keyword_proto_goTypes = []interface{}{ + (*KeywordPlanAdGroupKeyword)(nil), // 0: google.ads.googleads.v17.resources.KeywordPlanAdGroupKeyword + (enums.KeywordMatchTypeEnum_KeywordMatchType)(0), // 1: google.ads.googleads.v17.enums.KeywordMatchTypeEnum.KeywordMatchType } -var file_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.KeywordPlanAdGroupKeyword.match_type:type_name -> google.ads.googleads.v16.enums.KeywordMatchTypeEnum.KeywordMatchType +var file_google_ads_googleads_v17_resources_keyword_plan_ad_group_keyword_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.KeywordPlanAdGroupKeyword.match_type:type_name -> google.ads.googleads.v17.enums.KeywordMatchTypeEnum.KeywordMatchType 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 @@ -252,13 +252,13 @@ var file_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto_ 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto_init() } -func file_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto_init() { - if File_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto != nil { +func init() { file_google_ads_googleads_v17_resources_keyword_plan_ad_group_keyword_proto_init() } +func file_google_ads_googleads_v17_resources_keyword_plan_ad_group_keyword_proto_init() { + if File_google_ads_googleads_v17_resources_keyword_plan_ad_group_keyword_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_keyword_plan_ad_group_keyword_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*KeywordPlanAdGroupKeyword); i { case 0: return &v.state @@ -271,23 +271,23 @@ func file_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto } } } - file_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_keyword_plan_ad_group_keyword_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_keyword_plan_ad_group_keyword_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_keyword_plan_ad_group_keyword_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_keyword_plan_ad_group_keyword_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_keyword_plan_ad_group_keyword_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_keyword_plan_ad_group_keyword_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto = out.File - file_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto_goTypes = nil - file_google_ads_googleads_v16_resources_keyword_plan_ad_group_keyword_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_keyword_plan_ad_group_keyword_proto = out.File + file_google_ads_googleads_v17_resources_keyword_plan_ad_group_keyword_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_keyword_plan_ad_group_keyword_proto_goTypes = nil + file_google_ads_googleads_v17_resources_keyword_plan_ad_group_keyword_proto_depIdxs = nil } diff --git a/resources/keyword_plan_campaign.pb.go b/resources/keyword_plan_campaign.pb.go index 1ec229db..a47d872b 100644 --- a/resources/keyword_plan_campaign.pb.go +++ b/resources/keyword_plan_campaign.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/keyword_plan_campaign.proto +// source: google/ads/googleads/v17/resources/keyword_plan_campaign.proto package resources @@ -64,7 +64,7 @@ type KeywordPlanCampaign struct { // // This field is required and should not be empty when creating Keyword Plan // campaigns. - KeywordPlanNetwork enums.KeywordPlanNetworkEnum_KeywordPlanNetwork `protobuf:"varint,6,opt,name=keyword_plan_network,json=keywordPlanNetwork,proto3,enum=google.ads.googleads.v16.enums.KeywordPlanNetworkEnum_KeywordPlanNetwork" json:"keyword_plan_network,omitempty"` + KeywordPlanNetwork enums.KeywordPlanNetworkEnum_KeywordPlanNetwork `protobuf:"varint,6,opt,name=keyword_plan_network,json=keywordPlanNetwork,proto3,enum=google.ads.googleads.v17.enums.KeywordPlanNetworkEnum_KeywordPlanNetwork" json:"keyword_plan_network,omitempty"` // A default max cpc bid in micros, and in the account currency, for all ad // groups under the campaign. // @@ -79,7 +79,7 @@ type KeywordPlanCampaign struct { func (x *KeywordPlanCampaign) Reset() { *x = KeywordPlanCampaign{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_keyword_plan_campaign_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -92,7 +92,7 @@ func (x *KeywordPlanCampaign) String() string { func (*KeywordPlanCampaign) ProtoMessage() {} func (x *KeywordPlanCampaign) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_keyword_plan_campaign_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -105,7 +105,7 @@ func (x *KeywordPlanCampaign) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanCampaign.ProtoReflect.Descriptor instead. func (*KeywordPlanCampaign) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_keyword_plan_campaign_proto_rawDescGZIP(), []int{0} } func (x *KeywordPlanCampaign) GetResourceName() string { @@ -177,7 +177,7 @@ type KeywordPlanGeoTarget struct { func (x *KeywordPlanGeoTarget) Reset() { *x = KeywordPlanGeoTarget{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_keyword_plan_campaign_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -190,7 +190,7 @@ func (x *KeywordPlanGeoTarget) String() string { func (*KeywordPlanGeoTarget) ProtoMessage() {} func (x *KeywordPlanGeoTarget) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_keyword_plan_campaign_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 *KeywordPlanGeoTarget) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanGeoTarget.ProtoReflect.Descriptor instead. func (*KeywordPlanGeoTarget) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_resources_keyword_plan_campaign_proto_rawDescGZIP(), []int{1} } func (x *KeywordPlanGeoTarget) GetGeoTargetConstant() string { @@ -213,17 +213,17 @@ func (x *KeywordPlanGeoTarget) GetGeoTargetConstant() string { return "" } -var File_google_ads_googleads_v16_resources_keyword_plan_campaign_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_keyword_plan_campaign_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_keyword_plan_campaign_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, 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, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 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, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, @@ -254,7 +254,7 @@ var file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_rawDesc 0x6e, 0x74, 0x73, 0x12, 0x7b, 0x0a, 0x14, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x18, 0x06, 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, + 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, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x52, 0x12, 0x6b, 0x65, @@ -264,7 +264,7 @@ var file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_rawDesc 0x69, 0x64, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x59, 0x0a, 0x0b, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x18, 0x08, 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, 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, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x0a, 0x67, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x3a, 0x7a, 0xea, 0x41, 0x77, 0x0a, 0x2c, 0x67, 0x6f, 0x6f, @@ -289,46 +289,46 @@ var file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_rawDesc 0x6e, 0x74, 0x88, 0x01, 0x01, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x42, 0x8a, 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, + 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, 0x18, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 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_keyword_plan_campaign_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_rawDescData = file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_rawDesc + file_google_ads_googleads_v17_resources_keyword_plan_campaign_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_keyword_plan_campaign_proto_rawDescData = file_google_ads_googleads_v17_resources_keyword_plan_campaign_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_rawDescData) +func file_google_ads_googleads_v17_resources_keyword_plan_campaign_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_keyword_plan_campaign_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_keyword_plan_campaign_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_keyword_plan_campaign_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_rawDescData + return file_google_ads_googleads_v17_resources_keyword_plan_campaign_proto_rawDescData } -var file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_goTypes = []interface{}{ - (*KeywordPlanCampaign)(nil), // 0: google.ads.googleads.v16.resources.KeywordPlanCampaign - (*KeywordPlanGeoTarget)(nil), // 1: google.ads.googleads.v16.resources.KeywordPlanGeoTarget - (enums.KeywordPlanNetworkEnum_KeywordPlanNetwork)(0), // 2: google.ads.googleads.v16.enums.KeywordPlanNetworkEnum.KeywordPlanNetwork +var file_google_ads_googleads_v17_resources_keyword_plan_campaign_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v17_resources_keyword_plan_campaign_proto_goTypes = []interface{}{ + (*KeywordPlanCampaign)(nil), // 0: google.ads.googleads.v17.resources.KeywordPlanCampaign + (*KeywordPlanGeoTarget)(nil), // 1: google.ads.googleads.v17.resources.KeywordPlanGeoTarget + (enums.KeywordPlanNetworkEnum_KeywordPlanNetwork)(0), // 2: google.ads.googleads.v17.enums.KeywordPlanNetworkEnum.KeywordPlanNetwork } -var file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v16.resources.KeywordPlanCampaign.keyword_plan_network:type_name -> google.ads.googleads.v16.enums.KeywordPlanNetworkEnum.KeywordPlanNetwork - 1, // 1: google.ads.googleads.v16.resources.KeywordPlanCampaign.geo_targets:type_name -> google.ads.googleads.v16.resources.KeywordPlanGeoTarget +var file_google_ads_googleads_v17_resources_keyword_plan_campaign_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v17.resources.KeywordPlanCampaign.keyword_plan_network:type_name -> google.ads.googleads.v17.enums.KeywordPlanNetworkEnum.KeywordPlanNetwork + 1, // 1: google.ads.googleads.v17.resources.KeywordPlanCampaign.geo_targets:type_name -> google.ads.googleads.v17.resources.KeywordPlanGeoTarget 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 @@ -336,13 +336,13 @@ var file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_depIdxs 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_init() } -func file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_init() { - if File_google_ads_googleads_v16_resources_keyword_plan_campaign_proto != nil { +func init() { file_google_ads_googleads_v17_resources_keyword_plan_campaign_proto_init() } +func file_google_ads_googleads_v17_resources_keyword_plan_campaign_proto_init() { + if File_google_ads_googleads_v17_resources_keyword_plan_campaign_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_keyword_plan_campaign_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*KeywordPlanCampaign); i { case 0: return &v.state @@ -354,7 +354,7 @@ func file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_init() return nil } } - file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_keyword_plan_campaign_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*KeywordPlanGeoTarget); i { case 0: return &v.state @@ -367,24 +367,24 @@ func file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_init() } } } - file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_msgTypes[0].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_msgTypes[1].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_keyword_plan_campaign_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_keyword_plan_campaign_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_keyword_plan_campaign_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_keyword_plan_campaign_proto_rawDesc, NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_keyword_plan_campaign_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_keyword_plan_campaign_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_keyword_plan_campaign_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_keyword_plan_campaign_proto = out.File - file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_goTypes = nil - file_google_ads_googleads_v16_resources_keyword_plan_campaign_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_keyword_plan_campaign_proto = out.File + file_google_ads_googleads_v17_resources_keyword_plan_campaign_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_keyword_plan_campaign_proto_goTypes = nil + file_google_ads_googleads_v17_resources_keyword_plan_campaign_proto_depIdxs = nil } diff --git a/resources/keyword_plan_campaign_keyword.pb.go b/resources/keyword_plan_campaign_keyword.pb.go index d4e92e6a..0e985996 100644 --- a/resources/keyword_plan_campaign_keyword.pb.go +++ b/resources/keyword_plan_campaign_keyword.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/keyword_plan_campaign_keyword.proto +// source: google/ads/googleads/v17/resources/keyword_plan_campaign_keyword.proto package resources @@ -55,7 +55,7 @@ type KeywordPlanCampaignKeyword struct { // The keyword text. Text *string `protobuf:"bytes,10,opt,name=text,proto3,oneof" json:"text,omitempty"` // The keyword match type. - MatchType enums.KeywordMatchTypeEnum_KeywordMatchType `protobuf:"varint,5,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,5,opt,name=match_type,json=matchType,proto3,enum=google.ads.googleads.v17.enums.KeywordMatchTypeEnum_KeywordMatchType" json:"match_type,omitempty"` // Immutable. If true, the keyword is negative. // Must be set to true. Only negative campaign keywords are supported. Negative *bool `protobuf:"varint,11,opt,name=negative,proto3,oneof" json:"negative,omitempty"` @@ -64,7 +64,7 @@ type KeywordPlanCampaignKeyword struct { func (x *KeywordPlanCampaignKeyword) Reset() { *x = KeywordPlanCampaignKeyword{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_keyword_plan_campaign_keyword_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *KeywordPlanCampaignKeyword) String() string { func (*KeywordPlanCampaignKeyword) ProtoMessage() {} func (x *KeywordPlanCampaignKeyword) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_keyword_plan_campaign_keyword_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *KeywordPlanCampaignKeyword) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanCampaignKeyword.ProtoReflect.Descriptor instead. func (*KeywordPlanCampaignKeyword) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_keyword_plan_campaign_keyword_proto_rawDescGZIP(), []int{0} } func (x *KeywordPlanCampaignKeyword) GetResourceName() string { @@ -135,18 +135,18 @@ func (x *KeywordPlanCampaignKeyword) GetNegative() bool { return false } -var File_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_keyword_plan_campaign_keyword_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_keyword_plan_campaign_keyword_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, 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, 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, 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, 0x37, 0x67, 0x6f, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x6b, 0x65, 0x79, + 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, 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, @@ -172,7 +172,7 @@ var file_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto_ 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x88, 0x01, 0x01, 0x12, 0x64, 0x0a, 0x0a, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 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, @@ -193,44 +193,44 @@ var file_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto_ 0x69, 0x64, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x74, 0x65, 0x78, 0x74, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x6e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x42, 0x91, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x1f, 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, 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, + 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, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, + 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, + 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, 0x70, 0x72, + 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_keyword_plan_campaign_keyword_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto_rawDescData = file_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto_rawDesc + file_google_ads_googleads_v17_resources_keyword_plan_campaign_keyword_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_keyword_plan_campaign_keyword_proto_rawDescData = file_google_ads_googleads_v17_resources_keyword_plan_campaign_keyword_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto_rawDescData) +func file_google_ads_googleads_v17_resources_keyword_plan_campaign_keyword_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_keyword_plan_campaign_keyword_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_keyword_plan_campaign_keyword_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_keyword_plan_campaign_keyword_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto_rawDescData + return file_google_ads_googleads_v17_resources_keyword_plan_campaign_keyword_proto_rawDescData } -var file_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto_goTypes = []interface{}{ - (*KeywordPlanCampaignKeyword)(nil), // 0: google.ads.googleads.v16.resources.KeywordPlanCampaignKeyword - (enums.KeywordMatchTypeEnum_KeywordMatchType)(0), // 1: google.ads.googleads.v16.enums.KeywordMatchTypeEnum.KeywordMatchType +var file_google_ads_googleads_v17_resources_keyword_plan_campaign_keyword_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_keyword_plan_campaign_keyword_proto_goTypes = []interface{}{ + (*KeywordPlanCampaignKeyword)(nil), // 0: google.ads.googleads.v17.resources.KeywordPlanCampaignKeyword + (enums.KeywordMatchTypeEnum_KeywordMatchType)(0), // 1: google.ads.googleads.v17.enums.KeywordMatchTypeEnum.KeywordMatchType } -var file_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.KeywordPlanCampaignKeyword.match_type:type_name -> google.ads.googleads.v16.enums.KeywordMatchTypeEnum.KeywordMatchType +var file_google_ads_googleads_v17_resources_keyword_plan_campaign_keyword_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.KeywordPlanCampaignKeyword.match_type:type_name -> google.ads.googleads.v17.enums.KeywordMatchTypeEnum.KeywordMatchType 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 @@ -238,13 +238,13 @@ var file_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto_ 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto_init() } -func file_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto_init() { - if File_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto != nil { +func init() { file_google_ads_googleads_v17_resources_keyword_plan_campaign_keyword_proto_init() } +func file_google_ads_googleads_v17_resources_keyword_plan_campaign_keyword_proto_init() { + if File_google_ads_googleads_v17_resources_keyword_plan_campaign_keyword_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_keyword_plan_campaign_keyword_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*KeywordPlanCampaignKeyword); i { case 0: return &v.state @@ -257,23 +257,23 @@ func file_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto } } } - file_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_keyword_plan_campaign_keyword_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_keyword_plan_campaign_keyword_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_keyword_plan_campaign_keyword_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_keyword_plan_campaign_keyword_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_keyword_plan_campaign_keyword_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_keyword_plan_campaign_keyword_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto = out.File - file_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto_goTypes = nil - file_google_ads_googleads_v16_resources_keyword_plan_campaign_keyword_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_keyword_plan_campaign_keyword_proto = out.File + file_google_ads_googleads_v17_resources_keyword_plan_campaign_keyword_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_keyword_plan_campaign_keyword_proto_goTypes = nil + file_google_ads_googleads_v17_resources_keyword_plan_campaign_keyword_proto_depIdxs = nil } diff --git a/resources/keyword_theme_constant.pb.go b/resources/keyword_theme_constant.pb.go index 185193fe..63b37704 100644 --- a/resources/keyword_theme_constant.pb.go +++ b/resources/keyword_theme_constant.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/keyword_theme_constant.proto +// source: google/ads/googleads/v17/resources/keyword_theme_constant.proto package resources @@ -61,7 +61,7 @@ type KeywordThemeConstant struct { func (x *KeywordThemeConstant) Reset() { *x = KeywordThemeConstant{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_keyword_theme_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_keyword_theme_constant_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74,7 +74,7 @@ func (x *KeywordThemeConstant) String() string { func (*KeywordThemeConstant) ProtoMessage() {} func (x *KeywordThemeConstant) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_keyword_theme_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_keyword_theme_constant_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -87,7 +87,7 @@ func (x *KeywordThemeConstant) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordThemeConstant.ProtoReflect.Descriptor instead. func (*KeywordThemeConstant) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_keyword_theme_constant_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_keyword_theme_constant_proto_rawDescGZIP(), []int{0} } func (x *KeywordThemeConstant) GetResourceName() string { @@ -118,15 +118,15 @@ func (x *KeywordThemeConstant) GetDisplayName() string { return "" } -var File_google_ads_googleads_v16_resources_keyword_theme_constant_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_keyword_theme_constant_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_keyword_theme_constant_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_keyword_theme_constant_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, 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, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x74, 0x68, 0x65, 0x6d, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 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, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -159,42 +159,42 @@ var file_google_ads_googleads_v16_resources_keyword_theme_constant_proto_rawDesc 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x8b, 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, + 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, 0x19, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x54, 0x68, 0x65, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 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, + 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, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, + 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, + 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, 0x70, 0x72, + 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_keyword_theme_constant_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_keyword_theme_constant_proto_rawDescData = file_google_ads_googleads_v16_resources_keyword_theme_constant_proto_rawDesc + file_google_ads_googleads_v17_resources_keyword_theme_constant_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_keyword_theme_constant_proto_rawDescData = file_google_ads_googleads_v17_resources_keyword_theme_constant_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_keyword_theme_constant_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_keyword_theme_constant_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_keyword_theme_constant_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_keyword_theme_constant_proto_rawDescData) +func file_google_ads_googleads_v17_resources_keyword_theme_constant_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_keyword_theme_constant_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_keyword_theme_constant_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_keyword_theme_constant_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_keyword_theme_constant_proto_rawDescData + return file_google_ads_googleads_v17_resources_keyword_theme_constant_proto_rawDescData } -var file_google_ads_googleads_v16_resources_keyword_theme_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_keyword_theme_constant_proto_goTypes = []interface{}{ - (*KeywordThemeConstant)(nil), // 0: google.ads.googleads.v16.resources.KeywordThemeConstant +var file_google_ads_googleads_v17_resources_keyword_theme_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_keyword_theme_constant_proto_goTypes = []interface{}{ + (*KeywordThemeConstant)(nil), // 0: google.ads.googleads.v17.resources.KeywordThemeConstant } -var file_google_ads_googleads_v16_resources_keyword_theme_constant_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_keyword_theme_constant_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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_resources_keyword_theme_constant_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_keyword_theme_constant_proto_init() } -func file_google_ads_googleads_v16_resources_keyword_theme_constant_proto_init() { - if File_google_ads_googleads_v16_resources_keyword_theme_constant_proto != nil { +func init() { file_google_ads_googleads_v17_resources_keyword_theme_constant_proto_init() } +func file_google_ads_googleads_v17_resources_keyword_theme_constant_proto_init() { + if File_google_ads_googleads_v17_resources_keyword_theme_constant_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_keyword_theme_constant_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_keyword_theme_constant_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*KeywordThemeConstant); i { case 0: return &v.state @@ -221,23 +221,23 @@ func file_google_ads_googleads_v16_resources_keyword_theme_constant_proto_init() } } } - file_google_ads_googleads_v16_resources_keyword_theme_constant_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_keyword_theme_constant_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_keyword_theme_constant_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_keyword_theme_constant_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_keyword_theme_constant_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_keyword_theme_constant_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_keyword_theme_constant_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_keyword_theme_constant_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_keyword_theme_constant_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_keyword_theme_constant_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_keyword_theme_constant_proto = out.File - file_google_ads_googleads_v16_resources_keyword_theme_constant_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_keyword_theme_constant_proto_goTypes = nil - file_google_ads_googleads_v16_resources_keyword_theme_constant_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_keyword_theme_constant_proto = out.File + file_google_ads_googleads_v17_resources_keyword_theme_constant_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_keyword_theme_constant_proto_goTypes = nil + file_google_ads_googleads_v17_resources_keyword_theme_constant_proto_depIdxs = nil } diff --git a/resources/keyword_view.pb.go b/resources/keyword_view.pb.go index 108f52a3..a6297177 100644 --- a/resources/keyword_view.pb.go +++ b/resources/keyword_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/keyword_view.proto +// source: google/ads/googleads/v17/resources/keyword_view.proto package resources @@ -51,7 +51,7 @@ type KeywordView struct { func (x *KeywordView) Reset() { *x = KeywordView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_keyword_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_keyword_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64,7 +64,7 @@ func (x *KeywordView) String() string { func (*KeywordView) ProtoMessage() {} func (x *KeywordView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_keyword_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_keyword_view_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 *KeywordView) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordView.ProtoReflect.Descriptor instead. func (*KeywordView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_keyword_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_keyword_view_proto_rawDescGZIP(), []int{0} } func (x *KeywordView) GetResourceName() string { @@ -87,15 +87,15 @@ func (x *KeywordView) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_resources_keyword_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_keyword_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_keyword_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_keyword_view_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, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 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, 0x73, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -114,41 +114,41 @@ var file_google_ads_googleads_v16_resources_keyword_view_proto_rawDesc = []byte{ 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x10, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 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, + 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, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, + 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, + 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, 0x70, + 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_keyword_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_keyword_view_proto_rawDescData = file_google_ads_googleads_v16_resources_keyword_view_proto_rawDesc + file_google_ads_googleads_v17_resources_keyword_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_keyword_view_proto_rawDescData = file_google_ads_googleads_v17_resources_keyword_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_keyword_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_keyword_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_keyword_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_keyword_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_keyword_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_keyword_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_keyword_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_keyword_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_keyword_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_keyword_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_keyword_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_keyword_view_proto_goTypes = []interface{}{ - (*KeywordView)(nil), // 0: google.ads.googleads.v16.resources.KeywordView +var file_google_ads_googleads_v17_resources_keyword_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_keyword_view_proto_goTypes = []interface{}{ + (*KeywordView)(nil), // 0: google.ads.googleads.v17.resources.KeywordView } -var file_google_ads_googleads_v16_resources_keyword_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_keyword_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method output_type 0, // [0:0] is the sub-list for method input_type 0, // [0:0] is the sub-list for extension type_name @@ -156,13 +156,13 @@ var file_google_ads_googleads_v16_resources_keyword_view_proto_depIdxs = []int32 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_keyword_view_proto_init() } -func file_google_ads_googleads_v16_resources_keyword_view_proto_init() { - if File_google_ads_googleads_v16_resources_keyword_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_keyword_view_proto_init() } +func file_google_ads_googleads_v17_resources_keyword_view_proto_init() { + if File_google_ads_googleads_v17_resources_keyword_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_keyword_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_keyword_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*KeywordView); i { case 0: return &v.state @@ -179,18 +179,18 @@ func file_google_ads_googleads_v16_resources_keyword_view_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_keyword_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_keyword_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_keyword_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_keyword_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_keyword_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_keyword_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_keyword_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_keyword_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_keyword_view_proto = out.File - file_google_ads_googleads_v16_resources_keyword_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_keyword_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_keyword_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_keyword_view_proto = out.File + file_google_ads_googleads_v17_resources_keyword_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_keyword_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_keyword_view_proto_depIdxs = nil } diff --git a/resources/label.pb.go b/resources/label.pb.go index a25c77ff..f3028475 100644 --- a/resources/label.pb.go +++ b/resources/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/resources/label.proto +// source: google/ads/googleads/v17/resources/label.proto package resources @@ -56,7 +56,7 @@ type Label struct { // The length of this string should be between 1 and 80, inclusive. Name *string `protobuf:"bytes,7,opt,name=name,proto3,oneof" json:"name,omitempty"` // Output only. Status of the label. Read only. - Status enums.LabelStatusEnum_LabelStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.LabelStatusEnum_LabelStatus" json:"status,omitempty"` + Status enums.LabelStatusEnum_LabelStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.LabelStatusEnum_LabelStatus" json:"status,omitempty"` // A type of label displaying text on a colored background. TextLabel *common.TextLabel `protobuf:"bytes,5,opt,name=text_label,json=textLabel,proto3" json:"text_label,omitempty"` } @@ -64,7 +64,7 @@ type Label struct { func (x *Label) Reset() { *x = Label{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_label_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_label_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *Label) String() string { func (*Label) ProtoMessage() {} func (x *Label) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_label_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_label_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *Label) ProtoReflect() protoreflect.Message { // Deprecated: Use Label.ProtoReflect.Descriptor instead. func (*Label) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_label_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_label_proto_rawDescGZIP(), []int{0} } func (x *Label) GetResourceName() string { @@ -128,19 +128,19 @@ func (x *Label) GetTextLabel() *common.TextLabel { return nil } -var File_google_ads_googleads_v16_resources_label_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_label_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_label_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_label_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, 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, 0x6c, 0x61, 0x62, 0x65, 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, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x63, + 0x2f, 0x67, 0x6f, 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, 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, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, @@ -157,13 +157,13 @@ var file_google_ads_googleads_v16_resources_label_proto_rawDesc = []byte{ 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x58, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 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, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x49, 0x0a, 0x0a, 0x74, 0x65, 0x78, 0x74, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x05, 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, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x09, 0x74, 0x65, 0x78, 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x3a, 0x4e, 0xea, 0x41, 0x4b, 0x0a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, @@ -173,44 +173,44 @@ var file_google_ads_googleads_v16_resources_label_proto_rawDesc = []byte{ 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x05, 0x0a, 0x03, 0x5f, 0x69, 0x64, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0xfc, 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, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x0a, 0x4c, 0x61, 0x62, 0x65, 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_label_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_label_proto_rawDescData = file_google_ads_googleads_v16_resources_label_proto_rawDesc + file_google_ads_googleads_v17_resources_label_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_label_proto_rawDescData = file_google_ads_googleads_v17_resources_label_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_label_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_label_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_label_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_label_proto_rawDescData) +func file_google_ads_googleads_v17_resources_label_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_label_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_label_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_label_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_label_proto_rawDescData + return file_google_ads_googleads_v17_resources_label_proto_rawDescData } -var file_google_ads_googleads_v16_resources_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_label_proto_goTypes = []interface{}{ - (*Label)(nil), // 0: google.ads.googleads.v16.resources.Label - (enums.LabelStatusEnum_LabelStatus)(0), // 1: google.ads.googleads.v16.enums.LabelStatusEnum.LabelStatus - (*common.TextLabel)(nil), // 2: google.ads.googleads.v16.common.TextLabel +var file_google_ads_googleads_v17_resources_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_label_proto_goTypes = []interface{}{ + (*Label)(nil), // 0: google.ads.googleads.v17.resources.Label + (enums.LabelStatusEnum_LabelStatus)(0), // 1: google.ads.googleads.v17.enums.LabelStatusEnum.LabelStatus + (*common.TextLabel)(nil), // 2: google.ads.googleads.v17.common.TextLabel } -var file_google_ads_googleads_v16_resources_label_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.Label.status:type_name -> google.ads.googleads.v16.enums.LabelStatusEnum.LabelStatus - 2, // 1: google.ads.googleads.v16.resources.Label.text_label:type_name -> google.ads.googleads.v16.common.TextLabel +var file_google_ads_googleads_v17_resources_label_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.Label.status:type_name -> google.ads.googleads.v17.enums.LabelStatusEnum.LabelStatus + 2, // 1: google.ads.googleads.v17.resources.Label.text_label:type_name -> google.ads.googleads.v17.common.TextLabel 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 @@ -218,13 +218,13 @@ var file_google_ads_googleads_v16_resources_label_proto_depIdxs = []int32{ 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_label_proto_init() } -func file_google_ads_googleads_v16_resources_label_proto_init() { - if File_google_ads_googleads_v16_resources_label_proto != nil { +func init() { file_google_ads_googleads_v17_resources_label_proto_init() } +func file_google_ads_googleads_v17_resources_label_proto_init() { + if File_google_ads_googleads_v17_resources_label_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_label_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_label_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Label); i { case 0: return &v.state @@ -237,23 +237,23 @@ func file_google_ads_googleads_v16_resources_label_proto_init() { } } } - file_google_ads_googleads_v16_resources_label_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_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_resources_label_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_label_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_label_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_label_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_label_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_label_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_label_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_label_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_label_proto = out.File - file_google_ads_googleads_v16_resources_label_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_label_proto_goTypes = nil - file_google_ads_googleads_v16_resources_label_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_label_proto = out.File + file_google_ads_googleads_v17_resources_label_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_label_proto_goTypes = nil + file_google_ads_googleads_v17_resources_label_proto_depIdxs = nil } diff --git a/resources/landing_page_view.pb.go b/resources/landing_page_view.pb.go index ca90bdb4..963e6365 100644 --- a/resources/landing_page_view.pb.go +++ b/resources/landing_page_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/landing_page_view.proto +// source: google/ads/googleads/v17/resources/landing_page_view.proto package resources @@ -54,7 +54,7 @@ type LandingPageView struct { func (x *LandingPageView) Reset() { *x = LandingPageView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_landing_page_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_landing_page_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67,7 +67,7 @@ func (x *LandingPageView) String() string { func (*LandingPageView) ProtoMessage() {} func (x *LandingPageView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_landing_page_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_landing_page_view_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80,7 +80,7 @@ func (x *LandingPageView) ProtoReflect() protoreflect.Message { // Deprecated: Use LandingPageView.ProtoReflect.Descriptor instead. func (*LandingPageView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_landing_page_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_landing_page_view_proto_rawDescGZIP(), []int{0} } func (x *LandingPageView) GetResourceName() string { @@ -97,15 +97,15 @@ func (x *LandingPageView) GetUnexpandedFinalUrl() string { return "" } -var File_google_ads_googleads_v16_resources_landing_page_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_landing_page_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_landing_page_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_landing_page_view_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, 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, 0x6c, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x61, 0x67, 0x65, 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, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -131,41 +131,41 @@ var file_google_ads_googleads_v16_resources_landing_page_view_proto_rawDesc = [] 0x17, 0x0a, 0x15, 0x5f, 0x75, 0x6e, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x86, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x14, 0x4c, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x50, 0x61, 0x67, 0x65, 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, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, + 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, + 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, + 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, 0x63, 0x65, + 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_landing_page_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_landing_page_view_proto_rawDescData = file_google_ads_googleads_v16_resources_landing_page_view_proto_rawDesc + file_google_ads_googleads_v17_resources_landing_page_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_landing_page_view_proto_rawDescData = file_google_ads_googleads_v17_resources_landing_page_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_landing_page_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_landing_page_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_landing_page_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_landing_page_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_landing_page_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_landing_page_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_landing_page_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_landing_page_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_landing_page_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_landing_page_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_landing_page_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_landing_page_view_proto_goTypes = []interface{}{ - (*LandingPageView)(nil), // 0: google.ads.googleads.v16.resources.LandingPageView +var file_google_ads_googleads_v17_resources_landing_page_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_landing_page_view_proto_goTypes = []interface{}{ + (*LandingPageView)(nil), // 0: google.ads.googleads.v17.resources.LandingPageView } -var file_google_ads_googleads_v16_resources_landing_page_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_landing_page_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method output_type 0, // [0:0] is the sub-list for method input_type 0, // [0:0] is the sub-list for extension type_name @@ -173,13 +173,13 @@ var file_google_ads_googleads_v16_resources_landing_page_view_proto_depIdxs = [] 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_landing_page_view_proto_init() } -func file_google_ads_googleads_v16_resources_landing_page_view_proto_init() { - if File_google_ads_googleads_v16_resources_landing_page_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_landing_page_view_proto_init() } +func file_google_ads_googleads_v17_resources_landing_page_view_proto_init() { + if File_google_ads_googleads_v17_resources_landing_page_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_landing_page_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_landing_page_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*LandingPageView); i { case 0: return &v.state @@ -192,23 +192,23 @@ func file_google_ads_googleads_v16_resources_landing_page_view_proto_init() { } } } - file_google_ads_googleads_v16_resources_landing_page_view_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_landing_page_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_landing_page_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_landing_page_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_landing_page_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_landing_page_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_landing_page_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_landing_page_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_landing_page_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_landing_page_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_landing_page_view_proto = out.File - file_google_ads_googleads_v16_resources_landing_page_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_landing_page_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_landing_page_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_landing_page_view_proto = out.File + file_google_ads_googleads_v17_resources_landing_page_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_landing_page_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_landing_page_view_proto_depIdxs = nil } diff --git a/resources/language_constant.pb.go b/resources/language_constant.pb.go index 947c0680..eb577b5e 100644 --- a/resources/language_constant.pb.go +++ b/resources/language_constant.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/language_constant.proto +// source: google/ads/googleads/v17/resources/language_constant.proto package resources @@ -61,7 +61,7 @@ type LanguageConstant struct { func (x *LanguageConstant) Reset() { *x = LanguageConstant{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_language_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_language_constant_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74,7 +74,7 @@ func (x *LanguageConstant) String() string { func (*LanguageConstant) ProtoMessage() {} func (x *LanguageConstant) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_language_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_language_constant_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -87,7 +87,7 @@ func (x *LanguageConstant) ProtoReflect() protoreflect.Message { // Deprecated: Use LanguageConstant.ProtoReflect.Descriptor instead. func (*LanguageConstant) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_language_constant_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_language_constant_proto_rawDescGZIP(), []int{0} } func (x *LanguageConstant) GetResourceName() string { @@ -125,15 +125,15 @@ func (x *LanguageConstant) GetTargetable() bool { return false } -var File_google_ads_googleads_v16_resources_language_constant_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_language_constant_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_language_constant_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_language_constant_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, 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, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 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, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -162,41 +162,41 @@ var file_google_ads_googleads_v16_resources_language_constant_proto_rawDesc = [] 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x87, 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, 0x15, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x15, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 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, + 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, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, + 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, + 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, 0x70, + 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_language_constant_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_language_constant_proto_rawDescData = file_google_ads_googleads_v16_resources_language_constant_proto_rawDesc + file_google_ads_googleads_v17_resources_language_constant_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_language_constant_proto_rawDescData = file_google_ads_googleads_v17_resources_language_constant_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_language_constant_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_language_constant_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_language_constant_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_language_constant_proto_rawDescData) +func file_google_ads_googleads_v17_resources_language_constant_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_language_constant_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_language_constant_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_language_constant_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_language_constant_proto_rawDescData + return file_google_ads_googleads_v17_resources_language_constant_proto_rawDescData } -var file_google_ads_googleads_v16_resources_language_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_language_constant_proto_goTypes = []interface{}{ - (*LanguageConstant)(nil), // 0: google.ads.googleads.v16.resources.LanguageConstant +var file_google_ads_googleads_v17_resources_language_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_language_constant_proto_goTypes = []interface{}{ + (*LanguageConstant)(nil), // 0: google.ads.googleads.v17.resources.LanguageConstant } -var file_google_ads_googleads_v16_resources_language_constant_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_language_constant_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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_resources_language_constant_proto_depIdxs = [] 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_language_constant_proto_init() } -func file_google_ads_googleads_v16_resources_language_constant_proto_init() { - if File_google_ads_googleads_v16_resources_language_constant_proto != nil { +func init() { file_google_ads_googleads_v17_resources_language_constant_proto_init() } +func file_google_ads_googleads_v17_resources_language_constant_proto_init() { + if File_google_ads_googleads_v17_resources_language_constant_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_language_constant_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_language_constant_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*LanguageConstant); i { case 0: return &v.state @@ -223,23 +223,23 @@ func file_google_ads_googleads_v16_resources_language_constant_proto_init() { } } } - file_google_ads_googleads_v16_resources_language_constant_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_language_constant_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_language_constant_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_language_constant_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_language_constant_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_language_constant_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_language_constant_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_language_constant_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_language_constant_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_language_constant_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_language_constant_proto = out.File - file_google_ads_googleads_v16_resources_language_constant_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_language_constant_proto_goTypes = nil - file_google_ads_googleads_v16_resources_language_constant_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_language_constant_proto = out.File + file_google_ads_googleads_v17_resources_language_constant_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_language_constant_proto_goTypes = nil + file_google_ads_googleads_v17_resources_language_constant_proto_depIdxs = nil } diff --git a/resources/lead_form_submission_data.pb.go b/resources/lead_form_submission_data.pb.go index e64955e1..9b56a052 100644 --- a/resources/lead_form_submission_data.pb.go +++ b/resources/lead_form_submission_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/resources/lead_form_submission_data.proto +// source: google/ads/googleads/v17/resources/lead_form_submission_data.proto package resources @@ -72,7 +72,7 @@ type LeadFormSubmissionData struct { func (x *LeadFormSubmissionData) Reset() { *x = LeadFormSubmissionData{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -85,7 +85,7 @@ func (x *LeadFormSubmissionData) String() string { func (*LeadFormSubmissionData) ProtoMessage() {} func (x *LeadFormSubmissionData) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -98,7 +98,7 @@ func (x *LeadFormSubmissionData) ProtoReflect() protoreflect.Message { // Deprecated: Use LeadFormSubmissionData.ProtoReflect.Descriptor instead. func (*LeadFormSubmissionData) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_rawDescGZIP(), []int{0} } func (x *LeadFormSubmissionData) GetResourceName() string { @@ -178,7 +178,7 @@ type LeadFormSubmissionField struct { unknownFields protoimpl.UnknownFields // Output only. Field type for lead form fields. - FieldType enums.LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType `protobuf:"varint,1,opt,name=field_type,json=fieldType,proto3,enum=google.ads.googleads.v16.enums.LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType" json:"field_type,omitempty"` + FieldType enums.LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType `protobuf:"varint,1,opt,name=field_type,json=fieldType,proto3,enum=google.ads.googleads.v17.enums.LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType" json:"field_type,omitempty"` // Output only. Field value for lead form fields. FieldValue string `protobuf:"bytes,2,opt,name=field_value,json=fieldValue,proto3" json:"field_value,omitempty"` } @@ -186,7 +186,7 @@ type LeadFormSubmissionField struct { func (x *LeadFormSubmissionField) Reset() { *x = LeadFormSubmissionField{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -199,7 +199,7 @@ func (x *LeadFormSubmissionField) String() string { func (*LeadFormSubmissionField) ProtoMessage() {} func (x *LeadFormSubmissionField) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_lead_form_submission_data_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 *LeadFormSubmissionField) ProtoReflect() protoreflect.Message { // Deprecated: Use LeadFormSubmissionField.ProtoReflect.Descriptor instead. func (*LeadFormSubmissionField) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_rawDescGZIP(), []int{1} } func (x *LeadFormSubmissionField) GetFieldType() enums.LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType { @@ -246,7 +246,7 @@ type CustomLeadFormSubmissionField struct { func (x *CustomLeadFormSubmissionField) Reset() { *x = CustomLeadFormSubmissionField{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -259,7 +259,7 @@ func (x *CustomLeadFormSubmissionField) String() string { func (*CustomLeadFormSubmissionField) ProtoMessage() {} func (x *CustomLeadFormSubmissionField) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -272,7 +272,7 @@ func (x *CustomLeadFormSubmissionField) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomLeadFormSubmissionField.ProtoReflect.Descriptor instead. func (*CustomLeadFormSubmissionField) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_rawDescGZIP(), []int{2} } func (x *CustomLeadFormSubmissionField) GetQuestionText() string { @@ -289,18 +289,18 @@ func (x *CustomLeadFormSubmissionField) GetFieldValue() string { return "" } -var File_google_ads_googleads_v16_resources_lead_form_submission_data_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_lead_form_submission_data_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_lead_form_submission_data_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, 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, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x61, 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, + 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, 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, 0x66, 0x6f, + 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, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, @@ -327,7 +327,7 @@ var file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_rawD 0x1b, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x18, 0x05, 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, 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, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x18, 0x6c, 0x65, 0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x53, 0x75, @@ -336,7 +336,7 @@ var file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_rawD 0x6f, 0x72, 0x6d, 0x5f, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x18, 0x0a, 0x20, 0x03, 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, 0x36, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x1e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x4c, 0x65, 0x61, 0x64, 0x46, @@ -368,7 +368,7 @@ var file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_rawD 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x7d, 0x0a, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 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, 0x73, 0x2e, 0x76, 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, @@ -384,48 +384,48 @@ var file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_rawD 0x6c, 0x64, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x8d, 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, + 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, 0x1b, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x61, 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, + 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, + 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, 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, + 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_lead_form_submission_data_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_rawDescData = file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_rawDesc + file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_rawDescData = file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_rawDescData) +func file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_rawDescData + return file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_rawDescData } -var file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_goTypes = []interface{}{ - (*LeadFormSubmissionData)(nil), // 0: google.ads.googleads.v16.resources.LeadFormSubmissionData - (*LeadFormSubmissionField)(nil), // 1: google.ads.googleads.v16.resources.LeadFormSubmissionField - (*CustomLeadFormSubmissionField)(nil), // 2: google.ads.googleads.v16.resources.CustomLeadFormSubmissionField - (enums.LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType)(0), // 3: google.ads.googleads.v16.enums.LeadFormFieldUserInputTypeEnum.LeadFormFieldUserInputType +var file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_msgTypes = make([]protoimpl.MessageInfo, 3) +var file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_goTypes = []interface{}{ + (*LeadFormSubmissionData)(nil), // 0: google.ads.googleads.v17.resources.LeadFormSubmissionData + (*LeadFormSubmissionField)(nil), // 1: google.ads.googleads.v17.resources.LeadFormSubmissionField + (*CustomLeadFormSubmissionField)(nil), // 2: google.ads.googleads.v17.resources.CustomLeadFormSubmissionField + (enums.LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType)(0), // 3: google.ads.googleads.v17.enums.LeadFormFieldUserInputTypeEnum.LeadFormFieldUserInputType } -var file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.LeadFormSubmissionData.lead_form_submission_fields:type_name -> google.ads.googleads.v16.resources.LeadFormSubmissionField - 2, // 1: google.ads.googleads.v16.resources.LeadFormSubmissionData.custom_lead_form_submission_fields:type_name -> google.ads.googleads.v16.resources.CustomLeadFormSubmissionField - 3, // 2: google.ads.googleads.v16.resources.LeadFormSubmissionField.field_type:type_name -> google.ads.googleads.v16.enums.LeadFormFieldUserInputTypeEnum.LeadFormFieldUserInputType +var file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.LeadFormSubmissionData.lead_form_submission_fields:type_name -> google.ads.googleads.v17.resources.LeadFormSubmissionField + 2, // 1: google.ads.googleads.v17.resources.LeadFormSubmissionData.custom_lead_form_submission_fields:type_name -> google.ads.googleads.v17.resources.CustomLeadFormSubmissionField + 3, // 2: google.ads.googleads.v17.resources.LeadFormSubmissionField.field_type:type_name -> google.ads.googleads.v17.enums.LeadFormFieldUserInputTypeEnum.LeadFormFieldUserInputType 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 @@ -433,13 +433,13 @@ var file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_depI 0, // [0:3] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_init() } -func file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_init() { - if File_google_ads_googleads_v16_resources_lead_form_submission_data_proto != nil { +func init() { file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_init() } +func file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_init() { + if File_google_ads_googleads_v17_resources_lead_form_submission_data_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*LeadFormSubmissionData); i { case 0: return &v.state @@ -451,7 +451,7 @@ func file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_ini return nil } } - file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*LeadFormSubmissionField); i { case 0: return &v.state @@ -463,7 +463,7 @@ func file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_ini return nil } } - file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomLeadFormSubmissionField); i { case 0: return &v.state @@ -480,18 +480,18 @@ func file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_ini out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_rawDesc, NumEnums: 0, NumMessages: 3, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_lead_form_submission_data_proto = out.File - file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_goTypes = nil - file_google_ads_googleads_v16_resources_lead_form_submission_data_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_lead_form_submission_data_proto = out.File + file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_goTypes = nil + file_google_ads_googleads_v17_resources_lead_form_submission_data_proto_depIdxs = nil } diff --git a/resources/life_event.pb.go b/resources/life_event.pb.go index 6c03ddcc..1438d2c7 100644 --- a/resources/life_event.pb.go +++ b/resources/life_event.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/life_event.proto +// source: google/ads/googleads/v17/resources/life_event.proto package resources @@ -64,7 +64,7 @@ type LifeEvent struct { func (x *LifeEvent) Reset() { *x = LifeEvent{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_life_event_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_life_event_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *LifeEvent) String() string { func (*LifeEvent) ProtoMessage() {} func (x *LifeEvent) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_life_event_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_life_event_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *LifeEvent) ProtoReflect() protoreflect.Message { // Deprecated: Use LifeEvent.ProtoReflect.Descriptor instead. func (*LifeEvent) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_life_event_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_life_event_proto_rawDescGZIP(), []int{0} } func (x *LifeEvent) GetResourceName() string { @@ -135,17 +135,17 @@ func (x *LifeEvent) GetAvailabilities() []*common.CriterionCategoryAvailability return nil } -var File_google_ads_googleads_v16_resources_life_event_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_life_event_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_life_event_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_life_event_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, 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, 0x6c, 0x69, 0x66, 0x65, 0x5f, 0x65, 0x76, 0x65, 0x6e, 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, + 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, 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, 0x6e, 0x2f, 0x63, 0x72, 0x69, 0x74, 0x65, + 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, @@ -170,7 +170,7 @@ var file_google_ads_googleads_v16_resources_life_event_proto_rawDesc = []byte{ 0x6e, 0x63, 0x68, 0x65, 0x64, 0x54, 0x6f, 0x41, 0x6c, 0x6c, 0x12, 0x6b, 0x0a, 0x0e, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x69, 0x65, 0x73, 0x18, 0x06, 0x20, 0x03, 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, + 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, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0e, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, @@ -182,42 +182,42 @@ var file_google_ads_googleads_v16_resources_life_event_proto_rawDesc = []byte{ 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x7b, 0x6c, 0x69, 0x66, 0x65, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x7d, 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, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x0e, 0x4c, 0x69, 0x66, 0x65, 0x45, 0x76, 0x65, 0x6e, 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, 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_life_event_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_life_event_proto_rawDescData = file_google_ads_googleads_v16_resources_life_event_proto_rawDesc + file_google_ads_googleads_v17_resources_life_event_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_life_event_proto_rawDescData = file_google_ads_googleads_v17_resources_life_event_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_life_event_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_life_event_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_life_event_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_life_event_proto_rawDescData) +func file_google_ads_googleads_v17_resources_life_event_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_life_event_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_life_event_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_life_event_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_life_event_proto_rawDescData + return file_google_ads_googleads_v17_resources_life_event_proto_rawDescData } -var file_google_ads_googleads_v16_resources_life_event_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_life_event_proto_goTypes = []interface{}{ - (*LifeEvent)(nil), // 0: google.ads.googleads.v16.resources.LifeEvent - (*common.CriterionCategoryAvailability)(nil), // 1: google.ads.googleads.v16.common.CriterionCategoryAvailability +var file_google_ads_googleads_v17_resources_life_event_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_life_event_proto_goTypes = []interface{}{ + (*LifeEvent)(nil), // 0: google.ads.googleads.v17.resources.LifeEvent + (*common.CriterionCategoryAvailability)(nil), // 1: google.ads.googleads.v17.common.CriterionCategoryAvailability } -var file_google_ads_googleads_v16_resources_life_event_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.LifeEvent.availabilities:type_name -> google.ads.googleads.v16.common.CriterionCategoryAvailability +var file_google_ads_googleads_v17_resources_life_event_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.LifeEvent.availabilities:type_name -> google.ads.googleads.v17.common.CriterionCategoryAvailability 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 @@ -225,13 +225,13 @@ var file_google_ads_googleads_v16_resources_life_event_proto_depIdxs = []int32{ 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_life_event_proto_init() } -func file_google_ads_googleads_v16_resources_life_event_proto_init() { - if File_google_ads_googleads_v16_resources_life_event_proto != nil { +func init() { file_google_ads_googleads_v17_resources_life_event_proto_init() } +func file_google_ads_googleads_v17_resources_life_event_proto_init() { + if File_google_ads_googleads_v17_resources_life_event_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_life_event_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_life_event_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*LifeEvent); i { case 0: return &v.state @@ -248,18 +248,18 @@ func file_google_ads_googleads_v16_resources_life_event_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_life_event_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_life_event_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_life_event_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_life_event_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_life_event_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_life_event_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_life_event_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_life_event_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_life_event_proto = out.File - file_google_ads_googleads_v16_resources_life_event_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_life_event_proto_goTypes = nil - file_google_ads_googleads_v16_resources_life_event_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_life_event_proto = out.File + file_google_ads_googleads_v17_resources_life_event_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_life_event_proto_goTypes = nil + file_google_ads_googleads_v17_resources_life_event_proto_depIdxs = nil } diff --git a/resources/local_services_employee.pb.go b/resources/local_services_employee.pb.go index e2399300..80e7566c 100644 --- a/resources/local_services_employee.pb.go +++ b/resources/local_services_employee.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/local_services_employee.proto +// source: google/ads/googleads/v17/resources/local_services_employee.proto package resources @@ -54,9 +54,9 @@ type LocalServicesEmployee struct { // Examples: "2018-03-05 09:15:00" or "2018-02-01 14:34:30" CreationDateTime string `protobuf:"bytes,3,opt,name=creation_date_time,json=creationDateTime,proto3" json:"creation_date_time,omitempty"` // Output only. Employee status, such as DELETED or ENABLED. - Status enums.LocalServicesEmployeeStatusEnum_LocalServicesEmployeeStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.LocalServicesEmployeeStatusEnum_LocalServicesEmployeeStatus" json:"status,omitempty"` + Status enums.LocalServicesEmployeeStatusEnum_LocalServicesEmployeeStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.LocalServicesEmployeeStatusEnum_LocalServicesEmployeeStatus" json:"status,omitempty"` // Output only. Employee type. - Type enums.LocalServicesEmployeeTypeEnum_LocalServicesEmployeeType `protobuf:"varint,5,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.LocalServicesEmployeeTypeEnum_LocalServicesEmployeeType" json:"type,omitempty"` + Type enums.LocalServicesEmployeeTypeEnum_LocalServicesEmployeeType `protobuf:"varint,5,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.LocalServicesEmployeeTypeEnum_LocalServicesEmployeeType" json:"type,omitempty"` // Output only. A list of degrees this employee has obtained, and wants to // feature. UniversityDegrees []*UniversityDegree `protobuf:"bytes,6,rep,name=university_degrees,json=universityDegrees,proto3" json:"university_degrees,omitempty"` @@ -93,7 +93,7 @@ type LocalServicesEmployee struct { func (x *LocalServicesEmployee) Reset() { *x = LocalServicesEmployee{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_local_services_employee_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_local_services_employee_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -106,7 +106,7 @@ func (x *LocalServicesEmployee) String() string { func (*LocalServicesEmployee) ProtoMessage() {} func (x *LocalServicesEmployee) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_local_services_employee_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_local_services_employee_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -119,7 +119,7 @@ func (x *LocalServicesEmployee) ProtoReflect() protoreflect.Message { // Deprecated: Use LocalServicesEmployee.ProtoReflect.Descriptor instead. func (*LocalServicesEmployee) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_local_services_employee_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_local_services_employee_proto_rawDescGZIP(), []int{0} } func (x *LocalServicesEmployee) GetResourceName() string { @@ -258,7 +258,7 @@ type UniversityDegree struct { func (x *UniversityDegree) Reset() { *x = UniversityDegree{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_local_services_employee_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_local_services_employee_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -271,7 +271,7 @@ func (x *UniversityDegree) String() string { func (*UniversityDegree) ProtoMessage() {} func (x *UniversityDegree) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_local_services_employee_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_local_services_employee_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -284,7 +284,7 @@ func (x *UniversityDegree) ProtoReflect() protoreflect.Message { // Deprecated: Use UniversityDegree.ProtoReflect.Descriptor instead. func (*UniversityDegree) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_local_services_employee_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_resources_local_services_employee_proto_rawDescGZIP(), []int{1} } func (x *UniversityDegree) GetInstitutionName() string { @@ -325,7 +325,7 @@ type Residency struct { func (x *Residency) Reset() { *x = Residency{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_local_services_employee_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_local_services_employee_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -338,7 +338,7 @@ func (x *Residency) String() string { func (*Residency) ProtoMessage() {} func (x *Residency) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_local_services_employee_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_local_services_employee_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -351,7 +351,7 @@ func (x *Residency) ProtoReflect() protoreflect.Message { // Deprecated: Use Residency.ProtoReflect.Descriptor instead. func (*Residency) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_local_services_employee_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_resources_local_services_employee_proto_rawDescGZIP(), []int{2} } func (x *Residency) GetInstitutionName() string { @@ -385,7 +385,7 @@ type Fellowship struct { func (x *Fellowship) Reset() { *x = Fellowship{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_local_services_employee_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_local_services_employee_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -398,7 +398,7 @@ func (x *Fellowship) String() string { func (*Fellowship) ProtoMessage() {} func (x *Fellowship) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_local_services_employee_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_local_services_employee_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -411,7 +411,7 @@ func (x *Fellowship) ProtoReflect() protoreflect.Message { // Deprecated: Use Fellowship.ProtoReflect.Descriptor instead. func (*Fellowship) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_local_services_employee_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_resources_local_services_employee_proto_rawDescGZIP(), []int{3} } func (x *Fellowship) GetInstitutionName() string { @@ -428,22 +428,22 @@ func (x *Fellowship) GetCompletionYear() int32 { return 0 } -var File_google_ads_googleads_v16_resources_local_services_employee_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_local_services_employee_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_local_services_employee_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_local_services_employee_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, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x5f, 0x65, 0x6d, 0x70, 0x6c, 0x6f, 0x79, 0x65, 0x65, 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, 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, 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, 0x6c, 0x6f, 0x63, 0x61, + 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, @@ -464,7 +464,7 @@ var file_google_ads_googleads_v16_resources_local_services_employee_proto_rawDes 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x78, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 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, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x45, 0x6d, 0x70, @@ -472,7 +472,7 @@ var file_google_ads_googleads_v16_resources_local_services_employee_proto_rawDes 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x70, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, + 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 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, 0x42, @@ -480,18 +480,18 @@ var file_google_ads_googleads_v16_resources_local_services_employee_proto_rawDes 0x69, 0x76, 0x65, 0x72, 0x73, 0x69, 0x74, 0x79, 0x5f, 0x64, 0x65, 0x67, 0x72, 0x65, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x6e, 0x69, 0x76, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x6e, 0x69, 0x76, 0x65, 0x72, 0x73, 0x69, 0x74, 0x79, 0x44, 0x65, 0x67, 0x72, 0x65, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x11, 0x75, 0x6e, 0x69, 0x76, 0x65, 0x72, 0x73, 0x69, 0x74, 0x79, 0x44, 0x65, 0x67, 0x72, 0x65, 0x65, 0x73, 0x12, 0x54, 0x0a, 0x0b, 0x72, 0x65, 0x73, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x69, 0x65, 0x73, 0x18, 0x07, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x79, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0b, 0x72, 0x65, 0x73, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x69, 0x65, 0x73, 0x12, 0x55, 0x0a, 0x0b, 0x66, 0x65, 0x6c, 0x6c, 0x6f, 0x77, 0x73, 0x68, 0x69, 0x70, 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, 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, 0x46, 0x65, 0x6c, 0x6c, 0x6f, 0x77, 0x73, 0x68, 0x69, 0x70, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0b, 0x66, 0x65, 0x6c, 0x6c, 0x6f, 0x77, 0x73, 0x68, 0x69, 0x70, 0x73, 0x12, 0x25, 0x0a, 0x09, 0x6a, 0x6f, 0x62, 0x5f, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x09, @@ -572,52 +572,52 @@ var file_google_ads_googleads_v16_resources_local_services_employee_proto_rawDes 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x79, 0x65, 0x61, 0x72, 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, + 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, 0x1a, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x45, 0x6d, 0x70, 0x6c, 0x6f, 0x79, 0x65, 0x65, 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, + 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, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, + 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, + 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, 0x70, + 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_local_services_employee_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_local_services_employee_proto_rawDescData = file_google_ads_googleads_v16_resources_local_services_employee_proto_rawDesc + file_google_ads_googleads_v17_resources_local_services_employee_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_local_services_employee_proto_rawDescData = file_google_ads_googleads_v17_resources_local_services_employee_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_local_services_employee_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_local_services_employee_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_local_services_employee_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_local_services_employee_proto_rawDescData) +func file_google_ads_googleads_v17_resources_local_services_employee_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_local_services_employee_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_local_services_employee_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_local_services_employee_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_local_services_employee_proto_rawDescData -} - -var file_google_ads_googleads_v16_resources_local_services_employee_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_resources_local_services_employee_proto_goTypes = []interface{}{ - (*LocalServicesEmployee)(nil), // 0: google.ads.googleads.v16.resources.LocalServicesEmployee - (*UniversityDegree)(nil), // 1: google.ads.googleads.v16.resources.UniversityDegree - (*Residency)(nil), // 2: google.ads.googleads.v16.resources.Residency - (*Fellowship)(nil), // 3: google.ads.googleads.v16.resources.Fellowship - (enums.LocalServicesEmployeeStatusEnum_LocalServicesEmployeeStatus)(0), // 4: google.ads.googleads.v16.enums.LocalServicesEmployeeStatusEnum.LocalServicesEmployeeStatus - (enums.LocalServicesEmployeeTypeEnum_LocalServicesEmployeeType)(0), // 5: google.ads.googleads.v16.enums.LocalServicesEmployeeTypeEnum.LocalServicesEmployeeType -} -var file_google_ads_googleads_v16_resources_local_services_employee_proto_depIdxs = []int32{ - 4, // 0: google.ads.googleads.v16.resources.LocalServicesEmployee.status:type_name -> google.ads.googleads.v16.enums.LocalServicesEmployeeStatusEnum.LocalServicesEmployeeStatus - 5, // 1: google.ads.googleads.v16.resources.LocalServicesEmployee.type:type_name -> google.ads.googleads.v16.enums.LocalServicesEmployeeTypeEnum.LocalServicesEmployeeType - 1, // 2: google.ads.googleads.v16.resources.LocalServicesEmployee.university_degrees:type_name -> google.ads.googleads.v16.resources.UniversityDegree - 2, // 3: google.ads.googleads.v16.resources.LocalServicesEmployee.residencies:type_name -> google.ads.googleads.v16.resources.Residency - 3, // 4: google.ads.googleads.v16.resources.LocalServicesEmployee.fellowships:type_name -> google.ads.googleads.v16.resources.Fellowship + return file_google_ads_googleads_v17_resources_local_services_employee_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_local_services_employee_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_resources_local_services_employee_proto_goTypes = []interface{}{ + (*LocalServicesEmployee)(nil), // 0: google.ads.googleads.v17.resources.LocalServicesEmployee + (*UniversityDegree)(nil), // 1: google.ads.googleads.v17.resources.UniversityDegree + (*Residency)(nil), // 2: google.ads.googleads.v17.resources.Residency + (*Fellowship)(nil), // 3: google.ads.googleads.v17.resources.Fellowship + (enums.LocalServicesEmployeeStatusEnum_LocalServicesEmployeeStatus)(0), // 4: google.ads.googleads.v17.enums.LocalServicesEmployeeStatusEnum.LocalServicesEmployeeStatus + (enums.LocalServicesEmployeeTypeEnum_LocalServicesEmployeeType)(0), // 5: google.ads.googleads.v17.enums.LocalServicesEmployeeTypeEnum.LocalServicesEmployeeType +} +var file_google_ads_googleads_v17_resources_local_services_employee_proto_depIdxs = []int32{ + 4, // 0: google.ads.googleads.v17.resources.LocalServicesEmployee.status:type_name -> google.ads.googleads.v17.enums.LocalServicesEmployeeStatusEnum.LocalServicesEmployeeStatus + 5, // 1: google.ads.googleads.v17.resources.LocalServicesEmployee.type:type_name -> google.ads.googleads.v17.enums.LocalServicesEmployeeTypeEnum.LocalServicesEmployeeType + 1, // 2: google.ads.googleads.v17.resources.LocalServicesEmployee.university_degrees:type_name -> google.ads.googleads.v17.resources.UniversityDegree + 2, // 3: google.ads.googleads.v17.resources.LocalServicesEmployee.residencies:type_name -> google.ads.googleads.v17.resources.Residency + 3, // 4: google.ads.googleads.v17.resources.LocalServicesEmployee.fellowships:type_name -> google.ads.googleads.v17.resources.Fellowship 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 @@ -625,13 +625,13 @@ var file_google_ads_googleads_v16_resources_local_services_employee_proto_depIdx 0, // [0:5] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_local_services_employee_proto_init() } -func file_google_ads_googleads_v16_resources_local_services_employee_proto_init() { - if File_google_ads_googleads_v16_resources_local_services_employee_proto != nil { +func init() { file_google_ads_googleads_v17_resources_local_services_employee_proto_init() } +func file_google_ads_googleads_v17_resources_local_services_employee_proto_init() { + if File_google_ads_googleads_v17_resources_local_services_employee_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_local_services_employee_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_local_services_employee_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*LocalServicesEmployee); i { case 0: return &v.state @@ -643,7 +643,7 @@ func file_google_ads_googleads_v16_resources_local_services_employee_proto_init( return nil } } - file_google_ads_googleads_v16_resources_local_services_employee_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_local_services_employee_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*UniversityDegree); i { case 0: return &v.state @@ -655,7 +655,7 @@ func file_google_ads_googleads_v16_resources_local_services_employee_proto_init( return nil } } - file_google_ads_googleads_v16_resources_local_services_employee_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_local_services_employee_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Residency); i { case 0: return &v.state @@ -667,7 +667,7 @@ func file_google_ads_googleads_v16_resources_local_services_employee_proto_init( return nil } } - file_google_ads_googleads_v16_resources_local_services_employee_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_local_services_employee_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Fellowship); i { case 0: return &v.state @@ -680,26 +680,26 @@ func file_google_ads_googleads_v16_resources_local_services_employee_proto_init( } } } - file_google_ads_googleads_v16_resources_local_services_employee_proto_msgTypes[0].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_local_services_employee_proto_msgTypes[1].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_local_services_employee_proto_msgTypes[2].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_local_services_employee_proto_msgTypes[3].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_local_services_employee_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_local_services_employee_proto_msgTypes[1].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_local_services_employee_proto_msgTypes[2].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_local_services_employee_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_resources_local_services_employee_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_local_services_employee_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_local_services_employee_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_local_services_employee_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_local_services_employee_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_local_services_employee_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_local_services_employee_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_local_services_employee_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_local_services_employee_proto = out.File - file_google_ads_googleads_v16_resources_local_services_employee_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_local_services_employee_proto_goTypes = nil - file_google_ads_googleads_v16_resources_local_services_employee_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_local_services_employee_proto = out.File + file_google_ads_googleads_v17_resources_local_services_employee_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_local_services_employee_proto_goTypes = nil + file_google_ads_googleads_v17_resources_local_services_employee_proto_depIdxs = nil } diff --git a/resources/local_services_lead.pb.go b/resources/local_services_lead.pb.go index 11b8430a..55228961 100644 --- a/resources/local_services_lead.pb.go +++ b/resources/local_services_lead.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/local_services_lead.proto +// source: google/ads/googleads/v17/resources/local_services_lead.proto package resources @@ -65,9 +65,9 @@ type LocalServicesLead struct { // Output only. Lead's contact details. ContactDetails *ContactDetails `protobuf:"bytes,5,opt,name=contact_details,json=contactDetails,proto3" json:"contact_details,omitempty"` // Output only. Type of Local Services lead: phone, message, booking, etc. - LeadType enums.LocalServicesLeadTypeEnum_LeadType `protobuf:"varint,6,opt,name=lead_type,json=leadType,proto3,enum=google.ads.googleads.v16.enums.LocalServicesLeadTypeEnum_LeadType" json:"lead_type,omitempty"` + LeadType enums.LocalServicesLeadTypeEnum_LeadType `protobuf:"varint,6,opt,name=lead_type,json=leadType,proto3,enum=google.ads.googleads.v17.enums.LocalServicesLeadTypeEnum_LeadType" json:"lead_type,omitempty"` // Output only. Current status of lead. - LeadStatus enums.LocalServicesLeadStatusEnum_LeadStatus `protobuf:"varint,7,opt,name=lead_status,json=leadStatus,proto3,enum=google.ads.googleads.v16.enums.LocalServicesLeadStatusEnum_LeadStatus" json:"lead_status,omitempty"` + LeadStatus enums.LocalServicesLeadStatusEnum_LeadStatus `protobuf:"varint,7,opt,name=lead_status,json=leadStatus,proto3,enum=google.ads.googleads.v17.enums.LocalServicesLeadStatusEnum_LeadStatus" json:"lead_status,omitempty"` // Output only. The date time at which lead was created by Local Services Ads. // The format is "YYYY-MM-DD HH:MM:SS" in the Google Ads account's timezone. // Examples: "2018-03-05 09:15:00" or "2018-02-01 14:34:30" @@ -86,7 +86,7 @@ type LocalServicesLead struct { func (x *LocalServicesLead) Reset() { *x = LocalServicesLead{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_local_services_lead_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_local_services_lead_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -99,7 +99,7 @@ func (x *LocalServicesLead) String() string { func (*LocalServicesLead) ProtoMessage() {} func (x *LocalServicesLead) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_local_services_lead_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_local_services_lead_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -112,7 +112,7 @@ func (x *LocalServicesLead) ProtoReflect() protoreflect.Message { // Deprecated: Use LocalServicesLead.ProtoReflect.Descriptor instead. func (*LocalServicesLead) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_local_services_lead_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_local_services_lead_proto_rawDescGZIP(), []int{0} } func (x *LocalServicesLead) GetResourceName() string { @@ -217,7 +217,7 @@ type ContactDetails struct { func (x *ContactDetails) Reset() { *x = ContactDetails{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_local_services_lead_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_local_services_lead_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -230,7 +230,7 @@ func (x *ContactDetails) String() string { func (*ContactDetails) ProtoMessage() {} func (x *ContactDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_local_services_lead_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_local_services_lead_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -243,7 +243,7 @@ func (x *ContactDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use ContactDetails.ProtoReflect.Descriptor instead. func (*ContactDetails) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_local_services_lead_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_resources_local_services_lead_proto_rawDescGZIP(), []int{1} } func (x *ContactDetails) GetPhoneNumber() string { @@ -285,7 +285,7 @@ type Note struct { func (x *Note) Reset() { *x = Note{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_local_services_lead_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_local_services_lead_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -298,7 +298,7 @@ func (x *Note) String() string { func (*Note) ProtoMessage() {} func (x *Note) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_local_services_lead_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_local_services_lead_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -311,7 +311,7 @@ func (x *Note) ProtoReflect() protoreflect.Message { // Deprecated: Use Note.ProtoReflect.Descriptor instead. func (*Note) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_local_services_lead_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_resources_local_services_lead_proto_rawDescGZIP(), []int{2} } func (x *Note) GetEditDateTime() string { @@ -335,7 +335,7 @@ type CreditDetails struct { unknownFields protoimpl.UnknownFields // Output only. Credit state of the lead. - CreditState enums.LocalServicesCreditStateEnum_CreditState `protobuf:"varint,1,opt,name=credit_state,json=creditState,proto3,enum=google.ads.googleads.v16.enums.LocalServicesCreditStateEnum_CreditState" json:"credit_state,omitempty"` + CreditState enums.LocalServicesCreditStateEnum_CreditState `protobuf:"varint,1,opt,name=credit_state,json=creditState,proto3,enum=google.ads.googleads.v17.enums.LocalServicesCreditStateEnum_CreditState" json:"credit_state,omitempty"` // Output only. The date time when the credit state of the lead was last // updated. The format is "YYYY-MM-DD HH:MM:SS" in the Google Ads account's // timezone. Examples: "2018-03-05 09:15:00" or "2018-02-01 14:34:30" @@ -345,7 +345,7 @@ type CreditDetails struct { func (x *CreditDetails) Reset() { *x = CreditDetails{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_local_services_lead_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_local_services_lead_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -358,7 +358,7 @@ func (x *CreditDetails) String() string { func (*CreditDetails) ProtoMessage() {} func (x *CreditDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_local_services_lead_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_local_services_lead_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -371,7 +371,7 @@ func (x *CreditDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use CreditDetails.ProtoReflect.Descriptor instead. func (*CreditDetails) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_local_services_lead_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_resources_local_services_lead_proto_rawDescGZIP(), []int{3} } func (x *CreditDetails) GetCreditState() enums.LocalServicesCreditStateEnum_CreditState { @@ -388,26 +388,26 @@ func (x *CreditDetails) GetCreditStateLastUpdateDateTime() string { return "" } -var File_google_ads_googleads_v16_resources_local_services_lead_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_local_services_lead_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_local_services_lead_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_local_services_lead_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, 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, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x5f, 0x6c, 0x65, 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, 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, + 0x6f, 0x6f, 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, 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, 0x6f, 0x63, 0x61, 0x6c, 0x5f, + 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, 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, 0x6f, 0x63, 0x61, 0x6c, + 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, @@ -429,19 +429,19 @@ var file_google_ads_googleads_v16_resources_local_services_lead_proto_rawDesc = 0x65, 0x49, 0x64, 0x12, 0x60, 0x0a, 0x0f, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 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, 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, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0e, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x12, 0x64, 0x0a, 0x09, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x06, 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, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, + 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x4c, 0x65, 0x61, 0x64, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x08, 0x6c, 0x65, 0x61, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x6c, 0x0a, 0x0b, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 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, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x4c, 0x65, 0x61, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0a, 0x6c, @@ -453,14 +453,14 @@ var file_google_ads_googleads_v16_resources_local_services_lead_proto_rawDesc = 0x03, 0x52, 0x06, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x65, 0x12, 0x46, 0x0a, 0x04, 0x6e, 0x6f, 0x74, 0x65, 0x18, 0x0a, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4e, 0x6f, 0x74, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4e, 0x6f, 0x74, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x04, 0x6e, 0x6f, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x08, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0b, 0x6c, 0x65, 0x61, 0x64, 0x43, 0x68, 0x61, 0x72, 0x67, 0x65, 0x64, 0x12, 0x62, 0x0a, 0x0e, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x18, 0x0c, 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, 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, 0x2e, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x01, 0x52, 0x0d, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x88, 0x01, 0x01, 0x3a, 0x74, 0xea, @@ -490,7 +490,7 @@ var file_google_ads_googleads_v16_resources_local_services_lead_proto_rawDesc = 0x64, 0x69, 0x74, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x12, 0x70, 0x0a, 0x0c, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 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, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, @@ -501,53 +501,53 @@ var file_google_ads_googleads_v16_resources_local_services_lead_proto_rawDesc = 0x72, 0x65, 0x64, 0x69, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x44, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x42, 0x88, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x16, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x4c, 0x65, 0x61, 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, + 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_local_services_lead_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_local_services_lead_proto_rawDescData = file_google_ads_googleads_v16_resources_local_services_lead_proto_rawDesc + file_google_ads_googleads_v17_resources_local_services_lead_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_local_services_lead_proto_rawDescData = file_google_ads_googleads_v17_resources_local_services_lead_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_local_services_lead_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_local_services_lead_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_local_services_lead_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_local_services_lead_proto_rawDescData) +func file_google_ads_googleads_v17_resources_local_services_lead_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_local_services_lead_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_local_services_lead_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_local_services_lead_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_local_services_lead_proto_rawDescData -} - -var file_google_ads_googleads_v16_resources_local_services_lead_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_resources_local_services_lead_proto_goTypes = []interface{}{ - (*LocalServicesLead)(nil), // 0: google.ads.googleads.v16.resources.LocalServicesLead - (*ContactDetails)(nil), // 1: google.ads.googleads.v16.resources.ContactDetails - (*Note)(nil), // 2: google.ads.googleads.v16.resources.Note - (*CreditDetails)(nil), // 3: google.ads.googleads.v16.resources.CreditDetails - (enums.LocalServicesLeadTypeEnum_LeadType)(0), // 4: google.ads.googleads.v16.enums.LocalServicesLeadTypeEnum.LeadType - (enums.LocalServicesLeadStatusEnum_LeadStatus)(0), // 5: google.ads.googleads.v16.enums.LocalServicesLeadStatusEnum.LeadStatus - (enums.LocalServicesCreditStateEnum_CreditState)(0), // 6: google.ads.googleads.v16.enums.LocalServicesCreditStateEnum.CreditState -} -var file_google_ads_googleads_v16_resources_local_services_lead_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.LocalServicesLead.contact_details:type_name -> google.ads.googleads.v16.resources.ContactDetails - 4, // 1: google.ads.googleads.v16.resources.LocalServicesLead.lead_type:type_name -> google.ads.googleads.v16.enums.LocalServicesLeadTypeEnum.LeadType - 5, // 2: google.ads.googleads.v16.resources.LocalServicesLead.lead_status:type_name -> google.ads.googleads.v16.enums.LocalServicesLeadStatusEnum.LeadStatus - 2, // 3: google.ads.googleads.v16.resources.LocalServicesLead.note:type_name -> google.ads.googleads.v16.resources.Note - 3, // 4: google.ads.googleads.v16.resources.LocalServicesLead.credit_details:type_name -> google.ads.googleads.v16.resources.CreditDetails - 6, // 5: google.ads.googleads.v16.resources.CreditDetails.credit_state:type_name -> google.ads.googleads.v16.enums.LocalServicesCreditStateEnum.CreditState + return file_google_ads_googleads_v17_resources_local_services_lead_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_local_services_lead_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_resources_local_services_lead_proto_goTypes = []interface{}{ + (*LocalServicesLead)(nil), // 0: google.ads.googleads.v17.resources.LocalServicesLead + (*ContactDetails)(nil), // 1: google.ads.googleads.v17.resources.ContactDetails + (*Note)(nil), // 2: google.ads.googleads.v17.resources.Note + (*CreditDetails)(nil), // 3: google.ads.googleads.v17.resources.CreditDetails + (enums.LocalServicesLeadTypeEnum_LeadType)(0), // 4: google.ads.googleads.v17.enums.LocalServicesLeadTypeEnum.LeadType + (enums.LocalServicesLeadStatusEnum_LeadStatus)(0), // 5: google.ads.googleads.v17.enums.LocalServicesLeadStatusEnum.LeadStatus + (enums.LocalServicesCreditStateEnum_CreditState)(0), // 6: google.ads.googleads.v17.enums.LocalServicesCreditStateEnum.CreditState +} +var file_google_ads_googleads_v17_resources_local_services_lead_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.LocalServicesLead.contact_details:type_name -> google.ads.googleads.v17.resources.ContactDetails + 4, // 1: google.ads.googleads.v17.resources.LocalServicesLead.lead_type:type_name -> google.ads.googleads.v17.enums.LocalServicesLeadTypeEnum.LeadType + 5, // 2: google.ads.googleads.v17.resources.LocalServicesLead.lead_status:type_name -> google.ads.googleads.v17.enums.LocalServicesLeadStatusEnum.LeadStatus + 2, // 3: google.ads.googleads.v17.resources.LocalServicesLead.note:type_name -> google.ads.googleads.v17.resources.Note + 3, // 4: google.ads.googleads.v17.resources.LocalServicesLead.credit_details:type_name -> google.ads.googleads.v17.resources.CreditDetails + 6, // 5: google.ads.googleads.v17.resources.CreditDetails.credit_state:type_name -> google.ads.googleads.v17.enums.LocalServicesCreditStateEnum.CreditState 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 @@ -555,13 +555,13 @@ var file_google_ads_googleads_v16_resources_local_services_lead_proto_depIdxs = 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_local_services_lead_proto_init() } -func file_google_ads_googleads_v16_resources_local_services_lead_proto_init() { - if File_google_ads_googleads_v16_resources_local_services_lead_proto != nil { +func init() { file_google_ads_googleads_v17_resources_local_services_lead_proto_init() } +func file_google_ads_googleads_v17_resources_local_services_lead_proto_init() { + if File_google_ads_googleads_v17_resources_local_services_lead_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_local_services_lead_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_local_services_lead_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*LocalServicesLead); i { case 0: return &v.state @@ -573,7 +573,7 @@ func file_google_ads_googleads_v16_resources_local_services_lead_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_local_services_lead_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_local_services_lead_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ContactDetails); i { case 0: return &v.state @@ -585,7 +585,7 @@ func file_google_ads_googleads_v16_resources_local_services_lead_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_local_services_lead_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_local_services_lead_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Note); i { case 0: return &v.state @@ -597,7 +597,7 @@ func file_google_ads_googleads_v16_resources_local_services_lead_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_local_services_lead_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_local_services_lead_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreditDetails); i { case 0: return &v.state @@ -610,23 +610,23 @@ func file_google_ads_googleads_v16_resources_local_services_lead_proto_init() { } } } - file_google_ads_googleads_v16_resources_local_services_lead_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_local_services_lead_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_local_services_lead_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_local_services_lead_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_local_services_lead_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_local_services_lead_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_local_services_lead_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_local_services_lead_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_local_services_lead_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_local_services_lead_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_local_services_lead_proto = out.File - file_google_ads_googleads_v16_resources_local_services_lead_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_local_services_lead_proto_goTypes = nil - file_google_ads_googleads_v16_resources_local_services_lead_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_local_services_lead_proto = out.File + file_google_ads_googleads_v17_resources_local_services_lead_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_local_services_lead_proto_goTypes = nil + file_google_ads_googleads_v17_resources_local_services_lead_proto_depIdxs = nil } diff --git a/resources/local_services_lead_conversation.pb.go b/resources/local_services_lead_conversation.pb.go index 9e45726e..d2f29148 100644 --- a/resources/local_services_lead_conversation.pb.go +++ b/resources/local_services_lead_conversation.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/local_services_lead_conversation.proto +// source: google/ads/googleads/v17/resources/local_services_lead_conversation.proto package resources @@ -54,10 +54,10 @@ type LocalServicesLeadConversation struct { Id int64 `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"` // Output only. Type of GLS lead conversation, EMAIL, MESSAGE, PHONE_CALL, // SMS, etc. - ConversationChannel enums.LocalServicesLeadConversationTypeEnum_ConversationType `protobuf:"varint,3,opt,name=conversation_channel,json=conversationChannel,proto3,enum=google.ads.googleads.v16.enums.LocalServicesLeadConversationTypeEnum_ConversationType" json:"conversation_channel,omitempty"` + ConversationChannel enums.LocalServicesLeadConversationTypeEnum_ConversationType `protobuf:"varint,3,opt,name=conversation_channel,json=conversationChannel,proto3,enum=google.ads.googleads.v17.enums.LocalServicesLeadConversationTypeEnum_ConversationType" json:"conversation_channel,omitempty"` // Output only. Type of participant in the lead conversation, ADVERTISER or // CONSUMER. - ParticipantType enums.LocalServicesParticipantTypeEnum_ParticipantType `protobuf:"varint,4,opt,name=participant_type,json=participantType,proto3,enum=google.ads.googleads.v16.enums.LocalServicesParticipantTypeEnum_ParticipantType" json:"participant_type,omitempty"` + ParticipantType enums.LocalServicesParticipantTypeEnum_ParticipantType `protobuf:"varint,4,opt,name=participant_type,json=participantType,proto3,enum=google.ads.googleads.v17.enums.LocalServicesParticipantTypeEnum_ParticipantType" json:"participant_type,omitempty"` // Output only. Resource name of Lead associated to the Lead Conversation. Lead string `protobuf:"bytes,5,opt,name=lead,proto3" json:"lead,omitempty"` // Output only. The date time at which lead conversation was created by Local @@ -75,7 +75,7 @@ type LocalServicesLeadConversation struct { func (x *LocalServicesLeadConversation) Reset() { *x = LocalServicesLeadConversation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_local_services_lead_conversation_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -88,7 +88,7 @@ func (x *LocalServicesLeadConversation) String() string { func (*LocalServicesLeadConversation) ProtoMessage() {} func (x *LocalServicesLeadConversation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_local_services_lead_conversation_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 *LocalServicesLeadConversation) ProtoReflect() protoreflect.Message { // Deprecated: Use LocalServicesLeadConversation.ProtoReflect.Descriptor instead. func (*LocalServicesLeadConversation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_local_services_lead_conversation_proto_rawDescGZIP(), []int{0} } func (x *LocalServicesLeadConversation) GetResourceName() string { @@ -175,7 +175,7 @@ type PhoneCallDetails struct { func (x *PhoneCallDetails) Reset() { *x = PhoneCallDetails{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_local_services_lead_conversation_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -188,7 +188,7 @@ func (x *PhoneCallDetails) String() string { func (*PhoneCallDetails) ProtoMessage() {} func (x *PhoneCallDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_local_services_lead_conversation_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 *PhoneCallDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use PhoneCallDetails.ProtoReflect.Descriptor instead. func (*PhoneCallDetails) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_resources_local_services_lead_conversation_proto_rawDescGZIP(), []int{1} } func (x *PhoneCallDetails) GetCallDurationMillis() int64 { @@ -234,7 +234,7 @@ type MessageDetails struct { func (x *MessageDetails) Reset() { *x = MessageDetails{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_local_services_lead_conversation_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -247,7 +247,7 @@ func (x *MessageDetails) String() string { func (*MessageDetails) ProtoMessage() {} func (x *MessageDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_local_services_lead_conversation_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 *MessageDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use MessageDetails.ProtoReflect.Descriptor instead. func (*MessageDetails) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_resources_local_services_lead_conversation_proto_rawDescGZIP(), []int{2} } func (x *MessageDetails) GetText() string { @@ -277,22 +277,22 @@ func (x *MessageDetails) GetAttachmentUrls() []string { return nil } -var File_google_ads_googleads_v16_resources_local_services_lead_conversation_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_local_services_lead_conversation_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_local_services_lead_conversation_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, 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, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x5f, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, + 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, 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, 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, 0x1a, 0x1f, 0x67, 0x6f, @@ -312,7 +312,7 @@ var file_google_ads_googleads_v16_resources_local_services_lead_conversation_pro 0x52, 0x02, 0x69, 0x64, 0x12, 0x8e, 0x01, 0x0a, 0x14, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x18, 0x03, 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, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, @@ -321,7 +321,7 @@ var file_google_ads_googleads_v16_resources_local_services_lead_conversation_pro 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x12, 0x80, 0x01, 0x0a, 0x10, 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 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, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x54, 0x79, @@ -337,13 +337,13 @@ var file_google_ads_googleads_v16_resources_local_services_lead_conversation_pro 0x12, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x50, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x61, 0x6c, 0x6c, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x10, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x61, 0x6c, 0x6c, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x88, 0x01, 0x01, 0x12, 0x65, 0x0a, 0x0f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x18, 0x08, 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, + 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, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x01, 0x52, 0x0e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x88, @@ -375,49 +375,49 @@ var file_google_ads_googleads_v16_resources_local_services_lead_conversation_pro 0x03, 0x52, 0x0e, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x55, 0x72, 0x6c, 0x73, 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, 0x4c, 0x6f, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x22, 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, 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, + 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, + 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, 0x36, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 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, + 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_local_services_lead_conversation_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_rawDescData = file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_rawDesc + file_google_ads_googleads_v17_resources_local_services_lead_conversation_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_local_services_lead_conversation_proto_rawDescData = file_google_ads_googleads_v17_resources_local_services_lead_conversation_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_rawDescData) +func file_google_ads_googleads_v17_resources_local_services_lead_conversation_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_local_services_lead_conversation_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_local_services_lead_conversation_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_local_services_lead_conversation_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_rawDescData -} - -var file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_goTypes = []interface{}{ - (*LocalServicesLeadConversation)(nil), // 0: google.ads.googleads.v16.resources.LocalServicesLeadConversation - (*PhoneCallDetails)(nil), // 1: google.ads.googleads.v16.resources.PhoneCallDetails - (*MessageDetails)(nil), // 2: google.ads.googleads.v16.resources.MessageDetails - (enums.LocalServicesLeadConversationTypeEnum_ConversationType)(0), // 3: google.ads.googleads.v16.enums.LocalServicesLeadConversationTypeEnum.ConversationType - (enums.LocalServicesParticipantTypeEnum_ParticipantType)(0), // 4: google.ads.googleads.v16.enums.LocalServicesParticipantTypeEnum.ParticipantType -} -var file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_depIdxs = []int32{ - 3, // 0: google.ads.googleads.v16.resources.LocalServicesLeadConversation.conversation_channel:type_name -> google.ads.googleads.v16.enums.LocalServicesLeadConversationTypeEnum.ConversationType - 4, // 1: google.ads.googleads.v16.resources.LocalServicesLeadConversation.participant_type:type_name -> google.ads.googleads.v16.enums.LocalServicesParticipantTypeEnum.ParticipantType - 1, // 2: google.ads.googleads.v16.resources.LocalServicesLeadConversation.phone_call_details:type_name -> google.ads.googleads.v16.resources.PhoneCallDetails - 2, // 3: google.ads.googleads.v16.resources.LocalServicesLeadConversation.message_details:type_name -> google.ads.googleads.v16.resources.MessageDetails + return file_google_ads_googleads_v17_resources_local_services_lead_conversation_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_local_services_lead_conversation_proto_msgTypes = make([]protoimpl.MessageInfo, 3) +var file_google_ads_googleads_v17_resources_local_services_lead_conversation_proto_goTypes = []interface{}{ + (*LocalServicesLeadConversation)(nil), // 0: google.ads.googleads.v17.resources.LocalServicesLeadConversation + (*PhoneCallDetails)(nil), // 1: google.ads.googleads.v17.resources.PhoneCallDetails + (*MessageDetails)(nil), // 2: google.ads.googleads.v17.resources.MessageDetails + (enums.LocalServicesLeadConversationTypeEnum_ConversationType)(0), // 3: google.ads.googleads.v17.enums.LocalServicesLeadConversationTypeEnum.ConversationType + (enums.LocalServicesParticipantTypeEnum_ParticipantType)(0), // 4: google.ads.googleads.v17.enums.LocalServicesParticipantTypeEnum.ParticipantType +} +var file_google_ads_googleads_v17_resources_local_services_lead_conversation_proto_depIdxs = []int32{ + 3, // 0: google.ads.googleads.v17.resources.LocalServicesLeadConversation.conversation_channel:type_name -> google.ads.googleads.v17.enums.LocalServicesLeadConversationTypeEnum.ConversationType + 4, // 1: google.ads.googleads.v17.resources.LocalServicesLeadConversation.participant_type:type_name -> google.ads.googleads.v17.enums.LocalServicesParticipantTypeEnum.ParticipantType + 1, // 2: google.ads.googleads.v17.resources.LocalServicesLeadConversation.phone_call_details:type_name -> google.ads.googleads.v17.resources.PhoneCallDetails + 2, // 3: google.ads.googleads.v17.resources.LocalServicesLeadConversation.message_details:type_name -> google.ads.googleads.v17.resources.MessageDetails 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 @@ -425,13 +425,13 @@ var file_google_ads_googleads_v16_resources_local_services_lead_conversation_pro 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_init() } -func file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_init() { - if File_google_ads_googleads_v16_resources_local_services_lead_conversation_proto != nil { +func init() { file_google_ads_googleads_v17_resources_local_services_lead_conversation_proto_init() } +func file_google_ads_googleads_v17_resources_local_services_lead_conversation_proto_init() { + if File_google_ads_googleads_v17_resources_local_services_lead_conversation_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_local_services_lead_conversation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*LocalServicesLeadConversation); i { case 0: return &v.state @@ -443,7 +443,7 @@ func file_google_ads_googleads_v16_resources_local_services_lead_conversation_pr return nil } } - file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_local_services_lead_conversation_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*PhoneCallDetails); i { case 0: return &v.state @@ -455,7 +455,7 @@ func file_google_ads_googleads_v16_resources_local_services_lead_conversation_pr return nil } } - file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_local_services_lead_conversation_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MessageDetails); i { case 0: return &v.state @@ -468,23 +468,23 @@ func file_google_ads_googleads_v16_resources_local_services_lead_conversation_pr } } } - file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_local_services_lead_conversation_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_local_services_lead_conversation_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_local_services_lead_conversation_proto_rawDesc, NumEnums: 0, NumMessages: 3, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_local_services_lead_conversation_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_local_services_lead_conversation_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_local_services_lead_conversation_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_local_services_lead_conversation_proto = out.File - file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_goTypes = nil - file_google_ads_googleads_v16_resources_local_services_lead_conversation_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_local_services_lead_conversation_proto = out.File + file_google_ads_googleads_v17_resources_local_services_lead_conversation_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_local_services_lead_conversation_proto_goTypes = nil + file_google_ads_googleads_v17_resources_local_services_lead_conversation_proto_depIdxs = nil } diff --git a/resources/local_services_verification_artifact.pb.go b/resources/local_services_verification_artifact.pb.go index 36e7831e..0c4d113c 100644 --- a/resources/local_services_verification_artifact.pb.go +++ b/resources/local_services_verification_artifact.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/local_services_verification_artifact.proto +// source: google/ads/googleads/v17/resources/local_services_verification_artifact.proto package resources @@ -55,9 +55,9 @@ type LocalServicesVerificationArtifact struct { // Examples: "2018-03-05 09:15:00" or "2018-02-01 14:34:30" CreationDateTime string `protobuf:"bytes,3,opt,name=creation_date_time,json=creationDateTime,proto3" json:"creation_date_time,omitempty"` // Output only. The status of the verification artifact. - Status enums.LocalServicesVerificationArtifactStatusEnum_LocalServicesVerificationArtifactStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.LocalServicesVerificationArtifactStatusEnum_LocalServicesVerificationArtifactStatus" json:"status,omitempty"` + Status enums.LocalServicesVerificationArtifactStatusEnum_LocalServicesVerificationArtifactStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.LocalServicesVerificationArtifactStatusEnum_LocalServicesVerificationArtifactStatus" json:"status,omitempty"` // Output only. The type of the verification artifact. - ArtifactType enums.LocalServicesVerificationArtifactTypeEnum_LocalServicesVerificationArtifactType `protobuf:"varint,5,opt,name=artifact_type,json=artifactType,proto3,enum=google.ads.googleads.v16.enums.LocalServicesVerificationArtifactTypeEnum_LocalServicesVerificationArtifactType" json:"artifact_type,omitempty"` + ArtifactType enums.LocalServicesVerificationArtifactTypeEnum_LocalServicesVerificationArtifactType `protobuf:"varint,5,opt,name=artifact_type,json=artifactType,proto3,enum=google.ads.googleads.v17.enums.LocalServicesVerificationArtifactTypeEnum_LocalServicesVerificationArtifactType" json:"artifact_type,omitempty"` // The types of verification info. // // Types that are assignable to ArtifactData: @@ -72,7 +72,7 @@ type LocalServicesVerificationArtifact struct { func (x *LocalServicesVerificationArtifact) Reset() { *x = LocalServicesVerificationArtifact{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -85,7 +85,7 @@ func (x *LocalServicesVerificationArtifact) String() string { func (*LocalServicesVerificationArtifact) ProtoMessage() {} func (x *LocalServicesVerificationArtifact) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -98,7 +98,7 @@ func (x *LocalServicesVerificationArtifact) ProtoReflect() protoreflect.Message // Deprecated: Use LocalServicesVerificationArtifact.ProtoReflect.Descriptor instead. func (*LocalServicesVerificationArtifact) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_rawDescGZIP(), []int{0} } func (x *LocalServicesVerificationArtifact) GetResourceName() string { @@ -225,7 +225,7 @@ type BackgroundCheckVerificationArtifact struct { func (x *BackgroundCheckVerificationArtifact) Reset() { *x = BackgroundCheckVerificationArtifact{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -238,7 +238,7 @@ func (x *BackgroundCheckVerificationArtifact) String() string { func (*BackgroundCheckVerificationArtifact) ProtoMessage() {} func (x *BackgroundCheckVerificationArtifact) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -251,7 +251,7 @@ func (x *BackgroundCheckVerificationArtifact) ProtoReflect() protoreflect.Messag // Deprecated: Use BackgroundCheckVerificationArtifact.ProtoReflect.Descriptor instead. func (*BackgroundCheckVerificationArtifact) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_rawDescGZIP(), []int{1} } func (x *BackgroundCheckVerificationArtifact) GetCaseUrl() string { @@ -278,16 +278,20 @@ type InsuranceVerificationArtifact struct { // mentioned in the insurance document. AmountMicros *int64 `protobuf:"varint,1,opt,name=amount_micros,json=amountMicros,proto3,oneof" json:"amount_micros,omitempty"` // Output only. Insurance document's rejection reason. - RejectionReason *enums.LocalServicesInsuranceRejectionReasonEnum_LocalServicesInsuranceRejectionReason `protobuf:"varint,2,opt,name=rejection_reason,json=rejectionReason,proto3,enum=google.ads.googleads.v16.enums.LocalServicesInsuranceRejectionReasonEnum_LocalServicesInsuranceRejectionReason,oneof" json:"rejection_reason,omitempty"` + RejectionReason *enums.LocalServicesInsuranceRejectionReasonEnum_LocalServicesInsuranceRejectionReason `protobuf:"varint,2,opt,name=rejection_reason,json=rejectionReason,proto3,enum=google.ads.googleads.v17.enums.LocalServicesInsuranceRejectionReasonEnum_LocalServicesInsuranceRejectionReason,oneof" json:"rejection_reason,omitempty"` // Output only. The readonly field containing the information for an uploaded // insurance document. InsuranceDocumentReadonly *common.LocalServicesDocumentReadOnly `protobuf:"bytes,3,opt,name=insurance_document_readonly,json=insuranceDocumentReadonly,proto3,oneof" json:"insurance_document_readonly,omitempty"` + // Output only. The timestamp when this insurance expires. + // The format is "YYYY-MM-DD HH:MM:SS" in the Google Ads account's timezone. + // Examples: "2018-03-05 09:15:00" or "2018-02-01 14:34:30" + ExpirationDateTime *string `protobuf:"bytes,4,opt,name=expiration_date_time,json=expirationDateTime,proto3,oneof" json:"expiration_date_time,omitempty"` } func (x *InsuranceVerificationArtifact) Reset() { *x = InsuranceVerificationArtifact{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -300,7 +304,7 @@ func (x *InsuranceVerificationArtifact) String() string { func (*InsuranceVerificationArtifact) ProtoMessage() {} func (x *InsuranceVerificationArtifact) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -313,7 +317,7 @@ func (x *InsuranceVerificationArtifact) ProtoReflect() protoreflect.Message { // Deprecated: Use InsuranceVerificationArtifact.ProtoReflect.Descriptor instead. func (*InsuranceVerificationArtifact) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_rawDescGZIP(), []int{2} } func (x *InsuranceVerificationArtifact) GetAmountMicros() int64 { @@ -337,6 +341,13 @@ func (x *InsuranceVerificationArtifact) GetInsuranceDocumentReadonly() *common.L return nil } +func (x *InsuranceVerificationArtifact) GetExpirationDateTime() string { + if x != nil && x.ExpirationDateTime != nil { + return *x.ExpirationDateTime + } + return "" +} + // A proto holding information specific to a local services license. type LicenseVerificationArtifact struct { state protoimpl.MessageState @@ -352,16 +363,20 @@ type LicenseVerificationArtifact struct { // Output only. Last name of the licensee. LicenseeLastName *string `protobuf:"bytes,4,opt,name=licensee_last_name,json=licenseeLastName,proto3,oneof" json:"licensee_last_name,omitempty"` // Output only. License rejection reason. - RejectionReason *enums.LocalServicesLicenseRejectionReasonEnum_LocalServicesLicenseRejectionReason `protobuf:"varint,5,opt,name=rejection_reason,json=rejectionReason,proto3,enum=google.ads.googleads.v16.enums.LocalServicesLicenseRejectionReasonEnum_LocalServicesLicenseRejectionReason,oneof" json:"rejection_reason,omitempty"` + RejectionReason *enums.LocalServicesLicenseRejectionReasonEnum_LocalServicesLicenseRejectionReason `protobuf:"varint,5,opt,name=rejection_reason,json=rejectionReason,proto3,enum=google.ads.googleads.v17.enums.LocalServicesLicenseRejectionReasonEnum_LocalServicesLicenseRejectionReason,oneof" json:"rejection_reason,omitempty"` // Output only. The readonly field containing the information for an uploaded // license document. LicenseDocumentReadonly *common.LocalServicesDocumentReadOnly `protobuf:"bytes,6,opt,name=license_document_readonly,json=licenseDocumentReadonly,proto3,oneof" json:"license_document_readonly,omitempty"` + // Output only. The timestamp when this license expires. + // The format is "YYYY-MM-DD HH:MM:SS" in the Google Ads account's timezone. + // Examples: "2018-03-05 09:15:00" or "2018-02-01 14:34:30" + ExpirationDateTime *string `protobuf:"bytes,7,opt,name=expiration_date_time,json=expirationDateTime,proto3,oneof" json:"expiration_date_time,omitempty"` } func (x *LicenseVerificationArtifact) Reset() { *x = LicenseVerificationArtifact{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -374,7 +389,7 @@ func (x *LicenseVerificationArtifact) String() string { func (*LicenseVerificationArtifact) ProtoMessage() {} func (x *LicenseVerificationArtifact) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -387,7 +402,7 @@ func (x *LicenseVerificationArtifact) ProtoReflect() protoreflect.Message { // Deprecated: Use LicenseVerificationArtifact.ProtoReflect.Descriptor instead. func (*LicenseVerificationArtifact) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_rawDescGZIP(), []int{3} } func (x *LicenseVerificationArtifact) GetLicenseType() string { @@ -432,6 +447,13 @@ func (x *LicenseVerificationArtifact) GetLicenseDocumentReadonly() *common.Local return nil } +func (x *LicenseVerificationArtifact) GetExpirationDateTime() string { + if x != nil && x.ExpirationDateTime != nil { + return *x.ExpirationDateTime + } + return "" +} + // A proto holding information specific to a local services business // registration check. type BusinessRegistrationCheckVerificationArtifact struct { @@ -440,12 +462,12 @@ type BusinessRegistrationCheckVerificationArtifact struct { unknownFields protoimpl.UnknownFields // Output only. The type of business registration check (number, document). - RegistrationType *enums.LocalServicesBusinessRegistrationTypeEnum_LocalServicesBusinessRegistrationType `protobuf:"varint,3,opt,name=registration_type,json=registrationType,proto3,enum=google.ads.googleads.v16.enums.LocalServicesBusinessRegistrationTypeEnum_LocalServicesBusinessRegistrationType,oneof" json:"registration_type,omitempty"` + RegistrationType *enums.LocalServicesBusinessRegistrationTypeEnum_LocalServicesBusinessRegistrationType `protobuf:"varint,3,opt,name=registration_type,json=registrationType,proto3,enum=google.ads.googleads.v17.enums.LocalServicesBusinessRegistrationTypeEnum_LocalServicesBusinessRegistrationType,oneof" json:"registration_type,omitempty"` // Output only. The id of the check, such as vat_tax_id, representing "VAT Tax // ID" requirement. CheckId *string `protobuf:"bytes,4,opt,name=check_id,json=checkId,proto3,oneof" json:"check_id,omitempty"` // Output only. Registration document rejection reason. - RejectionReason *enums.LocalServicesBusinessRegistrationCheckRejectionReasonEnum_LocalServicesBusinessRegistrationCheckRejectionReason `protobuf:"varint,5,opt,name=rejection_reason,json=rejectionReason,proto3,enum=google.ads.googleads.v16.enums.LocalServicesBusinessRegistrationCheckRejectionReasonEnum_LocalServicesBusinessRegistrationCheckRejectionReason,oneof" json:"rejection_reason,omitempty"` + RejectionReason *enums.LocalServicesBusinessRegistrationCheckRejectionReasonEnum_LocalServicesBusinessRegistrationCheckRejectionReason `protobuf:"varint,5,opt,name=rejection_reason,json=rejectionReason,proto3,enum=google.ads.googleads.v17.enums.LocalServicesBusinessRegistrationCheckRejectionReasonEnum_LocalServicesBusinessRegistrationCheckRejectionReason,oneof" json:"rejection_reason,omitempty"` // Registration information for the business registration. It will be one // of the following forms based on the requirement from different countries. // @@ -459,7 +481,7 @@ type BusinessRegistrationCheckVerificationArtifact struct { func (x *BusinessRegistrationCheckVerificationArtifact) Reset() { *x = BusinessRegistrationCheckVerificationArtifact{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -472,7 +494,7 @@ func (x *BusinessRegistrationCheckVerificationArtifact) String() string { func (*BusinessRegistrationCheckVerificationArtifact) ProtoMessage() {} func (x *BusinessRegistrationCheckVerificationArtifact) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -485,7 +507,7 @@ func (x *BusinessRegistrationCheckVerificationArtifact) ProtoReflect() protorefl // Deprecated: Use BusinessRegistrationCheckVerificationArtifact.ProtoReflect.Descriptor instead. func (*BusinessRegistrationCheckVerificationArtifact) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_rawDescGZIP(), []int{4} } func (x *BusinessRegistrationCheckVerificationArtifact) GetRegistrationType() enums.LocalServicesBusinessRegistrationTypeEnum_LocalServicesBusinessRegistrationType { @@ -564,7 +586,7 @@ type BusinessRegistrationNumber struct { func (x *BusinessRegistrationNumber) Reset() { *x = BusinessRegistrationNumber{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -577,7 +599,7 @@ func (x *BusinessRegistrationNumber) String() string { func (*BusinessRegistrationNumber) ProtoMessage() {} func (x *BusinessRegistrationNumber) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -590,7 +612,7 @@ func (x *BusinessRegistrationNumber) ProtoReflect() protoreflect.Message { // Deprecated: Use BusinessRegistrationNumber.ProtoReflect.Descriptor instead. func (*BusinessRegistrationNumber) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_rawDescGZIP(), []int{5} } func (x *BusinessRegistrationNumber) GetNumber() string { @@ -615,7 +637,7 @@ type BusinessRegistrationDocument struct { func (x *BusinessRegistrationDocument) Reset() { *x = BusinessRegistrationDocument{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -628,7 +650,7 @@ func (x *BusinessRegistrationDocument) String() string { func (*BusinessRegistrationDocument) ProtoMessage() {} func (x *BusinessRegistrationDocument) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_msgTypes[6] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -641,7 +663,7 @@ func (x *BusinessRegistrationDocument) ProtoReflect() protoreflect.Message { // Deprecated: Use BusinessRegistrationDocument.ProtoReflect.Descriptor instead. func (*BusinessRegistrationDocument) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_rawDescGZIP(), []int{6} } func (x *BusinessRegistrationDocument) GetDocumentReadonly() *common.LocalServicesDocumentReadOnly { @@ -651,48 +673,48 @@ func (x *BusinessRegistrationDocument) GetDocumentReadonly() *common.LocalServic return nil } -var File_google_ads_googleads_v16_resources_local_services_verification_artifact_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_local_services_verification_artifact_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_local_services_verification_artifact_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, 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, 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, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 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, 0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, + 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, 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, 0x2f, 0x6c, 0x6f, 0x63, 0x61, + 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, 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, 0x2f, 0x6c, 0x6f, 0x63, 0x61, + 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, 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, 0x6c, 0x6f, 0x63, 0x61, + 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, 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, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, + 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, 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, 0x2f, 0x6c, 0x6f, 0x63, 0x61, + 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, @@ -715,7 +737,7 @@ var file_google_ads_googleads_v16_resources_local_services_verification_artifact 0x03, 0x52, 0x10, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x90, 0x01, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x75, @@ -725,7 +747,7 @@ var file_google_ads_googleads_v16_resources_local_services_verification_artifact 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x99, 0x01, 0x0a, 0x0d, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x6f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 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, 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, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, @@ -736,7 +758,7 @@ var file_google_ads_googleads_v16_resources_local_services_verification_artifact 0x64, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x18, 0x06, 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, 0x2e, 0x72, + 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, 0x42, 0x61, 0x63, 0x6b, 0x67, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x42, 0x03, 0xe0, 0x41, @@ -746,7 +768,7 @@ var file_google_ads_googleads_v16_resources_local_services_verification_artifact 0x75, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x18, 0x07, 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, 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, 0x49, 0x6e, 0x73, 0x75, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x1d, 0x69, 0x6e, @@ -755,7 +777,7 @@ var file_google_ads_googleads_v16_resources_local_services_verification_artifact 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x18, 0x08, 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, 0x72, + 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, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x1b, 0x6c, 0x69, 0x63, @@ -765,7 +787,7 @@ var file_google_ads_googleads_v16_resources_local_services_verification_artifact 0x6f, 0x6e, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x18, 0x09, 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, + 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, 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, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, @@ -796,7 +818,7 @@ var file_google_ads_googleads_v16_resources_local_services_verification_artifact 0x44, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x63, 0x61, 0x73, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x1f, 0x0a, 0x1d, 0x5f, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x61, 0x64, 0x6a, 0x75, 0x64, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, - 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x22, 0xc7, 0x03, 0x0a, 0x1d, 0x49, 0x6e, + 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x22, 0x9c, 0x04, 0x0a, 0x1d, 0x49, 0x6e, 0x73, 0x75, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x12, 0x2d, 0x0a, 0x0d, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x01, 0x20, 0x01, @@ -804,7 +826,7 @@ var file_google_ads_googleads_v16_resources_local_services_verification_artifact 0x74, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0xa4, 0x01, 0x0a, 0x10, 0x72, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x6f, 0x2e, 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, 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, @@ -816,187 +838,198 @@ var file_google_ads_googleads_v16_resources_local_services_verification_artifact 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x03, 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, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, + 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x02, 0x52, 0x19, 0x69, 0x6e, 0x73, 0x75, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, - 0x74, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x88, 0x01, 0x01, 0x42, 0x10, 0x0a, 0x0e, - 0x5f, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x13, - 0x0a, 0x11, 0x5f, 0x72, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x61, - 0x73, 0x6f, 0x6e, 0x42, 0x1e, 0x0a, 0x1c, 0x5f, 0x69, 0x6e, 0x73, 0x75, 0x72, 0x61, 0x6e, 0x63, - 0x65, 0x5f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x6f, - 0x6e, 0x6c, 0x79, 0x22, 0x9d, 0x05, 0x0a, 0x1b, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x56, - 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x72, 0x74, 0x69, 0x66, - 0x61, 0x63, 0x74, 0x12, 0x2b, 0x0a, 0x0c, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x5f, 0x74, - 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, - 0x52, 0x0b, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, - 0x12, 0x2f, 0x0a, 0x0e, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x5f, 0x6e, 0x75, 0x6d, 0x62, - 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x01, 0x52, - 0x0d, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x88, 0x01, - 0x01, 0x12, 0x38, 0x0a, 0x13, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x65, 0x5f, 0x66, 0x69, - 0x72, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, - 0xe0, 0x41, 0x03, 0x48, 0x02, 0x52, 0x11, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x65, 0x46, - 0x69, 0x72, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x36, 0x0a, 0x12, 0x6c, + 0x74, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x88, 0x01, 0x01, 0x12, 0x3a, 0x0a, 0x14, + 0x65, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x5f, + 0x74, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, + 0x03, 0x52, 0x12, 0x65, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, + 0x65, 0x54, 0x69, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x61, 0x6d, 0x6f, + 0x75, 0x6e, 0x74, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x72, + 0x65, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x42, + 0x1e, 0x0a, 0x1c, 0x5f, 0x69, 0x6e, 0x73, 0x75, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x64, 0x6f, + 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x42, + 0x17, 0x0a, 0x15, 0x5f, 0x65, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, + 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x22, 0xf2, 0x05, 0x0a, 0x1b, 0x4c, 0x69, 0x63, + 0x65, 0x6e, 0x73, 0x65, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x12, 0x2b, 0x0a, 0x0c, 0x6c, 0x69, 0x63, 0x65, + 0x6e, 0x73, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, + 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x0b, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x54, 0x79, + 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x2f, 0x0a, 0x0e, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, + 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, + 0x41, 0x03, 0x48, 0x01, 0x52, 0x0d, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x4e, 0x75, 0x6d, + 0x62, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x38, 0x0a, 0x13, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, + 0x65, 0x65, 0x5f, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, + 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x02, 0x52, 0x11, 0x6c, 0x69, 0x63, 0x65, + 0x6e, 0x73, 0x65, 0x65, 0x46, 0x69, 0x72, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, + 0x12, 0x36, 0x0a, 0x12, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x65, 0x5f, 0x6c, 0x61, 0x73, + 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, + 0x03, 0x48, 0x03, 0x52, 0x10, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x65, 0x4c, 0x61, 0x73, + 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0xa0, 0x01, 0x0a, 0x10, 0x72, 0x65, 0x6a, + 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x05, 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, 0x37, 0x2e, 0x65, + 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 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, + 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x04, 0x52, 0x0f, 0x72, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x69, + 0x6f, 0x6e, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x84, 0x01, 0x0a, 0x19, + 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x5f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, + 0x5f, 0x72, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x06, 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, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x6e, 0x2e, 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, 0x42, + 0x03, 0xe0, 0x41, 0x03, 0x48, 0x05, 0x52, 0x17, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x44, + 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x88, + 0x01, 0x01, 0x12, 0x3a, 0x0a, 0x14, 0x65, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x5f, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, + 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x06, 0x52, 0x12, 0x65, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x42, 0x0f, + 0x0a, 0x0d, 0x5f, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42, + 0x11, 0x0a, 0x0f, 0x5f, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x5f, 0x6e, 0x75, 0x6d, 0x62, + 0x65, 0x72, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x65, 0x5f, + 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x65, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, - 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x03, 0x52, 0x10, - 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, - 0x88, 0x01, 0x01, 0x12, 0xa0, 0x01, 0x0a, 0x10, 0x72, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x6f, - 0x6e, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x05, 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, - 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, 0x2e, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, - 0x48, 0x04, 0x52, 0x0f, 0x72, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x61, - 0x73, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x84, 0x01, 0x0a, 0x19, 0x6c, 0x69, 0x63, 0x65, 0x6e, + 0x65, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x72, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, + 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x5f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x72, 0x65, 0x61, 0x64, - 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x06, 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, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, - 0x05, 0x52, 0x17, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, - 0x6e, 0x74, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x88, 0x01, 0x01, 0x42, 0x0f, 0x0a, - 0x0d, 0x5f, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42, 0x11, - 0x0a, 0x0f, 0x5f, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, - 0x72, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x65, 0x5f, 0x66, - 0x69, 0x72, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x6c, 0x69, - 0x63, 0x65, 0x6e, 0x73, 0x65, 0x65, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, - 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x72, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, - 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, - 0x65, 0x5f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x6f, - 0x6e, 0x6c, 0x79, 0x22, 0x8c, 0x06, 0x0a, 0x2d, 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, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x72, 0x74, - 0x69, 0x66, 0x61, 0x63, 0x74, 0x12, 0xa6, 0x01, 0x0a, 0x11, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, - 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, - 0x0e, 0x32, 0x6f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 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, 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, 0x2e, 0x4c, 0x6f, 0x63, + 0x6f, 0x6e, 0x6c, 0x79, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x65, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x22, 0x8c, 0x06, + 0x0a, 0x2d, 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, 0x56, 0x65, 0x72, 0x69, 0x66, + 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x12, + 0xa6, 0x01, 0x0a, 0x11, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x6f, 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, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x01, 0x52, 0x10, 0x72, 0x65, 0x67, 0x69, 0x73, - 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x23, - 0x0a, 0x08, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, - 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x02, 0x52, 0x07, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x49, 0x64, - 0x88, 0x01, 0x01, 0x12, 0xc5, 0x01, 0x0a, 0x10, 0x72, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x6f, - 0x6e, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x8f, - 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, 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, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x6c, + 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 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, 0x42, 0x03, 0xe0, 0x41, + 0x03, 0x48, 0x01, 0x52, 0x10, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x54, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x23, 0x0a, 0x08, 0x63, 0x68, 0x65, 0x63, + 0x6b, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, + 0x02, 0x52, 0x07, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0xc5, 0x01, + 0x0a, 0x10, 0x72, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x61, 0x73, + 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x8f, 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, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x6f, 0x6e, - 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x03, 0x52, 0x0f, 0x72, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x69, - 0x6f, 0x6e, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x76, 0x0a, 0x13, 0x72, - 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x75, 0x6d, 0x62, - 0x65, 0x72, 0x18, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x75, - 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, - 0x12, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x75, 0x6d, - 0x62, 0x65, 0x72, 0x12, 0x7c, 0x0a, 0x15, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x02, 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, 0x72, 0x65, + 0x45, 0x6e, 0x75, 0x6d, 0x2e, 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, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, + 0x03, 0x52, 0x0f, 0x72, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x61, 0x73, + 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x76, 0x0a, 0x13, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x01, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, - 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x6f, 0x63, 0x75, - 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x14, 0x72, 0x65, 0x67, - 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, - 0x74, 0x42, 0x17, 0x0a, 0x15, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x5f, 0x72, 0x65, - 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x72, - 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, - 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x5f, 0x69, 0x64, 0x42, 0x13, 0x0a, - 0x11, 0x5f, 0x72, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x61, 0x73, - 0x6f, 0x6e, 0x22, 0x49, 0x0a, 0x1a, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x52, 0x65, - 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, - 0x12, 0x20, 0x0a, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, - 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x88, - 0x01, 0x01, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x22, 0xab, 0x01, - 0x0a, 0x1c, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, - 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x75, - 0x0a, 0x11, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x6f, - 0x6e, 0x6c, 0x79, 0x18, 0x01, 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, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, - 0x52, 0x10, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, - 0x6c, 0x79, 0x88, 0x01, 0x01, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, - 0x6e, 0x74, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x42, 0x98, 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, 0x26, 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, 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, + 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x75, 0x6d, 0x62, + 0x65, 0x72, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x12, 0x72, 0x65, 0x67, 0x69, 0x73, + 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x7c, 0x0a, + 0x15, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x6f, + 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x02, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x2e, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, + 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x03, + 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x14, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x17, 0x0a, 0x15, 0x62, + 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x5f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x63, + 0x68, 0x65, 0x63, 0x6b, 0x5f, 0x69, 0x64, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x72, 0x65, 0x6a, 0x65, + 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x22, 0x49, 0x0a, 0x1a, + 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x20, 0x0a, 0x06, 0x6e, 0x75, + 0x6d, 0x62, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, + 0x00, 0x52, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x88, 0x01, 0x01, 0x42, 0x09, 0x0a, 0x07, + 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x22, 0xab, 0x01, 0x0a, 0x1c, 0x42, 0x75, 0x73, 0x69, + 0x6e, 0x65, 0x73, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x75, 0x0a, 0x11, 0x64, 0x6f, 0x63, 0x75, + 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x01, 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, 0x37, 0x2e, 0x63, + 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x10, 0x64, 0x6f, 0x63, 0x75, + 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x88, 0x01, 0x01, 0x42, + 0x14, 0x0a, 0x12, 0x5f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x72, 0x65, 0x61, + 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x42, 0x98, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x42, 0x26, 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, 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_local_services_verification_artifact_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_rawDescData = file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_rawDesc + file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_rawDescData = file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_rawDescData) +func file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_rawDescData -} - -var file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes = make([]protoimpl.MessageInfo, 7) -var file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_goTypes = []interface{}{ - (*LocalServicesVerificationArtifact)(nil), // 0: google.ads.googleads.v16.resources.LocalServicesVerificationArtifact - (*BackgroundCheckVerificationArtifact)(nil), // 1: google.ads.googleads.v16.resources.BackgroundCheckVerificationArtifact - (*InsuranceVerificationArtifact)(nil), // 2: google.ads.googleads.v16.resources.InsuranceVerificationArtifact - (*LicenseVerificationArtifact)(nil), // 3: google.ads.googleads.v16.resources.LicenseVerificationArtifact - (*BusinessRegistrationCheckVerificationArtifact)(nil), // 4: google.ads.googleads.v16.resources.BusinessRegistrationCheckVerificationArtifact - (*BusinessRegistrationNumber)(nil), // 5: google.ads.googleads.v16.resources.BusinessRegistrationNumber - (*BusinessRegistrationDocument)(nil), // 6: google.ads.googleads.v16.resources.BusinessRegistrationDocument - (enums.LocalServicesVerificationArtifactStatusEnum_LocalServicesVerificationArtifactStatus)(0), // 7: google.ads.googleads.v16.enums.LocalServicesVerificationArtifactStatusEnum.LocalServicesVerificationArtifactStatus - (enums.LocalServicesVerificationArtifactTypeEnum_LocalServicesVerificationArtifactType)(0), // 8: google.ads.googleads.v16.enums.LocalServicesVerificationArtifactTypeEnum.LocalServicesVerificationArtifactType - (enums.LocalServicesInsuranceRejectionReasonEnum_LocalServicesInsuranceRejectionReason)(0), // 9: google.ads.googleads.v16.enums.LocalServicesInsuranceRejectionReasonEnum.LocalServicesInsuranceRejectionReason - (*common.LocalServicesDocumentReadOnly)(nil), // 10: google.ads.googleads.v16.common.LocalServicesDocumentReadOnly - (enums.LocalServicesLicenseRejectionReasonEnum_LocalServicesLicenseRejectionReason)(0), // 11: google.ads.googleads.v16.enums.LocalServicesLicenseRejectionReasonEnum.LocalServicesLicenseRejectionReason - (enums.LocalServicesBusinessRegistrationTypeEnum_LocalServicesBusinessRegistrationType)(0), // 12: google.ads.googleads.v16.enums.LocalServicesBusinessRegistrationTypeEnum.LocalServicesBusinessRegistrationType - (enums.LocalServicesBusinessRegistrationCheckRejectionReasonEnum_LocalServicesBusinessRegistrationCheckRejectionReason)(0), // 13: google.ads.googleads.v16.enums.LocalServicesBusinessRegistrationCheckRejectionReasonEnum.LocalServicesBusinessRegistrationCheckRejectionReason -} -var file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_depIdxs = []int32{ - 7, // 0: google.ads.googleads.v16.resources.LocalServicesVerificationArtifact.status:type_name -> google.ads.googleads.v16.enums.LocalServicesVerificationArtifactStatusEnum.LocalServicesVerificationArtifactStatus - 8, // 1: google.ads.googleads.v16.resources.LocalServicesVerificationArtifact.artifact_type:type_name -> google.ads.googleads.v16.enums.LocalServicesVerificationArtifactTypeEnum.LocalServicesVerificationArtifactType - 1, // 2: google.ads.googleads.v16.resources.LocalServicesVerificationArtifact.background_check_verification_artifact:type_name -> google.ads.googleads.v16.resources.BackgroundCheckVerificationArtifact - 2, // 3: google.ads.googleads.v16.resources.LocalServicesVerificationArtifact.insurance_verification_artifact:type_name -> google.ads.googleads.v16.resources.InsuranceVerificationArtifact - 3, // 4: google.ads.googleads.v16.resources.LocalServicesVerificationArtifact.license_verification_artifact:type_name -> google.ads.googleads.v16.resources.LicenseVerificationArtifact - 4, // 5: google.ads.googleads.v16.resources.LocalServicesVerificationArtifact.business_registration_check_verification_artifact:type_name -> google.ads.googleads.v16.resources.BusinessRegistrationCheckVerificationArtifact - 9, // 6: google.ads.googleads.v16.resources.InsuranceVerificationArtifact.rejection_reason:type_name -> google.ads.googleads.v16.enums.LocalServicesInsuranceRejectionReasonEnum.LocalServicesInsuranceRejectionReason - 10, // 7: google.ads.googleads.v16.resources.InsuranceVerificationArtifact.insurance_document_readonly:type_name -> google.ads.googleads.v16.common.LocalServicesDocumentReadOnly - 11, // 8: google.ads.googleads.v16.resources.LicenseVerificationArtifact.rejection_reason:type_name -> google.ads.googleads.v16.enums.LocalServicesLicenseRejectionReasonEnum.LocalServicesLicenseRejectionReason - 10, // 9: google.ads.googleads.v16.resources.LicenseVerificationArtifact.license_document_readonly:type_name -> google.ads.googleads.v16.common.LocalServicesDocumentReadOnly - 12, // 10: google.ads.googleads.v16.resources.BusinessRegistrationCheckVerificationArtifact.registration_type:type_name -> google.ads.googleads.v16.enums.LocalServicesBusinessRegistrationTypeEnum.LocalServicesBusinessRegistrationType - 13, // 11: google.ads.googleads.v16.resources.BusinessRegistrationCheckVerificationArtifact.rejection_reason:type_name -> google.ads.googleads.v16.enums.LocalServicesBusinessRegistrationCheckRejectionReasonEnum.LocalServicesBusinessRegistrationCheckRejectionReason - 5, // 12: google.ads.googleads.v16.resources.BusinessRegistrationCheckVerificationArtifact.registration_number:type_name -> google.ads.googleads.v16.resources.BusinessRegistrationNumber - 6, // 13: google.ads.googleads.v16.resources.BusinessRegistrationCheckVerificationArtifact.registration_document:type_name -> google.ads.googleads.v16.resources.BusinessRegistrationDocument - 10, // 14: google.ads.googleads.v16.resources.BusinessRegistrationDocument.document_readonly:type_name -> google.ads.googleads.v16.common.LocalServicesDocumentReadOnly + return file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_msgTypes = make([]protoimpl.MessageInfo, 7) +var file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_goTypes = []interface{}{ + (*LocalServicesVerificationArtifact)(nil), // 0: google.ads.googleads.v17.resources.LocalServicesVerificationArtifact + (*BackgroundCheckVerificationArtifact)(nil), // 1: google.ads.googleads.v17.resources.BackgroundCheckVerificationArtifact + (*InsuranceVerificationArtifact)(nil), // 2: google.ads.googleads.v17.resources.InsuranceVerificationArtifact + (*LicenseVerificationArtifact)(nil), // 3: google.ads.googleads.v17.resources.LicenseVerificationArtifact + (*BusinessRegistrationCheckVerificationArtifact)(nil), // 4: google.ads.googleads.v17.resources.BusinessRegistrationCheckVerificationArtifact + (*BusinessRegistrationNumber)(nil), // 5: google.ads.googleads.v17.resources.BusinessRegistrationNumber + (*BusinessRegistrationDocument)(nil), // 6: google.ads.googleads.v17.resources.BusinessRegistrationDocument + (enums.LocalServicesVerificationArtifactStatusEnum_LocalServicesVerificationArtifactStatus)(0), // 7: google.ads.googleads.v17.enums.LocalServicesVerificationArtifactStatusEnum.LocalServicesVerificationArtifactStatus + (enums.LocalServicesVerificationArtifactTypeEnum_LocalServicesVerificationArtifactType)(0), // 8: google.ads.googleads.v17.enums.LocalServicesVerificationArtifactTypeEnum.LocalServicesVerificationArtifactType + (enums.LocalServicesInsuranceRejectionReasonEnum_LocalServicesInsuranceRejectionReason)(0), // 9: google.ads.googleads.v17.enums.LocalServicesInsuranceRejectionReasonEnum.LocalServicesInsuranceRejectionReason + (*common.LocalServicesDocumentReadOnly)(nil), // 10: google.ads.googleads.v17.common.LocalServicesDocumentReadOnly + (enums.LocalServicesLicenseRejectionReasonEnum_LocalServicesLicenseRejectionReason)(0), // 11: google.ads.googleads.v17.enums.LocalServicesLicenseRejectionReasonEnum.LocalServicesLicenseRejectionReason + (enums.LocalServicesBusinessRegistrationTypeEnum_LocalServicesBusinessRegistrationType)(0), // 12: google.ads.googleads.v17.enums.LocalServicesBusinessRegistrationTypeEnum.LocalServicesBusinessRegistrationType + (enums.LocalServicesBusinessRegistrationCheckRejectionReasonEnum_LocalServicesBusinessRegistrationCheckRejectionReason)(0), // 13: google.ads.googleads.v17.enums.LocalServicesBusinessRegistrationCheckRejectionReasonEnum.LocalServicesBusinessRegistrationCheckRejectionReason +} +var file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_depIdxs = []int32{ + 7, // 0: google.ads.googleads.v17.resources.LocalServicesVerificationArtifact.status:type_name -> google.ads.googleads.v17.enums.LocalServicesVerificationArtifactStatusEnum.LocalServicesVerificationArtifactStatus + 8, // 1: google.ads.googleads.v17.resources.LocalServicesVerificationArtifact.artifact_type:type_name -> google.ads.googleads.v17.enums.LocalServicesVerificationArtifactTypeEnum.LocalServicesVerificationArtifactType + 1, // 2: google.ads.googleads.v17.resources.LocalServicesVerificationArtifact.background_check_verification_artifact:type_name -> google.ads.googleads.v17.resources.BackgroundCheckVerificationArtifact + 2, // 3: google.ads.googleads.v17.resources.LocalServicesVerificationArtifact.insurance_verification_artifact:type_name -> google.ads.googleads.v17.resources.InsuranceVerificationArtifact + 3, // 4: google.ads.googleads.v17.resources.LocalServicesVerificationArtifact.license_verification_artifact:type_name -> google.ads.googleads.v17.resources.LicenseVerificationArtifact + 4, // 5: google.ads.googleads.v17.resources.LocalServicesVerificationArtifact.business_registration_check_verification_artifact:type_name -> google.ads.googleads.v17.resources.BusinessRegistrationCheckVerificationArtifact + 9, // 6: google.ads.googleads.v17.resources.InsuranceVerificationArtifact.rejection_reason:type_name -> google.ads.googleads.v17.enums.LocalServicesInsuranceRejectionReasonEnum.LocalServicesInsuranceRejectionReason + 10, // 7: google.ads.googleads.v17.resources.InsuranceVerificationArtifact.insurance_document_readonly:type_name -> google.ads.googleads.v17.common.LocalServicesDocumentReadOnly + 11, // 8: google.ads.googleads.v17.resources.LicenseVerificationArtifact.rejection_reason:type_name -> google.ads.googleads.v17.enums.LocalServicesLicenseRejectionReasonEnum.LocalServicesLicenseRejectionReason + 10, // 9: google.ads.googleads.v17.resources.LicenseVerificationArtifact.license_document_readonly:type_name -> google.ads.googleads.v17.common.LocalServicesDocumentReadOnly + 12, // 10: google.ads.googleads.v17.resources.BusinessRegistrationCheckVerificationArtifact.registration_type:type_name -> google.ads.googleads.v17.enums.LocalServicesBusinessRegistrationTypeEnum.LocalServicesBusinessRegistrationType + 13, // 11: google.ads.googleads.v17.resources.BusinessRegistrationCheckVerificationArtifact.rejection_reason:type_name -> google.ads.googleads.v17.enums.LocalServicesBusinessRegistrationCheckRejectionReasonEnum.LocalServicesBusinessRegistrationCheckRejectionReason + 5, // 12: google.ads.googleads.v17.resources.BusinessRegistrationCheckVerificationArtifact.registration_number:type_name -> google.ads.googleads.v17.resources.BusinessRegistrationNumber + 6, // 13: google.ads.googleads.v17.resources.BusinessRegistrationCheckVerificationArtifact.registration_document:type_name -> google.ads.googleads.v17.resources.BusinessRegistrationDocument + 10, // 14: google.ads.googleads.v17.resources.BusinessRegistrationDocument.document_readonly:type_name -> google.ads.googleads.v17.common.LocalServicesDocumentReadOnly 15, // [15:15] is the sub-list for method output_type 15, // [15:15] is the sub-list for method input_type 15, // [15:15] is the sub-list for extension type_name @@ -1005,14 +1038,14 @@ var file_google_ads_googleads_v16_resources_local_services_verification_artifact } func init() { - file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_init() + file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_init() } -func file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_init() { - if File_google_ads_googleads_v16_resources_local_services_verification_artifact_proto != nil { +func file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_init() { + if File_google_ads_googleads_v17_resources_local_services_verification_artifact_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*LocalServicesVerificationArtifact); i { case 0: return &v.state @@ -1024,7 +1057,7 @@ func file_google_ads_googleads_v16_resources_local_services_verification_artifac return nil } } - file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BackgroundCheckVerificationArtifact); i { case 0: return &v.state @@ -1036,7 +1069,7 @@ func file_google_ads_googleads_v16_resources_local_services_verification_artifac return nil } } - file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*InsuranceVerificationArtifact); i { case 0: return &v.state @@ -1048,7 +1081,7 @@ func file_google_ads_googleads_v16_resources_local_services_verification_artifac return nil } } - file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*LicenseVerificationArtifact); i { case 0: return &v.state @@ -1060,7 +1093,7 @@ func file_google_ads_googleads_v16_resources_local_services_verification_artifac return nil } } - file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BusinessRegistrationCheckVerificationArtifact); i { case 0: return &v.state @@ -1072,7 +1105,7 @@ func file_google_ads_googleads_v16_resources_local_services_verification_artifac return nil } } - file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BusinessRegistrationNumber); i { case 0: return &v.state @@ -1084,7 +1117,7 @@ func file_google_ads_googleads_v16_resources_local_services_verification_artifac return nil } } - file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BusinessRegistrationDocument); i { case 0: return &v.state @@ -1097,37 +1130,37 @@ func file_google_ads_googleads_v16_resources_local_services_verification_artifac } } } - file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_msgTypes[0].OneofWrappers = []interface{}{ (*LocalServicesVerificationArtifact_BackgroundCheckVerificationArtifact)(nil), (*LocalServicesVerificationArtifact_InsuranceVerificationArtifact)(nil), (*LocalServicesVerificationArtifact_LicenseVerificationArtifact)(nil), (*LocalServicesVerificationArtifact_BusinessRegistrationCheckVerificationArtifact)(nil), } - file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes[1].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes[2].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes[3].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes[4].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_msgTypes[1].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_msgTypes[2].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_msgTypes[3].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_msgTypes[4].OneofWrappers = []interface{}{ (*BusinessRegistrationCheckVerificationArtifact_RegistrationNumber)(nil), (*BusinessRegistrationCheckVerificationArtifact_RegistrationDocument)(nil), } - file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes[5].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes[6].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_msgTypes[5].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_local_services_verification_artifact_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_local_services_verification_artifact_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_rawDesc, NumEnums: 0, NumMessages: 7, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_local_services_verification_artifact_proto = out.File - file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_goTypes = nil - file_google_ads_googleads_v16_resources_local_services_verification_artifact_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_local_services_verification_artifact_proto = out.File + file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_goTypes = nil + file_google_ads_googleads_v17_resources_local_services_verification_artifact_proto_depIdxs = nil } diff --git a/resources/location_view.pb.go b/resources/location_view.pb.go index 6cca6a4b..c06852e7 100644 --- a/resources/location_view.pb.go +++ b/resources/location_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/location_view.proto +// source: google/ads/googleads/v17/resources/location_view.proto package resources @@ -54,7 +54,7 @@ type LocationView struct { func (x *LocationView) Reset() { *x = LocationView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_location_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_location_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67,7 +67,7 @@ func (x *LocationView) String() string { func (*LocationView) ProtoMessage() {} func (x *LocationView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_location_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_location_view_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80,7 +80,7 @@ func (x *LocationView) ProtoReflect() protoreflect.Message { // Deprecated: Use LocationView.ProtoReflect.Descriptor instead. func (*LocationView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_location_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_location_view_proto_rawDescGZIP(), []int{0} } func (x *LocationView) GetResourceName() string { @@ -90,15 +90,15 @@ func (x *LocationView) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_resources_location_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_location_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_location_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_location_view_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, 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, 0x6c, 0x6f, 0x63, 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, 0x73, 0x1a, 0x1f, 0x67, 0x6f, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -117,41 +117,41 @@ var file_google_ads_googleads_v16_resources_location_view_proto_rawDesc = []byte 0x2f, 0x7b, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x83, 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, + 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, 0x11, 0x4c, 0x6f, 0x63, 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, 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_location_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_location_view_proto_rawDescData = file_google_ads_googleads_v16_resources_location_view_proto_rawDesc + file_google_ads_googleads_v17_resources_location_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_location_view_proto_rawDescData = file_google_ads_googleads_v17_resources_location_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_location_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_location_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_location_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_location_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_location_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_location_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_location_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_location_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_location_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_location_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_location_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_location_view_proto_goTypes = []interface{}{ - (*LocationView)(nil), // 0: google.ads.googleads.v16.resources.LocationView +var file_google_ads_googleads_v17_resources_location_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_location_view_proto_goTypes = []interface{}{ + (*LocationView)(nil), // 0: google.ads.googleads.v17.resources.LocationView } -var file_google_ads_googleads_v16_resources_location_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_location_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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_resources_location_view_proto_depIdxs = []int3 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_location_view_proto_init() } -func file_google_ads_googleads_v16_resources_location_view_proto_init() { - if File_google_ads_googleads_v16_resources_location_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_location_view_proto_init() } +func file_google_ads_googleads_v17_resources_location_view_proto_init() { + if File_google_ads_googleads_v17_resources_location_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_location_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_location_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*LocationView); i { case 0: return &v.state @@ -182,18 +182,18 @@ func file_google_ads_googleads_v16_resources_location_view_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_location_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_location_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_location_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_location_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_location_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_location_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_location_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_location_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_location_view_proto = out.File - file_google_ads_googleads_v16_resources_location_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_location_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_location_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_location_view_proto = out.File + file_google_ads_googleads_v17_resources_location_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_location_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_location_view_proto_depIdxs = nil } diff --git a/resources/managed_placement_view.pb.go b/resources/managed_placement_view.pb.go index 6d09e956..ad292fe4 100644 --- a/resources/managed_placement_view.pb.go +++ b/resources/managed_placement_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/managed_placement_view.proto +// source: google/ads/googleads/v17/resources/managed_placement_view.proto package resources @@ -51,7 +51,7 @@ type ManagedPlacementView struct { func (x *ManagedPlacementView) Reset() { *x = ManagedPlacementView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_managed_placement_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_managed_placement_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64,7 +64,7 @@ func (x *ManagedPlacementView) String() string { func (*ManagedPlacementView) ProtoMessage() {} func (x *ManagedPlacementView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_managed_placement_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_managed_placement_view_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 *ManagedPlacementView) ProtoReflect() protoreflect.Message { // Deprecated: Use ManagedPlacementView.ProtoReflect.Descriptor instead. func (*ManagedPlacementView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_managed_placement_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_managed_placement_view_proto_rawDescGZIP(), []int{0} } func (x *ManagedPlacementView) GetResourceName() string { @@ -87,15 +87,15 @@ func (x *ManagedPlacementView) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_resources_managed_placement_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_managed_placement_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_managed_placement_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_managed_placement_view_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, 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, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 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, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -117,41 +117,41 @@ var file_google_ads_googleads_v16_resources_managed_placement_view_proto_rawDesc 0x6f, 0x75, 0x70, 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x8b, 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, 0x19, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x64, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 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, 0x73, 0x6f, 0x75, 0x72, 0x63, 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, 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, 0x26, 0x47, 0x6f, + 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, + 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_managed_placement_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_managed_placement_view_proto_rawDescData = file_google_ads_googleads_v16_resources_managed_placement_view_proto_rawDesc + file_google_ads_googleads_v17_resources_managed_placement_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_managed_placement_view_proto_rawDescData = file_google_ads_googleads_v17_resources_managed_placement_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_managed_placement_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_managed_placement_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_managed_placement_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_managed_placement_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_managed_placement_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_managed_placement_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_managed_placement_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_managed_placement_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_managed_placement_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_managed_placement_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_managed_placement_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_managed_placement_view_proto_goTypes = []interface{}{ - (*ManagedPlacementView)(nil), // 0: google.ads.googleads.v16.resources.ManagedPlacementView +var file_google_ads_googleads_v17_resources_managed_placement_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_managed_placement_view_proto_goTypes = []interface{}{ + (*ManagedPlacementView)(nil), // 0: google.ads.googleads.v17.resources.ManagedPlacementView } -var file_google_ads_googleads_v16_resources_managed_placement_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_managed_placement_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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_resources_managed_placement_view_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_managed_placement_view_proto_init() } -func file_google_ads_googleads_v16_resources_managed_placement_view_proto_init() { - if File_google_ads_googleads_v16_resources_managed_placement_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_managed_placement_view_proto_init() } +func file_google_ads_googleads_v17_resources_managed_placement_view_proto_init() { + if File_google_ads_googleads_v17_resources_managed_placement_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_managed_placement_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_managed_placement_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ManagedPlacementView); i { case 0: return &v.state @@ -182,18 +182,18 @@ func file_google_ads_googleads_v16_resources_managed_placement_view_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_managed_placement_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_managed_placement_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_managed_placement_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_managed_placement_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_managed_placement_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_managed_placement_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_managed_placement_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_managed_placement_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_managed_placement_view_proto = out.File - file_google_ads_googleads_v16_resources_managed_placement_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_managed_placement_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_managed_placement_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_managed_placement_view_proto = out.File + file_google_ads_googleads_v17_resources_managed_placement_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_managed_placement_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_managed_placement_view_proto_depIdxs = nil } diff --git a/resources/media_file.pb.go b/resources/media_file.pb.go index 27431cb1..82aa1a70 100644 --- a/resources/media_file.pb.go +++ b/resources/media_file.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/media_file.proto +// source: google/ads/googleads/v17/resources/media_file.proto package resources @@ -50,9 +50,9 @@ type MediaFile struct { // Output only. The ID of the media file. Id *int64 `protobuf:"varint,12,opt,name=id,proto3,oneof" json:"id,omitempty"` // Immutable. Type of the media file. - Type enums.MediaTypeEnum_MediaType `protobuf:"varint,5,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.MediaTypeEnum_MediaType" json:"type,omitempty"` + Type enums.MediaTypeEnum_MediaType `protobuf:"varint,5,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.MediaTypeEnum_MediaType" json:"type,omitempty"` // Output only. The mime type of the media file. - MimeType enums.MimeTypeEnum_MimeType `protobuf:"varint,6,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,6,opt,name=mime_type,json=mimeType,proto3,enum=google.ads.googleads.v17.enums.MimeTypeEnum_MimeType" json:"mime_type,omitempty"` // Immutable. The URL of where the original media file was downloaded from (or // a file name). Only used for media of type AUDIO and IMAGE. SourceUrl *string `protobuf:"bytes,13,opt,name=source_url,json=sourceUrl,proto3,oneof" json:"source_url,omitempty"` @@ -75,7 +75,7 @@ type MediaFile struct { func (x *MediaFile) Reset() { *x = MediaFile{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_media_file_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_media_file_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -88,7 +88,7 @@ func (x *MediaFile) String() string { func (*MediaFile) ProtoMessage() {} func (x *MediaFile) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_media_file_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_media_file_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 *MediaFile) ProtoReflect() protoreflect.Message { // Deprecated: Use MediaFile.ProtoReflect.Descriptor instead. func (*MediaFile) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_media_file_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_media_file_proto_rawDescGZIP(), []int{0} } func (x *MediaFile) GetResourceName() string { @@ -238,7 +238,7 @@ type MediaImage struct { func (x *MediaImage) Reset() { *x = MediaImage{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_media_file_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_media_file_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -251,7 +251,7 @@ func (x *MediaImage) String() string { func (*MediaImage) ProtoMessage() {} func (x *MediaImage) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_media_file_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_media_file_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -264,7 +264,7 @@ func (x *MediaImage) ProtoReflect() protoreflect.Message { // Deprecated: Use MediaImage.ProtoReflect.Descriptor instead. func (*MediaImage) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_media_file_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_resources_media_file_proto_rawDescGZIP(), []int{1} } func (x *MediaImage) GetData() []byte { @@ -305,7 +305,7 @@ type MediaBundle struct { func (x *MediaBundle) Reset() { *x = MediaBundle{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_media_file_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_media_file_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -318,7 +318,7 @@ func (x *MediaBundle) String() string { func (*MediaBundle) ProtoMessage() {} func (x *MediaBundle) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_media_file_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_media_file_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -331,7 +331,7 @@ func (x *MediaBundle) ProtoReflect() protoreflect.Message { // Deprecated: Use MediaBundle.ProtoReflect.Descriptor instead. func (*MediaBundle) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_media_file_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_resources_media_file_proto_rawDescGZIP(), []int{2} } func (x *MediaBundle) GetData() []byte { @@ -361,7 +361,7 @@ type MediaAudio struct { func (x *MediaAudio) Reset() { *x = MediaAudio{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_media_file_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_media_file_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -374,7 +374,7 @@ func (x *MediaAudio) String() string { func (*MediaAudio) ProtoMessage() {} func (x *MediaAudio) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_media_file_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_media_file_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -387,7 +387,7 @@ func (x *MediaAudio) ProtoReflect() protoreflect.Message { // Deprecated: Use MediaAudio.ProtoReflect.Descriptor instead. func (*MediaAudio) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_media_file_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_resources_media_file_proto_rawDescGZIP(), []int{3} } func (x *MediaAudio) GetAdDurationMillis() int64 { @@ -421,7 +421,7 @@ type MediaVideo struct { func (x *MediaVideo) Reset() { *x = MediaVideo{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_media_file_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_resources_media_file_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -434,7 +434,7 @@ func (x *MediaVideo) String() string { func (*MediaVideo) ProtoMessage() {} func (x *MediaVideo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_media_file_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_resources_media_file_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -447,7 +447,7 @@ func (x *MediaVideo) ProtoReflect() protoreflect.Message { // Deprecated: Use MediaVideo.ProtoReflect.Descriptor instead. func (*MediaVideo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_media_file_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v17_resources_media_file_proto_rawDescGZIP(), []int{4} } func (x *MediaVideo) GetAdDurationMillis() int64 { @@ -478,20 +478,20 @@ func (x *MediaVideo) GetIsciCode() string { return "" } -var File_google_ads_googleads_v16_resources_media_file_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_media_file_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_media_file_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_media_file_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, 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, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x66, 0x69, 0x6c, 0x65, 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, + 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, 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, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x5f, + 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, 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, 0x69, 0x6d, 0x65, 0x5f, + 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, 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, @@ -506,12 +506,12 @@ var file_google_ads_googleads_v16_resources_media_file_proto_rawDesc = []byte{ 0x03, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x01, 0x52, 0x02, 0x69, 0x64, 0x88, 0x01, 0x01, 0x12, 0x50, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 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, 0x4d, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x57, 0x0a, 0x09, 0x6d, 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, + 0x73, 0x2e, 0x67, 0x6f, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x08, 0x6d, 0x69, 0x6d, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x27, 0x0a, 0x0a, 0x73, 0x6f, @@ -524,22 +524,22 @@ var file_google_ads_googleads_v16_resources_media_file_proto_rawDesc = []byte{ 0x65, 0x53, 0x69, 0x7a, 0x65, 0x88, 0x01, 0x01, 0x12, 0x4b, 0x0a, 0x05, 0x69, 0x6d, 0x61, 0x67, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x65, 0x64, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x05, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x12, 0x59, 0x0a, 0x0c, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x62, 0x75, 0x6e, 0x64, 0x6c, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0b, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x12, 0x4b, 0x0a, 0x05, 0x61, 0x75, 0x64, 0x69, 0x6f, 0x18, 0x0a, 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, 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, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x41, 0x75, 0x64, 0x69, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x05, 0x61, 0x75, 0x64, 0x69, 0x6f, 0x12, 0x4b, 0x0a, 0x05, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x18, 0x0b, 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, 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, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x05, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x3a, 0x5b, 0xea, 0x41, 0x58, 0x0a, 0x22, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, @@ -597,53 +597,53 @@ var file_google_ads_googleads_v16_resources_media_file_proto_rawDesc = []byte{ 0x67, 0x5f, 0x69, 0x64, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x69, 0x73, 0x63, 0x69, 0x5f, 0x63, 0x6f, 0x64, 0x65, 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, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x0e, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x46, 0x69, 0x6c, 0x65, 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_media_file_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_media_file_proto_rawDescData = file_google_ads_googleads_v16_resources_media_file_proto_rawDesc + file_google_ads_googleads_v17_resources_media_file_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_media_file_proto_rawDescData = file_google_ads_googleads_v17_resources_media_file_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_media_file_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_media_file_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_media_file_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_media_file_proto_rawDescData) +func file_google_ads_googleads_v17_resources_media_file_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_media_file_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_media_file_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_media_file_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_media_file_proto_rawDescData -} - -var file_google_ads_googleads_v16_resources_media_file_proto_msgTypes = make([]protoimpl.MessageInfo, 5) -var file_google_ads_googleads_v16_resources_media_file_proto_goTypes = []interface{}{ - (*MediaFile)(nil), // 0: google.ads.googleads.v16.resources.MediaFile - (*MediaImage)(nil), // 1: google.ads.googleads.v16.resources.MediaImage - (*MediaBundle)(nil), // 2: google.ads.googleads.v16.resources.MediaBundle - (*MediaAudio)(nil), // 3: google.ads.googleads.v16.resources.MediaAudio - (*MediaVideo)(nil), // 4: google.ads.googleads.v16.resources.MediaVideo - (enums.MediaTypeEnum_MediaType)(0), // 5: google.ads.googleads.v16.enums.MediaTypeEnum.MediaType - (enums.MimeTypeEnum_MimeType)(0), // 6: google.ads.googleads.v16.enums.MimeTypeEnum.MimeType -} -var file_google_ads_googleads_v16_resources_media_file_proto_depIdxs = []int32{ - 5, // 0: google.ads.googleads.v16.resources.MediaFile.type:type_name -> google.ads.googleads.v16.enums.MediaTypeEnum.MediaType - 6, // 1: google.ads.googleads.v16.resources.MediaFile.mime_type:type_name -> google.ads.googleads.v16.enums.MimeTypeEnum.MimeType - 1, // 2: google.ads.googleads.v16.resources.MediaFile.image:type_name -> google.ads.googleads.v16.resources.MediaImage - 2, // 3: google.ads.googleads.v16.resources.MediaFile.media_bundle:type_name -> google.ads.googleads.v16.resources.MediaBundle - 3, // 4: google.ads.googleads.v16.resources.MediaFile.audio:type_name -> google.ads.googleads.v16.resources.MediaAudio - 4, // 5: google.ads.googleads.v16.resources.MediaFile.video:type_name -> google.ads.googleads.v16.resources.MediaVideo + return file_google_ads_googleads_v17_resources_media_file_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_media_file_proto_msgTypes = make([]protoimpl.MessageInfo, 5) +var file_google_ads_googleads_v17_resources_media_file_proto_goTypes = []interface{}{ + (*MediaFile)(nil), // 0: google.ads.googleads.v17.resources.MediaFile + (*MediaImage)(nil), // 1: google.ads.googleads.v17.resources.MediaImage + (*MediaBundle)(nil), // 2: google.ads.googleads.v17.resources.MediaBundle + (*MediaAudio)(nil), // 3: google.ads.googleads.v17.resources.MediaAudio + (*MediaVideo)(nil), // 4: google.ads.googleads.v17.resources.MediaVideo + (enums.MediaTypeEnum_MediaType)(0), // 5: google.ads.googleads.v17.enums.MediaTypeEnum.MediaType + (enums.MimeTypeEnum_MimeType)(0), // 6: google.ads.googleads.v17.enums.MimeTypeEnum.MimeType +} +var file_google_ads_googleads_v17_resources_media_file_proto_depIdxs = []int32{ + 5, // 0: google.ads.googleads.v17.resources.MediaFile.type:type_name -> google.ads.googleads.v17.enums.MediaTypeEnum.MediaType + 6, // 1: google.ads.googleads.v17.resources.MediaFile.mime_type:type_name -> google.ads.googleads.v17.enums.MimeTypeEnum.MimeType + 1, // 2: google.ads.googleads.v17.resources.MediaFile.image:type_name -> google.ads.googleads.v17.resources.MediaImage + 2, // 3: google.ads.googleads.v17.resources.MediaFile.media_bundle:type_name -> google.ads.googleads.v17.resources.MediaBundle + 3, // 4: google.ads.googleads.v17.resources.MediaFile.audio:type_name -> google.ads.googleads.v17.resources.MediaAudio + 4, // 5: google.ads.googleads.v17.resources.MediaFile.video:type_name -> google.ads.googleads.v17.resources.MediaVideo 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 @@ -651,13 +651,13 @@ var file_google_ads_googleads_v16_resources_media_file_proto_depIdxs = []int32{ 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_media_file_proto_init() } -func file_google_ads_googleads_v16_resources_media_file_proto_init() { - if File_google_ads_googleads_v16_resources_media_file_proto != nil { +func init() { file_google_ads_googleads_v17_resources_media_file_proto_init() } +func file_google_ads_googleads_v17_resources_media_file_proto_init() { + if File_google_ads_googleads_v17_resources_media_file_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_media_file_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_media_file_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MediaFile); i { case 0: return &v.state @@ -669,7 +669,7 @@ func file_google_ads_googleads_v16_resources_media_file_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_media_file_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_media_file_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MediaImage); i { case 0: return &v.state @@ -681,7 +681,7 @@ func file_google_ads_googleads_v16_resources_media_file_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_media_file_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_media_file_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MediaBundle); i { case 0: return &v.state @@ -693,7 +693,7 @@ func file_google_ads_googleads_v16_resources_media_file_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_media_file_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_media_file_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MediaAudio); i { case 0: return &v.state @@ -705,7 +705,7 @@ func file_google_ads_googleads_v16_resources_media_file_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_media_file_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_media_file_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MediaVideo); i { case 0: return &v.state @@ -718,32 +718,32 @@ func file_google_ads_googleads_v16_resources_media_file_proto_init() { } } } - file_google_ads_googleads_v16_resources_media_file_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_media_file_proto_msgTypes[0].OneofWrappers = []interface{}{ (*MediaFile_Image)(nil), (*MediaFile_MediaBundle)(nil), (*MediaFile_Audio)(nil), (*MediaFile_Video)(nil), } - file_google_ads_googleads_v16_resources_media_file_proto_msgTypes[1].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_media_file_proto_msgTypes[2].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_media_file_proto_msgTypes[3].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_media_file_proto_msgTypes[4].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_media_file_proto_msgTypes[1].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_media_file_proto_msgTypes[2].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_media_file_proto_msgTypes[3].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_media_file_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_resources_media_file_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_media_file_proto_rawDesc, NumEnums: 0, NumMessages: 5, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_media_file_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_media_file_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_media_file_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_media_file_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_media_file_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_media_file_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_media_file_proto = out.File - file_google_ads_googleads_v16_resources_media_file_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_media_file_proto_goTypes = nil - file_google_ads_googleads_v16_resources_media_file_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_media_file_proto = out.File + file_google_ads_googleads_v17_resources_media_file_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_media_file_proto_goTypes = nil + file_google_ads_googleads_v17_resources_media_file_proto_depIdxs = nil } diff --git a/resources/mobile_app_category_constant.pb.go b/resources/mobile_app_category_constant.pb.go index 5cf0d9aa..c9753726 100644 --- a/resources/mobile_app_category_constant.pb.go +++ b/resources/mobile_app_category_constant.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/mobile_app_category_constant.proto +// source: google/ads/googleads/v17/resources/mobile_app_category_constant.proto package resources @@ -55,7 +55,7 @@ type MobileAppCategoryConstant struct { func (x *MobileAppCategoryConstant) Reset() { *x = MobileAppCategoryConstant{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_mobile_app_category_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_mobile_app_category_constant_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68,7 +68,7 @@ func (x *MobileAppCategoryConstant) String() string { func (*MobileAppCategoryConstant) ProtoMessage() {} func (x *MobileAppCategoryConstant) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_mobile_app_category_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_mobile_app_category_constant_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 *MobileAppCategoryConstant) ProtoReflect() protoreflect.Message { // Deprecated: Use MobileAppCategoryConstant.ProtoReflect.Descriptor instead. func (*MobileAppCategoryConstant) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_mobile_app_category_constant_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_mobile_app_category_constant_proto_rawDescGZIP(), []int{0} } func (x *MobileAppCategoryConstant) GetResourceName() string { @@ -105,16 +105,16 @@ func (x *MobileAppCategoryConstant) GetName() string { return "" } -var File_google_ads_googleads_v16_resources_mobile_app_category_constant_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_mobile_app_category_constant_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_mobile_app_category_constant_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_mobile_app_category_constant_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, 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, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 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, 0x1f, 0x67, 0x6f, 0x6f, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -139,42 +139,42 @@ var file_google_ads_googleads_v16_resources_mobile_app_category_constant_proto_r 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x05, 0x0a, 0x03, 0x5f, 0x69, 0x64, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6e, 0x61, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x1e, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 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, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, + 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, + 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, 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, + 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_mobile_app_category_constant_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_mobile_app_category_constant_proto_rawDescData = file_google_ads_googleads_v16_resources_mobile_app_category_constant_proto_rawDesc + file_google_ads_googleads_v17_resources_mobile_app_category_constant_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_mobile_app_category_constant_proto_rawDescData = file_google_ads_googleads_v17_resources_mobile_app_category_constant_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_mobile_app_category_constant_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_mobile_app_category_constant_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_mobile_app_category_constant_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_mobile_app_category_constant_proto_rawDescData) +func file_google_ads_googleads_v17_resources_mobile_app_category_constant_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_mobile_app_category_constant_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_mobile_app_category_constant_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_mobile_app_category_constant_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_mobile_app_category_constant_proto_rawDescData + return file_google_ads_googleads_v17_resources_mobile_app_category_constant_proto_rawDescData } -var file_google_ads_googleads_v16_resources_mobile_app_category_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_mobile_app_category_constant_proto_goTypes = []interface{}{ - (*MobileAppCategoryConstant)(nil), // 0: google.ads.googleads.v16.resources.MobileAppCategoryConstant +var file_google_ads_googleads_v17_resources_mobile_app_category_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_mobile_app_category_constant_proto_goTypes = []interface{}{ + (*MobileAppCategoryConstant)(nil), // 0: google.ads.googleads.v17.resources.MobileAppCategoryConstant } -var file_google_ads_googleads_v16_resources_mobile_app_category_constant_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_mobile_app_category_constant_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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_resources_mobile_app_category_constant_proto_d 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_mobile_app_category_constant_proto_init() } -func file_google_ads_googleads_v16_resources_mobile_app_category_constant_proto_init() { - if File_google_ads_googleads_v16_resources_mobile_app_category_constant_proto != nil { +func init() { file_google_ads_googleads_v17_resources_mobile_app_category_constant_proto_init() } +func file_google_ads_googleads_v17_resources_mobile_app_category_constant_proto_init() { + if File_google_ads_googleads_v17_resources_mobile_app_category_constant_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_mobile_app_category_constant_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_mobile_app_category_constant_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MobileAppCategoryConstant); i { case 0: return &v.state @@ -201,23 +201,23 @@ func file_google_ads_googleads_v16_resources_mobile_app_category_constant_proto_ } } } - file_google_ads_googleads_v16_resources_mobile_app_category_constant_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_mobile_app_category_constant_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_mobile_app_category_constant_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_mobile_app_category_constant_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_mobile_app_category_constant_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_mobile_app_category_constant_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_mobile_app_category_constant_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_mobile_app_category_constant_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_mobile_app_category_constant_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_mobile_app_category_constant_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_mobile_app_category_constant_proto = out.File - file_google_ads_googleads_v16_resources_mobile_app_category_constant_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_mobile_app_category_constant_proto_goTypes = nil - file_google_ads_googleads_v16_resources_mobile_app_category_constant_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_mobile_app_category_constant_proto = out.File + file_google_ads_googleads_v17_resources_mobile_app_category_constant_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_mobile_app_category_constant_proto_goTypes = nil + file_google_ads_googleads_v17_resources_mobile_app_category_constant_proto_depIdxs = nil } diff --git a/resources/mobile_device_constant.pb.go b/resources/mobile_device_constant.pb.go index 063d9af4..c553762e 100644 --- a/resources/mobile_device_constant.pb.go +++ b/resources/mobile_device_constant.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/mobile_device_constant.proto +// source: google/ads/googleads/v17/resources/mobile_device_constant.proto package resources @@ -56,13 +56,13 @@ type MobileDeviceConstant struct { // Output only. The operating system of the mobile device. OperatingSystemName *string `protobuf:"bytes,10,opt,name=operating_system_name,json=operatingSystemName,proto3,oneof" json:"operating_system_name,omitempty"` // Output only. The type of mobile device. - Type enums.MobileDeviceTypeEnum_MobileDeviceType `protobuf:"varint,6,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.MobileDeviceTypeEnum_MobileDeviceType" json:"type,omitempty"` + Type enums.MobileDeviceTypeEnum_MobileDeviceType `protobuf:"varint,6,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.MobileDeviceTypeEnum_MobileDeviceType" json:"type,omitempty"` } func (x *MobileDeviceConstant) Reset() { *x = MobileDeviceConstant{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_mobile_device_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_mobile_device_constant_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75,7 +75,7 @@ func (x *MobileDeviceConstant) String() string { func (*MobileDeviceConstant) ProtoMessage() {} func (x *MobileDeviceConstant) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_mobile_device_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_mobile_device_constant_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88,7 +88,7 @@ func (x *MobileDeviceConstant) ProtoReflect() protoreflect.Message { // Deprecated: Use MobileDeviceConstant.ProtoReflect.Descriptor instead. func (*MobileDeviceConstant) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_mobile_device_constant_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_mobile_device_constant_proto_rawDescGZIP(), []int{0} } func (x *MobileDeviceConstant) GetResourceName() string { @@ -133,17 +133,17 @@ func (x *MobileDeviceConstant) GetType() enums.MobileDeviceTypeEnum_MobileDevice return enums.MobileDeviceTypeEnum_MobileDeviceType(0) } -var File_google_ads_googleads_v16_resources_mobile_device_constant_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_mobile_device_constant_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_mobile_device_constant_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_mobile_device_constant_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, 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, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 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, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, @@ -170,7 +170,7 @@ var file_google_ads_googleads_v16_resources_mobile_device_constant_proto_rawDesc 0x79, 0x73, 0x74, 0x65, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x5e, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x06, 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, 0x4d, 0x6f, 0x62, 0x69, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x3a, 0x58, 0xea, 0x41, @@ -185,43 +185,43 @@ var file_google_ads_googleads_v16_resources_mobile_device_constant_proto_rawDesc 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x8b, 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, 0x19, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 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, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 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, 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, 0x26, 0x47, 0x6f, + 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, + 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_mobile_device_constant_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_mobile_device_constant_proto_rawDescData = file_google_ads_googleads_v16_resources_mobile_device_constant_proto_rawDesc + file_google_ads_googleads_v17_resources_mobile_device_constant_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_mobile_device_constant_proto_rawDescData = file_google_ads_googleads_v17_resources_mobile_device_constant_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_mobile_device_constant_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_mobile_device_constant_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_mobile_device_constant_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_mobile_device_constant_proto_rawDescData) +func file_google_ads_googleads_v17_resources_mobile_device_constant_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_mobile_device_constant_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_mobile_device_constant_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_mobile_device_constant_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_mobile_device_constant_proto_rawDescData + return file_google_ads_googleads_v17_resources_mobile_device_constant_proto_rawDescData } -var file_google_ads_googleads_v16_resources_mobile_device_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_mobile_device_constant_proto_goTypes = []interface{}{ - (*MobileDeviceConstant)(nil), // 0: google.ads.googleads.v16.resources.MobileDeviceConstant - (enums.MobileDeviceTypeEnum_MobileDeviceType)(0), // 1: google.ads.googleads.v16.enums.MobileDeviceTypeEnum.MobileDeviceType +var file_google_ads_googleads_v17_resources_mobile_device_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_mobile_device_constant_proto_goTypes = []interface{}{ + (*MobileDeviceConstant)(nil), // 0: google.ads.googleads.v17.resources.MobileDeviceConstant + (enums.MobileDeviceTypeEnum_MobileDeviceType)(0), // 1: google.ads.googleads.v17.enums.MobileDeviceTypeEnum.MobileDeviceType } -var file_google_ads_googleads_v16_resources_mobile_device_constant_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.MobileDeviceConstant.type:type_name -> google.ads.googleads.v16.enums.MobileDeviceTypeEnum.MobileDeviceType +var file_google_ads_googleads_v17_resources_mobile_device_constant_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.MobileDeviceConstant.type:type_name -> google.ads.googleads.v17.enums.MobileDeviceTypeEnum.MobileDeviceType 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 @@ -229,13 +229,13 @@ var file_google_ads_googleads_v16_resources_mobile_device_constant_proto_depIdxs 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_mobile_device_constant_proto_init() } -func file_google_ads_googleads_v16_resources_mobile_device_constant_proto_init() { - if File_google_ads_googleads_v16_resources_mobile_device_constant_proto != nil { +func init() { file_google_ads_googleads_v17_resources_mobile_device_constant_proto_init() } +func file_google_ads_googleads_v17_resources_mobile_device_constant_proto_init() { + if File_google_ads_googleads_v17_resources_mobile_device_constant_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_mobile_device_constant_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_mobile_device_constant_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MobileDeviceConstant); i { case 0: return &v.state @@ -248,23 +248,23 @@ func file_google_ads_googleads_v16_resources_mobile_device_constant_proto_init() } } } - file_google_ads_googleads_v16_resources_mobile_device_constant_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_mobile_device_constant_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_mobile_device_constant_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_mobile_device_constant_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_mobile_device_constant_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_mobile_device_constant_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_mobile_device_constant_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_mobile_device_constant_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_mobile_device_constant_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_mobile_device_constant_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_mobile_device_constant_proto = out.File - file_google_ads_googleads_v16_resources_mobile_device_constant_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_mobile_device_constant_proto_goTypes = nil - file_google_ads_googleads_v16_resources_mobile_device_constant_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_mobile_device_constant_proto = out.File + file_google_ads_googleads_v17_resources_mobile_device_constant_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_mobile_device_constant_proto_goTypes = nil + file_google_ads_googleads_v17_resources_mobile_device_constant_proto_depIdxs = nil } diff --git a/resources/offline_conversion_upload_client_summary.pb.go b/resources/offline_conversion_upload_client_summary.pb.go index db30bef8..e72b8827 100644 --- a/resources/offline_conversion_upload_client_summary.pb.go +++ b/resources/offline_conversion_upload_client_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/resources/offline_conversion_upload_client_summary.proto +// source: google/ads/googleads/v17/resources/offline_conversion_upload_client_summary.proto package resources @@ -50,12 +50,12 @@ type OfflineConversionUploadClientSummary struct { // `customers/{customer_id}/offlineConversionUploadClientSummaries/{client}` ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` // Output only. Client type of the upload event. - Client enums.OfflineEventUploadClientEnum_OfflineEventUploadClient `protobuf:"varint,2,opt,name=client,proto3,enum=google.ads.googleads.v16.enums.OfflineEventUploadClientEnum_OfflineEventUploadClient" json:"client,omitempty"` + Client enums.OfflineEventUploadClientEnum_OfflineEventUploadClient `protobuf:"varint,2,opt,name=client,proto3,enum=google.ads.googleads.v17.enums.OfflineEventUploadClientEnum_OfflineEventUploadClient" json:"client,omitempty"` // Output only. Overall status for offline conversion client summary. Status // is generated // // from most recent calendar day with upload stats - Status enums.OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus" json:"status,omitempty"` + Status enums.OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus" json:"status,omitempty"` // Output only. Total count of uploaded events. TotalEventCount int64 `protobuf:"varint,4,opt,name=total_event_count,json=totalEventCount,proto3" json:"total_event_count,omitempty"` // Output only. Total count of successful uploaded events. @@ -77,7 +77,7 @@ type OfflineConversionUploadClientSummary struct { func (x *OfflineConversionUploadClientSummary) Reset() { *x = OfflineConversionUploadClientSummary{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -90,7 +90,7 @@ func (x *OfflineConversionUploadClientSummary) String() string { func (*OfflineConversionUploadClientSummary) ProtoMessage() {} func (x *OfflineConversionUploadClientSummary) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -103,7 +103,7 @@ func (x *OfflineConversionUploadClientSummary) ProtoReflect() protoreflect.Messa // Deprecated: Use OfflineConversionUploadClientSummary.ProtoReflect.Descriptor instead. func (*OfflineConversionUploadClientSummary) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_rawDescGZIP(), []int{0} } func (x *OfflineConversionUploadClientSummary) GetResourceName() string { @@ -198,7 +198,7 @@ type OfflineConversionSummary struct { func (x *OfflineConversionSummary) Reset() { *x = OfflineConversionSummary{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -211,7 +211,7 @@ func (x *OfflineConversionSummary) String() string { func (*OfflineConversionSummary) ProtoMessage() {} func (x *OfflineConversionSummary) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -224,7 +224,7 @@ func (x *OfflineConversionSummary) ProtoReflect() protoreflect.Message { // Deprecated: Use OfflineConversionSummary.ProtoReflect.Descriptor instead. func (*OfflineConversionSummary) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_rawDescGZIP(), []int{1} } func (x *OfflineConversionSummary) GetSuccessfulCount() int64 { @@ -296,7 +296,7 @@ type OfflineConversionAlert struct { func (x *OfflineConversionAlert) Reset() { *x = OfflineConversionAlert{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -309,7 +309,7 @@ func (x *OfflineConversionAlert) String() string { func (*OfflineConversionAlert) ProtoMessage() {} func (x *OfflineConversionAlert) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -322,7 +322,7 @@ func (x *OfflineConversionAlert) ProtoReflect() protoreflect.Message { // Deprecated: Use OfflineConversionAlert.ProtoReflect.Descriptor instead. func (*OfflineConversionAlert) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_rawDescGZIP(), []int{2} } func (x *OfflineConversionAlert) GetError() *OfflineConversionError { @@ -365,7 +365,7 @@ type OfflineConversionError struct { func (x *OfflineConversionError) Reset() { *x = OfflineConversionError{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -378,7 +378,7 @@ func (x *OfflineConversionError) String() string { func (*OfflineConversionError) ProtoMessage() {} func (x *OfflineConversionError) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -391,7 +391,7 @@ func (x *OfflineConversionError) ProtoReflect() protoreflect.Message { // Deprecated: Use OfflineConversionError.ProtoReflect.Descriptor instead. func (*OfflineConversionError) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_rawDescGZIP(), []int{3} } func (m *OfflineConversionError) GetErrorCode() isOfflineConversionError_ErrorCode { @@ -477,52 +477,52 @@ type isOfflineConversionError_ErrorCode interface { type OfflineConversionError_CollectionSizeError struct { // Output only. Collection size error. - CollectionSizeError errors.CollectionSizeErrorEnum_CollectionSizeError `protobuf:"varint,1,opt,name=collection_size_error,json=collectionSizeError,proto3,enum=google.ads.googleads.v16.errors.CollectionSizeErrorEnum_CollectionSizeError,oneof"` + CollectionSizeError errors.CollectionSizeErrorEnum_CollectionSizeError `protobuf:"varint,1,opt,name=collection_size_error,json=collectionSizeError,proto3,enum=google.ads.googleads.v17.errors.CollectionSizeErrorEnum_CollectionSizeError,oneof"` } type OfflineConversionError_ConversionAdjustmentUploadError struct { // Output only. Conversion adjustment upload error. - ConversionAdjustmentUploadError errors.ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError `protobuf:"varint,2,opt,name=conversion_adjustment_upload_error,json=conversionAdjustmentUploadError,proto3,enum=google.ads.googleads.v16.errors.ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError,oneof"` + ConversionAdjustmentUploadError errors.ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError `protobuf:"varint,2,opt,name=conversion_adjustment_upload_error,json=conversionAdjustmentUploadError,proto3,enum=google.ads.googleads.v17.errors.ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError,oneof"` } type OfflineConversionError_ConversionUploadError struct { // Output only. Conversion upload error. - ConversionUploadError errors.ConversionUploadErrorEnum_ConversionUploadError `protobuf:"varint,3,opt,name=conversion_upload_error,json=conversionUploadError,proto3,enum=google.ads.googleads.v16.errors.ConversionUploadErrorEnum_ConversionUploadError,oneof"` + ConversionUploadError errors.ConversionUploadErrorEnum_ConversionUploadError `protobuf:"varint,3,opt,name=conversion_upload_error,json=conversionUploadError,proto3,enum=google.ads.googleads.v17.errors.ConversionUploadErrorEnum_ConversionUploadError,oneof"` } type OfflineConversionError_DateError struct { // Output only. Date error. - DateError errors.DateErrorEnum_DateError `protobuf:"varint,4,opt,name=date_error,json=dateError,proto3,enum=google.ads.googleads.v16.errors.DateErrorEnum_DateError,oneof"` + DateError errors.DateErrorEnum_DateError `protobuf:"varint,4,opt,name=date_error,json=dateError,proto3,enum=google.ads.googleads.v17.errors.DateErrorEnum_DateError,oneof"` } type OfflineConversionError_DistinctError struct { // Output only. Distinct error. - DistinctError errors.DistinctErrorEnum_DistinctError `protobuf:"varint,5,opt,name=distinct_error,json=distinctError,proto3,enum=google.ads.googleads.v16.errors.DistinctErrorEnum_DistinctError,oneof"` + DistinctError errors.DistinctErrorEnum_DistinctError `protobuf:"varint,5,opt,name=distinct_error,json=distinctError,proto3,enum=google.ads.googleads.v17.errors.DistinctErrorEnum_DistinctError,oneof"` } type OfflineConversionError_FieldError struct { // Output only. Field error. - FieldError errors.FieldErrorEnum_FieldError `protobuf:"varint,6,opt,name=field_error,json=fieldError,proto3,enum=google.ads.googleads.v16.errors.FieldErrorEnum_FieldError,oneof"` + FieldError errors.FieldErrorEnum_FieldError `protobuf:"varint,6,opt,name=field_error,json=fieldError,proto3,enum=google.ads.googleads.v17.errors.FieldErrorEnum_FieldError,oneof"` } type OfflineConversionError_MutateError struct { // Output only. Mutate error. - MutateError errors.MutateErrorEnum_MutateError `protobuf:"varint,7,opt,name=mutate_error,json=mutateError,proto3,enum=google.ads.googleads.v16.errors.MutateErrorEnum_MutateError,oneof"` + MutateError errors.MutateErrorEnum_MutateError `protobuf:"varint,7,opt,name=mutate_error,json=mutateError,proto3,enum=google.ads.googleads.v17.errors.MutateErrorEnum_MutateError,oneof"` } type OfflineConversionError_NotAllowlistedError struct { // Output only. Not allowlisted error. - NotAllowlistedError errors.NotAllowlistedErrorEnum_NotAllowlistedError `protobuf:"varint,8,opt,name=not_allowlisted_error,json=notAllowlistedError,proto3,enum=google.ads.googleads.v16.errors.NotAllowlistedErrorEnum_NotAllowlistedError,oneof"` + NotAllowlistedError errors.NotAllowlistedErrorEnum_NotAllowlistedError `protobuf:"varint,8,opt,name=not_allowlisted_error,json=notAllowlistedError,proto3,enum=google.ads.googleads.v17.errors.NotAllowlistedErrorEnum_NotAllowlistedError,oneof"` } type OfflineConversionError_StringFormatError struct { // Output only. String format error. - StringFormatError errors.StringFormatErrorEnum_StringFormatError `protobuf:"varint,9,opt,name=string_format_error,json=stringFormatError,proto3,enum=google.ads.googleads.v16.errors.StringFormatErrorEnum_StringFormatError,oneof"` + StringFormatError errors.StringFormatErrorEnum_StringFormatError `protobuf:"varint,9,opt,name=string_format_error,json=stringFormatError,proto3,enum=google.ads.googleads.v17.errors.StringFormatErrorEnum_StringFormatError,oneof"` } type OfflineConversionError_StringLengthError struct { // Output only. String length error. - StringLengthError errors.StringLengthErrorEnum_StringLengthError `protobuf:"varint,10,opt,name=string_length_error,json=stringLengthError,proto3,enum=google.ads.googleads.v16.errors.StringLengthErrorEnum_StringLengthError,oneof"` + StringLengthError errors.StringLengthErrorEnum_StringLengthError `protobuf:"varint,10,opt,name=string_length_error,json=stringLengthError,proto3,enum=google.ads.googleads.v17.errors.StringLengthErrorEnum_StringLengthError,oneof"` } func (*OfflineConversionError_CollectionSizeError) isOfflineConversionError_ErrorCode() {} @@ -545,61 +545,61 @@ func (*OfflineConversionError_StringFormatError) isOfflineConversionError_ErrorC func (*OfflineConversionError_StringLengthError) isOfflineConversionError_ErrorCode() {} -var File_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_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, 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, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 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, 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, 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, 0x2f, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x5f, + 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, 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, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x5f, + 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, 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, 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, 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, + 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, 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, + 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, 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, 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, + 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, 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, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 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, 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, 0x69, + 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, 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, + 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, 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, 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, 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, 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, + 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, 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, @@ -617,14 +617,14 @@ var file_google_ads_googleads_v16_resources_offline_conversion_upload_client_sum 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x72, 0x0a, 0x06, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 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, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, + 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x12, 0x84, 0x01, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x67, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 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, 0x4f, 0x66, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, @@ -646,19 +646,19 @@ var file_google_ads_googleads_v16_resources_offline_conversion_upload_client_sum 0x0a, 0x0f, 0x64, 0x61, 0x69, 0x6c, 0x79, 0x5f, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x69, 0x65, 0x73, 0x18, 0x08, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4f, 0x66, 0x66, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0e, 0x64, 0x61, 0x69, 0x6c, 0x79, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x69, 0x65, 0x73, 0x12, 0x66, 0x0a, 0x0d, 0x6a, 0x6f, 0x62, 0x5f, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x69, 0x65, 0x73, 0x18, 0x09, 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, 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, 0x2e, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0c, 0x6a, 0x6f, 0x62, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x69, 0x65, 0x73, 0x12, 0x57, 0x0a, 0x06, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x73, 0x18, 0x0a, 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, 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, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x6c, 0x65, 0x72, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x73, 0x3a, 0x8c, 0x01, 0xea, 0x41, @@ -687,7 +687,7 @@ var file_google_ads_googleads_v16_resources_offline_conversion_upload_client_sum 0x6e, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x6c, 0x65, 0x72, 0x74, 0x12, 0x55, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 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, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x2e, 0x0a, 0x10, 0x65, 0x72, 0x72, 0x6f, @@ -698,7 +698,7 @@ var file_google_ads_googleads_v16_resources_offline_conversion_upload_client_sum 0x72, 0x6f, 0x72, 0x12, 0x87, 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, 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, + 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, @@ -708,7 +708,7 @@ var file_google_ads_googleads_v16_resources_offline_conversion_upload_client_sum 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x02, 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, + 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, @@ -719,7 +719,7 @@ var file_google_ads_googleads_v16_resources_offline_conversion_upload_client_sum 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x03, 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, + 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, 0x42, 0x03, 0xe0, 0x41, @@ -727,26 +727,26 @@ var file_google_ads_googleads_v16_resources_offline_conversion_upload_client_sum 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x5e, 0x0a, 0x0a, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x04, 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, + 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x09, 0x64, 0x61, 0x74, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x6e, 0x0a, 0x0e, 0x64, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x63, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x05, 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, + 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x0d, 0x64, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x63, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x62, 0x0a, 0x0b, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x06, 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, + 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x66, 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, + 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x0b, 0x6d, 0x75, 0x74, 0x61, 0x74, @@ -754,7 +754,7 @@ var file_google_ads_googleads_v16_resources_offline_conversion_upload_client_sum 0x6c, 0x6c, 0x6f, 0x77, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x08, 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, + 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x13, 0x6e, 0x6f, 0x74, @@ -762,7 +762,7 @@ var file_google_ads_googleads_v16_resources_offline_conversion_upload_client_sum 0x12, 0x7f, 0x0a, 0x13, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x09, 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, + 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x11, @@ -770,7 +770,7 @@ var file_google_ads_googleads_v16_resources_offline_conversion_upload_client_sum 0x72, 0x12, 0x7f, 0x0a, 0x13, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x0a, 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, + 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, @@ -778,73 +778,73 @@ var file_google_ads_googleads_v16_resources_offline_conversion_upload_client_sum 0x6f, 0x72, 0x42, 0x0c, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x42, 0x9b, 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, 0x29, 0x4f, 0x66, 0x66, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x29, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 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, 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_offline_conversion_upload_client_summary_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_rawDescData = file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_rawDesc + file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_rawDescData = file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_rawDescData) +func file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_rawDescData -} - -var file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_goTypes = []interface{}{ - (*OfflineConversionUploadClientSummary)(nil), // 0: google.ads.googleads.v16.resources.OfflineConversionUploadClientSummary - (*OfflineConversionSummary)(nil), // 1: google.ads.googleads.v16.resources.OfflineConversionSummary - (*OfflineConversionAlert)(nil), // 2: google.ads.googleads.v16.resources.OfflineConversionAlert - (*OfflineConversionError)(nil), // 3: google.ads.googleads.v16.resources.OfflineConversionError - (enums.OfflineEventUploadClientEnum_OfflineEventUploadClient)(0), // 4: google.ads.googleads.v16.enums.OfflineEventUploadClientEnum.OfflineEventUploadClient - (enums.OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus)(0), // 5: google.ads.googleads.v16.enums.OfflineConversionDiagnosticStatusEnum.OfflineConversionDiagnosticStatus - (errors.CollectionSizeErrorEnum_CollectionSizeError)(0), // 6: google.ads.googleads.v16.errors.CollectionSizeErrorEnum.CollectionSizeError - (errors.ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError)(0), // 7: google.ads.googleads.v16.errors.ConversionAdjustmentUploadErrorEnum.ConversionAdjustmentUploadError - (errors.ConversionUploadErrorEnum_ConversionUploadError)(0), // 8: google.ads.googleads.v16.errors.ConversionUploadErrorEnum.ConversionUploadError - (errors.DateErrorEnum_DateError)(0), // 9: google.ads.googleads.v16.errors.DateErrorEnum.DateError - (errors.DistinctErrorEnum_DistinctError)(0), // 10: google.ads.googleads.v16.errors.DistinctErrorEnum.DistinctError - (errors.FieldErrorEnum_FieldError)(0), // 11: google.ads.googleads.v16.errors.FieldErrorEnum.FieldError - (errors.MutateErrorEnum_MutateError)(0), // 12: google.ads.googleads.v16.errors.MutateErrorEnum.MutateError - (errors.NotAllowlistedErrorEnum_NotAllowlistedError)(0), // 13: google.ads.googleads.v16.errors.NotAllowlistedErrorEnum.NotAllowlistedError - (errors.StringFormatErrorEnum_StringFormatError)(0), // 14: google.ads.googleads.v16.errors.StringFormatErrorEnum.StringFormatError - (errors.StringLengthErrorEnum_StringLengthError)(0), // 15: google.ads.googleads.v16.errors.StringLengthErrorEnum.StringLengthError -} -var file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_depIdxs = []int32{ - 4, // 0: google.ads.googleads.v16.resources.OfflineConversionUploadClientSummary.client:type_name -> google.ads.googleads.v16.enums.OfflineEventUploadClientEnum.OfflineEventUploadClient - 5, // 1: google.ads.googleads.v16.resources.OfflineConversionUploadClientSummary.status:type_name -> google.ads.googleads.v16.enums.OfflineConversionDiagnosticStatusEnum.OfflineConversionDiagnosticStatus - 1, // 2: google.ads.googleads.v16.resources.OfflineConversionUploadClientSummary.daily_summaries:type_name -> google.ads.googleads.v16.resources.OfflineConversionSummary - 1, // 3: google.ads.googleads.v16.resources.OfflineConversionUploadClientSummary.job_summaries:type_name -> google.ads.googleads.v16.resources.OfflineConversionSummary - 2, // 4: google.ads.googleads.v16.resources.OfflineConversionUploadClientSummary.alerts:type_name -> google.ads.googleads.v16.resources.OfflineConversionAlert - 3, // 5: google.ads.googleads.v16.resources.OfflineConversionAlert.error:type_name -> google.ads.googleads.v16.resources.OfflineConversionError - 6, // 6: google.ads.googleads.v16.resources.OfflineConversionError.collection_size_error:type_name -> google.ads.googleads.v16.errors.CollectionSizeErrorEnum.CollectionSizeError - 7, // 7: google.ads.googleads.v16.resources.OfflineConversionError.conversion_adjustment_upload_error:type_name -> google.ads.googleads.v16.errors.ConversionAdjustmentUploadErrorEnum.ConversionAdjustmentUploadError - 8, // 8: google.ads.googleads.v16.resources.OfflineConversionError.conversion_upload_error:type_name -> google.ads.googleads.v16.errors.ConversionUploadErrorEnum.ConversionUploadError - 9, // 9: google.ads.googleads.v16.resources.OfflineConversionError.date_error:type_name -> google.ads.googleads.v16.errors.DateErrorEnum.DateError - 10, // 10: google.ads.googleads.v16.resources.OfflineConversionError.distinct_error:type_name -> google.ads.googleads.v16.errors.DistinctErrorEnum.DistinctError - 11, // 11: google.ads.googleads.v16.resources.OfflineConversionError.field_error:type_name -> google.ads.googleads.v16.errors.FieldErrorEnum.FieldError - 12, // 12: google.ads.googleads.v16.resources.OfflineConversionError.mutate_error:type_name -> google.ads.googleads.v16.errors.MutateErrorEnum.MutateError - 13, // 13: google.ads.googleads.v16.resources.OfflineConversionError.not_allowlisted_error:type_name -> google.ads.googleads.v16.errors.NotAllowlistedErrorEnum.NotAllowlistedError - 14, // 14: google.ads.googleads.v16.resources.OfflineConversionError.string_format_error:type_name -> google.ads.googleads.v16.errors.StringFormatErrorEnum.StringFormatError - 15, // 15: google.ads.googleads.v16.resources.OfflineConversionError.string_length_error:type_name -> google.ads.googleads.v16.errors.StringLengthErrorEnum.StringLengthError + return file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_goTypes = []interface{}{ + (*OfflineConversionUploadClientSummary)(nil), // 0: google.ads.googleads.v17.resources.OfflineConversionUploadClientSummary + (*OfflineConversionSummary)(nil), // 1: google.ads.googleads.v17.resources.OfflineConversionSummary + (*OfflineConversionAlert)(nil), // 2: google.ads.googleads.v17.resources.OfflineConversionAlert + (*OfflineConversionError)(nil), // 3: google.ads.googleads.v17.resources.OfflineConversionError + (enums.OfflineEventUploadClientEnum_OfflineEventUploadClient)(0), // 4: google.ads.googleads.v17.enums.OfflineEventUploadClientEnum.OfflineEventUploadClient + (enums.OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus)(0), // 5: google.ads.googleads.v17.enums.OfflineConversionDiagnosticStatusEnum.OfflineConversionDiagnosticStatus + (errors.CollectionSizeErrorEnum_CollectionSizeError)(0), // 6: google.ads.googleads.v17.errors.CollectionSizeErrorEnum.CollectionSizeError + (errors.ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError)(0), // 7: google.ads.googleads.v17.errors.ConversionAdjustmentUploadErrorEnum.ConversionAdjustmentUploadError + (errors.ConversionUploadErrorEnum_ConversionUploadError)(0), // 8: google.ads.googleads.v17.errors.ConversionUploadErrorEnum.ConversionUploadError + (errors.DateErrorEnum_DateError)(0), // 9: google.ads.googleads.v17.errors.DateErrorEnum.DateError + (errors.DistinctErrorEnum_DistinctError)(0), // 10: google.ads.googleads.v17.errors.DistinctErrorEnum.DistinctError + (errors.FieldErrorEnum_FieldError)(0), // 11: google.ads.googleads.v17.errors.FieldErrorEnum.FieldError + (errors.MutateErrorEnum_MutateError)(0), // 12: google.ads.googleads.v17.errors.MutateErrorEnum.MutateError + (errors.NotAllowlistedErrorEnum_NotAllowlistedError)(0), // 13: google.ads.googleads.v17.errors.NotAllowlistedErrorEnum.NotAllowlistedError + (errors.StringFormatErrorEnum_StringFormatError)(0), // 14: google.ads.googleads.v17.errors.StringFormatErrorEnum.StringFormatError + (errors.StringLengthErrorEnum_StringLengthError)(0), // 15: google.ads.googleads.v17.errors.StringLengthErrorEnum.StringLengthError +} +var file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_depIdxs = []int32{ + 4, // 0: google.ads.googleads.v17.resources.OfflineConversionUploadClientSummary.client:type_name -> google.ads.googleads.v17.enums.OfflineEventUploadClientEnum.OfflineEventUploadClient + 5, // 1: google.ads.googleads.v17.resources.OfflineConversionUploadClientSummary.status:type_name -> google.ads.googleads.v17.enums.OfflineConversionDiagnosticStatusEnum.OfflineConversionDiagnosticStatus + 1, // 2: google.ads.googleads.v17.resources.OfflineConversionUploadClientSummary.daily_summaries:type_name -> google.ads.googleads.v17.resources.OfflineConversionSummary + 1, // 3: google.ads.googleads.v17.resources.OfflineConversionUploadClientSummary.job_summaries:type_name -> google.ads.googleads.v17.resources.OfflineConversionSummary + 2, // 4: google.ads.googleads.v17.resources.OfflineConversionUploadClientSummary.alerts:type_name -> google.ads.googleads.v17.resources.OfflineConversionAlert + 3, // 5: google.ads.googleads.v17.resources.OfflineConversionAlert.error:type_name -> google.ads.googleads.v17.resources.OfflineConversionError + 6, // 6: google.ads.googleads.v17.resources.OfflineConversionError.collection_size_error:type_name -> google.ads.googleads.v17.errors.CollectionSizeErrorEnum.CollectionSizeError + 7, // 7: google.ads.googleads.v17.resources.OfflineConversionError.conversion_adjustment_upload_error:type_name -> google.ads.googleads.v17.errors.ConversionAdjustmentUploadErrorEnum.ConversionAdjustmentUploadError + 8, // 8: google.ads.googleads.v17.resources.OfflineConversionError.conversion_upload_error:type_name -> google.ads.googleads.v17.errors.ConversionUploadErrorEnum.ConversionUploadError + 9, // 9: google.ads.googleads.v17.resources.OfflineConversionError.date_error:type_name -> google.ads.googleads.v17.errors.DateErrorEnum.DateError + 10, // 10: google.ads.googleads.v17.resources.OfflineConversionError.distinct_error:type_name -> google.ads.googleads.v17.errors.DistinctErrorEnum.DistinctError + 11, // 11: google.ads.googleads.v17.resources.OfflineConversionError.field_error:type_name -> google.ads.googleads.v17.errors.FieldErrorEnum.FieldError + 12, // 12: google.ads.googleads.v17.resources.OfflineConversionError.mutate_error:type_name -> google.ads.googleads.v17.errors.MutateErrorEnum.MutateError + 13, // 13: google.ads.googleads.v17.resources.OfflineConversionError.not_allowlisted_error:type_name -> google.ads.googleads.v17.errors.NotAllowlistedErrorEnum.NotAllowlistedError + 14, // 14: google.ads.googleads.v17.resources.OfflineConversionError.string_format_error:type_name -> google.ads.googleads.v17.errors.StringFormatErrorEnum.StringFormatError + 15, // 15: google.ads.googleads.v17.resources.OfflineConversionError.string_length_error:type_name -> google.ads.googleads.v17.errors.StringLengthErrorEnum.StringLengthError 16, // [16:16] is the sub-list for method output_type 16, // [16:16] is the sub-list for method input_type 16, // [16:16] is the sub-list for extension type_name @@ -853,14 +853,14 @@ var file_google_ads_googleads_v16_resources_offline_conversion_upload_client_sum } func init() { - file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_init() + file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_init() } -func file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_init() { - if File_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto != nil { +func file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_init() { + if File_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*OfflineConversionUploadClientSummary); i { case 0: return &v.state @@ -872,7 +872,7 @@ func file_google_ads_googleads_v16_resources_offline_conversion_upload_client_su return nil } } - file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*OfflineConversionSummary); i { case 0: return &v.state @@ -884,7 +884,7 @@ func file_google_ads_googleads_v16_resources_offline_conversion_upload_client_su return nil } } - file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*OfflineConversionAlert); i { case 0: return &v.state @@ -896,7 +896,7 @@ func file_google_ads_googleads_v16_resources_offline_conversion_upload_client_su return nil } } - file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*OfflineConversionError); i { case 0: return &v.state @@ -909,11 +909,11 @@ func file_google_ads_googleads_v16_resources_offline_conversion_upload_client_su } } } - file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_msgTypes[1].OneofWrappers = []interface{}{ (*OfflineConversionSummary_JobId)(nil), (*OfflineConversionSummary_UploadDate)(nil), } - file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_msgTypes[3].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_msgTypes[3].OneofWrappers = []interface{}{ (*OfflineConversionError_CollectionSizeError)(nil), (*OfflineConversionError_ConversionAdjustmentUploadError)(nil), (*OfflineConversionError_ConversionUploadError)(nil), @@ -929,18 +929,18 @@ func file_google_ads_googleads_v16_resources_offline_conversion_upload_client_su out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto = out.File - file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_goTypes = nil - file_google_ads_googleads_v16_resources_offline_conversion_upload_client_summary_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto = out.File + file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_goTypes = nil + file_google_ads_googleads_v17_resources_offline_conversion_upload_client_summary_proto_depIdxs = nil } diff --git a/resources/offline_user_data_job.pb.go b/resources/offline_user_data_job.pb.go index bf36b1d5..b90db37a 100644 --- a/resources/offline_user_data_job.pb.go +++ b/resources/offline_user_data_job.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/offline_user_data_job.proto +// source: google/ads/googleads/v17/resources/offline_user_data_job.proto package resources @@ -56,11 +56,11 @@ type OfflineUserDataJob struct { // Immutable. User specified job ID. ExternalId *int64 `protobuf:"varint,10,opt,name=external_id,json=externalId,proto3,oneof" json:"external_id,omitempty"` // Immutable. Type of the job. - Type enums.OfflineUserDataJobTypeEnum_OfflineUserDataJobType `protobuf:"varint,4,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.OfflineUserDataJobTypeEnum_OfflineUserDataJobType" json:"type,omitempty"` + Type enums.OfflineUserDataJobTypeEnum_OfflineUserDataJobType `protobuf:"varint,4,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.OfflineUserDataJobTypeEnum_OfflineUserDataJobType" json:"type,omitempty"` // Output only. Status of the job. - Status enums.OfflineUserDataJobStatusEnum_OfflineUserDataJobStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.OfflineUserDataJobStatusEnum_OfflineUserDataJobStatus" json:"status,omitempty"` + Status enums.OfflineUserDataJobStatusEnum_OfflineUserDataJobStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.OfflineUserDataJobStatusEnum_OfflineUserDataJobStatus" json:"status,omitempty"` // Output only. Reason for the processing failure, if status is FAILED. - FailureReason enums.OfflineUserDataJobFailureReasonEnum_OfflineUserDataJobFailureReason `protobuf:"varint,6,opt,name=failure_reason,json=failureReason,proto3,enum=google.ads.googleads.v16.enums.OfflineUserDataJobFailureReasonEnum_OfflineUserDataJobFailureReason" json:"failure_reason,omitempty"` + FailureReason enums.OfflineUserDataJobFailureReasonEnum_OfflineUserDataJobFailureReason `protobuf:"varint,6,opt,name=failure_reason,json=failureReason,proto3,enum=google.ads.googleads.v17.enums.OfflineUserDataJobFailureReasonEnum_OfflineUserDataJobFailureReason" json:"failure_reason,omitempty"` // Output only. Metadata of offline user data job depicting match rate range. OperationMetadata *OfflineUserDataJobMetadata `protobuf:"bytes,11,opt,name=operation_metadata,json=operationMetadata,proto3" json:"operation_metadata,omitempty"` // Metadata of the job. @@ -75,7 +75,7 @@ type OfflineUserDataJob struct { func (x *OfflineUserDataJob) Reset() { *x = OfflineUserDataJob{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_offline_user_data_job_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_offline_user_data_job_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -88,7 +88,7 @@ func (x *OfflineUserDataJob) String() string { func (*OfflineUserDataJob) ProtoMessage() {} func (x *OfflineUserDataJob) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_offline_user_data_job_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_offline_user_data_job_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 *OfflineUserDataJob) ProtoReflect() protoreflect.Message { // Deprecated: Use OfflineUserDataJob.ProtoReflect.Descriptor instead. func (*OfflineUserDataJob) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_offline_user_data_job_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_offline_user_data_job_proto_rawDescGZIP(), []int{0} } func (x *OfflineUserDataJob) GetResourceName() string { @@ -202,13 +202,13 @@ type OfflineUserDataJobMetadata struct { // the estimated match rate when the status of the job is "RUNNING" and final // match rate when the final match rate is available after the status of the // job is "SUCCESS/FAILED". - MatchRateRange enums.OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange `protobuf:"varint,1,opt,name=match_rate_range,json=matchRateRange,proto3,enum=google.ads.googleads.v16.enums.OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange" json:"match_rate_range,omitempty"` + MatchRateRange enums.OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange `protobuf:"varint,1,opt,name=match_rate_range,json=matchRateRange,proto3,enum=google.ads.googleads.v17.enums.OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange" json:"match_rate_range,omitempty"` } func (x *OfflineUserDataJobMetadata) Reset() { *x = OfflineUserDataJobMetadata{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_offline_user_data_job_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_offline_user_data_job_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -221,7 +221,7 @@ func (x *OfflineUserDataJobMetadata) String() string { func (*OfflineUserDataJobMetadata) ProtoMessage() {} func (x *OfflineUserDataJobMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_offline_user_data_job_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_offline_user_data_job_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -234,7 +234,7 @@ func (x *OfflineUserDataJobMetadata) ProtoReflect() protoreflect.Message { // Deprecated: Use OfflineUserDataJobMetadata.ProtoReflect.Descriptor instead. func (*OfflineUserDataJobMetadata) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_offline_user_data_job_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_resources_offline_user_data_job_proto_rawDescGZIP(), []int{1} } func (x *OfflineUserDataJobMetadata) GetMatchRateRange() enums.OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange { @@ -244,35 +244,35 @@ func (x *OfflineUserDataJobMetadata) GetMatchRateRange() enums.OfflineUserDataJo return enums.OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange(0) } -var File_google_ads_googleads_v16_resources_offline_user_data_job_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_offline_user_data_job_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_offline_user_data_job_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_offline_user_data_job_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, 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, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6a, 0x6f, 0x62, 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, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, + 0x2f, 0x67, 0x6f, 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, 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, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6f, 0x66, + 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, 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, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, + 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, 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, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 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, 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, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, + 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, @@ -292,21 +292,21 @@ var file_google_ads_googleads_v16_resources_offline_user_data_job_proto_rawDesc 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x6a, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 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, 0x4f, 0x66, 0x66, 0x6c, 0x69, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x72, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 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, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, + 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x8f, 0x01, 0x0a, 0x0e, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x06, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, @@ -316,7 +316,7 @@ var file_google_ads_googleads_v16_resources_offline_user_data_job_proto_rawDesc 0x12, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x0b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4f, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x11, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, @@ -324,7 +324,7 @@ var file_google_ads_googleads_v16_resources_offline_user_data_job_proto_rawDesc 0x61, 0x74, 0x63, 0x68, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x07, 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, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x1d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4d, 0x61, @@ -332,7 +332,7 @@ var file_google_ads_googleads_v16_resources_offline_user_data_job_proto_rawDesc 0x61, 0x74, 0x61, 0x12, 0x6c, 0x0a, 0x14, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x73, 0x61, 0x6c, 0x65, 0x73, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 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, + 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, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x12, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x53, 0x61, 0x6c, 0x65, 0x73, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, @@ -351,7 +351,7 @@ var file_google_ads_googleads_v16_resources_offline_user_data_job_proto_rawDesc 0x12, 0x94, 0x01, 0x0a, 0x10, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x18, 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, 0x4f, 0x66, 0x66, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, @@ -359,55 +359,55 @@ var file_google_ads_googleads_v16_resources_offline_user_data_job_proto_rawDesc 0x67, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0e, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x52, 0x61, 0x74, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x42, 0x89, 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, 0x17, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 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_offline_user_data_job_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_offline_user_data_job_proto_rawDescData = file_google_ads_googleads_v16_resources_offline_user_data_job_proto_rawDesc + file_google_ads_googleads_v17_resources_offline_user_data_job_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_offline_user_data_job_proto_rawDescData = file_google_ads_googleads_v17_resources_offline_user_data_job_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_offline_user_data_job_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_offline_user_data_job_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_offline_user_data_job_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_offline_user_data_job_proto_rawDescData) +func file_google_ads_googleads_v17_resources_offline_user_data_job_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_offline_user_data_job_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_offline_user_data_job_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_offline_user_data_job_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_offline_user_data_job_proto_rawDescData + return file_google_ads_googleads_v17_resources_offline_user_data_job_proto_rawDescData } -var file_google_ads_googleads_v16_resources_offline_user_data_job_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v16_resources_offline_user_data_job_proto_goTypes = []interface{}{ - (*OfflineUserDataJob)(nil), // 0: google.ads.googleads.v16.resources.OfflineUserDataJob - (*OfflineUserDataJobMetadata)(nil), // 1: google.ads.googleads.v16.resources.OfflineUserDataJobMetadata - (enums.OfflineUserDataJobTypeEnum_OfflineUserDataJobType)(0), // 2: google.ads.googleads.v16.enums.OfflineUserDataJobTypeEnum.OfflineUserDataJobType - (enums.OfflineUserDataJobStatusEnum_OfflineUserDataJobStatus)(0), // 3: google.ads.googleads.v16.enums.OfflineUserDataJobStatusEnum.OfflineUserDataJobStatus - (enums.OfflineUserDataJobFailureReasonEnum_OfflineUserDataJobFailureReason)(0), // 4: google.ads.googleads.v16.enums.OfflineUserDataJobFailureReasonEnum.OfflineUserDataJobFailureReason - (*common.CustomerMatchUserListMetadata)(nil), // 5: google.ads.googleads.v16.common.CustomerMatchUserListMetadata - (*common.StoreSalesMetadata)(nil), // 6: google.ads.googleads.v16.common.StoreSalesMetadata - (enums.OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange)(0), // 7: google.ads.googleads.v16.enums.OfflineUserDataJobMatchRateRangeEnum.OfflineUserDataJobMatchRateRange +var file_google_ads_googleads_v17_resources_offline_user_data_job_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v17_resources_offline_user_data_job_proto_goTypes = []interface{}{ + (*OfflineUserDataJob)(nil), // 0: google.ads.googleads.v17.resources.OfflineUserDataJob + (*OfflineUserDataJobMetadata)(nil), // 1: google.ads.googleads.v17.resources.OfflineUserDataJobMetadata + (enums.OfflineUserDataJobTypeEnum_OfflineUserDataJobType)(0), // 2: google.ads.googleads.v17.enums.OfflineUserDataJobTypeEnum.OfflineUserDataJobType + (enums.OfflineUserDataJobStatusEnum_OfflineUserDataJobStatus)(0), // 3: google.ads.googleads.v17.enums.OfflineUserDataJobStatusEnum.OfflineUserDataJobStatus + (enums.OfflineUserDataJobFailureReasonEnum_OfflineUserDataJobFailureReason)(0), // 4: google.ads.googleads.v17.enums.OfflineUserDataJobFailureReasonEnum.OfflineUserDataJobFailureReason + (*common.CustomerMatchUserListMetadata)(nil), // 5: google.ads.googleads.v17.common.CustomerMatchUserListMetadata + (*common.StoreSalesMetadata)(nil), // 6: google.ads.googleads.v17.common.StoreSalesMetadata + (enums.OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange)(0), // 7: google.ads.googleads.v17.enums.OfflineUserDataJobMatchRateRangeEnum.OfflineUserDataJobMatchRateRange } -var file_google_ads_googleads_v16_resources_offline_user_data_job_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v16.resources.OfflineUserDataJob.type:type_name -> google.ads.googleads.v16.enums.OfflineUserDataJobTypeEnum.OfflineUserDataJobType - 3, // 1: google.ads.googleads.v16.resources.OfflineUserDataJob.status:type_name -> google.ads.googleads.v16.enums.OfflineUserDataJobStatusEnum.OfflineUserDataJobStatus - 4, // 2: google.ads.googleads.v16.resources.OfflineUserDataJob.failure_reason:type_name -> google.ads.googleads.v16.enums.OfflineUserDataJobFailureReasonEnum.OfflineUserDataJobFailureReason - 1, // 3: google.ads.googleads.v16.resources.OfflineUserDataJob.operation_metadata:type_name -> google.ads.googleads.v16.resources.OfflineUserDataJobMetadata - 5, // 4: google.ads.googleads.v16.resources.OfflineUserDataJob.customer_match_user_list_metadata:type_name -> google.ads.googleads.v16.common.CustomerMatchUserListMetadata - 6, // 5: google.ads.googleads.v16.resources.OfflineUserDataJob.store_sales_metadata:type_name -> google.ads.googleads.v16.common.StoreSalesMetadata - 7, // 6: google.ads.googleads.v16.resources.OfflineUserDataJobMetadata.match_rate_range:type_name -> google.ads.googleads.v16.enums.OfflineUserDataJobMatchRateRangeEnum.OfflineUserDataJobMatchRateRange +var file_google_ads_googleads_v17_resources_offline_user_data_job_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v17.resources.OfflineUserDataJob.type:type_name -> google.ads.googleads.v17.enums.OfflineUserDataJobTypeEnum.OfflineUserDataJobType + 3, // 1: google.ads.googleads.v17.resources.OfflineUserDataJob.status:type_name -> google.ads.googleads.v17.enums.OfflineUserDataJobStatusEnum.OfflineUserDataJobStatus + 4, // 2: google.ads.googleads.v17.resources.OfflineUserDataJob.failure_reason:type_name -> google.ads.googleads.v17.enums.OfflineUserDataJobFailureReasonEnum.OfflineUserDataJobFailureReason + 1, // 3: google.ads.googleads.v17.resources.OfflineUserDataJob.operation_metadata:type_name -> google.ads.googleads.v17.resources.OfflineUserDataJobMetadata + 5, // 4: google.ads.googleads.v17.resources.OfflineUserDataJob.customer_match_user_list_metadata:type_name -> google.ads.googleads.v17.common.CustomerMatchUserListMetadata + 6, // 5: google.ads.googleads.v17.resources.OfflineUserDataJob.store_sales_metadata:type_name -> google.ads.googleads.v17.common.StoreSalesMetadata + 7, // 6: google.ads.googleads.v17.resources.OfflineUserDataJobMetadata.match_rate_range:type_name -> google.ads.googleads.v17.enums.OfflineUserDataJobMatchRateRangeEnum.OfflineUserDataJobMatchRateRange 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 @@ -415,13 +415,13 @@ var file_google_ads_googleads_v16_resources_offline_user_data_job_proto_depIdxs 0, // [0:7] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_offline_user_data_job_proto_init() } -func file_google_ads_googleads_v16_resources_offline_user_data_job_proto_init() { - if File_google_ads_googleads_v16_resources_offline_user_data_job_proto != nil { +func init() { file_google_ads_googleads_v17_resources_offline_user_data_job_proto_init() } +func file_google_ads_googleads_v17_resources_offline_user_data_job_proto_init() { + if File_google_ads_googleads_v17_resources_offline_user_data_job_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_offline_user_data_job_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_offline_user_data_job_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*OfflineUserDataJob); i { case 0: return &v.state @@ -433,7 +433,7 @@ func file_google_ads_googleads_v16_resources_offline_user_data_job_proto_init() return nil } } - file_google_ads_googleads_v16_resources_offline_user_data_job_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_offline_user_data_job_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*OfflineUserDataJobMetadata); i { case 0: return &v.state @@ -446,7 +446,7 @@ func file_google_ads_googleads_v16_resources_offline_user_data_job_proto_init() } } } - file_google_ads_googleads_v16_resources_offline_user_data_job_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_offline_user_data_job_proto_msgTypes[0].OneofWrappers = []interface{}{ (*OfflineUserDataJob_CustomerMatchUserListMetadata)(nil), (*OfflineUserDataJob_StoreSalesMetadata)(nil), } @@ -454,18 +454,18 @@ func file_google_ads_googleads_v16_resources_offline_user_data_job_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_offline_user_data_job_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_offline_user_data_job_proto_rawDesc, NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_offline_user_data_job_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_offline_user_data_job_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_offline_user_data_job_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_offline_user_data_job_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_offline_user_data_job_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_offline_user_data_job_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_offline_user_data_job_proto = out.File - file_google_ads_googleads_v16_resources_offline_user_data_job_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_offline_user_data_job_proto_goTypes = nil - file_google_ads_googleads_v16_resources_offline_user_data_job_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_offline_user_data_job_proto = out.File + file_google_ads_googleads_v17_resources_offline_user_data_job_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_offline_user_data_job_proto_goTypes = nil + file_google_ads_googleads_v17_resources_offline_user_data_job_proto_depIdxs = nil } diff --git a/resources/operating_system_version_constant.pb.go b/resources/operating_system_version_constant.pb.go index 3ca9a6e3..911d643d 100644 --- a/resources/operating_system_version_constant.pb.go +++ b/resources/operating_system_version_constant.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/operating_system_version_constant.proto +// source: google/ads/googleads/v17/resources/operating_system_version_constant.proto package resources @@ -59,13 +59,13 @@ type OperatingSystemVersionConstant struct { OsMinorVersion *int32 `protobuf:"varint,10,opt,name=os_minor_version,json=osMinorVersion,proto3,oneof" json:"os_minor_version,omitempty"` // Output only. Determines whether this constant represents a single version // or a range of versions. - OperatorType enums.OperatingSystemVersionOperatorTypeEnum_OperatingSystemVersionOperatorType `protobuf:"varint,6,opt,name=operator_type,json=operatorType,proto3,enum=google.ads.googleads.v16.enums.OperatingSystemVersionOperatorTypeEnum_OperatingSystemVersionOperatorType" json:"operator_type,omitempty"` + OperatorType enums.OperatingSystemVersionOperatorTypeEnum_OperatingSystemVersionOperatorType `protobuf:"varint,6,opt,name=operator_type,json=operatorType,proto3,enum=google.ads.googleads.v17.enums.OperatingSystemVersionOperatorTypeEnum_OperatingSystemVersionOperatorType" json:"operator_type,omitempty"` } func (x *OperatingSystemVersionConstant) Reset() { *x = OperatingSystemVersionConstant{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_operating_system_version_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_operating_system_version_constant_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *OperatingSystemVersionConstant) String() string { func (*OperatingSystemVersionConstant) ProtoMessage() {} func (x *OperatingSystemVersionConstant) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_operating_system_version_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_operating_system_version_constant_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 *OperatingSystemVersionConstant) ProtoReflect() protoreflect.Message { // Deprecated: Use OperatingSystemVersionConstant.ProtoReflect.Descriptor instead. func (*OperatingSystemVersionConstant) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_operating_system_version_constant_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_operating_system_version_constant_proto_rawDescGZIP(), []int{0} } func (x *OperatingSystemVersionConstant) GetResourceName() string { @@ -136,18 +136,18 @@ func (x *OperatingSystemVersionConstant) GetOperatorType() enums.OperatingSystem return enums.OperatingSystemVersionOperatorTypeEnum_OperatingSystemVersionOperatorType(0) } -var File_google_ads_googleads_v16_resources_operating_system_version_constant_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_operating_system_version_constant_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_operating_system_version_constant_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_operating_system_version_constant_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, 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, 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, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 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, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, + 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, 0x1a, 0x1f, 0x67, @@ -176,7 +176,7 @@ var file_google_ads_googleads_v16_resources_operating_system_version_constant_pr 0x01, 0x01, 0x12, 0x93, 0x01, 0x0a, 0x0d, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x06, 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, 0x4f, 0x70, 0x65, 0x72, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x79, 0x73, 0x74, @@ -195,43 +195,43 @@ var file_google_ads_googleads_v16_resources_operating_system_version_constant_pr 0x6f, 0x73, 0x5f, 0x6d, 0x69, 0x6e, 0x6f, 0x72, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x95, 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, 0x23, 0x4f, 0x70, 0x65, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x23, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 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, 0x65, 0x73, 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, + 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, 0x36, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 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, + 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_operating_system_version_constant_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_operating_system_version_constant_proto_rawDescData = file_google_ads_googleads_v16_resources_operating_system_version_constant_proto_rawDesc + file_google_ads_googleads_v17_resources_operating_system_version_constant_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_operating_system_version_constant_proto_rawDescData = file_google_ads_googleads_v17_resources_operating_system_version_constant_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_operating_system_version_constant_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_operating_system_version_constant_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_operating_system_version_constant_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_operating_system_version_constant_proto_rawDescData) +func file_google_ads_googleads_v17_resources_operating_system_version_constant_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_operating_system_version_constant_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_operating_system_version_constant_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_operating_system_version_constant_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_operating_system_version_constant_proto_rawDescData + return file_google_ads_googleads_v17_resources_operating_system_version_constant_proto_rawDescData } -var file_google_ads_googleads_v16_resources_operating_system_version_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_operating_system_version_constant_proto_goTypes = []interface{}{ - (*OperatingSystemVersionConstant)(nil), // 0: google.ads.googleads.v16.resources.OperatingSystemVersionConstant - (enums.OperatingSystemVersionOperatorTypeEnum_OperatingSystemVersionOperatorType)(0), // 1: google.ads.googleads.v16.enums.OperatingSystemVersionOperatorTypeEnum.OperatingSystemVersionOperatorType +var file_google_ads_googleads_v17_resources_operating_system_version_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_operating_system_version_constant_proto_goTypes = []interface{}{ + (*OperatingSystemVersionConstant)(nil), // 0: google.ads.googleads.v17.resources.OperatingSystemVersionConstant + (enums.OperatingSystemVersionOperatorTypeEnum_OperatingSystemVersionOperatorType)(0), // 1: google.ads.googleads.v17.enums.OperatingSystemVersionOperatorTypeEnum.OperatingSystemVersionOperatorType } -var file_google_ads_googleads_v16_resources_operating_system_version_constant_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.OperatingSystemVersionConstant.operator_type:type_name -> google.ads.googleads.v16.enums.OperatingSystemVersionOperatorTypeEnum.OperatingSystemVersionOperatorType +var file_google_ads_googleads_v17_resources_operating_system_version_constant_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.OperatingSystemVersionConstant.operator_type:type_name -> google.ads.googleads.v17.enums.OperatingSystemVersionOperatorTypeEnum.OperatingSystemVersionOperatorType 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 @@ -239,13 +239,13 @@ var file_google_ads_googleads_v16_resources_operating_system_version_constant_pr 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_operating_system_version_constant_proto_init() } -func file_google_ads_googleads_v16_resources_operating_system_version_constant_proto_init() { - if File_google_ads_googleads_v16_resources_operating_system_version_constant_proto != nil { +func init() { file_google_ads_googleads_v17_resources_operating_system_version_constant_proto_init() } +func file_google_ads_googleads_v17_resources_operating_system_version_constant_proto_init() { + if File_google_ads_googleads_v17_resources_operating_system_version_constant_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_operating_system_version_constant_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_operating_system_version_constant_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*OperatingSystemVersionConstant); i { case 0: return &v.state @@ -258,23 +258,23 @@ func file_google_ads_googleads_v16_resources_operating_system_version_constant_p } } } - file_google_ads_googleads_v16_resources_operating_system_version_constant_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_operating_system_version_constant_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_operating_system_version_constant_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_operating_system_version_constant_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_operating_system_version_constant_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_operating_system_version_constant_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_operating_system_version_constant_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_operating_system_version_constant_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_operating_system_version_constant_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_operating_system_version_constant_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_operating_system_version_constant_proto = out.File - file_google_ads_googleads_v16_resources_operating_system_version_constant_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_operating_system_version_constant_proto_goTypes = nil - file_google_ads_googleads_v16_resources_operating_system_version_constant_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_operating_system_version_constant_proto = out.File + file_google_ads_googleads_v17_resources_operating_system_version_constant_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_operating_system_version_constant_proto_goTypes = nil + file_google_ads_googleads_v17_resources_operating_system_version_constant_proto_depIdxs = nil } diff --git a/resources/paid_organic_search_term_view.pb.go b/resources/paid_organic_search_term_view.pb.go index 1be25ec4..9504aaff 100644 --- a/resources/paid_organic_search_term_view.pb.go +++ b/resources/paid_organic_search_term_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/paid_organic_search_term_view.proto +// source: google/ads/googleads/v17/resources/paid_organic_search_term_view.proto package resources @@ -55,7 +55,7 @@ type PaidOrganicSearchTermView struct { func (x *PaidOrganicSearchTermView) Reset() { *x = PaidOrganicSearchTermView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_paid_organic_search_term_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68,7 +68,7 @@ func (x *PaidOrganicSearchTermView) String() string { func (*PaidOrganicSearchTermView) ProtoMessage() {} func (x *PaidOrganicSearchTermView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_paid_organic_search_term_view_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 *PaidOrganicSearchTermView) ProtoReflect() protoreflect.Message { // Deprecated: Use PaidOrganicSearchTermView.ProtoReflect.Descriptor instead. func (*PaidOrganicSearchTermView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_paid_organic_search_term_view_proto_rawDescGZIP(), []int{0} } func (x *PaidOrganicSearchTermView) GetResourceName() string { @@ -98,16 +98,16 @@ func (x *PaidOrganicSearchTermView) GetSearchTerm() string { return "" } -var File_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_paid_organic_search_term_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_paid_organic_search_term_view_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, 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, 0x70, 0x61, 0x69, 0x64, 0x5f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x63, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 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, 0x73, 0x1a, 0x1f, 0x67, 0x6f, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -135,41 +135,41 @@ var file_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto_ 0x6d, 0x7d, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 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, 0x73, 0x42, 0x1e, 0x50, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x1e, 0x50, 0x61, 0x69, 0x64, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x63, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 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, 0x73, 0x6f, 0x75, 0x72, 0x63, + 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, + 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, 0x26, 0x47, + 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, + 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_paid_organic_search_term_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto_rawDescData = file_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto_rawDesc + file_google_ads_googleads_v17_resources_paid_organic_search_term_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_paid_organic_search_term_view_proto_rawDescData = file_google_ads_googleads_v17_resources_paid_organic_search_term_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_paid_organic_search_term_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_paid_organic_search_term_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_paid_organic_search_term_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_paid_organic_search_term_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_paid_organic_search_term_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto_goTypes = []interface{}{ - (*PaidOrganicSearchTermView)(nil), // 0: google.ads.googleads.v16.resources.PaidOrganicSearchTermView +var file_google_ads_googleads_v17_resources_paid_organic_search_term_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_paid_organic_search_term_view_proto_goTypes = []interface{}{ + (*PaidOrganicSearchTermView)(nil), // 0: google.ads.googleads.v17.resources.PaidOrganicSearchTermView } -var file_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_paid_organic_search_term_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method output_type 0, // [0:0] is the sub-list for method input_type 0, // [0:0] is the sub-list for extension type_name @@ -177,13 +177,13 @@ var file_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto_ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto_init() } -func file_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto_init() { - if File_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_paid_organic_search_term_view_proto_init() } +func file_google_ads_googleads_v17_resources_paid_organic_search_term_view_proto_init() { + if File_google_ads_googleads_v17_resources_paid_organic_search_term_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_paid_organic_search_term_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*PaidOrganicSearchTermView); i { case 0: return &v.state @@ -196,23 +196,23 @@ func file_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto } } } - file_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_paid_organic_search_term_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_paid_organic_search_term_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_paid_organic_search_term_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_paid_organic_search_term_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_paid_organic_search_term_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_paid_organic_search_term_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto = out.File - file_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_paid_organic_search_term_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_paid_organic_search_term_view_proto = out.File + file_google_ads_googleads_v17_resources_paid_organic_search_term_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_paid_organic_search_term_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_paid_organic_search_term_view_proto_depIdxs = nil } diff --git a/resources/parental_status_view.pb.go b/resources/parental_status_view.pb.go index fad8bbae..999dce17 100644 --- a/resources/parental_status_view.pb.go +++ b/resources/parental_status_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/parental_status_view.proto +// source: google/ads/googleads/v17/resources/parental_status_view.proto package resources @@ -51,7 +51,7 @@ type ParentalStatusView struct { func (x *ParentalStatusView) Reset() { *x = ParentalStatusView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_parental_status_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_parental_status_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64,7 +64,7 @@ func (x *ParentalStatusView) String() string { func (*ParentalStatusView) ProtoMessage() {} func (x *ParentalStatusView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_parental_status_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_parental_status_view_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 *ParentalStatusView) ProtoReflect() protoreflect.Message { // Deprecated: Use ParentalStatusView.ProtoReflect.Descriptor instead. func (*ParentalStatusView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_parental_status_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_parental_status_view_proto_rawDescGZIP(), []int{0} } func (x *ParentalStatusView) GetResourceName() string { @@ -87,15 +87,15 @@ func (x *ParentalStatusView) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_resources_parental_status_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_parental_status_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_parental_status_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_parental_status_view_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, 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, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -116,41 +116,41 @@ var file_google_ads_googleads_v16_resources_parental_status_view_proto_rawDesc = 0x7b, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x89, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x17, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 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, 0x73, 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, + 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, 0x36, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 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, + 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_parental_status_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_parental_status_view_proto_rawDescData = file_google_ads_googleads_v16_resources_parental_status_view_proto_rawDesc + file_google_ads_googleads_v17_resources_parental_status_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_parental_status_view_proto_rawDescData = file_google_ads_googleads_v17_resources_parental_status_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_parental_status_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_parental_status_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_parental_status_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_parental_status_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_parental_status_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_parental_status_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_parental_status_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_parental_status_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_parental_status_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_parental_status_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_parental_status_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_parental_status_view_proto_goTypes = []interface{}{ - (*ParentalStatusView)(nil), // 0: google.ads.googleads.v16.resources.ParentalStatusView +var file_google_ads_googleads_v17_resources_parental_status_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_parental_status_view_proto_goTypes = []interface{}{ + (*ParentalStatusView)(nil), // 0: google.ads.googleads.v17.resources.ParentalStatusView } -var file_google_ads_googleads_v16_resources_parental_status_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_parental_status_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method output_type 0, // [0:0] is the sub-list for method input_type 0, // [0:0] is the sub-list for extension type_name @@ -158,13 +158,13 @@ var file_google_ads_googleads_v16_resources_parental_status_view_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_parental_status_view_proto_init() } -func file_google_ads_googleads_v16_resources_parental_status_view_proto_init() { - if File_google_ads_googleads_v16_resources_parental_status_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_parental_status_view_proto_init() } +func file_google_ads_googleads_v17_resources_parental_status_view_proto_init() { + if File_google_ads_googleads_v17_resources_parental_status_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_parental_status_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_parental_status_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ParentalStatusView); i { case 0: return &v.state @@ -181,18 +181,18 @@ func file_google_ads_googleads_v16_resources_parental_status_view_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_parental_status_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_parental_status_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_parental_status_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_parental_status_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_parental_status_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_parental_status_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_parental_status_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_parental_status_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_parental_status_view_proto = out.File - file_google_ads_googleads_v16_resources_parental_status_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_parental_status_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_parental_status_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_parental_status_view_proto = out.File + file_google_ads_googleads_v17_resources_parental_status_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_parental_status_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_parental_status_view_proto_depIdxs = nil } diff --git a/resources/payments_account.pb.go b/resources/payments_account.pb.go index 8cf7f13f..66259955 100644 --- a/resources/payments_account.pb.go +++ b/resources/payments_account.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/payments_account.proto +// source: google/ads/googleads/v17/resources/payments_account.proto package resources @@ -68,7 +68,7 @@ type PaymentsAccount struct { func (x *PaymentsAccount) Reset() { *x = PaymentsAccount{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_payments_account_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_payments_account_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81,7 +81,7 @@ func (x *PaymentsAccount) String() string { func (*PaymentsAccount) ProtoMessage() {} func (x *PaymentsAccount) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_payments_account_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_payments_account_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 *PaymentsAccount) ProtoReflect() protoreflect.Message { // Deprecated: Use PaymentsAccount.ProtoReflect.Descriptor instead. func (*PaymentsAccount) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_payments_account_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_payments_account_proto_rawDescGZIP(), []int{0} } func (x *PaymentsAccount) GetResourceName() string { @@ -146,15 +146,15 @@ func (x *PaymentsAccount) GetPayingManagerCustomer() string { return "" } -var File_google_ads_googleads_v16_resources_payments_account_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_payments_account_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_payments_account_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_payments_account_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, 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, 0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 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, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -206,41 +206,41 @@ var file_google_ads_googleads_v16_resources_payments_account_proto_rawDesc = []b 0x69, 0x6e, 0x67, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x42, 0x86, 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, 0x14, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 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, + 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, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, + 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, + 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, 0x70, + 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_payments_account_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_payments_account_proto_rawDescData = file_google_ads_googleads_v16_resources_payments_account_proto_rawDesc + file_google_ads_googleads_v17_resources_payments_account_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_payments_account_proto_rawDescData = file_google_ads_googleads_v17_resources_payments_account_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_payments_account_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_payments_account_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_payments_account_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_payments_account_proto_rawDescData) +func file_google_ads_googleads_v17_resources_payments_account_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_payments_account_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_payments_account_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_payments_account_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_payments_account_proto_rawDescData + return file_google_ads_googleads_v17_resources_payments_account_proto_rawDescData } -var file_google_ads_googleads_v16_resources_payments_account_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_payments_account_proto_goTypes = []interface{}{ - (*PaymentsAccount)(nil), // 0: google.ads.googleads.v16.resources.PaymentsAccount +var file_google_ads_googleads_v17_resources_payments_account_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_payments_account_proto_goTypes = []interface{}{ + (*PaymentsAccount)(nil), // 0: google.ads.googleads.v17.resources.PaymentsAccount } -var file_google_ads_googleads_v16_resources_payments_account_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_payments_account_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method output_type 0, // [0:0] is the sub-list for method input_type 0, // [0:0] is the sub-list for extension type_name @@ -248,13 +248,13 @@ var file_google_ads_googleads_v16_resources_payments_account_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_payments_account_proto_init() } -func file_google_ads_googleads_v16_resources_payments_account_proto_init() { - if File_google_ads_googleads_v16_resources_payments_account_proto != nil { +func init() { file_google_ads_googleads_v17_resources_payments_account_proto_init() } +func file_google_ads_googleads_v17_resources_payments_account_proto_init() { + if File_google_ads_googleads_v17_resources_payments_account_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_payments_account_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_payments_account_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*PaymentsAccount); i { case 0: return &v.state @@ -267,23 +267,23 @@ func file_google_ads_googleads_v16_resources_payments_account_proto_init() { } } } - file_google_ads_googleads_v16_resources_payments_account_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_payments_account_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_payments_account_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_payments_account_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_payments_account_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_payments_account_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_payments_account_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_payments_account_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_payments_account_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_payments_account_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_payments_account_proto = out.File - file_google_ads_googleads_v16_resources_payments_account_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_payments_account_proto_goTypes = nil - file_google_ads_googleads_v16_resources_payments_account_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_payments_account_proto = out.File + file_google_ads_googleads_v17_resources_payments_account_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_payments_account_proto_goTypes = nil + file_google_ads_googleads_v17_resources_payments_account_proto_depIdxs = nil } diff --git a/resources/per_store_view.pb.go b/resources/per_store_view.pb.go index fd76792a..70ac4484 100644 --- a/resources/per_store_view.pb.go +++ b/resources/per_store_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/per_store_view.proto +// source: google/ads/googleads/v17/resources/per_store_view.proto package resources @@ -55,7 +55,7 @@ type PerStoreView struct { func (x *PerStoreView) Reset() { *x = PerStoreView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_per_store_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_per_store_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68,7 +68,7 @@ func (x *PerStoreView) String() string { func (*PerStoreView) ProtoMessage() {} func (x *PerStoreView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_per_store_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_per_store_view_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 *PerStoreView) ProtoReflect() protoreflect.Message { // Deprecated: Use PerStoreView.ProtoReflect.Descriptor instead. func (*PerStoreView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_per_store_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_per_store_view_proto_rawDescGZIP(), []int{0} } func (x *PerStoreView) GetResourceName() string { @@ -98,15 +98,15 @@ func (x *PerStoreView) GetPlaceId() string { return "" } -var File_google_ads_googleads_v16_resources_per_store_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_per_store_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_per_store_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_per_store_view_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, 0x70, 0x65, 0x72, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 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, 0x73, 0x1a, 0x1f, 0x67, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -126,41 +126,41 @@ var file_google_ads_googleads_v16_resources_per_store_view_proto_rawDesc = []byt 0x69, 0x64, 0x7d, 0x2f, 0x70, 0x65, 0x72, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x56, 0x69, 0x65, 0x77, 0x73, 0x2f, 0x7b, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x83, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x11, 0x50, 0x65, 0x72, 0x53, 0x74, 0x6f, 0x72, 0x65, 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, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, + 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, + 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, + 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, 0x63, + 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_per_store_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_per_store_view_proto_rawDescData = file_google_ads_googleads_v16_resources_per_store_view_proto_rawDesc + file_google_ads_googleads_v17_resources_per_store_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_per_store_view_proto_rawDescData = file_google_ads_googleads_v17_resources_per_store_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_per_store_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_per_store_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_per_store_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_per_store_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_per_store_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_per_store_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_per_store_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_per_store_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_per_store_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_per_store_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_per_store_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_per_store_view_proto_goTypes = []interface{}{ - (*PerStoreView)(nil), // 0: google.ads.googleads.v16.resources.PerStoreView +var file_google_ads_googleads_v17_resources_per_store_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_per_store_view_proto_goTypes = []interface{}{ + (*PerStoreView)(nil), // 0: google.ads.googleads.v17.resources.PerStoreView } -var file_google_ads_googleads_v16_resources_per_store_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_per_store_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method output_type 0, // [0:0] is the sub-list for method input_type 0, // [0:0] is the sub-list for extension type_name @@ -168,13 +168,13 @@ var file_google_ads_googleads_v16_resources_per_store_view_proto_depIdxs = []int 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_per_store_view_proto_init() } -func file_google_ads_googleads_v16_resources_per_store_view_proto_init() { - if File_google_ads_googleads_v16_resources_per_store_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_per_store_view_proto_init() } +func file_google_ads_googleads_v17_resources_per_store_view_proto_init() { + if File_google_ads_googleads_v17_resources_per_store_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_per_store_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_per_store_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*PerStoreView); i { case 0: return &v.state @@ -191,18 +191,18 @@ func file_google_ads_googleads_v16_resources_per_store_view_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_per_store_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_per_store_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_per_store_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_per_store_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_per_store_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_per_store_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_per_store_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_per_store_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_per_store_view_proto = out.File - file_google_ads_googleads_v16_resources_per_store_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_per_store_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_per_store_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_per_store_view_proto = out.File + file_google_ads_googleads_v17_resources_per_store_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_per_store_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_per_store_view_proto_depIdxs = nil } diff --git a/resources/product_category_constant.pb.go b/resources/product_category_constant.pb.go index 5bf87911..0242d34f 100644 --- a/resources/product_category_constant.pb.go +++ b/resources/product_category_constant.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/product_category_constant.proto +// source: google/ads/googleads/v17/resources/product_category_constant.proto package resources @@ -55,9 +55,9 @@ type ProductCategoryConstant struct { // Output only. Resource name of the parent product category. ProductCategoryConstantParent *string `protobuf:"bytes,3,opt,name=product_category_constant_parent,json=productCategoryConstantParent,proto3,oneof" json:"product_category_constant_parent,omitempty"` // Output only. Level of the product category. - Level enums.ProductCategoryLevelEnum_ProductCategoryLevel `protobuf:"varint,4,opt,name=level,proto3,enum=google.ads.googleads.v16.enums.ProductCategoryLevelEnum_ProductCategoryLevel" json:"level,omitempty"` + Level enums.ProductCategoryLevelEnum_ProductCategoryLevel `protobuf:"varint,4,opt,name=level,proto3,enum=google.ads.googleads.v17.enums.ProductCategoryLevelEnum_ProductCategoryLevel" json:"level,omitempty"` // Output only. State of the product category. - State enums.ProductCategoryStateEnum_ProductCategoryState `protobuf:"varint,5,opt,name=state,proto3,enum=google.ads.googleads.v16.enums.ProductCategoryStateEnum_ProductCategoryState" json:"state,omitempty"` + State enums.ProductCategoryStateEnum_ProductCategoryState `protobuf:"varint,5,opt,name=state,proto3,enum=google.ads.googleads.v17.enums.ProductCategoryStateEnum_ProductCategoryState" json:"state,omitempty"` // Output only. List of all available localizations of the product category. Localizations []*ProductCategoryConstant_ProductCategoryLocalization `protobuf:"bytes,6,rep,name=localizations,proto3" json:"localizations,omitempty"` } @@ -65,7 +65,7 @@ type ProductCategoryConstant struct { func (x *ProductCategoryConstant) Reset() { *x = ProductCategoryConstant{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_product_category_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_product_category_constant_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *ProductCategoryConstant) String() string { func (*ProductCategoryConstant) ProtoMessage() {} func (x *ProductCategoryConstant) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_product_category_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_product_category_constant_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 *ProductCategoryConstant) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductCategoryConstant.ProtoReflect.Descriptor instead. func (*ProductCategoryConstant) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_product_category_constant_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_product_category_constant_proto_rawDescGZIP(), []int{0} } func (x *ProductCategoryConstant) GetResourceName() string { @@ -155,7 +155,7 @@ type ProductCategoryConstant_ProductCategoryLocalization struct { func (x *ProductCategoryConstant_ProductCategoryLocalization) Reset() { *x = ProductCategoryConstant_ProductCategoryLocalization{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_product_category_constant_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_product_category_constant_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -168,7 +168,7 @@ func (x *ProductCategoryConstant_ProductCategoryLocalization) String() string { func (*ProductCategoryConstant_ProductCategoryLocalization) ProtoMessage() {} func (x *ProductCategoryConstant_ProductCategoryLocalization) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_product_category_constant_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_product_category_constant_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -181,7 +181,7 @@ func (x *ProductCategoryConstant_ProductCategoryLocalization) ProtoReflect() pro // Deprecated: Use ProductCategoryConstant_ProductCategoryLocalization.ProtoReflect.Descriptor instead. func (*ProductCategoryConstant_ProductCategoryLocalization) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_product_category_constant_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v17_resources_product_category_constant_proto_rawDescGZIP(), []int{0, 0} } func (x *ProductCategoryConstant_ProductCategoryLocalization) GetRegionCode() string { @@ -205,21 +205,21 @@ func (x *ProductCategoryConstant_ProductCategoryLocalization) GetValue() string return "" } -var File_google_ads_googleads_v16_resources_product_category_constant_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_product_category_constant_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_product_category_constant_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_product_category_constant_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, 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, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 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, + 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, 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, + 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, 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, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, @@ -247,20 +247,20 @@ var file_google_ads_googleads_v16_resources_product_category_constant_proto_rawD 0x61, 0x72, 0x65, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x68, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x04, 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, 0x75, 0x63, 0x74, + 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x68, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x05, 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, + 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, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x82, 0x01, 0x0a, 0x0d, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, @@ -288,48 +288,48 @@ var file_google_ads_googleads_v16_resources_product_category_constant_proto_rawD 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x5f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x42, 0x8e, 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, + 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, 0x1c, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 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, 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_product_category_constant_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_product_category_constant_proto_rawDescData = file_google_ads_googleads_v16_resources_product_category_constant_proto_rawDesc + file_google_ads_googleads_v17_resources_product_category_constant_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_product_category_constant_proto_rawDescData = file_google_ads_googleads_v17_resources_product_category_constant_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_product_category_constant_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_product_category_constant_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_product_category_constant_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_product_category_constant_proto_rawDescData) +func file_google_ads_googleads_v17_resources_product_category_constant_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_product_category_constant_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_product_category_constant_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_product_category_constant_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_product_category_constant_proto_rawDescData + return file_google_ads_googleads_v17_resources_product_category_constant_proto_rawDescData } -var file_google_ads_googleads_v16_resources_product_category_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v16_resources_product_category_constant_proto_goTypes = []interface{}{ - (*ProductCategoryConstant)(nil), // 0: google.ads.googleads.v16.resources.ProductCategoryConstant - (*ProductCategoryConstant_ProductCategoryLocalization)(nil), // 1: google.ads.googleads.v16.resources.ProductCategoryConstant.ProductCategoryLocalization - (enums.ProductCategoryLevelEnum_ProductCategoryLevel)(0), // 2: google.ads.googleads.v16.enums.ProductCategoryLevelEnum.ProductCategoryLevel - (enums.ProductCategoryStateEnum_ProductCategoryState)(0), // 3: google.ads.googleads.v16.enums.ProductCategoryStateEnum.ProductCategoryState +var file_google_ads_googleads_v17_resources_product_category_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v17_resources_product_category_constant_proto_goTypes = []interface{}{ + (*ProductCategoryConstant)(nil), // 0: google.ads.googleads.v17.resources.ProductCategoryConstant + (*ProductCategoryConstant_ProductCategoryLocalization)(nil), // 1: google.ads.googleads.v17.resources.ProductCategoryConstant.ProductCategoryLocalization + (enums.ProductCategoryLevelEnum_ProductCategoryLevel)(0), // 2: google.ads.googleads.v17.enums.ProductCategoryLevelEnum.ProductCategoryLevel + (enums.ProductCategoryStateEnum_ProductCategoryState)(0), // 3: google.ads.googleads.v17.enums.ProductCategoryStateEnum.ProductCategoryState } -var file_google_ads_googleads_v16_resources_product_category_constant_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v16.resources.ProductCategoryConstant.level:type_name -> google.ads.googleads.v16.enums.ProductCategoryLevelEnum.ProductCategoryLevel - 3, // 1: google.ads.googleads.v16.resources.ProductCategoryConstant.state:type_name -> google.ads.googleads.v16.enums.ProductCategoryStateEnum.ProductCategoryState - 1, // 2: google.ads.googleads.v16.resources.ProductCategoryConstant.localizations:type_name -> google.ads.googleads.v16.resources.ProductCategoryConstant.ProductCategoryLocalization +var file_google_ads_googleads_v17_resources_product_category_constant_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v17.resources.ProductCategoryConstant.level:type_name -> google.ads.googleads.v17.enums.ProductCategoryLevelEnum.ProductCategoryLevel + 3, // 1: google.ads.googleads.v17.resources.ProductCategoryConstant.state:type_name -> google.ads.googleads.v17.enums.ProductCategoryStateEnum.ProductCategoryState + 1, // 2: google.ads.googleads.v17.resources.ProductCategoryConstant.localizations:type_name -> google.ads.googleads.v17.resources.ProductCategoryConstant.ProductCategoryLocalization 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 @@ -337,13 +337,13 @@ var file_google_ads_googleads_v16_resources_product_category_constant_proto_depI 0, // [0:3] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_product_category_constant_proto_init() } -func file_google_ads_googleads_v16_resources_product_category_constant_proto_init() { - if File_google_ads_googleads_v16_resources_product_category_constant_proto != nil { +func init() { file_google_ads_googleads_v17_resources_product_category_constant_proto_init() } +func file_google_ads_googleads_v17_resources_product_category_constant_proto_init() { + if File_google_ads_googleads_v17_resources_product_category_constant_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_product_category_constant_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_product_category_constant_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ProductCategoryConstant); i { case 0: return &v.state @@ -355,7 +355,7 @@ func file_google_ads_googleads_v16_resources_product_category_constant_proto_ini return nil } } - file_google_ads_googleads_v16_resources_product_category_constant_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_product_category_constant_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ProductCategoryConstant_ProductCategoryLocalization); i { case 0: return &v.state @@ -368,23 +368,23 @@ func file_google_ads_googleads_v16_resources_product_category_constant_proto_ini } } } - file_google_ads_googleads_v16_resources_product_category_constant_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_product_category_constant_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_product_category_constant_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_product_category_constant_proto_rawDesc, NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_product_category_constant_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_product_category_constant_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_product_category_constant_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_product_category_constant_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_product_category_constant_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_product_category_constant_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_product_category_constant_proto = out.File - file_google_ads_googleads_v16_resources_product_category_constant_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_product_category_constant_proto_goTypes = nil - file_google_ads_googleads_v16_resources_product_category_constant_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_product_category_constant_proto = out.File + file_google_ads_googleads_v17_resources_product_category_constant_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_product_category_constant_proto_goTypes = nil + file_google_ads_googleads_v17_resources_product_category_constant_proto_depIdxs = nil } diff --git a/resources/product_group_view.pb.go b/resources/product_group_view.pb.go index a399d7c9..14c2f422 100644 --- a/resources/product_group_view.pb.go +++ b/resources/product_group_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/product_group_view.proto +// source: google/ads/googleads/v17/resources/product_group_view.proto package resources @@ -51,7 +51,7 @@ type ProductGroupView struct { func (x *ProductGroupView) Reset() { *x = ProductGroupView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_product_group_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_product_group_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64,7 +64,7 @@ func (x *ProductGroupView) String() string { func (*ProductGroupView) ProtoMessage() {} func (x *ProductGroupView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_product_group_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_product_group_view_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 *ProductGroupView) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductGroupView.ProtoReflect.Descriptor instead. func (*ProductGroupView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_product_group_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_product_group_view_proto_rawDescGZIP(), []int{0} } func (x *ProductGroupView) GetResourceName() string { @@ -87,15 +87,15 @@ func (x *ProductGroupView) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_resources_product_group_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_product_group_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_product_group_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_product_group_view_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, 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, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 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, 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, @@ -116,41 +116,41 @@ var file_google_ads_googleads_v16_resources_product_group_view_proto_rawDesc = [ 0x64, 0x7d, 0x7e, 0x7b, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x87, 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, 0x15, 0x50, 0x72, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x15, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 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, + 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_product_group_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_product_group_view_proto_rawDescData = file_google_ads_googleads_v16_resources_product_group_view_proto_rawDesc + file_google_ads_googleads_v17_resources_product_group_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_product_group_view_proto_rawDescData = file_google_ads_googleads_v17_resources_product_group_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_product_group_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_product_group_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_product_group_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_product_group_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_product_group_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_product_group_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_product_group_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_product_group_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_product_group_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_product_group_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_product_group_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_product_group_view_proto_goTypes = []interface{}{ - (*ProductGroupView)(nil), // 0: google.ads.googleads.v16.resources.ProductGroupView +var file_google_ads_googleads_v17_resources_product_group_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_product_group_view_proto_goTypes = []interface{}{ + (*ProductGroupView)(nil), // 0: google.ads.googleads.v17.resources.ProductGroupView } -var file_google_ads_googleads_v16_resources_product_group_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_product_group_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method output_type 0, // [0:0] is the sub-list for method input_type 0, // [0:0] is the sub-list for extension type_name @@ -158,13 +158,13 @@ var file_google_ads_googleads_v16_resources_product_group_view_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_product_group_view_proto_init() } -func file_google_ads_googleads_v16_resources_product_group_view_proto_init() { - if File_google_ads_googleads_v16_resources_product_group_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_product_group_view_proto_init() } +func file_google_ads_googleads_v17_resources_product_group_view_proto_init() { + if File_google_ads_googleads_v17_resources_product_group_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_product_group_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_product_group_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ProductGroupView); i { case 0: return &v.state @@ -181,18 +181,18 @@ func file_google_ads_googleads_v16_resources_product_group_view_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_product_group_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_product_group_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_product_group_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_product_group_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_product_group_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_product_group_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_product_group_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_product_group_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_product_group_view_proto = out.File - file_google_ads_googleads_v16_resources_product_group_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_product_group_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_product_group_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_product_group_view_proto = out.File + file_google_ads_googleads_v17_resources_product_group_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_product_group_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_product_group_view_proto_depIdxs = nil } diff --git a/resources/product_link.pb.go b/resources/product_link.pb.go index c62d780f..6ec5a0b0 100644 --- a/resources/product_link.pb.go +++ b/resources/product_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/product_link.proto +// source: google/ads/googleads/v17/resources/product_link.proto package resources @@ -52,7 +52,7 @@ type ProductLink struct { // This field is read only. ProductLinkId *int64 `protobuf:"varint,2,opt,name=product_link_id,json=productLinkId,proto3,oneof" json:"product_link_id,omitempty"` // Output only. The type of the linked product. - Type enums.LinkedProductTypeEnum_LinkedProductType `protobuf:"varint,3,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.LinkedProductTypeEnum_LinkedProductType" json:"type,omitempty"` + Type enums.LinkedProductTypeEnum_LinkedProductType `protobuf:"varint,3,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.LinkedProductTypeEnum_LinkedProductType" json:"type,omitempty"` // A product linked to this account. // // Types that are assignable to LinkedProduct: @@ -67,7 +67,7 @@ type ProductLink struct { func (x *ProductLink) Reset() { *x = ProductLink{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_product_link_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_product_link_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80,7 +80,7 @@ func (x *ProductLink) String() string { func (*ProductLink) ProtoMessage() {} func (x *ProductLink) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_product_link_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_product_link_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93,7 +93,7 @@ func (x *ProductLink) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductLink.ProtoReflect.Descriptor instead. func (*ProductLink) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_product_link_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_product_link_proto_rawDescGZIP(), []int{0} } func (x *ProductLink) GetResourceName() string { @@ -200,7 +200,7 @@ type DataPartnerIdentifier struct { func (x *DataPartnerIdentifier) Reset() { *x = DataPartnerIdentifier{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_product_link_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_product_link_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -213,7 +213,7 @@ func (x *DataPartnerIdentifier) String() string { func (*DataPartnerIdentifier) ProtoMessage() {} func (x *DataPartnerIdentifier) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_product_link_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_product_link_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -226,7 +226,7 @@ func (x *DataPartnerIdentifier) ProtoReflect() protoreflect.Message { // Deprecated: Use DataPartnerIdentifier.ProtoReflect.Descriptor instead. func (*DataPartnerIdentifier) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_product_link_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_resources_product_link_proto_rawDescGZIP(), []int{1} } func (x *DataPartnerIdentifier) GetDataPartnerId() int64 { @@ -252,7 +252,7 @@ type GoogleAdsIdentifier struct { func (x *GoogleAdsIdentifier) Reset() { *x = GoogleAdsIdentifier{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_product_link_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_product_link_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -265,7 +265,7 @@ func (x *GoogleAdsIdentifier) String() string { func (*GoogleAdsIdentifier) ProtoMessage() {} func (x *GoogleAdsIdentifier) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_product_link_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_product_link_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -278,7 +278,7 @@ func (x *GoogleAdsIdentifier) ProtoReflect() protoreflect.Message { // Deprecated: Use GoogleAdsIdentifier.ProtoReflect.Descriptor instead. func (*GoogleAdsIdentifier) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_product_link_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_resources_product_link_proto_rawDescGZIP(), []int{2} } func (x *GoogleAdsIdentifier) GetCustomer() string { @@ -304,7 +304,7 @@ type MerchantCenterIdentifier struct { func (x *MerchantCenterIdentifier) Reset() { *x = MerchantCenterIdentifier{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_product_link_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_product_link_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -317,7 +317,7 @@ func (x *MerchantCenterIdentifier) String() string { func (*MerchantCenterIdentifier) ProtoMessage() {} func (x *MerchantCenterIdentifier) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_product_link_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_product_link_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -330,7 +330,7 @@ func (x *MerchantCenterIdentifier) ProtoReflect() protoreflect.Message { // Deprecated: Use MerchantCenterIdentifier.ProtoReflect.Descriptor instead. func (*MerchantCenterIdentifier) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_product_link_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_resources_product_link_proto_rawDescGZIP(), []int{3} } func (x *MerchantCenterIdentifier) GetMerchantCenterId() int64 { @@ -356,7 +356,7 @@ type AdvertisingPartnerIdentifier struct { func (x *AdvertisingPartnerIdentifier) Reset() { *x = AdvertisingPartnerIdentifier{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_product_link_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_resources_product_link_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -369,7 +369,7 @@ func (x *AdvertisingPartnerIdentifier) String() string { func (*AdvertisingPartnerIdentifier) ProtoMessage() {} func (x *AdvertisingPartnerIdentifier) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_product_link_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_resources_product_link_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -382,7 +382,7 @@ func (x *AdvertisingPartnerIdentifier) ProtoReflect() protoreflect.Message { // Deprecated: Use AdvertisingPartnerIdentifier.ProtoReflect.Descriptor instead. func (*AdvertisingPartnerIdentifier) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_product_link_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v17_resources_product_link_proto_rawDescGZIP(), []int{4} } func (x *AdvertisingPartnerIdentifier) GetCustomer() string { @@ -392,17 +392,17 @@ func (x *AdvertisingPartnerIdentifier) GetCustomer() string { return "" } -var File_google_ads_googleads_v16_resources_product_link_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_product_link_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_product_link_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_product_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, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 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, 0x6c, 0x69, 0x6e, 0x6b, + 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, 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, @@ -419,26 +419,26 @@ var file_google_ads_googleads_v16_resources_product_link_proto_rawDesc = []byte{ 0x41, 0x03, 0x48, 0x01, 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x60, 0x0a, 0x04, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x63, 0x0a, 0x0c, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 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, 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, 0x44, 0x61, 0x74, 0x61, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0b, 0x64, 0x61, 0x74, 0x61, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x12, 0x5d, 0x0a, 0x0a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5f, 0x61, 0x64, 0x73, 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, 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, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x09, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x12, 0x6c, 0x0a, 0x0f, 0x6d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x5f, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x18, 0x0c, 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, + 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, 0x4d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0e, 0x6d, 0x65, 0x72, 0x63, @@ -446,7 +446,7 @@ var file_google_ads_googleads_v16_resources_product_link_proto_rawDesc = []byte{ 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x18, 0x0d, 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, 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, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x12, 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x50, 0x61, 0x72, @@ -488,50 +488,50 @@ var file_google_ads_googleads_v16_resources_product_link_proto_rawDesc = []byte{ 0x88, 0x01, 0x01, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 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, 0x50, 0x72, 0x6f, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x10, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 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, 0x72, 0x63, + 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, + 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, 0x26, 0x47, + 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, + 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_product_link_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_product_link_proto_rawDescData = file_google_ads_googleads_v16_resources_product_link_proto_rawDesc + file_google_ads_googleads_v17_resources_product_link_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_product_link_proto_rawDescData = file_google_ads_googleads_v17_resources_product_link_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_product_link_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_product_link_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_product_link_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_product_link_proto_rawDescData) +func file_google_ads_googleads_v17_resources_product_link_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_product_link_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_product_link_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_product_link_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_product_link_proto_rawDescData -} - -var file_google_ads_googleads_v16_resources_product_link_proto_msgTypes = make([]protoimpl.MessageInfo, 5) -var file_google_ads_googleads_v16_resources_product_link_proto_goTypes = []interface{}{ - (*ProductLink)(nil), // 0: google.ads.googleads.v16.resources.ProductLink - (*DataPartnerIdentifier)(nil), // 1: google.ads.googleads.v16.resources.DataPartnerIdentifier - (*GoogleAdsIdentifier)(nil), // 2: google.ads.googleads.v16.resources.GoogleAdsIdentifier - (*MerchantCenterIdentifier)(nil), // 3: google.ads.googleads.v16.resources.MerchantCenterIdentifier - (*AdvertisingPartnerIdentifier)(nil), // 4: google.ads.googleads.v16.resources.AdvertisingPartnerIdentifier - (enums.LinkedProductTypeEnum_LinkedProductType)(0), // 5: google.ads.googleads.v16.enums.LinkedProductTypeEnum.LinkedProductType -} -var file_google_ads_googleads_v16_resources_product_link_proto_depIdxs = []int32{ - 5, // 0: google.ads.googleads.v16.resources.ProductLink.type:type_name -> google.ads.googleads.v16.enums.LinkedProductTypeEnum.LinkedProductType - 1, // 1: google.ads.googleads.v16.resources.ProductLink.data_partner:type_name -> google.ads.googleads.v16.resources.DataPartnerIdentifier - 2, // 2: google.ads.googleads.v16.resources.ProductLink.google_ads:type_name -> google.ads.googleads.v16.resources.GoogleAdsIdentifier - 3, // 3: google.ads.googleads.v16.resources.ProductLink.merchant_center:type_name -> google.ads.googleads.v16.resources.MerchantCenterIdentifier - 4, // 4: google.ads.googleads.v16.resources.ProductLink.advertising_partner:type_name -> google.ads.googleads.v16.resources.AdvertisingPartnerIdentifier + return file_google_ads_googleads_v17_resources_product_link_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_product_link_proto_msgTypes = make([]protoimpl.MessageInfo, 5) +var file_google_ads_googleads_v17_resources_product_link_proto_goTypes = []interface{}{ + (*ProductLink)(nil), // 0: google.ads.googleads.v17.resources.ProductLink + (*DataPartnerIdentifier)(nil), // 1: google.ads.googleads.v17.resources.DataPartnerIdentifier + (*GoogleAdsIdentifier)(nil), // 2: google.ads.googleads.v17.resources.GoogleAdsIdentifier + (*MerchantCenterIdentifier)(nil), // 3: google.ads.googleads.v17.resources.MerchantCenterIdentifier + (*AdvertisingPartnerIdentifier)(nil), // 4: google.ads.googleads.v17.resources.AdvertisingPartnerIdentifier + (enums.LinkedProductTypeEnum_LinkedProductType)(0), // 5: google.ads.googleads.v17.enums.LinkedProductTypeEnum.LinkedProductType +} +var file_google_ads_googleads_v17_resources_product_link_proto_depIdxs = []int32{ + 5, // 0: google.ads.googleads.v17.resources.ProductLink.type:type_name -> google.ads.googleads.v17.enums.LinkedProductTypeEnum.LinkedProductType + 1, // 1: google.ads.googleads.v17.resources.ProductLink.data_partner:type_name -> google.ads.googleads.v17.resources.DataPartnerIdentifier + 2, // 2: google.ads.googleads.v17.resources.ProductLink.google_ads:type_name -> google.ads.googleads.v17.resources.GoogleAdsIdentifier + 3, // 3: google.ads.googleads.v17.resources.ProductLink.merchant_center:type_name -> google.ads.googleads.v17.resources.MerchantCenterIdentifier + 4, // 4: google.ads.googleads.v17.resources.ProductLink.advertising_partner:type_name -> google.ads.googleads.v17.resources.AdvertisingPartnerIdentifier 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 @@ -539,13 +539,13 @@ var file_google_ads_googleads_v16_resources_product_link_proto_depIdxs = []int32 0, // [0:5] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_product_link_proto_init() } -func file_google_ads_googleads_v16_resources_product_link_proto_init() { - if File_google_ads_googleads_v16_resources_product_link_proto != nil { +func init() { file_google_ads_googleads_v17_resources_product_link_proto_init() } +func file_google_ads_googleads_v17_resources_product_link_proto_init() { + if File_google_ads_googleads_v17_resources_product_link_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_product_link_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_product_link_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ProductLink); i { case 0: return &v.state @@ -557,7 +557,7 @@ func file_google_ads_googleads_v16_resources_product_link_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_product_link_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_product_link_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DataPartnerIdentifier); i { case 0: return &v.state @@ -569,7 +569,7 @@ func file_google_ads_googleads_v16_resources_product_link_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_product_link_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_product_link_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GoogleAdsIdentifier); i { case 0: return &v.state @@ -581,7 +581,7 @@ func file_google_ads_googleads_v16_resources_product_link_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_product_link_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_product_link_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MerchantCenterIdentifier); i { case 0: return &v.state @@ -593,7 +593,7 @@ func file_google_ads_googleads_v16_resources_product_link_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_product_link_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_product_link_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdvertisingPartnerIdentifier); i { case 0: return &v.state @@ -606,32 +606,32 @@ func file_google_ads_googleads_v16_resources_product_link_proto_init() { } } } - file_google_ads_googleads_v16_resources_product_link_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_product_link_proto_msgTypes[0].OneofWrappers = []interface{}{ (*ProductLink_DataPartner)(nil), (*ProductLink_GoogleAds)(nil), (*ProductLink_MerchantCenter)(nil), (*ProductLink_AdvertisingPartner)(nil), } - file_google_ads_googleads_v16_resources_product_link_proto_msgTypes[1].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_product_link_proto_msgTypes[2].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_product_link_proto_msgTypes[3].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_product_link_proto_msgTypes[4].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_product_link_proto_msgTypes[1].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_product_link_proto_msgTypes[2].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_product_link_proto_msgTypes[3].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_product_link_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_resources_product_link_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_product_link_proto_rawDesc, NumEnums: 0, NumMessages: 5, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_product_link_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_product_link_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_product_link_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_product_link_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_product_link_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_product_link_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_product_link_proto = out.File - file_google_ads_googleads_v16_resources_product_link_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_product_link_proto_goTypes = nil - file_google_ads_googleads_v16_resources_product_link_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_product_link_proto = out.File + file_google_ads_googleads_v17_resources_product_link_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_product_link_proto_goTypes = nil + file_google_ads_googleads_v17_resources_product_link_proto_depIdxs = nil } diff --git a/resources/product_link_invitation.pb.go b/resources/product_link_invitation.pb.go index ca65d0b8..bfff1f90 100644 --- a/resources/product_link_invitation.pb.go +++ b/resources/product_link_invitation.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/product_link_invitation.proto +// source: google/ads/googleads/v17/resources/product_link_invitation.proto package resources @@ -53,11 +53,11 @@ type ProductLinkInvitation struct { ProductLinkInvitationId int64 `protobuf:"varint,2,opt,name=product_link_invitation_id,json=productLinkInvitationId,proto3" json:"product_link_invitation_id,omitempty"` // Output only. The status of the product link invitation. // This field is read only. - Status enums.ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus" json:"status,omitempty"` + Status enums.ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus" json:"status,omitempty"` // Output only. The type of the invited account. // This field is read only and can be used for filtering invitations with // {@code GoogleAdsService.SearchGoogleAdsRequest}. - Type enums.LinkedProductTypeEnum_LinkedProductType `protobuf:"varint,6,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.LinkedProductTypeEnum_LinkedProductType" json:"type,omitempty"` + Type enums.LinkedProductTypeEnum_LinkedProductType `protobuf:"varint,6,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.LinkedProductTypeEnum_LinkedProductType" json:"type,omitempty"` // An account invited to link to this Google Ads account. // // Types that are assignable to InvitedAccount: @@ -71,7 +71,7 @@ type ProductLinkInvitation struct { func (x *ProductLinkInvitation) Reset() { *x = ProductLinkInvitation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_product_link_invitation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_product_link_invitation_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -84,7 +84,7 @@ func (x *ProductLinkInvitation) String() string { func (*ProductLinkInvitation) ProtoMessage() {} func (x *ProductLinkInvitation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_product_link_invitation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_product_link_invitation_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -97,7 +97,7 @@ func (x *ProductLinkInvitation) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductLinkInvitation.ProtoReflect.Descriptor instead. func (*ProductLinkInvitation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_product_link_invitation_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_product_link_invitation_proto_rawDescGZIP(), []int{0} } func (x *ProductLinkInvitation) GetResourceName() string { @@ -195,7 +195,7 @@ type HotelCenterLinkInvitationIdentifier struct { func (x *HotelCenterLinkInvitationIdentifier) Reset() { *x = HotelCenterLinkInvitationIdentifier{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_product_link_invitation_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_product_link_invitation_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -208,7 +208,7 @@ func (x *HotelCenterLinkInvitationIdentifier) String() string { func (*HotelCenterLinkInvitationIdentifier) ProtoMessage() {} func (x *HotelCenterLinkInvitationIdentifier) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_product_link_invitation_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_product_link_invitation_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -221,7 +221,7 @@ func (x *HotelCenterLinkInvitationIdentifier) ProtoReflect() protoreflect.Messag // Deprecated: Use HotelCenterLinkInvitationIdentifier.ProtoReflect.Descriptor instead. func (*HotelCenterLinkInvitationIdentifier) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_product_link_invitation_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_resources_product_link_invitation_proto_rawDescGZIP(), []int{1} } func (x *HotelCenterLinkInvitationIdentifier) GetHotelCenterId() int64 { @@ -245,7 +245,7 @@ type MerchantCenterLinkInvitationIdentifier struct { func (x *MerchantCenterLinkInvitationIdentifier) Reset() { *x = MerchantCenterLinkInvitationIdentifier{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_product_link_invitation_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_product_link_invitation_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -258,7 +258,7 @@ func (x *MerchantCenterLinkInvitationIdentifier) String() string { func (*MerchantCenterLinkInvitationIdentifier) ProtoMessage() {} func (x *MerchantCenterLinkInvitationIdentifier) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_product_link_invitation_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_product_link_invitation_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -271,7 +271,7 @@ func (x *MerchantCenterLinkInvitationIdentifier) ProtoReflect() protoreflect.Mes // Deprecated: Use MerchantCenterLinkInvitationIdentifier.ProtoReflect.Descriptor instead. func (*MerchantCenterLinkInvitationIdentifier) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_product_link_invitation_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_resources_product_link_invitation_proto_rawDescGZIP(), []int{2} } func (x *MerchantCenterLinkInvitationIdentifier) GetMerchantCenterId() int64 { @@ -295,7 +295,7 @@ type AdvertisingPartnerLinkInvitationIdentifier struct { func (x *AdvertisingPartnerLinkInvitationIdentifier) Reset() { *x = AdvertisingPartnerLinkInvitationIdentifier{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_product_link_invitation_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_product_link_invitation_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -308,7 +308,7 @@ func (x *AdvertisingPartnerLinkInvitationIdentifier) String() string { func (*AdvertisingPartnerLinkInvitationIdentifier) ProtoMessage() {} func (x *AdvertisingPartnerLinkInvitationIdentifier) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_product_link_invitation_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_product_link_invitation_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -321,7 +321,7 @@ func (x *AdvertisingPartnerLinkInvitationIdentifier) ProtoReflect() protoreflect // Deprecated: Use AdvertisingPartnerLinkInvitationIdentifier.ProtoReflect.Descriptor instead. func (*AdvertisingPartnerLinkInvitationIdentifier) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_product_link_invitation_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_resources_product_link_invitation_proto_rawDescGZIP(), []int{3} } func (x *AdvertisingPartnerLinkInvitationIdentifier) GetCustomer() string { @@ -331,21 +331,21 @@ func (x *AdvertisingPartnerLinkInvitationIdentifier) GetCustomer() string { return "" } -var File_google_ads_googleads_v16_resources_product_link_invitation_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_product_link_invitation_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_product_link_invitation_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_product_link_invitation_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, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 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, 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, 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, + 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, @@ -366,28 +366,28 @@ var file_google_ads_googleads_v16_resources_product_link_invitation_proto_rawDes 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x78, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 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, 0x50, 0x72, 0x6f, 0x64, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x60, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x06, 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, 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x71, 0x0a, 0x0c, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x18, 0x04, 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, 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, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x0b, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x12, 0x7a, 0x0a, 0x0f, 0x6d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x5f, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x18, 0x05, 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, 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, 0x4d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x42, 0x03, @@ -395,7 +395,7 @@ var file_google_ads_googleads_v16_resources_product_link_invitation_proto_rawDes 0x65, 0x6e, 0x74, 0x65, 0x72, 0x12, 0x86, 0x01, 0x0a, 0x13, 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x18, 0x07, 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, + 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, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, @@ -431,51 +431,51 @@ var file_google_ads_googleads_v16_resources_product_link_invitation_proto_rawDes 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x88, 0x01, 0x01, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x1a, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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_product_link_invitation_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_product_link_invitation_proto_rawDescData = file_google_ads_googleads_v16_resources_product_link_invitation_proto_rawDesc + file_google_ads_googleads_v17_resources_product_link_invitation_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_product_link_invitation_proto_rawDescData = file_google_ads_googleads_v17_resources_product_link_invitation_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_product_link_invitation_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_product_link_invitation_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_product_link_invitation_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_product_link_invitation_proto_rawDescData) +func file_google_ads_googleads_v17_resources_product_link_invitation_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_product_link_invitation_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_product_link_invitation_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_product_link_invitation_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_product_link_invitation_proto_rawDescData -} - -var file_google_ads_googleads_v16_resources_product_link_invitation_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_resources_product_link_invitation_proto_goTypes = []interface{}{ - (*ProductLinkInvitation)(nil), // 0: google.ads.googleads.v16.resources.ProductLinkInvitation - (*HotelCenterLinkInvitationIdentifier)(nil), // 1: google.ads.googleads.v16.resources.HotelCenterLinkInvitationIdentifier - (*MerchantCenterLinkInvitationIdentifier)(nil), // 2: google.ads.googleads.v16.resources.MerchantCenterLinkInvitationIdentifier - (*AdvertisingPartnerLinkInvitationIdentifier)(nil), // 3: google.ads.googleads.v16.resources.AdvertisingPartnerLinkInvitationIdentifier - (enums.ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus)(0), // 4: google.ads.googleads.v16.enums.ProductLinkInvitationStatusEnum.ProductLinkInvitationStatus - (enums.LinkedProductTypeEnum_LinkedProductType)(0), // 5: google.ads.googleads.v16.enums.LinkedProductTypeEnum.LinkedProductType -} -var file_google_ads_googleads_v16_resources_product_link_invitation_proto_depIdxs = []int32{ - 4, // 0: google.ads.googleads.v16.resources.ProductLinkInvitation.status:type_name -> google.ads.googleads.v16.enums.ProductLinkInvitationStatusEnum.ProductLinkInvitationStatus - 5, // 1: google.ads.googleads.v16.resources.ProductLinkInvitation.type:type_name -> google.ads.googleads.v16.enums.LinkedProductTypeEnum.LinkedProductType - 1, // 2: google.ads.googleads.v16.resources.ProductLinkInvitation.hotel_center:type_name -> google.ads.googleads.v16.resources.HotelCenterLinkInvitationIdentifier - 2, // 3: google.ads.googleads.v16.resources.ProductLinkInvitation.merchant_center:type_name -> google.ads.googleads.v16.resources.MerchantCenterLinkInvitationIdentifier - 3, // 4: google.ads.googleads.v16.resources.ProductLinkInvitation.advertising_partner:type_name -> google.ads.googleads.v16.resources.AdvertisingPartnerLinkInvitationIdentifier + return file_google_ads_googleads_v17_resources_product_link_invitation_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_product_link_invitation_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_resources_product_link_invitation_proto_goTypes = []interface{}{ + (*ProductLinkInvitation)(nil), // 0: google.ads.googleads.v17.resources.ProductLinkInvitation + (*HotelCenterLinkInvitationIdentifier)(nil), // 1: google.ads.googleads.v17.resources.HotelCenterLinkInvitationIdentifier + (*MerchantCenterLinkInvitationIdentifier)(nil), // 2: google.ads.googleads.v17.resources.MerchantCenterLinkInvitationIdentifier + (*AdvertisingPartnerLinkInvitationIdentifier)(nil), // 3: google.ads.googleads.v17.resources.AdvertisingPartnerLinkInvitationIdentifier + (enums.ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus)(0), // 4: google.ads.googleads.v17.enums.ProductLinkInvitationStatusEnum.ProductLinkInvitationStatus + (enums.LinkedProductTypeEnum_LinkedProductType)(0), // 5: google.ads.googleads.v17.enums.LinkedProductTypeEnum.LinkedProductType +} +var file_google_ads_googleads_v17_resources_product_link_invitation_proto_depIdxs = []int32{ + 4, // 0: google.ads.googleads.v17.resources.ProductLinkInvitation.status:type_name -> google.ads.googleads.v17.enums.ProductLinkInvitationStatusEnum.ProductLinkInvitationStatus + 5, // 1: google.ads.googleads.v17.resources.ProductLinkInvitation.type:type_name -> google.ads.googleads.v17.enums.LinkedProductTypeEnum.LinkedProductType + 1, // 2: google.ads.googleads.v17.resources.ProductLinkInvitation.hotel_center:type_name -> google.ads.googleads.v17.resources.HotelCenterLinkInvitationIdentifier + 2, // 3: google.ads.googleads.v17.resources.ProductLinkInvitation.merchant_center:type_name -> google.ads.googleads.v17.resources.MerchantCenterLinkInvitationIdentifier + 3, // 4: google.ads.googleads.v17.resources.ProductLinkInvitation.advertising_partner:type_name -> google.ads.googleads.v17.resources.AdvertisingPartnerLinkInvitationIdentifier 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 @@ -483,13 +483,13 @@ var file_google_ads_googleads_v16_resources_product_link_invitation_proto_depIdx 0, // [0:5] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_product_link_invitation_proto_init() } -func file_google_ads_googleads_v16_resources_product_link_invitation_proto_init() { - if File_google_ads_googleads_v16_resources_product_link_invitation_proto != nil { +func init() { file_google_ads_googleads_v17_resources_product_link_invitation_proto_init() } +func file_google_ads_googleads_v17_resources_product_link_invitation_proto_init() { + if File_google_ads_googleads_v17_resources_product_link_invitation_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_product_link_invitation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_product_link_invitation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ProductLinkInvitation); i { case 0: return &v.state @@ -501,7 +501,7 @@ func file_google_ads_googleads_v16_resources_product_link_invitation_proto_init( return nil } } - file_google_ads_googleads_v16_resources_product_link_invitation_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_product_link_invitation_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*HotelCenterLinkInvitationIdentifier); i { case 0: return &v.state @@ -513,7 +513,7 @@ func file_google_ads_googleads_v16_resources_product_link_invitation_proto_init( return nil } } - file_google_ads_googleads_v16_resources_product_link_invitation_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_product_link_invitation_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MerchantCenterLinkInvitationIdentifier); i { case 0: return &v.state @@ -525,7 +525,7 @@ func file_google_ads_googleads_v16_resources_product_link_invitation_proto_init( return nil } } - file_google_ads_googleads_v16_resources_product_link_invitation_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_product_link_invitation_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdvertisingPartnerLinkInvitationIdentifier); i { case 0: return &v.state @@ -538,28 +538,28 @@ func file_google_ads_googleads_v16_resources_product_link_invitation_proto_init( } } } - file_google_ads_googleads_v16_resources_product_link_invitation_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_product_link_invitation_proto_msgTypes[0].OneofWrappers = []interface{}{ (*ProductLinkInvitation_HotelCenter)(nil), (*ProductLinkInvitation_MerchantCenter)(nil), (*ProductLinkInvitation_AdvertisingPartner)(nil), } - file_google_ads_googleads_v16_resources_product_link_invitation_proto_msgTypes[3].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_product_link_invitation_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_resources_product_link_invitation_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_product_link_invitation_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_product_link_invitation_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_product_link_invitation_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_product_link_invitation_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_product_link_invitation_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_product_link_invitation_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_product_link_invitation_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_product_link_invitation_proto = out.File - file_google_ads_googleads_v16_resources_product_link_invitation_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_product_link_invitation_proto_goTypes = nil - file_google_ads_googleads_v16_resources_product_link_invitation_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_product_link_invitation_proto = out.File + file_google_ads_googleads_v17_resources_product_link_invitation_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_product_link_invitation_proto_goTypes = nil + file_google_ads_googleads_v17_resources_product_link_invitation_proto_depIdxs = nil } diff --git a/resources/qualifying_question.pb.go b/resources/qualifying_question.pb.go index 6d701e14..8dc353ed 100644 --- a/resources/qualifying_question.pb.go +++ b/resources/qualifying_question.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/qualifying_question.proto +// source: google/ads/googleads/v17/resources/qualifying_question.proto package resources @@ -56,7 +56,7 @@ type QualifyingQuestion struct { func (x *QualifyingQuestion) Reset() { *x = QualifyingQuestion{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_qualifying_question_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_qualifying_question_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -69,7 +69,7 @@ func (x *QualifyingQuestion) String() string { func (*QualifyingQuestion) ProtoMessage() {} func (x *QualifyingQuestion) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_qualifying_question_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_qualifying_question_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 *QualifyingQuestion) ProtoReflect() protoreflect.Message { // Deprecated: Use QualifyingQuestion.ProtoReflect.Descriptor instead. func (*QualifyingQuestion) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_qualifying_question_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_qualifying_question_proto_rawDescGZIP(), []int{0} } func (x *QualifyingQuestion) GetResourceName() string { @@ -113,15 +113,15 @@ func (x *QualifyingQuestion) GetText() string { return "" } -var File_google_ads_googleads_v16_resources_qualifying_question_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_qualifying_question_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_qualifying_question_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_qualifying_question_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, 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, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x79, 0x69, 0x6e, 0x67, 0x5f, 0x71, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 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, 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, @@ -148,41 +148,41 @@ var file_google_ads_googleads_v16_resources_qualifying_question_proto_rawDesc = 0x69, 0x6e, 0x67, 0x5f, 0x71, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x89, 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, 0x17, 0x51, 0x75, 0x61, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x17, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x79, 0x69, 0x6e, 0x67, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 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, + 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, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, + 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, + 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, 0x70, 0x72, + 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_qualifying_question_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_qualifying_question_proto_rawDescData = file_google_ads_googleads_v16_resources_qualifying_question_proto_rawDesc + file_google_ads_googleads_v17_resources_qualifying_question_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_qualifying_question_proto_rawDescData = file_google_ads_googleads_v17_resources_qualifying_question_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_qualifying_question_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_qualifying_question_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_qualifying_question_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_qualifying_question_proto_rawDescData) +func file_google_ads_googleads_v17_resources_qualifying_question_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_qualifying_question_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_qualifying_question_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_qualifying_question_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_qualifying_question_proto_rawDescData + return file_google_ads_googleads_v17_resources_qualifying_question_proto_rawDescData } -var file_google_ads_googleads_v16_resources_qualifying_question_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_qualifying_question_proto_goTypes = []interface{}{ - (*QualifyingQuestion)(nil), // 0: google.ads.googleads.v16.resources.QualifyingQuestion +var file_google_ads_googleads_v17_resources_qualifying_question_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_qualifying_question_proto_goTypes = []interface{}{ + (*QualifyingQuestion)(nil), // 0: google.ads.googleads.v17.resources.QualifyingQuestion } -var file_google_ads_googleads_v16_resources_qualifying_question_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_qualifying_question_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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_resources_qualifying_question_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_qualifying_question_proto_init() } -func file_google_ads_googleads_v16_resources_qualifying_question_proto_init() { - if File_google_ads_googleads_v16_resources_qualifying_question_proto != nil { +func init() { file_google_ads_googleads_v17_resources_qualifying_question_proto_init() } +func file_google_ads_googleads_v17_resources_qualifying_question_proto_init() { + if File_google_ads_googleads_v17_resources_qualifying_question_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_qualifying_question_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_qualifying_question_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*QualifyingQuestion); i { case 0: return &v.state @@ -213,18 +213,18 @@ func file_google_ads_googleads_v16_resources_qualifying_question_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_qualifying_question_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_qualifying_question_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_qualifying_question_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_qualifying_question_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_qualifying_question_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_qualifying_question_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_qualifying_question_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_qualifying_question_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_qualifying_question_proto = out.File - file_google_ads_googleads_v16_resources_qualifying_question_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_qualifying_question_proto_goTypes = nil - file_google_ads_googleads_v16_resources_qualifying_question_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_qualifying_question_proto = out.File + file_google_ads_googleads_v17_resources_qualifying_question_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_qualifying_question_proto_goTypes = nil + file_google_ads_googleads_v17_resources_qualifying_question_proto_depIdxs = nil } diff --git a/resources/recommendation.pb.go b/resources/recommendation.pb.go index d557fde7..165f166d 100644 --- a/resources/recommendation.pb.go +++ b/resources/recommendation.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/recommendation.proto +// source: google/ads/googleads/v17/resources/recommendation.proto package resources @@ -48,7 +48,7 @@ type Recommendation struct { // `customers/{customer_id}/recommendations/{recommendation_id}` ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` // Output only. The type of recommendation. - Type enums.RecommendationTypeEnum_RecommendationType `protobuf:"varint,2,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.RecommendationTypeEnum_RecommendationType" json:"type,omitempty"` + Type enums.RecommendationTypeEnum_RecommendationType `protobuf:"varint,2,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.RecommendationTypeEnum_RecommendationType" json:"type,omitempty"` // Output only. The impact on account performance as a result of applying the // recommendation. Impact *Recommendation_RecommendationImpact `protobuf:"bytes,3,opt,name=impact,proto3" json:"impact,omitempty"` @@ -160,7 +160,7 @@ type Recommendation struct { func (x *Recommendation) Reset() { *x = Recommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -173,7 +173,7 @@ func (x *Recommendation) String() string { func (*Recommendation) ProtoMessage() {} func (x *Recommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -186,7 +186,7 @@ func (x *Recommendation) ProtoReflect() protoreflect.Message { // Deprecated: Use Recommendation.ProtoReflect.Descriptor instead. func (*Recommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0} } func (x *Recommendation) GetResourceName() string { @@ -1050,7 +1050,7 @@ type Recommendation_MerchantInfo struct { func (x *Recommendation_MerchantInfo) Reset() { *x = Recommendation_MerchantInfo{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1063,7 +1063,7 @@ func (x *Recommendation_MerchantInfo) String() string { func (*Recommendation_MerchantInfo) ProtoMessage() {} func (x *Recommendation_MerchantInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1076,7 +1076,7 @@ func (x *Recommendation_MerchantInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use Recommendation_MerchantInfo.ProtoReflect.Descriptor instead. func (*Recommendation_MerchantInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 0} } func (x *Recommendation_MerchantInfo) GetId() int64 { @@ -1116,7 +1116,7 @@ type Recommendation_RecommendationImpact struct { func (x *Recommendation_RecommendationImpact) Reset() { *x = Recommendation_RecommendationImpact{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1129,7 +1129,7 @@ func (x *Recommendation_RecommendationImpact) String() string { func (*Recommendation_RecommendationImpact) ProtoMessage() {} func (x *Recommendation_RecommendationImpact) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1142,7 +1142,7 @@ func (x *Recommendation_RecommendationImpact) ProtoReflect() protoreflect.Messag // Deprecated: Use Recommendation_RecommendationImpact.ProtoReflect.Descriptor instead. func (*Recommendation_RecommendationImpact) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 1} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 1} } func (x *Recommendation_RecommendationImpact) GetBaseMetrics() *Recommendation_RecommendationMetrics { @@ -1184,7 +1184,7 @@ type Recommendation_RecommendationMetrics struct { func (x *Recommendation_RecommendationMetrics) Reset() { *x = Recommendation_RecommendationMetrics{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1197,7 +1197,7 @@ func (x *Recommendation_RecommendationMetrics) String() string { func (*Recommendation_RecommendationMetrics) ProtoMessage() {} func (x *Recommendation_RecommendationMetrics) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1210,7 +1210,7 @@ func (x *Recommendation_RecommendationMetrics) ProtoReflect() protoreflect.Messa // Deprecated: Use Recommendation_RecommendationMetrics.ProtoReflect.Descriptor instead. func (*Recommendation_RecommendationMetrics) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 2} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 2} } func (x *Recommendation_RecommendationMetrics) GetImpressions() float64 { @@ -1273,7 +1273,7 @@ type Recommendation_CampaignBudgetRecommendation struct { func (x *Recommendation_CampaignBudgetRecommendation) Reset() { *x = Recommendation_CampaignBudgetRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1286,7 +1286,7 @@ func (x *Recommendation_CampaignBudgetRecommendation) String() string { func (*Recommendation_CampaignBudgetRecommendation) ProtoMessage() {} func (x *Recommendation_CampaignBudgetRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1299,7 +1299,7 @@ func (x *Recommendation_CampaignBudgetRecommendation) ProtoReflect() protoreflec // Deprecated: Use Recommendation_CampaignBudgetRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_CampaignBudgetRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 3} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 3} } func (x *Recommendation_CampaignBudgetRecommendation) GetCurrentBudgetAmountMicros() int64 { @@ -1341,7 +1341,7 @@ type Recommendation_KeywordRecommendation struct { func (x *Recommendation_KeywordRecommendation) Reset() { *x = Recommendation_KeywordRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1354,7 +1354,7 @@ func (x *Recommendation_KeywordRecommendation) String() string { func (*Recommendation_KeywordRecommendation) ProtoMessage() {} func (x *Recommendation_KeywordRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1367,7 +1367,7 @@ func (x *Recommendation_KeywordRecommendation) ProtoReflect() protoreflect.Messa // Deprecated: Use Recommendation_KeywordRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_KeywordRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 4} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 4} } func (x *Recommendation_KeywordRecommendation) GetKeyword() *common.KeywordInfo { @@ -1410,7 +1410,7 @@ type Recommendation_TextAdRecommendation struct { func (x *Recommendation_TextAdRecommendation) Reset() { *x = Recommendation_TextAdRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1423,7 +1423,7 @@ func (x *Recommendation_TextAdRecommendation) String() string { func (*Recommendation_TextAdRecommendation) ProtoMessage() {} func (x *Recommendation_TextAdRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[6] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1436,7 +1436,7 @@ func (x *Recommendation_TextAdRecommendation) ProtoReflect() protoreflect.Messag // Deprecated: Use Recommendation_TextAdRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_TextAdRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 5} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 5} } func (x *Recommendation_TextAdRecommendation) GetAd() *Ad { @@ -1477,7 +1477,7 @@ type Recommendation_TargetCpaOptInRecommendation struct { func (x *Recommendation_TargetCpaOptInRecommendation) Reset() { *x = Recommendation_TargetCpaOptInRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1490,7 +1490,7 @@ func (x *Recommendation_TargetCpaOptInRecommendation) String() string { func (*Recommendation_TargetCpaOptInRecommendation) ProtoMessage() {} func (x *Recommendation_TargetCpaOptInRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[7] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1503,7 +1503,7 @@ func (x *Recommendation_TargetCpaOptInRecommendation) ProtoReflect() protoreflec // Deprecated: Use Recommendation_TargetCpaOptInRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_TargetCpaOptInRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 6} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 6} } func (x *Recommendation_TargetCpaOptInRecommendation) GetOptions() []*Recommendation_TargetCpaOptInRecommendation_TargetCpaOptInRecommendationOption { @@ -1533,7 +1533,7 @@ type Recommendation_MaximizeConversionsOptInRecommendation struct { func (x *Recommendation_MaximizeConversionsOptInRecommendation) Reset() { *x = Recommendation_MaximizeConversionsOptInRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[8] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1546,7 +1546,7 @@ func (x *Recommendation_MaximizeConversionsOptInRecommendation) String() string func (*Recommendation_MaximizeConversionsOptInRecommendation) ProtoMessage() {} func (x *Recommendation_MaximizeConversionsOptInRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[8] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[8] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1559,7 +1559,7 @@ func (x *Recommendation_MaximizeConversionsOptInRecommendation) ProtoReflect() p // Deprecated: Use Recommendation_MaximizeConversionsOptInRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_MaximizeConversionsOptInRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 7} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 7} } func (x *Recommendation_MaximizeConversionsOptInRecommendation) GetRecommendedBudgetAmountMicros() int64 { @@ -1579,7 +1579,7 @@ type Recommendation_EnhancedCpcOptInRecommendation struct { func (x *Recommendation_EnhancedCpcOptInRecommendation) Reset() { *x = Recommendation_EnhancedCpcOptInRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[9] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1592,7 +1592,7 @@ func (x *Recommendation_EnhancedCpcOptInRecommendation) String() string { func (*Recommendation_EnhancedCpcOptInRecommendation) ProtoMessage() {} func (x *Recommendation_EnhancedCpcOptInRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[9] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[9] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1605,7 +1605,7 @@ func (x *Recommendation_EnhancedCpcOptInRecommendation) ProtoReflect() protorefl // Deprecated: Use Recommendation_EnhancedCpcOptInRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_EnhancedCpcOptInRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 8} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 8} } // The Search Partners Opt-In recommendation. @@ -1618,7 +1618,7 @@ type Recommendation_SearchPartnersOptInRecommendation struct { func (x *Recommendation_SearchPartnersOptInRecommendation) Reset() { *x = Recommendation_SearchPartnersOptInRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[10] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1631,7 +1631,7 @@ func (x *Recommendation_SearchPartnersOptInRecommendation) String() string { func (*Recommendation_SearchPartnersOptInRecommendation) ProtoMessage() {} func (x *Recommendation_SearchPartnersOptInRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[10] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[10] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1644,7 +1644,7 @@ func (x *Recommendation_SearchPartnersOptInRecommendation) ProtoReflect() protor // Deprecated: Use Recommendation_SearchPartnersOptInRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_SearchPartnersOptInRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 9} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 9} } // The Maximize Clicks opt-in recommendation. @@ -1661,7 +1661,7 @@ type Recommendation_MaximizeClicksOptInRecommendation struct { func (x *Recommendation_MaximizeClicksOptInRecommendation) Reset() { *x = Recommendation_MaximizeClicksOptInRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[11] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1674,7 +1674,7 @@ func (x *Recommendation_MaximizeClicksOptInRecommendation) String() string { func (*Recommendation_MaximizeClicksOptInRecommendation) ProtoMessage() {} func (x *Recommendation_MaximizeClicksOptInRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[11] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[11] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1687,7 +1687,7 @@ func (x *Recommendation_MaximizeClicksOptInRecommendation) ProtoReflect() protor // Deprecated: Use Recommendation_MaximizeClicksOptInRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_MaximizeClicksOptInRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 10} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 10} } func (x *Recommendation_MaximizeClicksOptInRecommendation) GetRecommendedBudgetAmountMicros() int64 { @@ -1707,7 +1707,7 @@ type Recommendation_OptimizeAdRotationRecommendation struct { func (x *Recommendation_OptimizeAdRotationRecommendation) Reset() { *x = Recommendation_OptimizeAdRotationRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[12] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1720,7 +1720,7 @@ func (x *Recommendation_OptimizeAdRotationRecommendation) String() string { func (*Recommendation_OptimizeAdRotationRecommendation) ProtoMessage() {} func (x *Recommendation_OptimizeAdRotationRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[12] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[12] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1733,7 +1733,7 @@ func (x *Recommendation_OptimizeAdRotationRecommendation) ProtoReflect() protore // Deprecated: Use Recommendation_OptimizeAdRotationRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_OptimizeAdRotationRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 11} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 11} } // The callout asset recommendation. @@ -1753,7 +1753,7 @@ type Recommendation_CalloutAssetRecommendation struct { func (x *Recommendation_CalloutAssetRecommendation) Reset() { *x = Recommendation_CalloutAssetRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[13] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1766,7 +1766,7 @@ func (x *Recommendation_CalloutAssetRecommendation) String() string { func (*Recommendation_CalloutAssetRecommendation) ProtoMessage() {} func (x *Recommendation_CalloutAssetRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[13] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[13] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1779,7 +1779,7 @@ func (x *Recommendation_CalloutAssetRecommendation) ProtoReflect() protoreflect. // Deprecated: Use Recommendation_CalloutAssetRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_CalloutAssetRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 12} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 12} } func (x *Recommendation_CalloutAssetRecommendation) GetRecommendedCampaignCalloutAssets() []*Asset { @@ -1811,7 +1811,7 @@ type Recommendation_SitelinkAssetRecommendation struct { func (x *Recommendation_SitelinkAssetRecommendation) Reset() { *x = Recommendation_SitelinkAssetRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[14] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1824,7 +1824,7 @@ func (x *Recommendation_SitelinkAssetRecommendation) String() string { func (*Recommendation_SitelinkAssetRecommendation) ProtoMessage() {} func (x *Recommendation_SitelinkAssetRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[14] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[14] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1837,7 +1837,7 @@ func (x *Recommendation_SitelinkAssetRecommendation) ProtoReflect() protoreflect // Deprecated: Use Recommendation_SitelinkAssetRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_SitelinkAssetRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 13} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 13} } func (x *Recommendation_SitelinkAssetRecommendation) GetRecommendedCampaignSitelinkAssets() []*Asset { @@ -1864,7 +1864,7 @@ type Recommendation_CallAssetRecommendation struct { func (x *Recommendation_CallAssetRecommendation) Reset() { *x = Recommendation_CallAssetRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[15] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1877,7 +1877,7 @@ func (x *Recommendation_CallAssetRecommendation) String() string { func (*Recommendation_CallAssetRecommendation) ProtoMessage() {} func (x *Recommendation_CallAssetRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[15] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[15] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1890,7 +1890,7 @@ func (x *Recommendation_CallAssetRecommendation) ProtoReflect() protoreflect.Mes // Deprecated: Use Recommendation_CallAssetRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_CallAssetRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 14} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 14} } // The keyword match type recommendation. @@ -1903,13 +1903,13 @@ type Recommendation_KeywordMatchTypeRecommendation struct { // broad. Keyword *common.KeywordInfo `protobuf:"bytes,1,opt,name=keyword,proto3" json:"keyword,omitempty"` // Output only. The recommended new match type. - RecommendedMatchType enums.KeywordMatchTypeEnum_KeywordMatchType `protobuf:"varint,2,opt,name=recommended_match_type,json=recommendedMatchType,proto3,enum=google.ads.googleads.v16.enums.KeywordMatchTypeEnum_KeywordMatchType" json:"recommended_match_type,omitempty"` + RecommendedMatchType enums.KeywordMatchTypeEnum_KeywordMatchType `protobuf:"varint,2,opt,name=recommended_match_type,json=recommendedMatchType,proto3,enum=google.ads.googleads.v17.enums.KeywordMatchTypeEnum_KeywordMatchType" json:"recommended_match_type,omitempty"` } func (x *Recommendation_KeywordMatchTypeRecommendation) Reset() { *x = Recommendation_KeywordMatchTypeRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[16] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1922,7 +1922,7 @@ func (x *Recommendation_KeywordMatchTypeRecommendation) String() string { func (*Recommendation_KeywordMatchTypeRecommendation) ProtoMessage() {} func (x *Recommendation_KeywordMatchTypeRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[16] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[16] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1935,7 +1935,7 @@ func (x *Recommendation_KeywordMatchTypeRecommendation) ProtoReflect() protorefl // Deprecated: Use Recommendation_KeywordMatchTypeRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_KeywordMatchTypeRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 15} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 15} } func (x *Recommendation_KeywordMatchTypeRecommendation) GetKeyword() *common.KeywordInfo { @@ -1967,7 +1967,7 @@ type Recommendation_MoveUnusedBudgetRecommendation struct { func (x *Recommendation_MoveUnusedBudgetRecommendation) Reset() { *x = Recommendation_MoveUnusedBudgetRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[17] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1980,7 +1980,7 @@ func (x *Recommendation_MoveUnusedBudgetRecommendation) String() string { func (*Recommendation_MoveUnusedBudgetRecommendation) ProtoMessage() {} func (x *Recommendation_MoveUnusedBudgetRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[17] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[17] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1993,7 +1993,7 @@ func (x *Recommendation_MoveUnusedBudgetRecommendation) ProtoReflect() protorefl // Deprecated: Use Recommendation_MoveUnusedBudgetRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_MoveUnusedBudgetRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 16} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 16} } func (x *Recommendation_MoveUnusedBudgetRecommendation) GetExcessCampaignBudget() string { @@ -2028,7 +2028,7 @@ type Recommendation_TargetRoasOptInRecommendation struct { func (x *Recommendation_TargetRoasOptInRecommendation) Reset() { *x = Recommendation_TargetRoasOptInRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[18] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2041,7 +2041,7 @@ func (x *Recommendation_TargetRoasOptInRecommendation) String() string { func (*Recommendation_TargetRoasOptInRecommendation) ProtoMessage() {} func (x *Recommendation_TargetRoasOptInRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[18] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[18] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2054,7 +2054,7 @@ func (x *Recommendation_TargetRoasOptInRecommendation) ProtoReflect() protorefle // Deprecated: Use Recommendation_TargetRoasOptInRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_TargetRoasOptInRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 17} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 17} } func (x *Recommendation_TargetRoasOptInRecommendation) GetRecommendedTargetRoas() float64 { @@ -2087,7 +2087,7 @@ type Recommendation_ResponsiveSearchAdAssetRecommendation struct { func (x *Recommendation_ResponsiveSearchAdAssetRecommendation) Reset() { *x = Recommendation_ResponsiveSearchAdAssetRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[19] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2100,7 +2100,7 @@ func (x *Recommendation_ResponsiveSearchAdAssetRecommendation) String() string { func (*Recommendation_ResponsiveSearchAdAssetRecommendation) ProtoMessage() {} func (x *Recommendation_ResponsiveSearchAdAssetRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[19] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[19] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2113,7 +2113,7 @@ func (x *Recommendation_ResponsiveSearchAdAssetRecommendation) ProtoReflect() pr // Deprecated: Use Recommendation_ResponsiveSearchAdAssetRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_ResponsiveSearchAdAssetRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 18} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 18} } func (x *Recommendation_ResponsiveSearchAdAssetRecommendation) GetCurrentAd() *Ad { @@ -2145,7 +2145,7 @@ type Recommendation_ResponsiveSearchAdImproveAdStrengthRecommendation struct { func (x *Recommendation_ResponsiveSearchAdImproveAdStrengthRecommendation) Reset() { *x = Recommendation_ResponsiveSearchAdImproveAdStrengthRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[20] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[20] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2158,7 +2158,7 @@ func (x *Recommendation_ResponsiveSearchAdImproveAdStrengthRecommendation) Strin func (*Recommendation_ResponsiveSearchAdImproveAdStrengthRecommendation) ProtoMessage() {} func (x *Recommendation_ResponsiveSearchAdImproveAdStrengthRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[20] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[20] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2171,7 +2171,7 @@ func (x *Recommendation_ResponsiveSearchAdImproveAdStrengthRecommendation) Proto // Deprecated: Use Recommendation_ResponsiveSearchAdImproveAdStrengthRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_ResponsiveSearchAdImproveAdStrengthRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 19} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 19} } func (x *Recommendation_ResponsiveSearchAdImproveAdStrengthRecommendation) GetCurrentAd() *Ad { @@ -2201,7 +2201,7 @@ type Recommendation_ResponsiveSearchAdRecommendation struct { func (x *Recommendation_ResponsiveSearchAdRecommendation) Reset() { *x = Recommendation_ResponsiveSearchAdRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[21] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[21] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2214,7 +2214,7 @@ func (x *Recommendation_ResponsiveSearchAdRecommendation) String() string { func (*Recommendation_ResponsiveSearchAdRecommendation) ProtoMessage() {} func (x *Recommendation_ResponsiveSearchAdRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[21] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[21] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2227,7 +2227,7 @@ func (x *Recommendation_ResponsiveSearchAdRecommendation) ProtoReflect() protore // Deprecated: Use Recommendation_ResponsiveSearchAdRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_ResponsiveSearchAdRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 20} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 20} } func (x *Recommendation_ResponsiveSearchAdRecommendation) GetAd() *Ad { @@ -2260,7 +2260,7 @@ type Recommendation_UseBroadMatchKeywordRecommendation struct { func (x *Recommendation_UseBroadMatchKeywordRecommendation) Reset() { *x = Recommendation_UseBroadMatchKeywordRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[22] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2273,7 +2273,7 @@ func (x *Recommendation_UseBroadMatchKeywordRecommendation) String() string { func (*Recommendation_UseBroadMatchKeywordRecommendation) ProtoMessage() {} func (x *Recommendation_UseBroadMatchKeywordRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[22] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[22] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2286,7 +2286,7 @@ func (x *Recommendation_UseBroadMatchKeywordRecommendation) ProtoReflect() proto // Deprecated: Use Recommendation_UseBroadMatchKeywordRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_UseBroadMatchKeywordRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 21} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 21} } func (x *Recommendation_UseBroadMatchKeywordRecommendation) GetKeyword() []*common.KeywordInfo { @@ -2341,7 +2341,7 @@ type Recommendation_UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation s func (x *Recommendation_UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation) Reset() { *x = Recommendation_UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[23] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[23] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2354,7 +2354,7 @@ func (x *Recommendation_UpgradeSmartShoppingCampaignToPerformanceMaxRecommendati func (*Recommendation_UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation) ProtoMessage() {} func (x *Recommendation_UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[23] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[23] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2367,7 +2367,7 @@ func (x *Recommendation_UpgradeSmartShoppingCampaignToPerformanceMaxRecommendati // Deprecated: Use Recommendation_UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 22} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 22} } func (x *Recommendation_UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation) GetMerchantId() int64 { @@ -2401,7 +2401,7 @@ type Recommendation_RaiseTargetCpaBidTooLowRecommendation struct { func (x *Recommendation_RaiseTargetCpaBidTooLowRecommendation) Reset() { *x = Recommendation_RaiseTargetCpaBidTooLowRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[24] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[24] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2414,7 +2414,7 @@ func (x *Recommendation_RaiseTargetCpaBidTooLowRecommendation) String() string { func (*Recommendation_RaiseTargetCpaBidTooLowRecommendation) ProtoMessage() {} func (x *Recommendation_RaiseTargetCpaBidTooLowRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[24] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[24] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2427,7 +2427,7 @@ func (x *Recommendation_RaiseTargetCpaBidTooLowRecommendation) ProtoReflect() pr // Deprecated: Use Recommendation_RaiseTargetCpaBidTooLowRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_RaiseTargetCpaBidTooLowRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 23} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 23} } func (x *Recommendation_RaiseTargetCpaBidTooLowRecommendation) GetRecommendedTargetMultiplier() float64 { @@ -2454,7 +2454,7 @@ type Recommendation_DisplayExpansionOptInRecommendation struct { func (x *Recommendation_DisplayExpansionOptInRecommendation) Reset() { *x = Recommendation_DisplayExpansionOptInRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[25] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[25] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2467,7 +2467,7 @@ func (x *Recommendation_DisplayExpansionOptInRecommendation) String() string { func (*Recommendation_DisplayExpansionOptInRecommendation) ProtoMessage() {} func (x *Recommendation_DisplayExpansionOptInRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[25] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[25] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2480,7 +2480,7 @@ func (x *Recommendation_DisplayExpansionOptInRecommendation) ProtoReflect() prot // Deprecated: Use Recommendation_DisplayExpansionOptInRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_DisplayExpansionOptInRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 24} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 24} } // The Upgrade Local campaign to Performance Max campaign recommendation. @@ -2493,7 +2493,7 @@ type Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation struct { func (x *Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation) Reset() { *x = Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[26] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[26] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2506,7 +2506,7 @@ func (x *Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation) Stri func (*Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation) ProtoMessage() {} func (x *Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[26] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[26] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2519,7 +2519,7 @@ func (x *Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation) Prot // Deprecated: Use Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 25} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 25} } // The forecasting set target ROAS recommendation. @@ -2538,7 +2538,7 @@ type Recommendation_ForecastingSetTargetRoasRecommendation struct { func (x *Recommendation_ForecastingSetTargetRoasRecommendation) Reset() { *x = Recommendation_ForecastingSetTargetRoasRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[27] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[27] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2551,7 +2551,7 @@ func (x *Recommendation_ForecastingSetTargetRoasRecommendation) String() string func (*Recommendation_ForecastingSetTargetRoasRecommendation) ProtoMessage() {} func (x *Recommendation_ForecastingSetTargetRoasRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[27] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[27] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2564,7 +2564,7 @@ func (x *Recommendation_ForecastingSetTargetRoasRecommendation) ProtoReflect() p // Deprecated: Use Recommendation_ForecastingSetTargetRoasRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_ForecastingSetTargetRoasRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 26} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 26} } func (x *Recommendation_ForecastingSetTargetRoasRecommendation) GetRecommendedTargetRoas() float64 { @@ -2602,7 +2602,7 @@ type Recommendation_ShoppingOfferAttributeRecommendation struct { func (x *Recommendation_ShoppingOfferAttributeRecommendation) Reset() { *x = Recommendation_ShoppingOfferAttributeRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[28] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[28] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2615,7 +2615,7 @@ func (x *Recommendation_ShoppingOfferAttributeRecommendation) String() string { func (*Recommendation_ShoppingOfferAttributeRecommendation) ProtoMessage() {} func (x *Recommendation_ShoppingOfferAttributeRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[28] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[28] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2628,7 +2628,7 @@ func (x *Recommendation_ShoppingOfferAttributeRecommendation) ProtoReflect() pro // Deprecated: Use Recommendation_ShoppingOfferAttributeRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_ShoppingOfferAttributeRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 27} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 27} } func (x *Recommendation_ShoppingOfferAttributeRecommendation) GetMerchant() *Recommendation_MerchantInfo { @@ -2680,7 +2680,7 @@ type Recommendation_ShoppingFixDisapprovedProductsRecommendation struct { func (x *Recommendation_ShoppingFixDisapprovedProductsRecommendation) Reset() { *x = Recommendation_ShoppingFixDisapprovedProductsRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[29] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[29] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2693,7 +2693,7 @@ func (x *Recommendation_ShoppingFixDisapprovedProductsRecommendation) String() s func (*Recommendation_ShoppingFixDisapprovedProductsRecommendation) ProtoMessage() {} func (x *Recommendation_ShoppingFixDisapprovedProductsRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[29] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[29] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2706,7 +2706,7 @@ func (x *Recommendation_ShoppingFixDisapprovedProductsRecommendation) ProtoRefle // Deprecated: Use Recommendation_ShoppingFixDisapprovedProductsRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_ShoppingFixDisapprovedProductsRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 28} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 28} } func (x *Recommendation_ShoppingFixDisapprovedProductsRecommendation) GetMerchant() *Recommendation_MerchantInfo { @@ -2755,7 +2755,7 @@ type Recommendation_ShoppingTargetAllOffersRecommendation struct { func (x *Recommendation_ShoppingTargetAllOffersRecommendation) Reset() { *x = Recommendation_ShoppingTargetAllOffersRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[30] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[30] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2768,7 +2768,7 @@ func (x *Recommendation_ShoppingTargetAllOffersRecommendation) String() string { func (*Recommendation_ShoppingTargetAllOffersRecommendation) ProtoMessage() {} func (x *Recommendation_ShoppingTargetAllOffersRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[30] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[30] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2781,7 +2781,7 @@ func (x *Recommendation_ShoppingTargetAllOffersRecommendation) ProtoReflect() pr // Deprecated: Use Recommendation_ShoppingTargetAllOffersRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_ShoppingTargetAllOffersRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 29} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 29} } func (x *Recommendation_ShoppingTargetAllOffersRecommendation) GetMerchant() *Recommendation_MerchantInfo { @@ -2817,13 +2817,13 @@ type Recommendation_ShoppingAddProductsToCampaignRecommendation struct { // Output only. The feed label for the campaign. FeedLabel string `protobuf:"bytes,2,opt,name=feed_label,json=feedLabel,proto3" json:"feed_label,omitempty"` // Output only. The reason why no products are attached to the campaign. - Reason enums.ShoppingAddProductsToCampaignRecommendationEnum_Reason `protobuf:"varint,3,opt,name=reason,proto3,enum=google.ads.googleads.v16.enums.ShoppingAddProductsToCampaignRecommendationEnum_Reason" json:"reason,omitempty"` + Reason enums.ShoppingAddProductsToCampaignRecommendationEnum_Reason `protobuf:"varint,3,opt,name=reason,proto3,enum=google.ads.googleads.v17.enums.ShoppingAddProductsToCampaignRecommendationEnum_Reason" json:"reason,omitempty"` } func (x *Recommendation_ShoppingAddProductsToCampaignRecommendation) Reset() { *x = Recommendation_ShoppingAddProductsToCampaignRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[31] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[31] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2836,7 +2836,7 @@ func (x *Recommendation_ShoppingAddProductsToCampaignRecommendation) String() st func (*Recommendation_ShoppingAddProductsToCampaignRecommendation) ProtoMessage() {} func (x *Recommendation_ShoppingAddProductsToCampaignRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[31] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[31] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2849,7 +2849,7 @@ func (x *Recommendation_ShoppingAddProductsToCampaignRecommendation) ProtoReflec // Deprecated: Use Recommendation_ShoppingAddProductsToCampaignRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_ShoppingAddProductsToCampaignRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 30} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 30} } func (x *Recommendation_ShoppingAddProductsToCampaignRecommendation) GetMerchant() *Recommendation_MerchantInfo { @@ -2890,7 +2890,7 @@ type Recommendation_ShoppingMerchantCenterAccountSuspensionRecommendation struct func (x *Recommendation_ShoppingMerchantCenterAccountSuspensionRecommendation) Reset() { *x = Recommendation_ShoppingMerchantCenterAccountSuspensionRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[32] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[32] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2903,7 +2903,7 @@ func (x *Recommendation_ShoppingMerchantCenterAccountSuspensionRecommendation) S func (*Recommendation_ShoppingMerchantCenterAccountSuspensionRecommendation) ProtoMessage() {} func (x *Recommendation_ShoppingMerchantCenterAccountSuspensionRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[32] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[32] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2916,7 +2916,7 @@ func (x *Recommendation_ShoppingMerchantCenterAccountSuspensionRecommendation) P // Deprecated: Use Recommendation_ShoppingMerchantCenterAccountSuspensionRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_ShoppingMerchantCenterAccountSuspensionRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 31} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 31} } func (x *Recommendation_ShoppingMerchantCenterAccountSuspensionRecommendation) GetMerchant() *Recommendation_MerchantInfo { @@ -2950,7 +2950,7 @@ type Recommendation_ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMax func (x *Recommendation_ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMaxRecommendation) Reset() { *x = Recommendation_ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMaxRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[33] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[33] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2964,7 +2964,7 @@ func (*Recommendation_ShoppingMigrateRegularShoppingCampaignOffersToPerformanceM } func (x *Recommendation_ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMaxRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[33] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[33] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2977,7 +2977,7 @@ func (x *Recommendation_ShoppingMigrateRegularShoppingCampaignOffersToPerformanc // Deprecated: Use Recommendation_ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMaxRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMaxRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 32} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 32} } func (x *Recommendation_ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMaxRecommendation) GetMerchant() *Recommendation_MerchantInfo { @@ -3015,7 +3015,7 @@ type Recommendation_TargetAdjustmentInfo struct { func (x *Recommendation_TargetAdjustmentInfo) Reset() { *x = Recommendation_TargetAdjustmentInfo{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[34] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[34] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3028,7 +3028,7 @@ func (x *Recommendation_TargetAdjustmentInfo) String() string { func (*Recommendation_TargetAdjustmentInfo) ProtoMessage() {} func (x *Recommendation_TargetAdjustmentInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[34] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[34] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3041,7 +3041,7 @@ func (x *Recommendation_TargetAdjustmentInfo) ProtoReflect() protoreflect.Messag // Deprecated: Use Recommendation_TargetAdjustmentInfo.ProtoReflect.Descriptor instead. func (*Recommendation_TargetAdjustmentInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 33} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 33} } func (x *Recommendation_TargetAdjustmentInfo) GetSharedSet() string { @@ -3076,13 +3076,13 @@ type Recommendation_RaiseTargetCpaRecommendation struct { TargetAdjustment *Recommendation_TargetAdjustmentInfo `protobuf:"bytes,1,opt,name=target_adjustment,json=targetAdjustment,proto3" json:"target_adjustment,omitempty"` // Output only. Represents the goal towards which the bidding strategy // should optimize. Only populated for App Campaigns. - AppBiddingGoal *enums.AppBiddingGoalEnum_AppBiddingGoal `protobuf:"varint,2,opt,name=app_bidding_goal,json=appBiddingGoal,proto3,enum=google.ads.googleads.v16.enums.AppBiddingGoalEnum_AppBiddingGoal,oneof" json:"app_bidding_goal,omitempty"` + AppBiddingGoal *enums.AppBiddingGoalEnum_AppBiddingGoal `protobuf:"varint,2,opt,name=app_bidding_goal,json=appBiddingGoal,proto3,enum=google.ads.googleads.v17.enums.AppBiddingGoalEnum_AppBiddingGoal,oneof" json:"app_bidding_goal,omitempty"` } func (x *Recommendation_RaiseTargetCpaRecommendation) Reset() { *x = Recommendation_RaiseTargetCpaRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[35] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[35] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3095,7 +3095,7 @@ func (x *Recommendation_RaiseTargetCpaRecommendation) String() string { func (*Recommendation_RaiseTargetCpaRecommendation) ProtoMessage() {} func (x *Recommendation_RaiseTargetCpaRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[35] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[35] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3108,7 +3108,7 @@ func (x *Recommendation_RaiseTargetCpaRecommendation) ProtoReflect() protoreflec // Deprecated: Use Recommendation_RaiseTargetCpaRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_RaiseTargetCpaRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 34} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 34} } func (x *Recommendation_RaiseTargetCpaRecommendation) GetTargetAdjustment() *Recommendation_TargetAdjustmentInfo { @@ -3139,7 +3139,7 @@ type Recommendation_LowerTargetRoasRecommendation struct { func (x *Recommendation_LowerTargetRoasRecommendation) Reset() { *x = Recommendation_LowerTargetRoasRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[36] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[36] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3152,7 +3152,7 @@ func (x *Recommendation_LowerTargetRoasRecommendation) String() string { func (*Recommendation_LowerTargetRoasRecommendation) ProtoMessage() {} func (x *Recommendation_LowerTargetRoasRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[36] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[36] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3165,7 +3165,7 @@ func (x *Recommendation_LowerTargetRoasRecommendation) ProtoReflect() protorefle // Deprecated: Use Recommendation_LowerTargetRoasRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_LowerTargetRoasRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 35} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 35} } func (x *Recommendation_LowerTargetRoasRecommendation) GetTargetAdjustment() *Recommendation_TargetAdjustmentInfo { @@ -3187,7 +3187,7 @@ type Recommendation_DynamicImageExtensionOptInRecommendation struct { func (x *Recommendation_DynamicImageExtensionOptInRecommendation) Reset() { *x = Recommendation_DynamicImageExtensionOptInRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[37] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[37] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3200,7 +3200,7 @@ func (x *Recommendation_DynamicImageExtensionOptInRecommendation) String() strin func (*Recommendation_DynamicImageExtensionOptInRecommendation) ProtoMessage() {} func (x *Recommendation_DynamicImageExtensionOptInRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[37] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[37] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3213,7 +3213,7 @@ func (x *Recommendation_DynamicImageExtensionOptInRecommendation) ProtoReflect() // Deprecated: Use Recommendation_DynamicImageExtensionOptInRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_DynamicImageExtensionOptInRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 36} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 36} } // A campaign budget shared amongst various budget recommendation types. @@ -3236,7 +3236,7 @@ type Recommendation_CampaignBudget struct { func (x *Recommendation_CampaignBudget) Reset() { *x = Recommendation_CampaignBudget{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[38] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[38] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3249,7 +3249,7 @@ func (x *Recommendation_CampaignBudget) String() string { func (*Recommendation_CampaignBudget) ProtoMessage() {} func (x *Recommendation_CampaignBudget) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[38] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[38] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3262,7 +3262,7 @@ func (x *Recommendation_CampaignBudget) ProtoReflect() protoreflect.Message { // Deprecated: Use Recommendation_CampaignBudget.ProtoReflect.Descriptor instead. func (*Recommendation_CampaignBudget) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 37} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 37} } func (x *Recommendation_CampaignBudget) GetCurrentAmountMicros() int64 { @@ -3296,7 +3296,7 @@ type Recommendation_PerformanceMaxOptInRecommendation struct { func (x *Recommendation_PerformanceMaxOptInRecommendation) Reset() { *x = Recommendation_PerformanceMaxOptInRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[39] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[39] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3309,7 +3309,7 @@ func (x *Recommendation_PerformanceMaxOptInRecommendation) String() string { func (*Recommendation_PerformanceMaxOptInRecommendation) ProtoMessage() {} func (x *Recommendation_PerformanceMaxOptInRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[39] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[39] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3322,7 +3322,7 @@ func (x *Recommendation_PerformanceMaxOptInRecommendation) ProtoReflect() protor // Deprecated: Use Recommendation_PerformanceMaxOptInRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_PerformanceMaxOptInRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 38} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 38} } // Recommendation to improve the asset group strength of a Performance Max @@ -3339,7 +3339,7 @@ type Recommendation_ImprovePerformanceMaxAdStrengthRecommendation struct { func (x *Recommendation_ImprovePerformanceMaxAdStrengthRecommendation) Reset() { *x = Recommendation_ImprovePerformanceMaxAdStrengthRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[40] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[40] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3352,7 +3352,7 @@ func (x *Recommendation_ImprovePerformanceMaxAdStrengthRecommendation) String() func (*Recommendation_ImprovePerformanceMaxAdStrengthRecommendation) ProtoMessage() {} func (x *Recommendation_ImprovePerformanceMaxAdStrengthRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[40] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[40] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3365,7 +3365,7 @@ func (x *Recommendation_ImprovePerformanceMaxAdStrengthRecommendation) ProtoRefl // Deprecated: Use Recommendation_ImprovePerformanceMaxAdStrengthRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_ImprovePerformanceMaxAdStrengthRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 39} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 39} } func (x *Recommendation_ImprovePerformanceMaxAdStrengthRecommendation) GetAssetGroup() string { @@ -3389,7 +3389,7 @@ type Recommendation_MigrateDynamicSearchAdsCampaignToPerformanceMaxRecommendatio func (x *Recommendation_MigrateDynamicSearchAdsCampaignToPerformanceMaxRecommendation) Reset() { *x = Recommendation_MigrateDynamicSearchAdsCampaignToPerformanceMaxRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[41] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[41] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3402,7 +3402,7 @@ func (x *Recommendation_MigrateDynamicSearchAdsCampaignToPerformanceMaxRecommend func (*Recommendation_MigrateDynamicSearchAdsCampaignToPerformanceMaxRecommendation) ProtoMessage() {} func (x *Recommendation_MigrateDynamicSearchAdsCampaignToPerformanceMaxRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[41] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[41] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3415,7 +3415,7 @@ func (x *Recommendation_MigrateDynamicSearchAdsCampaignToPerformanceMaxRecommend // Deprecated: Use Recommendation_MigrateDynamicSearchAdsCampaignToPerformanceMaxRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_MigrateDynamicSearchAdsCampaignToPerformanceMaxRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 40} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 40} } func (x *Recommendation_MigrateDynamicSearchAdsCampaignToPerformanceMaxRecommendation) GetApplyLink() string { @@ -3440,7 +3440,7 @@ type Recommendation_ForecastingSetTargetCpaRecommendation struct { func (x *Recommendation_ForecastingSetTargetCpaRecommendation) Reset() { *x = Recommendation_ForecastingSetTargetCpaRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[42] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[42] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3453,7 +3453,7 @@ func (x *Recommendation_ForecastingSetTargetCpaRecommendation) String() string { func (*Recommendation_ForecastingSetTargetCpaRecommendation) ProtoMessage() {} func (x *Recommendation_ForecastingSetTargetCpaRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[42] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[42] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3466,7 +3466,7 @@ func (x *Recommendation_ForecastingSetTargetCpaRecommendation) ProtoReflect() pr // Deprecated: Use Recommendation_ForecastingSetTargetCpaRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_ForecastingSetTargetCpaRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 41} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 41} } func (x *Recommendation_ForecastingSetTargetCpaRecommendation) GetRecommendedTargetCpaMicros() int64 { @@ -3493,7 +3493,7 @@ type Recommendation_MaximizeConversionValueOptInRecommendation struct { func (x *Recommendation_MaximizeConversionValueOptInRecommendation) Reset() { *x = Recommendation_MaximizeConversionValueOptInRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[43] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[43] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3506,7 +3506,7 @@ func (x *Recommendation_MaximizeConversionValueOptInRecommendation) String() str func (*Recommendation_MaximizeConversionValueOptInRecommendation) ProtoMessage() {} func (x *Recommendation_MaximizeConversionValueOptInRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[43] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[43] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3519,7 +3519,7 @@ func (x *Recommendation_MaximizeConversionValueOptInRecommendation) ProtoReflect // Deprecated: Use Recommendation_MaximizeConversionValueOptInRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_MaximizeConversionValueOptInRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 42} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 42} } // Recommendation to deploy Google Tag on more pages. @@ -3532,7 +3532,7 @@ type Recommendation_ImproveGoogleTagCoverageRecommendation struct { func (x *Recommendation_ImproveGoogleTagCoverageRecommendation) Reset() { *x = Recommendation_ImproveGoogleTagCoverageRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[44] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[44] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3545,7 +3545,7 @@ func (x *Recommendation_ImproveGoogleTagCoverageRecommendation) String() string func (*Recommendation_ImproveGoogleTagCoverageRecommendation) ProtoMessage() {} func (x *Recommendation_ImproveGoogleTagCoverageRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[44] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[44] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3558,7 +3558,7 @@ func (x *Recommendation_ImproveGoogleTagCoverageRecommendation) ProtoReflect() p // Deprecated: Use Recommendation_ImproveGoogleTagCoverageRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_ImproveGoogleTagCoverageRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 43} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 43} } // Recommendation to turn on Final URL expansion for your Performance Max @@ -3572,7 +3572,7 @@ type Recommendation_PerformanceMaxFinalUrlOptInRecommendation struct { func (x *Recommendation_PerformanceMaxFinalUrlOptInRecommendation) Reset() { *x = Recommendation_PerformanceMaxFinalUrlOptInRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[45] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[45] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3585,7 +3585,7 @@ func (x *Recommendation_PerformanceMaxFinalUrlOptInRecommendation) String() stri func (*Recommendation_PerformanceMaxFinalUrlOptInRecommendation) ProtoMessage() {} func (x *Recommendation_PerformanceMaxFinalUrlOptInRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[45] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[45] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3598,7 +3598,7 @@ func (x *Recommendation_PerformanceMaxFinalUrlOptInRecommendation) ProtoReflect( // Deprecated: Use Recommendation_PerformanceMaxFinalUrlOptInRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_PerformanceMaxFinalUrlOptInRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 44} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 44} } // The recommendation to update a customer list that hasn't been updated in @@ -3630,7 +3630,7 @@ type Recommendation_RefreshCustomerMatchListRecommendation struct { func (x *Recommendation_RefreshCustomerMatchListRecommendation) Reset() { *x = Recommendation_RefreshCustomerMatchListRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[46] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[46] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3643,7 +3643,7 @@ func (x *Recommendation_RefreshCustomerMatchListRecommendation) String() string func (*Recommendation_RefreshCustomerMatchListRecommendation) ProtoMessage() {} func (x *Recommendation_RefreshCustomerMatchListRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[46] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[46] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3656,7 +3656,7 @@ func (x *Recommendation_RefreshCustomerMatchListRecommendation) ProtoReflect() p // Deprecated: Use Recommendation_RefreshCustomerMatchListRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_RefreshCustomerMatchListRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 45} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 45} } func (x *Recommendation_RefreshCustomerMatchListRecommendation) GetUserListId() int64 { @@ -3716,7 +3716,7 @@ type Recommendation_AccountInfo struct { func (x *Recommendation_AccountInfo) Reset() { *x = Recommendation_AccountInfo{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[47] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[47] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3729,7 +3729,7 @@ func (x *Recommendation_AccountInfo) String() string { func (*Recommendation_AccountInfo) ProtoMessage() {} func (x *Recommendation_AccountInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[47] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[47] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3742,7 +3742,7 @@ func (x *Recommendation_AccountInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use Recommendation_AccountInfo.ProtoReflect.Descriptor instead. func (*Recommendation_AccountInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 46} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 46} } func (x *Recommendation_AccountInfo) GetCustomerId() int64 { @@ -3772,7 +3772,7 @@ type Recommendation_CustomAudienceOptInRecommendation struct { func (x *Recommendation_CustomAudienceOptInRecommendation) Reset() { *x = Recommendation_CustomAudienceOptInRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[48] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[48] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3785,7 +3785,7 @@ func (x *Recommendation_CustomAudienceOptInRecommendation) String() string { func (*Recommendation_CustomAudienceOptInRecommendation) ProtoMessage() {} func (x *Recommendation_CustomAudienceOptInRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[48] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[48] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3798,7 +3798,7 @@ func (x *Recommendation_CustomAudienceOptInRecommendation) ProtoReflect() protor // Deprecated: Use Recommendation_CustomAudienceOptInRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_CustomAudienceOptInRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 47} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 47} } func (x *Recommendation_CustomAudienceOptInRecommendation) GetKeywords() []*common.KeywordInfo { @@ -3818,7 +3818,7 @@ type Recommendation_LeadFormAssetRecommendation struct { func (x *Recommendation_LeadFormAssetRecommendation) Reset() { *x = Recommendation_LeadFormAssetRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[49] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[49] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3831,7 +3831,7 @@ func (x *Recommendation_LeadFormAssetRecommendation) String() string { func (*Recommendation_LeadFormAssetRecommendation) ProtoMessage() {} func (x *Recommendation_LeadFormAssetRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[49] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[49] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3844,7 +3844,7 @@ func (x *Recommendation_LeadFormAssetRecommendation) ProtoReflect() protoreflect // Deprecated: Use Recommendation_LeadFormAssetRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_LeadFormAssetRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 48} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 48} } // The improve Demand Gen ad strength recommendation. @@ -3856,7 +3856,7 @@ type Recommendation_ImproveDemandGenAdStrengthRecommendation struct { // Output only. The resource name of the ad that can be improved. Ad string `protobuf:"bytes,1,opt,name=ad,proto3" json:"ad,omitempty"` // Output only. The current ad strength. - AdStrength enums.AdStrengthEnum_AdStrength `protobuf:"varint,2,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,2,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. DemandGenAssetActionItems []string `protobuf:"bytes,3,rep,name=demand_gen_asset_action_items,json=demandGenAssetActionItems,proto3" json:"demand_gen_asset_action_items,omitempty"` } @@ -3864,7 +3864,7 @@ type Recommendation_ImproveDemandGenAdStrengthRecommendation struct { func (x *Recommendation_ImproveDemandGenAdStrengthRecommendation) Reset() { *x = Recommendation_ImproveDemandGenAdStrengthRecommendation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[50] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[50] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3877,7 +3877,7 @@ func (x *Recommendation_ImproveDemandGenAdStrengthRecommendation) String() strin func (*Recommendation_ImproveDemandGenAdStrengthRecommendation) ProtoMessage() {} func (x *Recommendation_ImproveDemandGenAdStrengthRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[50] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[50] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3890,7 +3890,7 @@ func (x *Recommendation_ImproveDemandGenAdStrengthRecommendation) ProtoReflect() // Deprecated: Use Recommendation_ImproveDemandGenAdStrengthRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_ImproveDemandGenAdStrengthRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 49} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 49} } func (x *Recommendation_ImproveDemandGenAdStrengthRecommendation) GetAd() string { @@ -3930,7 +3930,7 @@ type Recommendation_CampaignBudgetRecommendation_CampaignBudgetRecommendationOpt func (x *Recommendation_CampaignBudgetRecommendation_CampaignBudgetRecommendationOption) Reset() { *x = Recommendation_CampaignBudgetRecommendation_CampaignBudgetRecommendationOption{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[51] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[51] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3944,7 +3944,7 @@ func (*Recommendation_CampaignBudgetRecommendation_CampaignBudgetRecommendationO } func (x *Recommendation_CampaignBudgetRecommendation_CampaignBudgetRecommendationOption) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[51] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[51] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3957,7 +3957,7 @@ func (x *Recommendation_CampaignBudgetRecommendation_CampaignBudgetRecommendatio // Deprecated: Use Recommendation_CampaignBudgetRecommendation_CampaignBudgetRecommendationOption.ProtoReflect.Descriptor instead. func (*Recommendation_CampaignBudgetRecommendation_CampaignBudgetRecommendationOption) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 3, 0} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 3, 0} } func (x *Recommendation_CampaignBudgetRecommendation_CampaignBudgetRecommendationOption) GetBudgetAmountMicros() int64 { @@ -3990,7 +3990,7 @@ type Recommendation_KeywordRecommendation_SearchTerm struct { func (x *Recommendation_KeywordRecommendation_SearchTerm) Reset() { *x = Recommendation_KeywordRecommendation_SearchTerm{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[52] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[52] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4003,7 +4003,7 @@ func (x *Recommendation_KeywordRecommendation_SearchTerm) String() string { func (*Recommendation_KeywordRecommendation_SearchTerm) ProtoMessage() {} func (x *Recommendation_KeywordRecommendation_SearchTerm) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[52] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[52] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4016,7 +4016,7 @@ func (x *Recommendation_KeywordRecommendation_SearchTerm) ProtoReflect() protore // Deprecated: Use Recommendation_KeywordRecommendation_SearchTerm.ProtoReflect.Descriptor instead. func (*Recommendation_KeywordRecommendation_SearchTerm) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 4, 0} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 4, 0} } func (x *Recommendation_KeywordRecommendation_SearchTerm) GetText() string { @@ -4040,7 +4040,7 @@ type Recommendation_TargetCpaOptInRecommendation_TargetCpaOptInRecommendationOpt unknownFields protoimpl.UnknownFields // Output only. The goal achieved by this option. - Goal enums.TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal `protobuf:"varint,1,opt,name=goal,proto3,enum=google.ads.googleads.v16.enums.TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal" json:"goal,omitempty"` + Goal enums.TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal `protobuf:"varint,1,opt,name=goal,proto3,enum=google.ads.googleads.v17.enums.TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal" json:"goal,omitempty"` // Output only. Average CPA target. TargetCpaMicros *int64 `protobuf:"varint,5,opt,name=target_cpa_micros,json=targetCpaMicros,proto3,oneof" json:"target_cpa_micros,omitempty"` // Output only. The minimum campaign budget, in local currency for the @@ -4054,7 +4054,7 @@ type Recommendation_TargetCpaOptInRecommendation_TargetCpaOptInRecommendationOpt func (x *Recommendation_TargetCpaOptInRecommendation_TargetCpaOptInRecommendationOption) Reset() { *x = Recommendation_TargetCpaOptInRecommendation_TargetCpaOptInRecommendationOption{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[53] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[53] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4068,7 +4068,7 @@ func (*Recommendation_TargetCpaOptInRecommendation_TargetCpaOptInRecommendationO } func (x *Recommendation_TargetCpaOptInRecommendation_TargetCpaOptInRecommendationOption) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[53] + mi := &file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[53] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4081,7 +4081,7 @@ func (x *Recommendation_TargetCpaOptInRecommendation_TargetCpaOptInRecommendatio // Deprecated: Use Recommendation_TargetCpaOptInRecommendation_TargetCpaOptInRecommendationOption.ProtoReflect.Descriptor instead. func (*Recommendation_TargetCpaOptInRecommendation_TargetCpaOptInRecommendationOption) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP(), []int{0, 6, 0} + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP(), []int{0, 6, 0} } func (x *Recommendation_TargetCpaOptInRecommendation_TargetCpaOptInRecommendationOption) GetGoal() enums.TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal { @@ -4112,47 +4112,47 @@ func (x *Recommendation_TargetCpaOptInRecommendation_TargetCpaOptInRecommendatio return nil } -var File_google_ads_googleads_v16_resources_recommendation_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_recommendation_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_recommendation_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, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x2e, 0x67, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x6e, 0x2f, 0x63, + 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, 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, + 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, 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, + 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, 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, + 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, 0x6d, 0x61, 0x74, 0x63, 0x68, 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, + 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, 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, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, + 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, 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, + 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, 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, 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, 0x65, 0x73, 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 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, @@ -4166,14 +4166,14 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x62, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 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, + 0x67, 0x6f, 0x6f, 0x67, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x64, 0x0a, 0x06, 0x69, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x18, 0x03, 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, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x69, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x12, 0x5d, @@ -4203,7 +4203,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x6e, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 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, 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, @@ -4214,7 +4214,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x67, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, @@ -4224,7 +4224,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x08, 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x15, 0x6b, 0x65, 0x79, @@ -4232,7 +4232,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x6f, 0x6e, 0x12, 0x84, 0x01, 0x0a, 0x16, 0x74, 0x65, 0x78, 0x74, 0x5f, 0x61, 0x64, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x2e, 0x72, + 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x54, 0x65, 0x78, 0x74, 0x41, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, @@ -4241,7 +4241,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 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, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 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, + 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x61, 0x4f, 0x70, 0x74, 0x49, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, @@ -4252,7 +4252,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x6f, 0x6e, 0x73, 0x5f, 0x6f, 0x70, 0x74, 0x5f, 0x69, 0x6e, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 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, 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x78, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x4f, 0x70, 0x74, 0x49, 0x6e, 0x52, 0x65, 0x63, 0x6f, @@ -4264,7 +4264,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x6e, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0c, 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, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x45, 0x6e, 0x68, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x43, 0x70, 0x63, 0x4f, 0x70, 0x74, 0x49, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, @@ -4274,7 +4274,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x6e, 0x65, 0x72, 0x73, 0x5f, 0x6f, 0x70, 0x74, 0x5f, 0x69, 0x6e, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0b, 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, 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, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x73, 0x4f, 0x70, 0x74, 0x49, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, @@ -4285,7 +4285,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x69, 0x63, 0x6b, 0x73, 0x5f, 0x6f, 0x70, 0x74, 0x5f, 0x69, 0x6e, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0b, 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, 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, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x78, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x4f, 0x70, 0x74, 0x49, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, @@ -4296,7 +4296,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x5f, 0x72, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x10, 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, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x41, 0x64, 0x52, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, @@ -4307,7 +4307,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x79, 0x70, 0x65, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x14, 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, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x03, @@ -4317,7 +4317,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x65, 0x64, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x15, 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, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x76, 0x65, 0x55, 0x6e, 0x75, 0x73, 0x65, 0x64, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, @@ -4327,7 +4327,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x67, 0x65, 0x74, 0x5f, 0x72, 0x6f, 0x61, 0x73, 0x5f, 0x6f, 0x70, 0x74, 0x5f, 0x69, 0x6e, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x17, 0x20, 0x01, 0x28, 0x0b, 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, + 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x6f, 0x61, 0x73, 0x4f, 0x70, 0x74, 0x49, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, @@ -4338,7 +4338,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x63, 0x68, 0x5f, 0x61, 0x64, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x1c, 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, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, @@ -4349,7 +4349,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x67, 0x6e, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x0b, 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, 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, @@ -4360,7 +4360,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x74, 0x63, 0x68, 0x5f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x1e, 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, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x42, 0x72, 0x6f, 0x61, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, @@ -4372,7 +4372,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x74, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x1f, 0x20, 0x01, 0x28, 0x0b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, @@ -4385,7 +4385,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x65, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x20, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x6d, 0x2e, 0x67, 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x54, 0x6f, 0x50, 0x65, 0x72, @@ -4400,7 +4400,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x5f, 0x73, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x21, 0x20, 0x01, 0x28, 0x0b, 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, 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x64, 0x49, 0x6d, 0x70, 0x72, 0x6f, 0x76, 0x65, 0x41, 0x64, 0x53, 0x74, @@ -4413,7 +4413,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x70, 0x74, 0x5f, 0x69, 0x6e, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x22, 0x20, 0x01, 0x28, 0x0b, 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, 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, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, 0x49, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, @@ -4426,7 +4426,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x61, 0x78, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x23, 0x20, 0x01, 0x28, 0x0b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x54, 0x6f, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x61, 0x78, @@ -4439,7 +4439,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x69, 0x64, 0x5f, 0x74, 0x6f, 0x6f, 0x5f, 0x6c, 0x6f, 0x77, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x24, 0x20, 0x01, 0x28, 0x0b, 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, 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x69, 0x73, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x61, 0x42, 0x69, 0x64, 0x54, 0x6f, 0x6f, 0x4c, 0x6f, 0x77, 0x52, 0x65, 0x63, 0x6f, 0x6d, @@ -4451,7 +4451,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x65, 0x74, 0x5f, 0x72, 0x6f, 0x61, 0x73, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x25, 0x20, 0x01, 0x28, 0x0b, 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, 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x6f, 0x61, 0x73, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, @@ -4462,7 +4462,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x75, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x27, 0x20, 0x01, 0x28, 0x0b, 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, 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, @@ -4472,7 +4472,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x65, 0x74, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x28, 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, 0x52, 0x65, 0x63, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x1b, @@ -4481,7 +4481,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x29, 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, 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x03, @@ -4491,7 +4491,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x2a, 0x20, 0x01, 0x28, 0x0b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x4f, 0x66, 0x66, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, @@ -4502,7 +4502,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x2b, 0x20, 0x01, 0x28, 0x0b, 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, 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x4f, 0x66, 0x66, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, @@ -4513,7 +4513,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x65, 0x72, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x2c, 0x20, 0x01, 0x28, 0x0b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x4f, 0x66, 0x66, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, @@ -4523,7 +4523,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x61, 0x64, 0x64, 0x5f, 0x67, 0x74, 0x69, 0x6e, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x2d, 0x20, 0x01, 0x28, 0x0b, 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, 0x72, + 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x4f, 0x66, 0x66, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x52, 0x65, @@ -4535,7 +4535,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x69, 0x65, 0x72, 0x73, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x2e, 0x20, 0x01, 0x28, 0x0b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x4f, 0x66, 0x66, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, @@ -4546,7 +4546,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x5f, 0x61, 0x64, 0x64, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x2f, 0x20, 0x01, 0x28, 0x0b, 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, 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x4f, 0x66, 0x66, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, @@ -4558,7 +4558,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x69, 0x67, 0x6e, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x30, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x5e, 0x2e, 0x67, 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, 0x52, 0x65, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 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, @@ -4571,7 +4571,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x74, 0x73, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x31, 0x20, 0x01, 0x28, 0x0b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x46, 0x69, 0x78, 0x44, 0x69, 0x73, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x65, 0x64, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x73, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, @@ -4583,7 +4583,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x74, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x6f, 0x66, 0x66, 0x65, 0x72, 0x73, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x32, 0x20, 0x01, 0x28, 0x0b, 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, 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, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x41, 0x6c, 0x6c, 0x4f, 0x66, 0x66, 0x65, 0x72, 0x73, 0x52, 0x65, 0x63, @@ -4596,7 +4596,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x6e, 0x74, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x33, 0x20, 0x01, 0x28, 0x0b, 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, 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, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x4d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x41, 0x63, 0x63, 0x6f, @@ -4612,7 +4612,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x77, 0x61, 0x72, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x34, 0x20, 0x01, 0x28, 0x0b, 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, 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x4d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x53, 0x75, @@ -4629,7 +4629,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x6e, 0x63, 0x65, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x35, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x7d, 0x2e, 0x67, 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x67, 0x75, 0x6c, 0x61, 0x72, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x43, @@ -4646,7 +4646,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x6e, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x36, 0x20, 0x01, 0x28, 0x0b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, 0x49, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, @@ -4657,7 +4657,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x70, 0x61, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x37, 0x20, 0x01, 0x28, 0x0b, 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, 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x69, 0x73, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x61, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, @@ -4667,7 +4667,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x6f, 0x61, 0x73, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x38, 0x20, 0x01, 0x28, 0x0b, 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, 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x77, 0x65, 0x72, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x6f, 0x61, 0x73, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, @@ -4678,7 +4678,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x69, 0x6e, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x39, 0x20, 0x01, 0x28, 0x0b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x61, 0x78, 0x4f, 0x70, 0x74, 0x49, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, @@ -4689,7 +4689,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x6d, 0x61, 0x78, 0x5f, 0x61, 0x64, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x3a, 0x20, 0x01, 0x28, 0x0b, 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, + 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x6d, 0x70, 0x72, 0x6f, 0x76, 0x65, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x61, 0x78, 0x41, 0x64, @@ -4704,7 +4704,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x6e, 0x63, 0x65, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x3b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x70, 0x2e, 0x67, 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x65, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x64, 0x73, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, @@ -4719,7 +4719,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x63, 0x70, 0x61, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x3c, 0x20, 0x01, 0x28, 0x0b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x61, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, @@ -4730,7 +4730,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x63, 0x70, 0x61, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x3d, 0x20, 0x01, 0x28, 0x0b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x61, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, @@ -4740,7 +4740,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x72, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x6f, 0x61, 0x73, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x3e, 0x20, 0x01, 0x28, 0x0b, 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, 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x6f, 0x61, 0x73, 0x52, 0x65, 0x63, 0x6f, 0x6d, @@ -4752,7 +4752,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x69, 0x6e, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x3f, 0x20, 0x01, 0x28, 0x0b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x78, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x4f, 0x70, 0x74, 0x49, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, @@ -4764,7 +4764,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x5f, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x40, 0x20, 0x01, 0x28, 0x0b, 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, 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x6d, 0x70, 0x72, 0x6f, 0x76, 0x65, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x54, 0x61, 0x67, 0x43, 0x6f, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x6d, @@ -4776,7 +4776,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x6f, 0x70, 0x74, 0x5f, 0x69, 0x6e, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x41, 0x20, 0x01, 0x28, 0x0b, 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, 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x61, 0x78, 0x46, 0x69, 0x6e, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x4f, 0x70, 0x74, @@ -4789,7 +4789,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x73, 0x74, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x42, 0x20, 0x01, 0x28, 0x0b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, @@ -4800,7 +4800,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x6f, 0x70, 0x74, 0x5f, 0x69, 0x6e, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x43, 0x20, 0x01, 0x28, 0x0b, 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, 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, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x4f, 0x70, 0x74, 0x49, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, @@ -4811,7 +4811,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x44, 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, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, @@ -4822,7 +4822,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x68, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x45, 0x20, 0x01, 0x28, 0x0b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x6d, 0x70, 0x72, 0x6f, 0x76, 0x65, 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x41, 0x64, 0x53, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, @@ -4840,14 +4840,14 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x61, 0x63, 0x74, 0x12, 0x70, 0x0a, 0x0c, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x18, 0x01, 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, 0x52, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0b, 0x62, 0x61, 0x73, 0x65, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x12, 0x7a, 0x0a, 0x11, 0x70, 0x6f, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x18, 0x02, 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, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, @@ -4891,7 +4891,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x01, 0x01, 0x12, 0x9e, 0x01, 0x0a, 0x0e, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x72, 0x2e, 0x67, 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, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x6d, @@ -4907,7 +4907,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x64, 0x0a, 0x06, 0x69, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x18, 0x02, 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, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x69, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x42, 0x17, 0x0a, 0x15, @@ -4921,12 +4921,12 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4b, 0x0a, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 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, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, + 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x7b, 0x0a, 0x0c, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x73, 0x18, 0x04, 0x20, 0x03, 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, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x42, 0x03, 0xe0, @@ -4948,7 +4948,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x3b, 0x0a, 0x02, 0x61, 0x64, 0x18, 0x01, 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, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x02, 0x61, 0x64, 0x12, 0x2d, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, @@ -4962,7 +4962,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x70, 0x74, 0x49, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x91, 0x01, 0x0a, 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x72, 0x2e, 0x67, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x61, 0x4f, 0x70, 0x74, 0x49, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, @@ -4979,7 +4979,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x7e, 0x0a, 0x04, 0x67, 0x6f, 0x61, 0x6c, 0x18, 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, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, + 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x61, 0x4f, 0x70, 0x74, 0x49, 0x6e, 0x52, 0x65, 0x63, @@ -4996,7 +4996,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x64, 0x0a, 0x06, 0x69, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x18, 0x04, 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, 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x69, 0x6d, @@ -5039,7 +5039,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x64, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 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, 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, 0x73, 0x73, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x20, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, @@ -5047,7 +5047,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 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, 0x73, 0x73, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x20, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, @@ -5057,7 +5057,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 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, 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, 0x73, 0x73, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x21, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x41, 0x73, 0x73, 0x65, 0x74, @@ -5065,7 +5065,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x73, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 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, 0x73, 0x73, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x21, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x53, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x41, 0x73, 0x73, 0x65, @@ -5075,13 +5075,13 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x70, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4b, 0x0a, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 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, 0x6f, 0x6d, + 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x80, 0x01, 0x0a, 0x16, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x5f, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x14, 0x72, 0x65, 0x63, 0x6f, @@ -5095,7 +5095,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x88, 0x01, 0x01, 0x12, 0x89, 0x01, 0x0a, 0x15, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 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, 0x72, + 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, @@ -5124,12 +5124,12 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4a, 0x0a, 0x0a, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x64, 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, 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, 0x2e, 0x41, 0x64, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x09, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x41, 0x64, 0x12, 0x5a, 0x0a, 0x12, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x73, 0x18, 0x02, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x11, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x1a, 0xd3, 0x01, 0x0a, 0x31, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, @@ -5138,25 +5138,25 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4a, 0x0a, 0x0a, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x64, 0x18, 0x01, 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, 0x03, 0x52, 0x09, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x41, 0x64, 0x12, 0x52, 0x0a, 0x0e, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x5f, 0x61, 0x64, 0x18, 0x02, 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, 0x03, 0x52, 0x0d, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x41, 0x64, 0x1a, 0x5f, 0x0a, 0x20, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x3b, 0x0a, 0x02, 0x61, 0x64, 0x18, 0x01, 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, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x02, 0x61, 0x64, 0x1a, 0x8a, 0x03, 0x0a, 0x22, 0x55, 0x73, 0x65, 0x42, 0x72, 0x6f, 0x61, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4b, 0x0a, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 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, + 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x3d, 0x0a, 0x18, 0x73, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6b, 0x65, @@ -5217,7 +5217,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x6f, 0x61, 0x73, 0x12, 0x6f, 0x0a, 0x0f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x18, 0x02, 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, 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0e, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, @@ -5226,7 +5226,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x60, 0x0a, 0x08, 0x6d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x18, 0x01, 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, 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x08, 0x6d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x12, @@ -5243,7 +5243,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x64, 0x75, 0x63, 0x74, 0x73, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x60, 0x0a, 0x08, 0x6d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x18, 0x01, 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, + 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x08, 0x6d, 0x65, 0x72, @@ -5261,7 +5261,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x66, 0x65, 0x72, 0x73, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x60, 0x0a, 0x08, 0x6d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x18, 0x01, 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, + 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x08, 0x6d, 0x65, 0x72, 0x63, @@ -5277,7 +5277,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x60, 0x0a, 0x08, 0x6d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x18, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x08, 0x6d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x12, 0x22, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, @@ -5285,7 +5285,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x52, 0x09, 0x66, 0x65, 0x65, 0x64, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x73, 0x0a, 0x06, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x03, 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, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x68, 0x6f, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x52, 0x65, 0x61, @@ -5296,7 +5296,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x60, 0x0a, 0x08, 0x6d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x18, 0x01, 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, 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x08, 0x6d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x12, 0x22, 0x0a, 0x0a, @@ -5309,7 +5309,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x78, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x60, 0x0a, 0x08, 0x6d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x18, 0x01, 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, 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, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x08, 0x6d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, @@ -5334,7 +5334,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x79, 0x0a, 0x11, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x01, 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, 0x2e, 0x72, + 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, @@ -5342,7 +5342,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x65, 0x6e, 0x74, 0x12, 0x75, 0x0a, 0x10, 0x61, 0x70, 0x70, 0x5f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x18, 0x02, 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, 0x41, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x47, 0x6f, 0x61, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x70, 0x70, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x47, 0x6f, 0x61, 0x6c, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x0e, 0x61, 0x70, 0x70, 0x42, 0x69, 0x64, 0x64, @@ -5353,7 +5353,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x6e, 0x12, 0x79, 0x0a, 0x11, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x01, 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, 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x10, 0x74, 0x61, 0x72, 0x67, @@ -5396,7 +5396,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x74, 0x43, 0x70, 0x61, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x12, 0x6f, 0x0a, 0x0f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x18, 0x02, 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, 0x36, 0x2e, 0x72, + 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0e, 0x63, 0x61, 0x6d, @@ -5424,7 +5424,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x5f, 0x73, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x03, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x12, 0x74, 0x6f, 0x70, 0x53, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, @@ -5435,7 +5435,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x68, 0x0a, 0x0d, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x06, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0c, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x1a, 0x63, 0x0a, 0x0b, 0x41, 0x63, 0x63, @@ -5449,7 +5449,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x4f, 0x70, 0x74, 0x49, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4d, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 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, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x1a, 0x1d, 0x0a, 0x1b, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x41, 0x73, @@ -5461,7 +5461,7 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x02, 0x61, 0x64, 0x12, 0x5f, 0x0a, 0x0b, 0x61, 0x64, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x18, 0x02, 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, 0x64, 0x53, 0x74, 0x72, 0x65, + 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, 0x45, 0x0a, 0x1d, 0x64, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x5f, 0x67, @@ -5482,198 +5482,198 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = []byt 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x64, 0x69, 0x73, 0x6d, 0x69, 0x73, 0x73, 0x65, 0x64, 0x42, 0x85, 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, 0x13, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, + 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, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, + 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, + 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, 0x70, 0x72, + 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_recommendation_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_recommendation_proto_rawDescData = file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc + file_google_ads_googleads_v17_resources_recommendation_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_recommendation_proto_rawDescData = file_google_ads_googleads_v17_resources_recommendation_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_recommendation_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_recommendation_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_recommendation_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_recommendation_proto_rawDescData) +func file_google_ads_googleads_v17_resources_recommendation_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_recommendation_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_recommendation_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_recommendation_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_recommendation_proto_rawDescData -} - -var file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes = make([]protoimpl.MessageInfo, 54) -var file_google_ads_googleads_v16_resources_recommendation_proto_goTypes = []interface{}{ - (*Recommendation)(nil), // 0: google.ads.googleads.v16.resources.Recommendation - (*Recommendation_MerchantInfo)(nil), // 1: google.ads.googleads.v16.resources.Recommendation.MerchantInfo - (*Recommendation_RecommendationImpact)(nil), // 2: google.ads.googleads.v16.resources.Recommendation.RecommendationImpact - (*Recommendation_RecommendationMetrics)(nil), // 3: google.ads.googleads.v16.resources.Recommendation.RecommendationMetrics - (*Recommendation_CampaignBudgetRecommendation)(nil), // 4: google.ads.googleads.v16.resources.Recommendation.CampaignBudgetRecommendation - (*Recommendation_KeywordRecommendation)(nil), // 5: google.ads.googleads.v16.resources.Recommendation.KeywordRecommendation - (*Recommendation_TextAdRecommendation)(nil), // 6: google.ads.googleads.v16.resources.Recommendation.TextAdRecommendation - (*Recommendation_TargetCpaOptInRecommendation)(nil), // 7: google.ads.googleads.v16.resources.Recommendation.TargetCpaOptInRecommendation - (*Recommendation_MaximizeConversionsOptInRecommendation)(nil), // 8: google.ads.googleads.v16.resources.Recommendation.MaximizeConversionsOptInRecommendation - (*Recommendation_EnhancedCpcOptInRecommendation)(nil), // 9: google.ads.googleads.v16.resources.Recommendation.EnhancedCpcOptInRecommendation - (*Recommendation_SearchPartnersOptInRecommendation)(nil), // 10: google.ads.googleads.v16.resources.Recommendation.SearchPartnersOptInRecommendation - (*Recommendation_MaximizeClicksOptInRecommendation)(nil), // 11: google.ads.googleads.v16.resources.Recommendation.MaximizeClicksOptInRecommendation - (*Recommendation_OptimizeAdRotationRecommendation)(nil), // 12: google.ads.googleads.v16.resources.Recommendation.OptimizeAdRotationRecommendation - (*Recommendation_CalloutAssetRecommendation)(nil), // 13: google.ads.googleads.v16.resources.Recommendation.CalloutAssetRecommendation - (*Recommendation_SitelinkAssetRecommendation)(nil), // 14: google.ads.googleads.v16.resources.Recommendation.SitelinkAssetRecommendation - (*Recommendation_CallAssetRecommendation)(nil), // 15: google.ads.googleads.v16.resources.Recommendation.CallAssetRecommendation - (*Recommendation_KeywordMatchTypeRecommendation)(nil), // 16: google.ads.googleads.v16.resources.Recommendation.KeywordMatchTypeRecommendation - (*Recommendation_MoveUnusedBudgetRecommendation)(nil), // 17: google.ads.googleads.v16.resources.Recommendation.MoveUnusedBudgetRecommendation - (*Recommendation_TargetRoasOptInRecommendation)(nil), // 18: google.ads.googleads.v16.resources.Recommendation.TargetRoasOptInRecommendation - (*Recommendation_ResponsiveSearchAdAssetRecommendation)(nil), // 19: google.ads.googleads.v16.resources.Recommendation.ResponsiveSearchAdAssetRecommendation - (*Recommendation_ResponsiveSearchAdImproveAdStrengthRecommendation)(nil), // 20: google.ads.googleads.v16.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation - (*Recommendation_ResponsiveSearchAdRecommendation)(nil), // 21: google.ads.googleads.v16.resources.Recommendation.ResponsiveSearchAdRecommendation - (*Recommendation_UseBroadMatchKeywordRecommendation)(nil), // 22: google.ads.googleads.v16.resources.Recommendation.UseBroadMatchKeywordRecommendation - (*Recommendation_UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation)(nil), // 23: google.ads.googleads.v16.resources.Recommendation.UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation - (*Recommendation_RaiseTargetCpaBidTooLowRecommendation)(nil), // 24: google.ads.googleads.v16.resources.Recommendation.RaiseTargetCpaBidTooLowRecommendation - (*Recommendation_DisplayExpansionOptInRecommendation)(nil), // 25: google.ads.googleads.v16.resources.Recommendation.DisplayExpansionOptInRecommendation - (*Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation)(nil), // 26: google.ads.googleads.v16.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation - (*Recommendation_ForecastingSetTargetRoasRecommendation)(nil), // 27: google.ads.googleads.v16.resources.Recommendation.ForecastingSetTargetRoasRecommendation - (*Recommendation_ShoppingOfferAttributeRecommendation)(nil), // 28: google.ads.googleads.v16.resources.Recommendation.ShoppingOfferAttributeRecommendation - (*Recommendation_ShoppingFixDisapprovedProductsRecommendation)(nil), // 29: google.ads.googleads.v16.resources.Recommendation.ShoppingFixDisapprovedProductsRecommendation - (*Recommendation_ShoppingTargetAllOffersRecommendation)(nil), // 30: google.ads.googleads.v16.resources.Recommendation.ShoppingTargetAllOffersRecommendation - (*Recommendation_ShoppingAddProductsToCampaignRecommendation)(nil), // 31: google.ads.googleads.v16.resources.Recommendation.ShoppingAddProductsToCampaignRecommendation - (*Recommendation_ShoppingMerchantCenterAccountSuspensionRecommendation)(nil), // 32: google.ads.googleads.v16.resources.Recommendation.ShoppingMerchantCenterAccountSuspensionRecommendation - (*Recommendation_ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMaxRecommendation)(nil), // 33: google.ads.googleads.v16.resources.Recommendation.ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMaxRecommendation - (*Recommendation_TargetAdjustmentInfo)(nil), // 34: google.ads.googleads.v16.resources.Recommendation.TargetAdjustmentInfo - (*Recommendation_RaiseTargetCpaRecommendation)(nil), // 35: google.ads.googleads.v16.resources.Recommendation.RaiseTargetCpaRecommendation - (*Recommendation_LowerTargetRoasRecommendation)(nil), // 36: google.ads.googleads.v16.resources.Recommendation.LowerTargetRoasRecommendation - (*Recommendation_DynamicImageExtensionOptInRecommendation)(nil), // 37: google.ads.googleads.v16.resources.Recommendation.DynamicImageExtensionOptInRecommendation - (*Recommendation_CampaignBudget)(nil), // 38: google.ads.googleads.v16.resources.Recommendation.CampaignBudget - (*Recommendation_PerformanceMaxOptInRecommendation)(nil), // 39: google.ads.googleads.v16.resources.Recommendation.PerformanceMaxOptInRecommendation - (*Recommendation_ImprovePerformanceMaxAdStrengthRecommendation)(nil), // 40: google.ads.googleads.v16.resources.Recommendation.ImprovePerformanceMaxAdStrengthRecommendation - (*Recommendation_MigrateDynamicSearchAdsCampaignToPerformanceMaxRecommendation)(nil), // 41: google.ads.googleads.v16.resources.Recommendation.MigrateDynamicSearchAdsCampaignToPerformanceMaxRecommendation - (*Recommendation_ForecastingSetTargetCpaRecommendation)(nil), // 42: google.ads.googleads.v16.resources.Recommendation.ForecastingSetTargetCpaRecommendation - (*Recommendation_MaximizeConversionValueOptInRecommendation)(nil), // 43: google.ads.googleads.v16.resources.Recommendation.MaximizeConversionValueOptInRecommendation - (*Recommendation_ImproveGoogleTagCoverageRecommendation)(nil), // 44: google.ads.googleads.v16.resources.Recommendation.ImproveGoogleTagCoverageRecommendation - (*Recommendation_PerformanceMaxFinalUrlOptInRecommendation)(nil), // 45: google.ads.googleads.v16.resources.Recommendation.PerformanceMaxFinalUrlOptInRecommendation - (*Recommendation_RefreshCustomerMatchListRecommendation)(nil), // 46: google.ads.googleads.v16.resources.Recommendation.RefreshCustomerMatchListRecommendation - (*Recommendation_AccountInfo)(nil), // 47: google.ads.googleads.v16.resources.Recommendation.AccountInfo - (*Recommendation_CustomAudienceOptInRecommendation)(nil), // 48: google.ads.googleads.v16.resources.Recommendation.CustomAudienceOptInRecommendation - (*Recommendation_LeadFormAssetRecommendation)(nil), // 49: google.ads.googleads.v16.resources.Recommendation.LeadFormAssetRecommendation - (*Recommendation_ImproveDemandGenAdStrengthRecommendation)(nil), // 50: google.ads.googleads.v16.resources.Recommendation.ImproveDemandGenAdStrengthRecommendation - (*Recommendation_CampaignBudgetRecommendation_CampaignBudgetRecommendationOption)(nil), // 51: google.ads.googleads.v16.resources.Recommendation.CampaignBudgetRecommendation.CampaignBudgetRecommendationOption - (*Recommendation_KeywordRecommendation_SearchTerm)(nil), // 52: google.ads.googleads.v16.resources.Recommendation.KeywordRecommendation.SearchTerm - (*Recommendation_TargetCpaOptInRecommendation_TargetCpaOptInRecommendationOption)(nil), // 53: google.ads.googleads.v16.resources.Recommendation.TargetCpaOptInRecommendation.TargetCpaOptInRecommendationOption - (enums.RecommendationTypeEnum_RecommendationType)(0), // 54: google.ads.googleads.v16.enums.RecommendationTypeEnum.RecommendationType - (*common.KeywordInfo)(nil), // 55: google.ads.googleads.v16.common.KeywordInfo - (*Ad)(nil), // 56: google.ads.googleads.v16.resources.Ad - (*Asset)(nil), // 57: google.ads.googleads.v16.resources.Asset - (enums.KeywordMatchTypeEnum_KeywordMatchType)(0), // 58: google.ads.googleads.v16.enums.KeywordMatchTypeEnum.KeywordMatchType - (enums.ShoppingAddProductsToCampaignRecommendationEnum_Reason)(0), // 59: google.ads.googleads.v16.enums.ShoppingAddProductsToCampaignRecommendationEnum.Reason - (enums.AppBiddingGoalEnum_AppBiddingGoal)(0), // 60: google.ads.googleads.v16.enums.AppBiddingGoalEnum.AppBiddingGoal - (enums.AdStrengthEnum_AdStrength)(0), // 61: google.ads.googleads.v16.enums.AdStrengthEnum.AdStrength - (enums.TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal)(0), // 62: google.ads.googleads.v16.enums.TargetCpaOptInRecommendationGoalEnum.TargetCpaOptInRecommendationGoal -} -var file_google_ads_googleads_v16_resources_recommendation_proto_depIdxs = []int32{ - 54, // 0: google.ads.googleads.v16.resources.Recommendation.type:type_name -> google.ads.googleads.v16.enums.RecommendationTypeEnum.RecommendationType - 2, // 1: google.ads.googleads.v16.resources.Recommendation.impact:type_name -> google.ads.googleads.v16.resources.Recommendation.RecommendationImpact - 4, // 2: google.ads.googleads.v16.resources.Recommendation.campaign_budget_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.CampaignBudgetRecommendation - 4, // 3: google.ads.googleads.v16.resources.Recommendation.forecasting_campaign_budget_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.CampaignBudgetRecommendation - 5, // 4: google.ads.googleads.v16.resources.Recommendation.keyword_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.KeywordRecommendation - 6, // 5: google.ads.googleads.v16.resources.Recommendation.text_ad_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.TextAdRecommendation - 7, // 6: google.ads.googleads.v16.resources.Recommendation.target_cpa_opt_in_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.TargetCpaOptInRecommendation - 8, // 7: google.ads.googleads.v16.resources.Recommendation.maximize_conversions_opt_in_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.MaximizeConversionsOptInRecommendation - 9, // 8: google.ads.googleads.v16.resources.Recommendation.enhanced_cpc_opt_in_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.EnhancedCpcOptInRecommendation - 10, // 9: google.ads.googleads.v16.resources.Recommendation.search_partners_opt_in_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.SearchPartnersOptInRecommendation - 11, // 10: google.ads.googleads.v16.resources.Recommendation.maximize_clicks_opt_in_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.MaximizeClicksOptInRecommendation - 12, // 11: google.ads.googleads.v16.resources.Recommendation.optimize_ad_rotation_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.OptimizeAdRotationRecommendation - 16, // 12: google.ads.googleads.v16.resources.Recommendation.keyword_match_type_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.KeywordMatchTypeRecommendation - 17, // 13: google.ads.googleads.v16.resources.Recommendation.move_unused_budget_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.MoveUnusedBudgetRecommendation - 18, // 14: google.ads.googleads.v16.resources.Recommendation.target_roas_opt_in_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.TargetRoasOptInRecommendation - 21, // 15: google.ads.googleads.v16.resources.Recommendation.responsive_search_ad_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.ResponsiveSearchAdRecommendation - 4, // 16: google.ads.googleads.v16.resources.Recommendation.marginal_roi_campaign_budget_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.CampaignBudgetRecommendation - 22, // 17: google.ads.googleads.v16.resources.Recommendation.use_broad_match_keyword_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.UseBroadMatchKeywordRecommendation - 19, // 18: google.ads.googleads.v16.resources.Recommendation.responsive_search_ad_asset_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.ResponsiveSearchAdAssetRecommendation - 23, // 19: google.ads.googleads.v16.resources.Recommendation.upgrade_smart_shopping_campaign_to_performance_max_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation - 20, // 20: google.ads.googleads.v16.resources.Recommendation.responsive_search_ad_improve_ad_strength_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation - 25, // 21: google.ads.googleads.v16.resources.Recommendation.display_expansion_opt_in_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.DisplayExpansionOptInRecommendation - 26, // 22: google.ads.googleads.v16.resources.Recommendation.upgrade_local_campaign_to_performance_max_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation - 24, // 23: google.ads.googleads.v16.resources.Recommendation.raise_target_cpa_bid_too_low_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.RaiseTargetCpaBidTooLowRecommendation - 27, // 24: google.ads.googleads.v16.resources.Recommendation.forecasting_set_target_roas_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.ForecastingSetTargetRoasRecommendation - 13, // 25: google.ads.googleads.v16.resources.Recommendation.callout_asset_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.CalloutAssetRecommendation - 14, // 26: google.ads.googleads.v16.resources.Recommendation.sitelink_asset_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.SitelinkAssetRecommendation - 15, // 27: google.ads.googleads.v16.resources.Recommendation.call_asset_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.CallAssetRecommendation - 28, // 28: google.ads.googleads.v16.resources.Recommendation.shopping_add_age_group_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.ShoppingOfferAttributeRecommendation - 28, // 29: google.ads.googleads.v16.resources.Recommendation.shopping_add_color_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.ShoppingOfferAttributeRecommendation - 28, // 30: google.ads.googleads.v16.resources.Recommendation.shopping_add_gender_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.ShoppingOfferAttributeRecommendation - 28, // 31: google.ads.googleads.v16.resources.Recommendation.shopping_add_gtin_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.ShoppingOfferAttributeRecommendation - 28, // 32: google.ads.googleads.v16.resources.Recommendation.shopping_add_more_identifiers_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.ShoppingOfferAttributeRecommendation - 28, // 33: google.ads.googleads.v16.resources.Recommendation.shopping_add_size_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.ShoppingOfferAttributeRecommendation - 31, // 34: google.ads.googleads.v16.resources.Recommendation.shopping_add_products_to_campaign_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.ShoppingAddProductsToCampaignRecommendation - 29, // 35: google.ads.googleads.v16.resources.Recommendation.shopping_fix_disapproved_products_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.ShoppingFixDisapprovedProductsRecommendation - 30, // 36: google.ads.googleads.v16.resources.Recommendation.shopping_target_all_offers_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.ShoppingTargetAllOffersRecommendation - 32, // 37: google.ads.googleads.v16.resources.Recommendation.shopping_fix_suspended_merchant_center_account_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.ShoppingMerchantCenterAccountSuspensionRecommendation - 32, // 38: google.ads.googleads.v16.resources.Recommendation.shopping_fix_merchant_center_account_suspension_warning_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.ShoppingMerchantCenterAccountSuspensionRecommendation - 33, // 39: google.ads.googleads.v16.resources.Recommendation.shopping_migrate_regular_shopping_campaign_offers_to_performance_max_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMaxRecommendation - 37, // 40: google.ads.googleads.v16.resources.Recommendation.dynamic_image_extension_opt_in_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.DynamicImageExtensionOptInRecommendation - 35, // 41: google.ads.googleads.v16.resources.Recommendation.raise_target_cpa_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.RaiseTargetCpaRecommendation - 36, // 42: google.ads.googleads.v16.resources.Recommendation.lower_target_roas_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.LowerTargetRoasRecommendation - 39, // 43: google.ads.googleads.v16.resources.Recommendation.performance_max_opt_in_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.PerformanceMaxOptInRecommendation - 40, // 44: google.ads.googleads.v16.resources.Recommendation.improve_performance_max_ad_strength_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.ImprovePerformanceMaxAdStrengthRecommendation - 41, // 45: google.ads.googleads.v16.resources.Recommendation.migrate_dynamic_search_ads_campaign_to_performance_max_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.MigrateDynamicSearchAdsCampaignToPerformanceMaxRecommendation - 42, // 46: google.ads.googleads.v16.resources.Recommendation.forecasting_set_target_cpa_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.ForecastingSetTargetCpaRecommendation - 42, // 47: google.ads.googleads.v16.resources.Recommendation.set_target_cpa_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.ForecastingSetTargetCpaRecommendation - 27, // 48: google.ads.googleads.v16.resources.Recommendation.set_target_roas_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.ForecastingSetTargetRoasRecommendation - 43, // 49: google.ads.googleads.v16.resources.Recommendation.maximize_conversion_value_opt_in_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.MaximizeConversionValueOptInRecommendation - 44, // 50: google.ads.googleads.v16.resources.Recommendation.improve_google_tag_coverage_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.ImproveGoogleTagCoverageRecommendation - 45, // 51: google.ads.googleads.v16.resources.Recommendation.performance_max_final_url_opt_in_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.PerformanceMaxFinalUrlOptInRecommendation - 46, // 52: google.ads.googleads.v16.resources.Recommendation.refresh_customer_match_list_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.RefreshCustomerMatchListRecommendation - 48, // 53: google.ads.googleads.v16.resources.Recommendation.custom_audience_opt_in_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.CustomAudienceOptInRecommendation - 49, // 54: google.ads.googleads.v16.resources.Recommendation.lead_form_asset_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.LeadFormAssetRecommendation - 50, // 55: google.ads.googleads.v16.resources.Recommendation.improve_demand_gen_ad_strength_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.ImproveDemandGenAdStrengthRecommendation - 3, // 56: google.ads.googleads.v16.resources.Recommendation.RecommendationImpact.base_metrics:type_name -> google.ads.googleads.v16.resources.Recommendation.RecommendationMetrics - 3, // 57: google.ads.googleads.v16.resources.Recommendation.RecommendationImpact.potential_metrics:type_name -> google.ads.googleads.v16.resources.Recommendation.RecommendationMetrics - 51, // 58: google.ads.googleads.v16.resources.Recommendation.CampaignBudgetRecommendation.budget_options:type_name -> google.ads.googleads.v16.resources.Recommendation.CampaignBudgetRecommendation.CampaignBudgetRecommendationOption - 55, // 59: google.ads.googleads.v16.resources.Recommendation.KeywordRecommendation.keyword:type_name -> google.ads.googleads.v16.common.KeywordInfo - 52, // 60: google.ads.googleads.v16.resources.Recommendation.KeywordRecommendation.search_terms:type_name -> google.ads.googleads.v16.resources.Recommendation.KeywordRecommendation.SearchTerm - 56, // 61: google.ads.googleads.v16.resources.Recommendation.TextAdRecommendation.ad:type_name -> google.ads.googleads.v16.resources.Ad - 53, // 62: google.ads.googleads.v16.resources.Recommendation.TargetCpaOptInRecommendation.options:type_name -> google.ads.googleads.v16.resources.Recommendation.TargetCpaOptInRecommendation.TargetCpaOptInRecommendationOption - 57, // 63: google.ads.googleads.v16.resources.Recommendation.CalloutAssetRecommendation.recommended_campaign_callout_assets:type_name -> google.ads.googleads.v16.resources.Asset - 57, // 64: google.ads.googleads.v16.resources.Recommendation.CalloutAssetRecommendation.recommended_customer_callout_assets:type_name -> google.ads.googleads.v16.resources.Asset - 57, // 65: google.ads.googleads.v16.resources.Recommendation.SitelinkAssetRecommendation.recommended_campaign_sitelink_assets:type_name -> google.ads.googleads.v16.resources.Asset - 57, // 66: google.ads.googleads.v16.resources.Recommendation.SitelinkAssetRecommendation.recommended_customer_sitelink_assets:type_name -> google.ads.googleads.v16.resources.Asset - 55, // 67: google.ads.googleads.v16.resources.Recommendation.KeywordMatchTypeRecommendation.keyword:type_name -> google.ads.googleads.v16.common.KeywordInfo - 58, // 68: google.ads.googleads.v16.resources.Recommendation.KeywordMatchTypeRecommendation.recommended_match_type:type_name -> google.ads.googleads.v16.enums.KeywordMatchTypeEnum.KeywordMatchType - 4, // 69: google.ads.googleads.v16.resources.Recommendation.MoveUnusedBudgetRecommendation.budget_recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation.CampaignBudgetRecommendation - 56, // 70: google.ads.googleads.v16.resources.Recommendation.ResponsiveSearchAdAssetRecommendation.current_ad:type_name -> google.ads.googleads.v16.resources.Ad - 56, // 71: google.ads.googleads.v16.resources.Recommendation.ResponsiveSearchAdAssetRecommendation.recommended_assets:type_name -> google.ads.googleads.v16.resources.Ad - 56, // 72: google.ads.googleads.v16.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation.current_ad:type_name -> google.ads.googleads.v16.resources.Ad - 56, // 73: google.ads.googleads.v16.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation.recommended_ad:type_name -> google.ads.googleads.v16.resources.Ad - 56, // 74: google.ads.googleads.v16.resources.Recommendation.ResponsiveSearchAdRecommendation.ad:type_name -> google.ads.googleads.v16.resources.Ad - 55, // 75: google.ads.googleads.v16.resources.Recommendation.UseBroadMatchKeywordRecommendation.keyword:type_name -> google.ads.googleads.v16.common.KeywordInfo - 38, // 76: google.ads.googleads.v16.resources.Recommendation.ForecastingSetTargetRoasRecommendation.campaign_budget:type_name -> google.ads.googleads.v16.resources.Recommendation.CampaignBudget - 1, // 77: google.ads.googleads.v16.resources.Recommendation.ShoppingOfferAttributeRecommendation.merchant:type_name -> google.ads.googleads.v16.resources.Recommendation.MerchantInfo - 1, // 78: google.ads.googleads.v16.resources.Recommendation.ShoppingFixDisapprovedProductsRecommendation.merchant:type_name -> google.ads.googleads.v16.resources.Recommendation.MerchantInfo - 1, // 79: google.ads.googleads.v16.resources.Recommendation.ShoppingTargetAllOffersRecommendation.merchant:type_name -> google.ads.googleads.v16.resources.Recommendation.MerchantInfo - 1, // 80: google.ads.googleads.v16.resources.Recommendation.ShoppingAddProductsToCampaignRecommendation.merchant:type_name -> google.ads.googleads.v16.resources.Recommendation.MerchantInfo - 59, // 81: google.ads.googleads.v16.resources.Recommendation.ShoppingAddProductsToCampaignRecommendation.reason:type_name -> google.ads.googleads.v16.enums.ShoppingAddProductsToCampaignRecommendationEnum.Reason - 1, // 82: google.ads.googleads.v16.resources.Recommendation.ShoppingMerchantCenterAccountSuspensionRecommendation.merchant:type_name -> google.ads.googleads.v16.resources.Recommendation.MerchantInfo - 1, // 83: google.ads.googleads.v16.resources.Recommendation.ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMaxRecommendation.merchant:type_name -> google.ads.googleads.v16.resources.Recommendation.MerchantInfo - 34, // 84: google.ads.googleads.v16.resources.Recommendation.RaiseTargetCpaRecommendation.target_adjustment:type_name -> google.ads.googleads.v16.resources.Recommendation.TargetAdjustmentInfo - 60, // 85: google.ads.googleads.v16.resources.Recommendation.RaiseTargetCpaRecommendation.app_bidding_goal:type_name -> google.ads.googleads.v16.enums.AppBiddingGoalEnum.AppBiddingGoal - 34, // 86: google.ads.googleads.v16.resources.Recommendation.LowerTargetRoasRecommendation.target_adjustment:type_name -> google.ads.googleads.v16.resources.Recommendation.TargetAdjustmentInfo - 38, // 87: google.ads.googleads.v16.resources.Recommendation.ForecastingSetTargetCpaRecommendation.campaign_budget:type_name -> google.ads.googleads.v16.resources.Recommendation.CampaignBudget - 47, // 88: google.ads.googleads.v16.resources.Recommendation.RefreshCustomerMatchListRecommendation.top_spending_account:type_name -> google.ads.googleads.v16.resources.Recommendation.AccountInfo - 47, // 89: google.ads.googleads.v16.resources.Recommendation.RefreshCustomerMatchListRecommendation.owner_account:type_name -> google.ads.googleads.v16.resources.Recommendation.AccountInfo - 55, // 90: google.ads.googleads.v16.resources.Recommendation.CustomAudienceOptInRecommendation.keywords:type_name -> google.ads.googleads.v16.common.KeywordInfo - 61, // 91: google.ads.googleads.v16.resources.Recommendation.ImproveDemandGenAdStrengthRecommendation.ad_strength:type_name -> google.ads.googleads.v16.enums.AdStrengthEnum.AdStrength - 2, // 92: google.ads.googleads.v16.resources.Recommendation.CampaignBudgetRecommendation.CampaignBudgetRecommendationOption.impact:type_name -> google.ads.googleads.v16.resources.Recommendation.RecommendationImpact - 62, // 93: google.ads.googleads.v16.resources.Recommendation.TargetCpaOptInRecommendation.TargetCpaOptInRecommendationOption.goal:type_name -> google.ads.googleads.v16.enums.TargetCpaOptInRecommendationGoalEnum.TargetCpaOptInRecommendationGoal - 2, // 94: google.ads.googleads.v16.resources.Recommendation.TargetCpaOptInRecommendation.TargetCpaOptInRecommendationOption.impact:type_name -> google.ads.googleads.v16.resources.Recommendation.RecommendationImpact + return file_google_ads_googleads_v17_resources_recommendation_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes = make([]protoimpl.MessageInfo, 54) +var file_google_ads_googleads_v17_resources_recommendation_proto_goTypes = []interface{}{ + (*Recommendation)(nil), // 0: google.ads.googleads.v17.resources.Recommendation + (*Recommendation_MerchantInfo)(nil), // 1: google.ads.googleads.v17.resources.Recommendation.MerchantInfo + (*Recommendation_RecommendationImpact)(nil), // 2: google.ads.googleads.v17.resources.Recommendation.RecommendationImpact + (*Recommendation_RecommendationMetrics)(nil), // 3: google.ads.googleads.v17.resources.Recommendation.RecommendationMetrics + (*Recommendation_CampaignBudgetRecommendation)(nil), // 4: google.ads.googleads.v17.resources.Recommendation.CampaignBudgetRecommendation + (*Recommendation_KeywordRecommendation)(nil), // 5: google.ads.googleads.v17.resources.Recommendation.KeywordRecommendation + (*Recommendation_TextAdRecommendation)(nil), // 6: google.ads.googleads.v17.resources.Recommendation.TextAdRecommendation + (*Recommendation_TargetCpaOptInRecommendation)(nil), // 7: google.ads.googleads.v17.resources.Recommendation.TargetCpaOptInRecommendation + (*Recommendation_MaximizeConversionsOptInRecommendation)(nil), // 8: google.ads.googleads.v17.resources.Recommendation.MaximizeConversionsOptInRecommendation + (*Recommendation_EnhancedCpcOptInRecommendation)(nil), // 9: google.ads.googleads.v17.resources.Recommendation.EnhancedCpcOptInRecommendation + (*Recommendation_SearchPartnersOptInRecommendation)(nil), // 10: google.ads.googleads.v17.resources.Recommendation.SearchPartnersOptInRecommendation + (*Recommendation_MaximizeClicksOptInRecommendation)(nil), // 11: google.ads.googleads.v17.resources.Recommendation.MaximizeClicksOptInRecommendation + (*Recommendation_OptimizeAdRotationRecommendation)(nil), // 12: google.ads.googleads.v17.resources.Recommendation.OptimizeAdRotationRecommendation + (*Recommendation_CalloutAssetRecommendation)(nil), // 13: google.ads.googleads.v17.resources.Recommendation.CalloutAssetRecommendation + (*Recommendation_SitelinkAssetRecommendation)(nil), // 14: google.ads.googleads.v17.resources.Recommendation.SitelinkAssetRecommendation + (*Recommendation_CallAssetRecommendation)(nil), // 15: google.ads.googleads.v17.resources.Recommendation.CallAssetRecommendation + (*Recommendation_KeywordMatchTypeRecommendation)(nil), // 16: google.ads.googleads.v17.resources.Recommendation.KeywordMatchTypeRecommendation + (*Recommendation_MoveUnusedBudgetRecommendation)(nil), // 17: google.ads.googleads.v17.resources.Recommendation.MoveUnusedBudgetRecommendation + (*Recommendation_TargetRoasOptInRecommendation)(nil), // 18: google.ads.googleads.v17.resources.Recommendation.TargetRoasOptInRecommendation + (*Recommendation_ResponsiveSearchAdAssetRecommendation)(nil), // 19: google.ads.googleads.v17.resources.Recommendation.ResponsiveSearchAdAssetRecommendation + (*Recommendation_ResponsiveSearchAdImproveAdStrengthRecommendation)(nil), // 20: google.ads.googleads.v17.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation + (*Recommendation_ResponsiveSearchAdRecommendation)(nil), // 21: google.ads.googleads.v17.resources.Recommendation.ResponsiveSearchAdRecommendation + (*Recommendation_UseBroadMatchKeywordRecommendation)(nil), // 22: google.ads.googleads.v17.resources.Recommendation.UseBroadMatchKeywordRecommendation + (*Recommendation_UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation)(nil), // 23: google.ads.googleads.v17.resources.Recommendation.UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation + (*Recommendation_RaiseTargetCpaBidTooLowRecommendation)(nil), // 24: google.ads.googleads.v17.resources.Recommendation.RaiseTargetCpaBidTooLowRecommendation + (*Recommendation_DisplayExpansionOptInRecommendation)(nil), // 25: google.ads.googleads.v17.resources.Recommendation.DisplayExpansionOptInRecommendation + (*Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation)(nil), // 26: google.ads.googleads.v17.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation + (*Recommendation_ForecastingSetTargetRoasRecommendation)(nil), // 27: google.ads.googleads.v17.resources.Recommendation.ForecastingSetTargetRoasRecommendation + (*Recommendation_ShoppingOfferAttributeRecommendation)(nil), // 28: google.ads.googleads.v17.resources.Recommendation.ShoppingOfferAttributeRecommendation + (*Recommendation_ShoppingFixDisapprovedProductsRecommendation)(nil), // 29: google.ads.googleads.v17.resources.Recommendation.ShoppingFixDisapprovedProductsRecommendation + (*Recommendation_ShoppingTargetAllOffersRecommendation)(nil), // 30: google.ads.googleads.v17.resources.Recommendation.ShoppingTargetAllOffersRecommendation + (*Recommendation_ShoppingAddProductsToCampaignRecommendation)(nil), // 31: google.ads.googleads.v17.resources.Recommendation.ShoppingAddProductsToCampaignRecommendation + (*Recommendation_ShoppingMerchantCenterAccountSuspensionRecommendation)(nil), // 32: google.ads.googleads.v17.resources.Recommendation.ShoppingMerchantCenterAccountSuspensionRecommendation + (*Recommendation_ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMaxRecommendation)(nil), // 33: google.ads.googleads.v17.resources.Recommendation.ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMaxRecommendation + (*Recommendation_TargetAdjustmentInfo)(nil), // 34: google.ads.googleads.v17.resources.Recommendation.TargetAdjustmentInfo + (*Recommendation_RaiseTargetCpaRecommendation)(nil), // 35: google.ads.googleads.v17.resources.Recommendation.RaiseTargetCpaRecommendation + (*Recommendation_LowerTargetRoasRecommendation)(nil), // 36: google.ads.googleads.v17.resources.Recommendation.LowerTargetRoasRecommendation + (*Recommendation_DynamicImageExtensionOptInRecommendation)(nil), // 37: google.ads.googleads.v17.resources.Recommendation.DynamicImageExtensionOptInRecommendation + (*Recommendation_CampaignBudget)(nil), // 38: google.ads.googleads.v17.resources.Recommendation.CampaignBudget + (*Recommendation_PerformanceMaxOptInRecommendation)(nil), // 39: google.ads.googleads.v17.resources.Recommendation.PerformanceMaxOptInRecommendation + (*Recommendation_ImprovePerformanceMaxAdStrengthRecommendation)(nil), // 40: google.ads.googleads.v17.resources.Recommendation.ImprovePerformanceMaxAdStrengthRecommendation + (*Recommendation_MigrateDynamicSearchAdsCampaignToPerformanceMaxRecommendation)(nil), // 41: google.ads.googleads.v17.resources.Recommendation.MigrateDynamicSearchAdsCampaignToPerformanceMaxRecommendation + (*Recommendation_ForecastingSetTargetCpaRecommendation)(nil), // 42: google.ads.googleads.v17.resources.Recommendation.ForecastingSetTargetCpaRecommendation + (*Recommendation_MaximizeConversionValueOptInRecommendation)(nil), // 43: google.ads.googleads.v17.resources.Recommendation.MaximizeConversionValueOptInRecommendation + (*Recommendation_ImproveGoogleTagCoverageRecommendation)(nil), // 44: google.ads.googleads.v17.resources.Recommendation.ImproveGoogleTagCoverageRecommendation + (*Recommendation_PerformanceMaxFinalUrlOptInRecommendation)(nil), // 45: google.ads.googleads.v17.resources.Recommendation.PerformanceMaxFinalUrlOptInRecommendation + (*Recommendation_RefreshCustomerMatchListRecommendation)(nil), // 46: google.ads.googleads.v17.resources.Recommendation.RefreshCustomerMatchListRecommendation + (*Recommendation_AccountInfo)(nil), // 47: google.ads.googleads.v17.resources.Recommendation.AccountInfo + (*Recommendation_CustomAudienceOptInRecommendation)(nil), // 48: google.ads.googleads.v17.resources.Recommendation.CustomAudienceOptInRecommendation + (*Recommendation_LeadFormAssetRecommendation)(nil), // 49: google.ads.googleads.v17.resources.Recommendation.LeadFormAssetRecommendation + (*Recommendation_ImproveDemandGenAdStrengthRecommendation)(nil), // 50: google.ads.googleads.v17.resources.Recommendation.ImproveDemandGenAdStrengthRecommendation + (*Recommendation_CampaignBudgetRecommendation_CampaignBudgetRecommendationOption)(nil), // 51: google.ads.googleads.v17.resources.Recommendation.CampaignBudgetRecommendation.CampaignBudgetRecommendationOption + (*Recommendation_KeywordRecommendation_SearchTerm)(nil), // 52: google.ads.googleads.v17.resources.Recommendation.KeywordRecommendation.SearchTerm + (*Recommendation_TargetCpaOptInRecommendation_TargetCpaOptInRecommendationOption)(nil), // 53: google.ads.googleads.v17.resources.Recommendation.TargetCpaOptInRecommendation.TargetCpaOptInRecommendationOption + (enums.RecommendationTypeEnum_RecommendationType)(0), // 54: google.ads.googleads.v17.enums.RecommendationTypeEnum.RecommendationType + (*common.KeywordInfo)(nil), // 55: google.ads.googleads.v17.common.KeywordInfo + (*Ad)(nil), // 56: google.ads.googleads.v17.resources.Ad + (*Asset)(nil), // 57: google.ads.googleads.v17.resources.Asset + (enums.KeywordMatchTypeEnum_KeywordMatchType)(0), // 58: google.ads.googleads.v17.enums.KeywordMatchTypeEnum.KeywordMatchType + (enums.ShoppingAddProductsToCampaignRecommendationEnum_Reason)(0), // 59: google.ads.googleads.v17.enums.ShoppingAddProductsToCampaignRecommendationEnum.Reason + (enums.AppBiddingGoalEnum_AppBiddingGoal)(0), // 60: google.ads.googleads.v17.enums.AppBiddingGoalEnum.AppBiddingGoal + (enums.AdStrengthEnum_AdStrength)(0), // 61: google.ads.googleads.v17.enums.AdStrengthEnum.AdStrength + (enums.TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal)(0), // 62: google.ads.googleads.v17.enums.TargetCpaOptInRecommendationGoalEnum.TargetCpaOptInRecommendationGoal +} +var file_google_ads_googleads_v17_resources_recommendation_proto_depIdxs = []int32{ + 54, // 0: google.ads.googleads.v17.resources.Recommendation.type:type_name -> google.ads.googleads.v17.enums.RecommendationTypeEnum.RecommendationType + 2, // 1: google.ads.googleads.v17.resources.Recommendation.impact:type_name -> google.ads.googleads.v17.resources.Recommendation.RecommendationImpact + 4, // 2: google.ads.googleads.v17.resources.Recommendation.campaign_budget_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.CampaignBudgetRecommendation + 4, // 3: google.ads.googleads.v17.resources.Recommendation.forecasting_campaign_budget_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.CampaignBudgetRecommendation + 5, // 4: google.ads.googleads.v17.resources.Recommendation.keyword_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.KeywordRecommendation + 6, // 5: google.ads.googleads.v17.resources.Recommendation.text_ad_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.TextAdRecommendation + 7, // 6: google.ads.googleads.v17.resources.Recommendation.target_cpa_opt_in_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.TargetCpaOptInRecommendation + 8, // 7: google.ads.googleads.v17.resources.Recommendation.maximize_conversions_opt_in_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.MaximizeConversionsOptInRecommendation + 9, // 8: google.ads.googleads.v17.resources.Recommendation.enhanced_cpc_opt_in_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.EnhancedCpcOptInRecommendation + 10, // 9: google.ads.googleads.v17.resources.Recommendation.search_partners_opt_in_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.SearchPartnersOptInRecommendation + 11, // 10: google.ads.googleads.v17.resources.Recommendation.maximize_clicks_opt_in_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.MaximizeClicksOptInRecommendation + 12, // 11: google.ads.googleads.v17.resources.Recommendation.optimize_ad_rotation_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.OptimizeAdRotationRecommendation + 16, // 12: google.ads.googleads.v17.resources.Recommendation.keyword_match_type_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.KeywordMatchTypeRecommendation + 17, // 13: google.ads.googleads.v17.resources.Recommendation.move_unused_budget_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.MoveUnusedBudgetRecommendation + 18, // 14: google.ads.googleads.v17.resources.Recommendation.target_roas_opt_in_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.TargetRoasOptInRecommendation + 21, // 15: google.ads.googleads.v17.resources.Recommendation.responsive_search_ad_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.ResponsiveSearchAdRecommendation + 4, // 16: google.ads.googleads.v17.resources.Recommendation.marginal_roi_campaign_budget_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.CampaignBudgetRecommendation + 22, // 17: google.ads.googleads.v17.resources.Recommendation.use_broad_match_keyword_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.UseBroadMatchKeywordRecommendation + 19, // 18: google.ads.googleads.v17.resources.Recommendation.responsive_search_ad_asset_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.ResponsiveSearchAdAssetRecommendation + 23, // 19: google.ads.googleads.v17.resources.Recommendation.upgrade_smart_shopping_campaign_to_performance_max_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation + 20, // 20: google.ads.googleads.v17.resources.Recommendation.responsive_search_ad_improve_ad_strength_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation + 25, // 21: google.ads.googleads.v17.resources.Recommendation.display_expansion_opt_in_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.DisplayExpansionOptInRecommendation + 26, // 22: google.ads.googleads.v17.resources.Recommendation.upgrade_local_campaign_to_performance_max_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation + 24, // 23: google.ads.googleads.v17.resources.Recommendation.raise_target_cpa_bid_too_low_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.RaiseTargetCpaBidTooLowRecommendation + 27, // 24: google.ads.googleads.v17.resources.Recommendation.forecasting_set_target_roas_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.ForecastingSetTargetRoasRecommendation + 13, // 25: google.ads.googleads.v17.resources.Recommendation.callout_asset_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.CalloutAssetRecommendation + 14, // 26: google.ads.googleads.v17.resources.Recommendation.sitelink_asset_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.SitelinkAssetRecommendation + 15, // 27: google.ads.googleads.v17.resources.Recommendation.call_asset_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.CallAssetRecommendation + 28, // 28: google.ads.googleads.v17.resources.Recommendation.shopping_add_age_group_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.ShoppingOfferAttributeRecommendation + 28, // 29: google.ads.googleads.v17.resources.Recommendation.shopping_add_color_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.ShoppingOfferAttributeRecommendation + 28, // 30: google.ads.googleads.v17.resources.Recommendation.shopping_add_gender_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.ShoppingOfferAttributeRecommendation + 28, // 31: google.ads.googleads.v17.resources.Recommendation.shopping_add_gtin_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.ShoppingOfferAttributeRecommendation + 28, // 32: google.ads.googleads.v17.resources.Recommendation.shopping_add_more_identifiers_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.ShoppingOfferAttributeRecommendation + 28, // 33: google.ads.googleads.v17.resources.Recommendation.shopping_add_size_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.ShoppingOfferAttributeRecommendation + 31, // 34: google.ads.googleads.v17.resources.Recommendation.shopping_add_products_to_campaign_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.ShoppingAddProductsToCampaignRecommendation + 29, // 35: google.ads.googleads.v17.resources.Recommendation.shopping_fix_disapproved_products_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.ShoppingFixDisapprovedProductsRecommendation + 30, // 36: google.ads.googleads.v17.resources.Recommendation.shopping_target_all_offers_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.ShoppingTargetAllOffersRecommendation + 32, // 37: google.ads.googleads.v17.resources.Recommendation.shopping_fix_suspended_merchant_center_account_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.ShoppingMerchantCenterAccountSuspensionRecommendation + 32, // 38: google.ads.googleads.v17.resources.Recommendation.shopping_fix_merchant_center_account_suspension_warning_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.ShoppingMerchantCenterAccountSuspensionRecommendation + 33, // 39: google.ads.googleads.v17.resources.Recommendation.shopping_migrate_regular_shopping_campaign_offers_to_performance_max_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMaxRecommendation + 37, // 40: google.ads.googleads.v17.resources.Recommendation.dynamic_image_extension_opt_in_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.DynamicImageExtensionOptInRecommendation + 35, // 41: google.ads.googleads.v17.resources.Recommendation.raise_target_cpa_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.RaiseTargetCpaRecommendation + 36, // 42: google.ads.googleads.v17.resources.Recommendation.lower_target_roas_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.LowerTargetRoasRecommendation + 39, // 43: google.ads.googleads.v17.resources.Recommendation.performance_max_opt_in_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.PerformanceMaxOptInRecommendation + 40, // 44: google.ads.googleads.v17.resources.Recommendation.improve_performance_max_ad_strength_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.ImprovePerformanceMaxAdStrengthRecommendation + 41, // 45: google.ads.googleads.v17.resources.Recommendation.migrate_dynamic_search_ads_campaign_to_performance_max_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.MigrateDynamicSearchAdsCampaignToPerformanceMaxRecommendation + 42, // 46: google.ads.googleads.v17.resources.Recommendation.forecasting_set_target_cpa_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.ForecastingSetTargetCpaRecommendation + 42, // 47: google.ads.googleads.v17.resources.Recommendation.set_target_cpa_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.ForecastingSetTargetCpaRecommendation + 27, // 48: google.ads.googleads.v17.resources.Recommendation.set_target_roas_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.ForecastingSetTargetRoasRecommendation + 43, // 49: google.ads.googleads.v17.resources.Recommendation.maximize_conversion_value_opt_in_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.MaximizeConversionValueOptInRecommendation + 44, // 50: google.ads.googleads.v17.resources.Recommendation.improve_google_tag_coverage_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.ImproveGoogleTagCoverageRecommendation + 45, // 51: google.ads.googleads.v17.resources.Recommendation.performance_max_final_url_opt_in_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.PerformanceMaxFinalUrlOptInRecommendation + 46, // 52: google.ads.googleads.v17.resources.Recommendation.refresh_customer_match_list_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.RefreshCustomerMatchListRecommendation + 48, // 53: google.ads.googleads.v17.resources.Recommendation.custom_audience_opt_in_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.CustomAudienceOptInRecommendation + 49, // 54: google.ads.googleads.v17.resources.Recommendation.lead_form_asset_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.LeadFormAssetRecommendation + 50, // 55: google.ads.googleads.v17.resources.Recommendation.improve_demand_gen_ad_strength_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.ImproveDemandGenAdStrengthRecommendation + 3, // 56: google.ads.googleads.v17.resources.Recommendation.RecommendationImpact.base_metrics:type_name -> google.ads.googleads.v17.resources.Recommendation.RecommendationMetrics + 3, // 57: google.ads.googleads.v17.resources.Recommendation.RecommendationImpact.potential_metrics:type_name -> google.ads.googleads.v17.resources.Recommendation.RecommendationMetrics + 51, // 58: google.ads.googleads.v17.resources.Recommendation.CampaignBudgetRecommendation.budget_options:type_name -> google.ads.googleads.v17.resources.Recommendation.CampaignBudgetRecommendation.CampaignBudgetRecommendationOption + 55, // 59: google.ads.googleads.v17.resources.Recommendation.KeywordRecommendation.keyword:type_name -> google.ads.googleads.v17.common.KeywordInfo + 52, // 60: google.ads.googleads.v17.resources.Recommendation.KeywordRecommendation.search_terms:type_name -> google.ads.googleads.v17.resources.Recommendation.KeywordRecommendation.SearchTerm + 56, // 61: google.ads.googleads.v17.resources.Recommendation.TextAdRecommendation.ad:type_name -> google.ads.googleads.v17.resources.Ad + 53, // 62: google.ads.googleads.v17.resources.Recommendation.TargetCpaOptInRecommendation.options:type_name -> google.ads.googleads.v17.resources.Recommendation.TargetCpaOptInRecommendation.TargetCpaOptInRecommendationOption + 57, // 63: google.ads.googleads.v17.resources.Recommendation.CalloutAssetRecommendation.recommended_campaign_callout_assets:type_name -> google.ads.googleads.v17.resources.Asset + 57, // 64: google.ads.googleads.v17.resources.Recommendation.CalloutAssetRecommendation.recommended_customer_callout_assets:type_name -> google.ads.googleads.v17.resources.Asset + 57, // 65: google.ads.googleads.v17.resources.Recommendation.SitelinkAssetRecommendation.recommended_campaign_sitelink_assets:type_name -> google.ads.googleads.v17.resources.Asset + 57, // 66: google.ads.googleads.v17.resources.Recommendation.SitelinkAssetRecommendation.recommended_customer_sitelink_assets:type_name -> google.ads.googleads.v17.resources.Asset + 55, // 67: google.ads.googleads.v17.resources.Recommendation.KeywordMatchTypeRecommendation.keyword:type_name -> google.ads.googleads.v17.common.KeywordInfo + 58, // 68: google.ads.googleads.v17.resources.Recommendation.KeywordMatchTypeRecommendation.recommended_match_type:type_name -> google.ads.googleads.v17.enums.KeywordMatchTypeEnum.KeywordMatchType + 4, // 69: google.ads.googleads.v17.resources.Recommendation.MoveUnusedBudgetRecommendation.budget_recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation.CampaignBudgetRecommendation + 56, // 70: google.ads.googleads.v17.resources.Recommendation.ResponsiveSearchAdAssetRecommendation.current_ad:type_name -> google.ads.googleads.v17.resources.Ad + 56, // 71: google.ads.googleads.v17.resources.Recommendation.ResponsiveSearchAdAssetRecommendation.recommended_assets:type_name -> google.ads.googleads.v17.resources.Ad + 56, // 72: google.ads.googleads.v17.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation.current_ad:type_name -> google.ads.googleads.v17.resources.Ad + 56, // 73: google.ads.googleads.v17.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation.recommended_ad:type_name -> google.ads.googleads.v17.resources.Ad + 56, // 74: google.ads.googleads.v17.resources.Recommendation.ResponsiveSearchAdRecommendation.ad:type_name -> google.ads.googleads.v17.resources.Ad + 55, // 75: google.ads.googleads.v17.resources.Recommendation.UseBroadMatchKeywordRecommendation.keyword:type_name -> google.ads.googleads.v17.common.KeywordInfo + 38, // 76: google.ads.googleads.v17.resources.Recommendation.ForecastingSetTargetRoasRecommendation.campaign_budget:type_name -> google.ads.googleads.v17.resources.Recommendation.CampaignBudget + 1, // 77: google.ads.googleads.v17.resources.Recommendation.ShoppingOfferAttributeRecommendation.merchant:type_name -> google.ads.googleads.v17.resources.Recommendation.MerchantInfo + 1, // 78: google.ads.googleads.v17.resources.Recommendation.ShoppingFixDisapprovedProductsRecommendation.merchant:type_name -> google.ads.googleads.v17.resources.Recommendation.MerchantInfo + 1, // 79: google.ads.googleads.v17.resources.Recommendation.ShoppingTargetAllOffersRecommendation.merchant:type_name -> google.ads.googleads.v17.resources.Recommendation.MerchantInfo + 1, // 80: google.ads.googleads.v17.resources.Recommendation.ShoppingAddProductsToCampaignRecommendation.merchant:type_name -> google.ads.googleads.v17.resources.Recommendation.MerchantInfo + 59, // 81: google.ads.googleads.v17.resources.Recommendation.ShoppingAddProductsToCampaignRecommendation.reason:type_name -> google.ads.googleads.v17.enums.ShoppingAddProductsToCampaignRecommendationEnum.Reason + 1, // 82: google.ads.googleads.v17.resources.Recommendation.ShoppingMerchantCenterAccountSuspensionRecommendation.merchant:type_name -> google.ads.googleads.v17.resources.Recommendation.MerchantInfo + 1, // 83: google.ads.googleads.v17.resources.Recommendation.ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMaxRecommendation.merchant:type_name -> google.ads.googleads.v17.resources.Recommendation.MerchantInfo + 34, // 84: google.ads.googleads.v17.resources.Recommendation.RaiseTargetCpaRecommendation.target_adjustment:type_name -> google.ads.googleads.v17.resources.Recommendation.TargetAdjustmentInfo + 60, // 85: google.ads.googleads.v17.resources.Recommendation.RaiseTargetCpaRecommendation.app_bidding_goal:type_name -> google.ads.googleads.v17.enums.AppBiddingGoalEnum.AppBiddingGoal + 34, // 86: google.ads.googleads.v17.resources.Recommendation.LowerTargetRoasRecommendation.target_adjustment:type_name -> google.ads.googleads.v17.resources.Recommendation.TargetAdjustmentInfo + 38, // 87: google.ads.googleads.v17.resources.Recommendation.ForecastingSetTargetCpaRecommendation.campaign_budget:type_name -> google.ads.googleads.v17.resources.Recommendation.CampaignBudget + 47, // 88: google.ads.googleads.v17.resources.Recommendation.RefreshCustomerMatchListRecommendation.top_spending_account:type_name -> google.ads.googleads.v17.resources.Recommendation.AccountInfo + 47, // 89: google.ads.googleads.v17.resources.Recommendation.RefreshCustomerMatchListRecommendation.owner_account:type_name -> google.ads.googleads.v17.resources.Recommendation.AccountInfo + 55, // 90: google.ads.googleads.v17.resources.Recommendation.CustomAudienceOptInRecommendation.keywords:type_name -> google.ads.googleads.v17.common.KeywordInfo + 61, // 91: google.ads.googleads.v17.resources.Recommendation.ImproveDemandGenAdStrengthRecommendation.ad_strength:type_name -> google.ads.googleads.v17.enums.AdStrengthEnum.AdStrength + 2, // 92: google.ads.googleads.v17.resources.Recommendation.CampaignBudgetRecommendation.CampaignBudgetRecommendationOption.impact:type_name -> google.ads.googleads.v17.resources.Recommendation.RecommendationImpact + 62, // 93: google.ads.googleads.v17.resources.Recommendation.TargetCpaOptInRecommendation.TargetCpaOptInRecommendationOption.goal:type_name -> google.ads.googleads.v17.enums.TargetCpaOptInRecommendationGoalEnum.TargetCpaOptInRecommendationGoal + 2, // 94: google.ads.googleads.v17.resources.Recommendation.TargetCpaOptInRecommendation.TargetCpaOptInRecommendationOption.impact:type_name -> google.ads.googleads.v17.resources.Recommendation.RecommendationImpact 95, // [95:95] is the sub-list for method output_type 95, // [95:95] is the sub-list for method input_type 95, // [95:95] is the sub-list for extension type_name @@ -5681,15 +5681,15 @@ var file_google_ads_googleads_v16_resources_recommendation_proto_depIdxs = []int 0, // [0:95] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_recommendation_proto_init() } -func file_google_ads_googleads_v16_resources_recommendation_proto_init() { - if File_google_ads_googleads_v16_resources_recommendation_proto != nil { +func init() { file_google_ads_googleads_v17_resources_recommendation_proto_init() } +func file_google_ads_googleads_v17_resources_recommendation_proto_init() { + if File_google_ads_googleads_v17_resources_recommendation_proto != nil { return } - file_google_ads_googleads_v16_resources_ad_proto_init() - file_google_ads_googleads_v16_resources_asset_proto_init() + file_google_ads_googleads_v17_resources_ad_proto_init() + file_google_ads_googleads_v17_resources_asset_proto_init() if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation); i { case 0: return &v.state @@ -5701,7 +5701,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_MerchantInfo); i { case 0: return &v.state @@ -5713,7 +5713,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_RecommendationImpact); i { case 0: return &v.state @@ -5725,7 +5725,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_RecommendationMetrics); i { case 0: return &v.state @@ -5737,7 +5737,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_CampaignBudgetRecommendation); i { case 0: return &v.state @@ -5749,7 +5749,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_KeywordRecommendation); i { case 0: return &v.state @@ -5761,7 +5761,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_TextAdRecommendation); i { case 0: return &v.state @@ -5773,7 +5773,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_TargetCpaOptInRecommendation); i { case 0: return &v.state @@ -5785,7 +5785,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_MaximizeConversionsOptInRecommendation); i { case 0: return &v.state @@ -5797,7 +5797,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_EnhancedCpcOptInRecommendation); i { case 0: return &v.state @@ -5809,7 +5809,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_SearchPartnersOptInRecommendation); i { case 0: return &v.state @@ -5821,7 +5821,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_MaximizeClicksOptInRecommendation); i { case 0: return &v.state @@ -5833,7 +5833,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_OptimizeAdRotationRecommendation); i { case 0: return &v.state @@ -5845,7 +5845,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_CalloutAssetRecommendation); i { case 0: return &v.state @@ -5857,7 +5857,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_SitelinkAssetRecommendation); i { case 0: return &v.state @@ -5869,7 +5869,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_CallAssetRecommendation); i { case 0: return &v.state @@ -5881,7 +5881,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_KeywordMatchTypeRecommendation); i { case 0: return &v.state @@ -5893,7 +5893,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_MoveUnusedBudgetRecommendation); i { case 0: return &v.state @@ -5905,7 +5905,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_TargetRoasOptInRecommendation); i { case 0: return &v.state @@ -5917,7 +5917,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_ResponsiveSearchAdAssetRecommendation); i { case 0: return &v.state @@ -5929,7 +5929,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_ResponsiveSearchAdImproveAdStrengthRecommendation); i { case 0: return &v.state @@ -5941,7 +5941,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_ResponsiveSearchAdRecommendation); i { case 0: return &v.state @@ -5953,7 +5953,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_UseBroadMatchKeywordRecommendation); i { case 0: return &v.state @@ -5965,7 +5965,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation); i { case 0: return &v.state @@ -5977,7 +5977,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_RaiseTargetCpaBidTooLowRecommendation); i { case 0: return &v.state @@ -5989,7 +5989,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_DisplayExpansionOptInRecommendation); i { case 0: return &v.state @@ -6001,7 +6001,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation); i { case 0: return &v.state @@ -6013,7 +6013,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_ForecastingSetTargetRoasRecommendation); i { case 0: return &v.state @@ -6025,7 +6025,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_ShoppingOfferAttributeRecommendation); i { case 0: return &v.state @@ -6037,7 +6037,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_ShoppingFixDisapprovedProductsRecommendation); i { case 0: return &v.state @@ -6049,7 +6049,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_ShoppingTargetAllOffersRecommendation); i { case 0: return &v.state @@ -6061,7 +6061,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_ShoppingAddProductsToCampaignRecommendation); i { case 0: return &v.state @@ -6073,7 +6073,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_ShoppingMerchantCenterAccountSuspensionRecommendation); i { case 0: return &v.state @@ -6085,7 +6085,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMaxRecommendation); i { case 0: return &v.state @@ -6097,7 +6097,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_TargetAdjustmentInfo); i { case 0: return &v.state @@ -6109,7 +6109,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_RaiseTargetCpaRecommendation); i { case 0: return &v.state @@ -6121,7 +6121,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_LowerTargetRoasRecommendation); i { case 0: return &v.state @@ -6133,7 +6133,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_DynamicImageExtensionOptInRecommendation); i { case 0: return &v.state @@ -6145,7 +6145,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_CampaignBudget); i { case 0: return &v.state @@ -6157,7 +6157,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_PerformanceMaxOptInRecommendation); i { case 0: return &v.state @@ -6169,7 +6169,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_ImprovePerformanceMaxAdStrengthRecommendation); i { case 0: return &v.state @@ -6181,7 +6181,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_MigrateDynamicSearchAdsCampaignToPerformanceMaxRecommendation); i { case 0: return &v.state @@ -6193,7 +6193,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_ForecastingSetTargetCpaRecommendation); i { case 0: return &v.state @@ -6205,7 +6205,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_MaximizeConversionValueOptInRecommendation); i { case 0: return &v.state @@ -6217,7 +6217,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_ImproveGoogleTagCoverageRecommendation); i { case 0: return &v.state @@ -6229,7 +6229,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_PerformanceMaxFinalUrlOptInRecommendation); i { case 0: return &v.state @@ -6241,7 +6241,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_RefreshCustomerMatchListRecommendation); i { case 0: return &v.state @@ -6253,7 +6253,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_AccountInfo); i { case 0: return &v.state @@ -6265,7 +6265,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_CustomAudienceOptInRecommendation); i { case 0: return &v.state @@ -6277,7 +6277,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_LeadFormAssetRecommendation); i { case 0: return &v.state @@ -6289,7 +6289,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_ImproveDemandGenAdStrengthRecommendation); i { case 0: return &v.state @@ -6301,7 +6301,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_CampaignBudgetRecommendation_CampaignBudgetRecommendationOption); i { case 0: return &v.state @@ -6313,7 +6313,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_KeywordRecommendation_SearchTerm); i { case 0: return &v.state @@ -6325,7 +6325,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { return nil } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Recommendation_TargetCpaOptInRecommendation_TargetCpaOptInRecommendationOption); i { case 0: return &v.state @@ -6338,7 +6338,7 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { } } } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[0].OneofWrappers = []interface{}{ (*Recommendation_CampaignBudgetRecommendation_)(nil), (*Recommendation_ForecastingCampaignBudgetRecommendation)(nil), (*Recommendation_KeywordRecommendation_)(nil), @@ -6394,36 +6394,36 @@ func file_google_ads_googleads_v16_resources_recommendation_proto_init() { (*Recommendation_LeadFormAssetRecommendation_)(nil), (*Recommendation_ImproveDemandGenAdStrengthRecommendation_)(nil), } - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[3].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[4].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[5].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[6].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[7].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[8].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[11].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[17].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[18].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[24].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[34].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[35].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[51].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes[53].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[3].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[4].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[5].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[6].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[7].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[8].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[11].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[17].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[18].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[24].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[34].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[35].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[51].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes[53].OneofWrappers = []interface{}{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_recommendation_proto_rawDesc, NumEnums: 0, NumMessages: 54, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_recommendation_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_recommendation_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_recommendation_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_recommendation_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_recommendation_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_recommendation_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_recommendation_proto = out.File - file_google_ads_googleads_v16_resources_recommendation_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_recommendation_proto_goTypes = nil - file_google_ads_googleads_v16_resources_recommendation_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_recommendation_proto = out.File + file_google_ads_googleads_v17_resources_recommendation_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_recommendation_proto_goTypes = nil + file_google_ads_googleads_v17_resources_recommendation_proto_depIdxs = nil } diff --git a/resources/recommendation_subscription.pb.go b/resources/recommendation_subscription.pb.go index db4b0769..a4dea646 100644 --- a/resources/recommendation_subscription.pb.go +++ b/resources/recommendation_subscription.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/recommendation_subscription.proto +// source: google/ads/googleads/v17/resources/recommendation_subscription.proto package resources @@ -47,7 +47,7 @@ type RecommendationSubscription struct { // `customers/{customer_id}/recommendationSubscriptions/{recommendation_type}` ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` // Required. Immutable. The type of recommendation subscribed to. - Type enums.RecommendationTypeEnum_RecommendationType `protobuf:"varint,2,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.RecommendationTypeEnum_RecommendationType" json:"type,omitempty"` + Type enums.RecommendationTypeEnum_RecommendationType `protobuf:"varint,2,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.RecommendationTypeEnum_RecommendationType" json:"type,omitempty"` // Output only. Time in seconds when the subscription was first created. The // datetime is in the customer's time zone and in "yyyy-MM-dd HH:mm:ss" // format. @@ -57,13 +57,13 @@ type RecommendationSubscription struct { // and in "yyyy-MM-dd HH:mm:ss.ssssss" format. ModifyDateTime *string `protobuf:"bytes,4,opt,name=modify_date_time,json=modifyDateTime,proto3,oneof" json:"modify_date_time,omitempty"` // Required. Status of the subscription, either enabled or paused. - Status *enums.RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus,oneof" json:"status,omitempty"` + Status *enums.RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus,oneof" json:"status,omitempty"` } func (x *RecommendationSubscription) Reset() { *x = RecommendationSubscription{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_recommendation_subscription_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_recommendation_subscription_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76,7 +76,7 @@ func (x *RecommendationSubscription) String() string { func (*RecommendationSubscription) ProtoMessage() {} func (x *RecommendationSubscription) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_recommendation_subscription_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_recommendation_subscription_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 *RecommendationSubscription) ProtoReflect() protoreflect.Message { // Deprecated: Use RecommendationSubscription.ProtoReflect.Descriptor instead. func (*RecommendationSubscription) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_recommendation_subscription_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_recommendation_subscription_proto_rawDescGZIP(), []int{0} } func (x *RecommendationSubscription) GetResourceName() string { @@ -127,22 +127,22 @@ func (x *RecommendationSubscription) GetStatus() enums.RecommendationSubscriptio return enums.RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus(0) } -var File_google_ads_googleads_v16_resources_recommendation_subscription_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_recommendation_subscription_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_recommendation_subscription_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_recommendation_subscription_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, 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, 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, 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, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x6d, + 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, 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, + 0x67, 0x6f, 0x6f, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, @@ -159,7 +159,7 @@ var file_google_ads_googleads_v16_resources_recommendation_subscription_proto_ra 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x65, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, + 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, 0x42, 0x06, 0xe0, 0x41, 0x02, 0xe0, 0x41, 0x05, 0x52, 0x04, 0x74, 0x79, 0x70, @@ -172,7 +172,7 @@ var file_google_ads_googleads_v16_resources_recommendation_subscription_proto_ra 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x87, 0x01, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 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, 0x52, 0x65, 0x63, 0x6f, + 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, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, @@ -191,46 +191,46 @@ var file_google_ads_googleads_v16_resources_recommendation_subscription_proto_ra 0x13, 0x0a, 0x11, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x91, 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, + 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, 0x1f, 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, 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_recommendation_subscription_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_recommendation_subscription_proto_rawDescData = file_google_ads_googleads_v16_resources_recommendation_subscription_proto_rawDesc + file_google_ads_googleads_v17_resources_recommendation_subscription_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_recommendation_subscription_proto_rawDescData = file_google_ads_googleads_v17_resources_recommendation_subscription_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_recommendation_subscription_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_recommendation_subscription_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_recommendation_subscription_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_recommendation_subscription_proto_rawDescData) +func file_google_ads_googleads_v17_resources_recommendation_subscription_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_recommendation_subscription_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_recommendation_subscription_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_recommendation_subscription_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_recommendation_subscription_proto_rawDescData + return file_google_ads_googleads_v17_resources_recommendation_subscription_proto_rawDescData } -var file_google_ads_googleads_v16_resources_recommendation_subscription_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_recommendation_subscription_proto_goTypes = []interface{}{ - (*RecommendationSubscription)(nil), // 0: google.ads.googleads.v16.resources.RecommendationSubscription - (enums.RecommendationTypeEnum_RecommendationType)(0), // 1: google.ads.googleads.v16.enums.RecommendationTypeEnum.RecommendationType - (enums.RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus)(0), // 2: google.ads.googleads.v16.enums.RecommendationSubscriptionStatusEnum.RecommendationSubscriptionStatus +var file_google_ads_googleads_v17_resources_recommendation_subscription_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_recommendation_subscription_proto_goTypes = []interface{}{ + (*RecommendationSubscription)(nil), // 0: google.ads.googleads.v17.resources.RecommendationSubscription + (enums.RecommendationTypeEnum_RecommendationType)(0), // 1: google.ads.googleads.v17.enums.RecommendationTypeEnum.RecommendationType + (enums.RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus)(0), // 2: google.ads.googleads.v17.enums.RecommendationSubscriptionStatusEnum.RecommendationSubscriptionStatus } -var file_google_ads_googleads_v16_resources_recommendation_subscription_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.RecommendationSubscription.type:type_name -> google.ads.googleads.v16.enums.RecommendationTypeEnum.RecommendationType - 2, // 1: google.ads.googleads.v16.resources.RecommendationSubscription.status:type_name -> google.ads.googleads.v16.enums.RecommendationSubscriptionStatusEnum.RecommendationSubscriptionStatus +var file_google_ads_googleads_v17_resources_recommendation_subscription_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.RecommendationSubscription.type:type_name -> google.ads.googleads.v17.enums.RecommendationTypeEnum.RecommendationType + 2, // 1: google.ads.googleads.v17.resources.RecommendationSubscription.status:type_name -> google.ads.googleads.v17.enums.RecommendationSubscriptionStatusEnum.RecommendationSubscriptionStatus 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 @@ -238,13 +238,13 @@ var file_google_ads_googleads_v16_resources_recommendation_subscription_proto_de 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_recommendation_subscription_proto_init() } -func file_google_ads_googleads_v16_resources_recommendation_subscription_proto_init() { - if File_google_ads_googleads_v16_resources_recommendation_subscription_proto != nil { +func init() { file_google_ads_googleads_v17_resources_recommendation_subscription_proto_init() } +func file_google_ads_googleads_v17_resources_recommendation_subscription_proto_init() { + if File_google_ads_googleads_v17_resources_recommendation_subscription_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_recommendation_subscription_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_recommendation_subscription_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RecommendationSubscription); i { case 0: return &v.state @@ -257,23 +257,23 @@ func file_google_ads_googleads_v16_resources_recommendation_subscription_proto_i } } } - file_google_ads_googleads_v16_resources_recommendation_subscription_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_recommendation_subscription_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_recommendation_subscription_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_recommendation_subscription_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_recommendation_subscription_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_recommendation_subscription_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_recommendation_subscription_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_recommendation_subscription_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_recommendation_subscription_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_recommendation_subscription_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_recommendation_subscription_proto = out.File - file_google_ads_googleads_v16_resources_recommendation_subscription_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_recommendation_subscription_proto_goTypes = nil - file_google_ads_googleads_v16_resources_recommendation_subscription_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_recommendation_subscription_proto = out.File + file_google_ads_googleads_v17_resources_recommendation_subscription_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_recommendation_subscription_proto_goTypes = nil + file_google_ads_googleads_v17_resources_recommendation_subscription_proto_depIdxs = nil } diff --git a/resources/remarketing_action.pb.go b/resources/remarketing_action.pb.go index 7cc64d08..fc1d9f58 100644 --- a/resources/remarketing_action.pb.go +++ b/resources/remarketing_action.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/remarketing_action.proto +// source: google/ads/googleads/v17/resources/remarketing_action.proto package resources @@ -63,7 +63,7 @@ type RemarketingAction struct { func (x *RemarketingAction) Reset() { *x = RemarketingAction{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_remarketing_action_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_remarketing_action_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76,7 +76,7 @@ func (x *RemarketingAction) String() string { func (*RemarketingAction) ProtoMessage() {} func (x *RemarketingAction) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_remarketing_action_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_remarketing_action_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 *RemarketingAction) ProtoReflect() protoreflect.Message { // Deprecated: Use RemarketingAction.ProtoReflect.Descriptor instead. func (*RemarketingAction) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_remarketing_action_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_remarketing_action_proto_rawDescGZIP(), []int{0} } func (x *RemarketingAction) GetResourceName() string { @@ -120,17 +120,17 @@ func (x *RemarketingAction) GetTagSnippets() []*common.TagSnippet { return nil } -var File_google_ads_googleads_v16_resources_remarketing_action_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_remarketing_action_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_remarketing_action_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_remarketing_action_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, 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, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 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, 0x74, 0x61, 0x67, 0x5f, 0x73, 0x6e, 0x69, 0x70, 0x70, 0x65, 0x74, 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, @@ -149,7 +149,7 @@ var file_google_ads_googleads_v16_resources_remarketing_action_proto_rawDesc = [ 0x01, 0x01, 0x12, 0x53, 0x0a, 0x0c, 0x74, 0x61, 0x67, 0x5f, 0x73, 0x6e, 0x69, 0x70, 0x70, 0x65, 0x74, 0x73, 0x18, 0x04, 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, 0x54, 0x61, 0x67, 0x53, 0x6e, + 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x67, 0x53, 0x6e, 0x69, 0x70, 0x70, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0b, 0x74, 0x61, 0x67, 0x53, 0x6e, 0x69, 0x70, 0x70, 0x65, 0x74, 0x73, 0x3a, 0x73, 0xea, 0x41, 0x70, 0x0a, 0x2a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, @@ -161,43 +161,43 @@ var file_google_ads_googleads_v16_resources_remarketing_action_proto_rawDesc = [ 0x67, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x05, 0x0a, 0x03, 0x5f, 0x69, 0x64, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x88, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x16, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 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_remarketing_action_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_remarketing_action_proto_rawDescData = file_google_ads_googleads_v16_resources_remarketing_action_proto_rawDesc + file_google_ads_googleads_v17_resources_remarketing_action_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_remarketing_action_proto_rawDescData = file_google_ads_googleads_v17_resources_remarketing_action_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_remarketing_action_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_remarketing_action_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_remarketing_action_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_remarketing_action_proto_rawDescData) +func file_google_ads_googleads_v17_resources_remarketing_action_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_remarketing_action_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_remarketing_action_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_remarketing_action_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_remarketing_action_proto_rawDescData + return file_google_ads_googleads_v17_resources_remarketing_action_proto_rawDescData } -var file_google_ads_googleads_v16_resources_remarketing_action_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_remarketing_action_proto_goTypes = []interface{}{ - (*RemarketingAction)(nil), // 0: google.ads.googleads.v16.resources.RemarketingAction - (*common.TagSnippet)(nil), // 1: google.ads.googleads.v16.common.TagSnippet +var file_google_ads_googleads_v17_resources_remarketing_action_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_remarketing_action_proto_goTypes = []interface{}{ + (*RemarketingAction)(nil), // 0: google.ads.googleads.v17.resources.RemarketingAction + (*common.TagSnippet)(nil), // 1: google.ads.googleads.v17.common.TagSnippet } -var file_google_ads_googleads_v16_resources_remarketing_action_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.RemarketingAction.tag_snippets:type_name -> google.ads.googleads.v16.common.TagSnippet +var file_google_ads_googleads_v17_resources_remarketing_action_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.RemarketingAction.tag_snippets:type_name -> google.ads.googleads.v17.common.TagSnippet 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 @@ -205,13 +205,13 @@ var file_google_ads_googleads_v16_resources_remarketing_action_proto_depIdxs = [ 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_remarketing_action_proto_init() } -func file_google_ads_googleads_v16_resources_remarketing_action_proto_init() { - if File_google_ads_googleads_v16_resources_remarketing_action_proto != nil { +func init() { file_google_ads_googleads_v17_resources_remarketing_action_proto_init() } +func file_google_ads_googleads_v17_resources_remarketing_action_proto_init() { + if File_google_ads_googleads_v17_resources_remarketing_action_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_remarketing_action_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_remarketing_action_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RemarketingAction); i { case 0: return &v.state @@ -224,23 +224,23 @@ func file_google_ads_googleads_v16_resources_remarketing_action_proto_init() { } } } - file_google_ads_googleads_v16_resources_remarketing_action_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_remarketing_action_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_remarketing_action_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_remarketing_action_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_remarketing_action_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_remarketing_action_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_remarketing_action_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_remarketing_action_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_remarketing_action_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_remarketing_action_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_remarketing_action_proto = out.File - file_google_ads_googleads_v16_resources_remarketing_action_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_remarketing_action_proto_goTypes = nil - file_google_ads_googleads_v16_resources_remarketing_action_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_remarketing_action_proto = out.File + file_google_ads_googleads_v17_resources_remarketing_action_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_remarketing_action_proto_goTypes = nil + file_google_ads_googleads_v17_resources_remarketing_action_proto_depIdxs = nil } diff --git a/resources/search_term_view.pb.go b/resources/search_term_view.pb.go index 8ef6a2c4..462d159a 100644 --- a/resources/search_term_view.pb.go +++ b/resources/search_term_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/search_term_view.proto +// source: google/ads/googleads/v17/resources/search_term_view.proto package resources @@ -54,13 +54,13 @@ type SearchTermView struct { AdGroup *string `protobuf:"bytes,6,opt,name=ad_group,json=adGroup,proto3,oneof" json:"ad_group,omitempty"` // Output only. Indicates whether the search term is currently one of your // targeted or excluded keywords. - Status enums.SearchTermTargetingStatusEnum_SearchTermTargetingStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.SearchTermTargetingStatusEnum_SearchTermTargetingStatus" json:"status,omitempty"` + Status enums.SearchTermTargetingStatusEnum_SearchTermTargetingStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.SearchTermTargetingStatusEnum_SearchTermTargetingStatus" json:"status,omitempty"` } func (x *SearchTermView) Reset() { *x = SearchTermView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_search_term_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_search_term_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73,7 +73,7 @@ func (x *SearchTermView) String() string { func (*SearchTermView) ProtoMessage() {} func (x *SearchTermView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_search_term_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_search_term_view_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 *SearchTermView) ProtoReflect() protoreflect.Message { // Deprecated: Use SearchTermView.ProtoReflect.Descriptor instead. func (*SearchTermView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_search_term_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_search_term_view_proto_rawDescGZIP(), []int{0} } func (x *SearchTermView) GetResourceName() string { @@ -117,17 +117,17 @@ func (x *SearchTermView) GetStatus() enums.SearchTermTargetingStatusEnum_SearchT return enums.SearchTermTargetingStatusEnum_SearchTermTargetingStatus(0) } -var File_google_ads_googleads_v16_resources_search_term_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_search_term_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_search_term_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_search_term_view_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, 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, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 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, 0x73, 0x1a, + 0x73, 0x2e, 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, + 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, @@ -150,7 +150,7 @@ var file_google_ads_googleads_v16_resources_search_term_view_proto_rawDesc = []b 0x52, 0x07, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x88, 0x01, 0x01, 0x12, 0x74, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 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, 0x75, 0x6d, 0x73, 0x2e, 0x53, 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, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x53, @@ -166,43 +166,43 @@ var file_google_ads_googleads_v16_resources_search_term_view_proto_rawDesc = []b 0x0c, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x85, 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, 0x13, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 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, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, + 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, + 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, + 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, 0x63, + 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_search_term_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_search_term_view_proto_rawDescData = file_google_ads_googleads_v16_resources_search_term_view_proto_rawDesc + file_google_ads_googleads_v17_resources_search_term_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_search_term_view_proto_rawDescData = file_google_ads_googleads_v17_resources_search_term_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_search_term_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_search_term_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_search_term_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_search_term_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_search_term_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_search_term_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_search_term_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_search_term_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_search_term_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_search_term_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_search_term_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_search_term_view_proto_goTypes = []interface{}{ - (*SearchTermView)(nil), // 0: google.ads.googleads.v16.resources.SearchTermView - (enums.SearchTermTargetingStatusEnum_SearchTermTargetingStatus)(0), // 1: google.ads.googleads.v16.enums.SearchTermTargetingStatusEnum.SearchTermTargetingStatus +var file_google_ads_googleads_v17_resources_search_term_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_search_term_view_proto_goTypes = []interface{}{ + (*SearchTermView)(nil), // 0: google.ads.googleads.v17.resources.SearchTermView + (enums.SearchTermTargetingStatusEnum_SearchTermTargetingStatus)(0), // 1: google.ads.googleads.v17.enums.SearchTermTargetingStatusEnum.SearchTermTargetingStatus } -var file_google_ads_googleads_v16_resources_search_term_view_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.SearchTermView.status:type_name -> google.ads.googleads.v16.enums.SearchTermTargetingStatusEnum.SearchTermTargetingStatus +var file_google_ads_googleads_v17_resources_search_term_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.SearchTermView.status:type_name -> google.ads.googleads.v17.enums.SearchTermTargetingStatusEnum.SearchTermTargetingStatus 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 @@ -210,13 +210,13 @@ var file_google_ads_googleads_v16_resources_search_term_view_proto_depIdxs = []i 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_search_term_view_proto_init() } -func file_google_ads_googleads_v16_resources_search_term_view_proto_init() { - if File_google_ads_googleads_v16_resources_search_term_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_search_term_view_proto_init() } +func file_google_ads_googleads_v17_resources_search_term_view_proto_init() { + if File_google_ads_googleads_v17_resources_search_term_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_search_term_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_search_term_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SearchTermView); i { case 0: return &v.state @@ -229,23 +229,23 @@ func file_google_ads_googleads_v16_resources_search_term_view_proto_init() { } } } - file_google_ads_googleads_v16_resources_search_term_view_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_search_term_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_search_term_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_search_term_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_search_term_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_search_term_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_search_term_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_search_term_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_search_term_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_search_term_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_search_term_view_proto = out.File - file_google_ads_googleads_v16_resources_search_term_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_search_term_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_search_term_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_search_term_view_proto = out.File + file_google_ads_googleads_v17_resources_search_term_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_search_term_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_search_term_view_proto_depIdxs = nil } diff --git a/resources/shared_criterion.pb.go b/resources/shared_criterion.pb.go index 4d6be40c..e51e40be 100644 --- a/resources/shared_criterion.pb.go +++ b/resources/shared_criterion.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/shared_criterion.proto +// source: google/ads/googleads/v17/resources/shared_criterion.proto package resources @@ -55,7 +55,7 @@ type SharedCriterion struct { // This field is ignored for mutates. CriterionId *int64 `protobuf:"varint,11,opt,name=criterion_id,json=criterionId,proto3,oneof" json:"criterion_id,omitempty"` // Output only. The type of the criterion. - Type enums.CriterionTypeEnum_CriterionType `protobuf:"varint,4,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.CriterionTypeEnum_CriterionType" json:"type,omitempty"` + Type enums.CriterionTypeEnum_CriterionType `protobuf:"varint,4,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.CriterionTypeEnum_CriterionType" json:"type,omitempty"` // The criterion. // // Exactly one must be set. @@ -75,7 +75,7 @@ type SharedCriterion struct { func (x *SharedCriterion) Reset() { *x = SharedCriterion{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_shared_criterion_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_shared_criterion_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -88,7 +88,7 @@ func (x *SharedCriterion) String() string { func (*SharedCriterion) ProtoMessage() {} func (x *SharedCriterion) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_shared_criterion_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_shared_criterion_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 *SharedCriterion) ProtoReflect() protoreflect.Message { // Deprecated: Use SharedCriterion.ProtoReflect.Descriptor instead. func (*SharedCriterion) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_shared_criterion_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_shared_criterion_proto_rawDescGZIP(), []int{0} } func (x *SharedCriterion) GetResourceName() string { @@ -241,20 +241,20 @@ func (*SharedCriterion_MobileApplication) isSharedCriterion_Criterion() {} func (*SharedCriterion_Brand) isSharedCriterion_Criterion() {} -var File_google_ads_googleads_v16_resources_shared_criterion_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_shared_criterion_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_shared_criterion_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_shared_criterion_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, 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, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 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, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x6e, + 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, 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, + 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, 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, @@ -277,49 +277,49 @@ var file_google_ads_googleads_v16_resources_shared_criterion_proto_rawDesc = []b 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x58, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 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, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, + 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x4d, 0x0a, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 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, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x5d, 0x0a, 0x0d, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x18, 0x05, 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, 0x59, 0x6f, 0x75, 0x54, 0x75, + 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0c, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x12, 0x63, 0x0a, 0x0f, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x18, 0x06, 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, 0x59, 0x6f, 0x75, 0x54, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0e, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x12, 0x53, 0x0a, 0x09, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x07, 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, 0x50, 0x6c, 0x61, 0x63, 0x65, + 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x09, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x6d, 0x0a, 0x13, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x18, 0x08, 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, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, + 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x11, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x12, 0x6c, 0x0a, 0x12, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x09, 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, + 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, 0x62, 0x69, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x11, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x47, 0x0a, 0x05, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x18, 0x0c, 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, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x49, 0x6e, + 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x05, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x3a, 0x74, 0xea, 0x41, 0x71, 0x0a, 0x28, 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, @@ -333,57 +333,57 @@ var file_google_ads_googleads_v16_resources_shared_criterion_proto_rawDesc = []b 0x65, 0x74, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x42, 0x86, 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, 0x14, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x14, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 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, + 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, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, + 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, + 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, 0x70, 0x72, + 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_shared_criterion_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_shared_criterion_proto_rawDescData = file_google_ads_googleads_v16_resources_shared_criterion_proto_rawDesc + file_google_ads_googleads_v17_resources_shared_criterion_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_shared_criterion_proto_rawDescData = file_google_ads_googleads_v17_resources_shared_criterion_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_shared_criterion_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_shared_criterion_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_shared_criterion_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_shared_criterion_proto_rawDescData) +func file_google_ads_googleads_v17_resources_shared_criterion_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_shared_criterion_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_shared_criterion_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_shared_criterion_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_shared_criterion_proto_rawDescData + return file_google_ads_googleads_v17_resources_shared_criterion_proto_rawDescData } -var file_google_ads_googleads_v16_resources_shared_criterion_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_shared_criterion_proto_goTypes = []interface{}{ - (*SharedCriterion)(nil), // 0: google.ads.googleads.v16.resources.SharedCriterion - (enums.CriterionTypeEnum_CriterionType)(0), // 1: google.ads.googleads.v16.enums.CriterionTypeEnum.CriterionType - (*common.KeywordInfo)(nil), // 2: google.ads.googleads.v16.common.KeywordInfo - (*common.YouTubeVideoInfo)(nil), // 3: google.ads.googleads.v16.common.YouTubeVideoInfo - (*common.YouTubeChannelInfo)(nil), // 4: google.ads.googleads.v16.common.YouTubeChannelInfo - (*common.PlacementInfo)(nil), // 5: google.ads.googleads.v16.common.PlacementInfo - (*common.MobileAppCategoryInfo)(nil), // 6: google.ads.googleads.v16.common.MobileAppCategoryInfo - (*common.MobileApplicationInfo)(nil), // 7: google.ads.googleads.v16.common.MobileApplicationInfo - (*common.BrandInfo)(nil), // 8: google.ads.googleads.v16.common.BrandInfo +var file_google_ads_googleads_v17_resources_shared_criterion_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_shared_criterion_proto_goTypes = []interface{}{ + (*SharedCriterion)(nil), // 0: google.ads.googleads.v17.resources.SharedCriterion + (enums.CriterionTypeEnum_CriterionType)(0), // 1: google.ads.googleads.v17.enums.CriterionTypeEnum.CriterionType + (*common.KeywordInfo)(nil), // 2: google.ads.googleads.v17.common.KeywordInfo + (*common.YouTubeVideoInfo)(nil), // 3: google.ads.googleads.v17.common.YouTubeVideoInfo + (*common.YouTubeChannelInfo)(nil), // 4: google.ads.googleads.v17.common.YouTubeChannelInfo + (*common.PlacementInfo)(nil), // 5: google.ads.googleads.v17.common.PlacementInfo + (*common.MobileAppCategoryInfo)(nil), // 6: google.ads.googleads.v17.common.MobileAppCategoryInfo + (*common.MobileApplicationInfo)(nil), // 7: google.ads.googleads.v17.common.MobileApplicationInfo + (*common.BrandInfo)(nil), // 8: google.ads.googleads.v17.common.BrandInfo } -var file_google_ads_googleads_v16_resources_shared_criterion_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.SharedCriterion.type:type_name -> google.ads.googleads.v16.enums.CriterionTypeEnum.CriterionType - 2, // 1: google.ads.googleads.v16.resources.SharedCriterion.keyword:type_name -> google.ads.googleads.v16.common.KeywordInfo - 3, // 2: google.ads.googleads.v16.resources.SharedCriterion.youtube_video:type_name -> google.ads.googleads.v16.common.YouTubeVideoInfo - 4, // 3: google.ads.googleads.v16.resources.SharedCriterion.youtube_channel:type_name -> google.ads.googleads.v16.common.YouTubeChannelInfo - 5, // 4: google.ads.googleads.v16.resources.SharedCriterion.placement:type_name -> google.ads.googleads.v16.common.PlacementInfo - 6, // 5: google.ads.googleads.v16.resources.SharedCriterion.mobile_app_category:type_name -> google.ads.googleads.v16.common.MobileAppCategoryInfo - 7, // 6: google.ads.googleads.v16.resources.SharedCriterion.mobile_application:type_name -> google.ads.googleads.v16.common.MobileApplicationInfo - 8, // 7: google.ads.googleads.v16.resources.SharedCriterion.brand:type_name -> google.ads.googleads.v16.common.BrandInfo +var file_google_ads_googleads_v17_resources_shared_criterion_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.SharedCriterion.type:type_name -> google.ads.googleads.v17.enums.CriterionTypeEnum.CriterionType + 2, // 1: google.ads.googleads.v17.resources.SharedCriterion.keyword:type_name -> google.ads.googleads.v17.common.KeywordInfo + 3, // 2: google.ads.googleads.v17.resources.SharedCriterion.youtube_video:type_name -> google.ads.googleads.v17.common.YouTubeVideoInfo + 4, // 3: google.ads.googleads.v17.resources.SharedCriterion.youtube_channel:type_name -> google.ads.googleads.v17.common.YouTubeChannelInfo + 5, // 4: google.ads.googleads.v17.resources.SharedCriterion.placement:type_name -> google.ads.googleads.v17.common.PlacementInfo + 6, // 5: google.ads.googleads.v17.resources.SharedCriterion.mobile_app_category:type_name -> google.ads.googleads.v17.common.MobileAppCategoryInfo + 7, // 6: google.ads.googleads.v17.resources.SharedCriterion.mobile_application:type_name -> google.ads.googleads.v17.common.MobileApplicationInfo + 8, // 7: google.ads.googleads.v17.resources.SharedCriterion.brand:type_name -> google.ads.googleads.v17.common.BrandInfo 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 @@ -391,13 +391,13 @@ var file_google_ads_googleads_v16_resources_shared_criterion_proto_depIdxs = []i 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_shared_criterion_proto_init() } -func file_google_ads_googleads_v16_resources_shared_criterion_proto_init() { - if File_google_ads_googleads_v16_resources_shared_criterion_proto != nil { +func init() { file_google_ads_googleads_v17_resources_shared_criterion_proto_init() } +func file_google_ads_googleads_v17_resources_shared_criterion_proto_init() { + if File_google_ads_googleads_v17_resources_shared_criterion_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_shared_criterion_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_shared_criterion_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SharedCriterion); i { case 0: return &v.state @@ -410,7 +410,7 @@ func file_google_ads_googleads_v16_resources_shared_criterion_proto_init() { } } } - file_google_ads_googleads_v16_resources_shared_criterion_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_shared_criterion_proto_msgTypes[0].OneofWrappers = []interface{}{ (*SharedCriterion_Keyword)(nil), (*SharedCriterion_YoutubeVideo)(nil), (*SharedCriterion_YoutubeChannel)(nil), @@ -423,18 +423,18 @@ func file_google_ads_googleads_v16_resources_shared_criterion_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_shared_criterion_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_shared_criterion_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_shared_criterion_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_shared_criterion_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_shared_criterion_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_shared_criterion_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_shared_criterion_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_shared_criterion_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_shared_criterion_proto = out.File - file_google_ads_googleads_v16_resources_shared_criterion_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_shared_criterion_proto_goTypes = nil - file_google_ads_googleads_v16_resources_shared_criterion_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_shared_criterion_proto = out.File + file_google_ads_googleads_v17_resources_shared_criterion_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_shared_criterion_proto_goTypes = nil + file_google_ads_googleads_v17_resources_shared_criterion_proto_depIdxs = nil } diff --git a/resources/shared_set.pb.go b/resources/shared_set.pb.go index af5357a1..838d936c 100644 --- a/resources/shared_set.pb.go +++ b/resources/shared_set.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/shared_set.proto +// source: google/ads/googleads/v17/resources/shared_set.proto package resources @@ -52,7 +52,7 @@ type SharedSet struct { Id *int64 `protobuf:"varint,8,opt,name=id,proto3,oneof" json:"id,omitempty"` // Immutable. The type of this shared set: each shared set holds only a single // kind of resource. Required. Immutable. - Type enums.SharedSetTypeEnum_SharedSetType `protobuf:"varint,3,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.SharedSetTypeEnum_SharedSetType" json:"type,omitempty"` + Type enums.SharedSetTypeEnum_SharedSetType `protobuf:"varint,3,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.SharedSetTypeEnum_SharedSetType" json:"type,omitempty"` // The name of this shared set. Required. // Shared Sets must have names that are unique among active shared sets of // the same type. @@ -60,7 +60,7 @@ type SharedSet struct { // inclusive. Name *string `protobuf:"bytes,9,opt,name=name,proto3,oneof" json:"name,omitempty"` // Output only. The status of this shared set. Read only. - Status enums.SharedSetStatusEnum_SharedSetStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.SharedSetStatusEnum_SharedSetStatus" json:"status,omitempty"` + Status enums.SharedSetStatusEnum_SharedSetStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.SharedSetStatusEnum_SharedSetStatus" json:"status,omitempty"` // Output only. The number of shared criteria within this shared set. Read // only. MemberCount *int64 `protobuf:"varint,10,opt,name=member_count,json=memberCount,proto3,oneof" json:"member_count,omitempty"` @@ -72,7 +72,7 @@ type SharedSet struct { func (x *SharedSet) Reset() { *x = SharedSet{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_shared_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_shared_set_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -85,7 +85,7 @@ func (x *SharedSet) String() string { func (*SharedSet) ProtoMessage() {} func (x *SharedSet) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_shared_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_shared_set_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -98,7 +98,7 @@ func (x *SharedSet) ProtoReflect() protoreflect.Message { // Deprecated: Use SharedSet.ProtoReflect.Descriptor instead. func (*SharedSet) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_shared_set_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_shared_set_proto_rawDescGZIP(), []int{0} } func (x *SharedSet) GetResourceName() string { @@ -150,20 +150,20 @@ func (x *SharedSet) GetReferenceCount() int64 { return 0 } -var File_google_ads_googleads_v16_resources_shared_set_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_shared_set_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_shared_set_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_shared_set_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, 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, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 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, + 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, 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, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, + 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, 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, + 0x6f, 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, 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, @@ -179,14 +179,14 @@ var file_google_ads_googleads_v16_resources_shared_set_proto_rawDesc = []byte{ 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x02, 0x69, 0x64, 0x88, 0x01, 0x01, 0x12, 0x58, 0x0a, 0x04, 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, 0x53, 0x68, 0x61, 0x72, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x17, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x60, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 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, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, @@ -207,44 +207,44 @@ var file_google_ads_googleads_v16_resources_shared_set_proto_rawDesc = []byte{ 0x12, 0x0a, 0x10, 0x5f, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 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, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x0e, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x0e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 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, 0x65, 0x73, 0x6f, 0x75, 0x72, + 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, + 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, 0x26, + 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, + 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_shared_set_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_shared_set_proto_rawDescData = file_google_ads_googleads_v16_resources_shared_set_proto_rawDesc + file_google_ads_googleads_v17_resources_shared_set_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_shared_set_proto_rawDescData = file_google_ads_googleads_v17_resources_shared_set_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_shared_set_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_shared_set_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_shared_set_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_shared_set_proto_rawDescData) +func file_google_ads_googleads_v17_resources_shared_set_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_shared_set_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_shared_set_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_shared_set_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_shared_set_proto_rawDescData + return file_google_ads_googleads_v17_resources_shared_set_proto_rawDescData } -var file_google_ads_googleads_v16_resources_shared_set_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_shared_set_proto_goTypes = []interface{}{ - (*SharedSet)(nil), // 0: google.ads.googleads.v16.resources.SharedSet - (enums.SharedSetTypeEnum_SharedSetType)(0), // 1: google.ads.googleads.v16.enums.SharedSetTypeEnum.SharedSetType - (enums.SharedSetStatusEnum_SharedSetStatus)(0), // 2: google.ads.googleads.v16.enums.SharedSetStatusEnum.SharedSetStatus +var file_google_ads_googleads_v17_resources_shared_set_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_shared_set_proto_goTypes = []interface{}{ + (*SharedSet)(nil), // 0: google.ads.googleads.v17.resources.SharedSet + (enums.SharedSetTypeEnum_SharedSetType)(0), // 1: google.ads.googleads.v17.enums.SharedSetTypeEnum.SharedSetType + (enums.SharedSetStatusEnum_SharedSetStatus)(0), // 2: google.ads.googleads.v17.enums.SharedSetStatusEnum.SharedSetStatus } -var file_google_ads_googleads_v16_resources_shared_set_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.SharedSet.type:type_name -> google.ads.googleads.v16.enums.SharedSetTypeEnum.SharedSetType - 2, // 1: google.ads.googleads.v16.resources.SharedSet.status:type_name -> google.ads.googleads.v16.enums.SharedSetStatusEnum.SharedSetStatus +var file_google_ads_googleads_v17_resources_shared_set_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.SharedSet.type:type_name -> google.ads.googleads.v17.enums.SharedSetTypeEnum.SharedSetType + 2, // 1: google.ads.googleads.v17.resources.SharedSet.status:type_name -> google.ads.googleads.v17.enums.SharedSetStatusEnum.SharedSetStatus 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 @@ -252,13 +252,13 @@ var file_google_ads_googleads_v16_resources_shared_set_proto_depIdxs = []int32{ 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_shared_set_proto_init() } -func file_google_ads_googleads_v16_resources_shared_set_proto_init() { - if File_google_ads_googleads_v16_resources_shared_set_proto != nil { +func init() { file_google_ads_googleads_v17_resources_shared_set_proto_init() } +func file_google_ads_googleads_v17_resources_shared_set_proto_init() { + if File_google_ads_googleads_v17_resources_shared_set_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_shared_set_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_shared_set_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SharedSet); i { case 0: return &v.state @@ -271,23 +271,23 @@ func file_google_ads_googleads_v16_resources_shared_set_proto_init() { } } } - file_google_ads_googleads_v16_resources_shared_set_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_shared_set_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_shared_set_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_shared_set_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_shared_set_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_shared_set_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_shared_set_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_shared_set_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_shared_set_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_shared_set_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_shared_set_proto = out.File - file_google_ads_googleads_v16_resources_shared_set_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_shared_set_proto_goTypes = nil - file_google_ads_googleads_v16_resources_shared_set_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_shared_set_proto = out.File + file_google_ads_googleads_v17_resources_shared_set_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_shared_set_proto_goTypes = nil + file_google_ads_googleads_v17_resources_shared_set_proto_depIdxs = nil } diff --git a/resources/shopping_performance_view.pb.go b/resources/shopping_performance_view.pb.go index 2444c188..2b965791 100644 --- a/resources/shopping_performance_view.pb.go +++ b/resources/shopping_performance_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/shopping_performance_view.proto +// source: google/ads/googleads/v17/resources/shopping_performance_view.proto package resources @@ -55,7 +55,7 @@ type ShoppingPerformanceView struct { func (x *ShoppingPerformanceView) Reset() { *x = ShoppingPerformanceView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_shopping_performance_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_shopping_performance_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68,7 +68,7 @@ func (x *ShoppingPerformanceView) String() string { func (*ShoppingPerformanceView) ProtoMessage() {} func (x *ShoppingPerformanceView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_shopping_performance_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_shopping_performance_view_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 *ShoppingPerformanceView) ProtoReflect() protoreflect.Message { // Deprecated: Use ShoppingPerformanceView.ProtoReflect.Descriptor instead. func (*ShoppingPerformanceView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_shopping_performance_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_shopping_performance_view_proto_rawDescGZIP(), []int{0} } func (x *ShoppingPerformanceView) GetResourceName() string { @@ -91,15 +91,15 @@ func (x *ShoppingPerformanceView) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_resources_shopping_performance_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_shopping_performance_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_shopping_performance_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_shopping_performance_view_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, 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, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 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, + 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, 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, @@ -120,41 +120,41 @@ var file_google_ads_googleads_v16_resources_shopping_performance_view_proto_rawD 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x56, 0x69, 0x65, 0x77, 0x42, 0x8e, 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, 0x1c, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 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, 0x73, 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, + 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, 0x36, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 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, + 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_shopping_performance_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_shopping_performance_view_proto_rawDescData = file_google_ads_googleads_v16_resources_shopping_performance_view_proto_rawDesc + file_google_ads_googleads_v17_resources_shopping_performance_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_shopping_performance_view_proto_rawDescData = file_google_ads_googleads_v17_resources_shopping_performance_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_shopping_performance_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_shopping_performance_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_shopping_performance_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_shopping_performance_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_shopping_performance_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_shopping_performance_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_shopping_performance_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_shopping_performance_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_shopping_performance_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_shopping_performance_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_shopping_performance_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_shopping_performance_view_proto_goTypes = []interface{}{ - (*ShoppingPerformanceView)(nil), // 0: google.ads.googleads.v16.resources.ShoppingPerformanceView +var file_google_ads_googleads_v17_resources_shopping_performance_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_shopping_performance_view_proto_goTypes = []interface{}{ + (*ShoppingPerformanceView)(nil), // 0: google.ads.googleads.v17.resources.ShoppingPerformanceView } -var file_google_ads_googleads_v16_resources_shopping_performance_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_shopping_performance_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method output_type 0, // [0:0] is the sub-list for method input_type 0, // [0:0] is the sub-list for extension type_name @@ -162,13 +162,13 @@ var file_google_ads_googleads_v16_resources_shopping_performance_view_proto_depI 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_shopping_performance_view_proto_init() } -func file_google_ads_googleads_v16_resources_shopping_performance_view_proto_init() { - if File_google_ads_googleads_v16_resources_shopping_performance_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_shopping_performance_view_proto_init() } +func file_google_ads_googleads_v17_resources_shopping_performance_view_proto_init() { + if File_google_ads_googleads_v17_resources_shopping_performance_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_shopping_performance_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_shopping_performance_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ShoppingPerformanceView); i { case 0: return &v.state @@ -185,18 +185,18 @@ func file_google_ads_googleads_v16_resources_shopping_performance_view_proto_ini out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_shopping_performance_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_shopping_performance_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_shopping_performance_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_shopping_performance_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_shopping_performance_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_shopping_performance_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_shopping_performance_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_shopping_performance_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_shopping_performance_view_proto = out.File - file_google_ads_googleads_v16_resources_shopping_performance_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_shopping_performance_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_shopping_performance_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_shopping_performance_view_proto = out.File + file_google_ads_googleads_v17_resources_shopping_performance_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_shopping_performance_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_shopping_performance_view_proto_depIdxs = nil } diff --git a/resources/shopping_product.pb.go b/resources/shopping_product.pb.go new file mode 100644 index 00000000..1ec0e21f --- /dev/null +++ b/resources/shopping_product.pb.go @@ -0,0 +1,933 @@ +// Copyright 2024 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/resources/shopping_product.proto + +package resources + +import ( + enums "github.com/shenzhencenter/google-ads-pb/enums" + _ "google.golang.org/genproto/googleapis/api/annotations" + 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) +) + +// A shopping product from Google Merchant Center that can be advertised by +// campaigns. +// +// The resource returns currently existing products from Google Merchant Center +// accounts linked with the customer. A campaign includes a product by +// specifying its merchant id (or, if available, the Multi Client Account id of +// the merchant) in the `ShoppingSetting`, and can limit the inclusion to +// products having a specified feed label. Standard Shopping campaigns can also +// limit the inclusion through a `campaign_criterion.listing_scope`. +// +// Queries to this resource specify a scope: +// Account: +// - Filters on campaigns or ad groups are not specified. +// - All products from the linked Google Merchant Center accounts are +// returned. +// - Metrics and some fields (see the per-field documentation) are aggregated +// across all Shopping and Performance Max campaigns that include a product. +// +// Campaign: +// - An equality filter on `campaign` is specified. Supported campaign types +// are Shopping, Performance Max, Demand Gen, Video. +// - Only products that are included by the specified campaign are returned. +// - Metrics and some fields (see the per-field documentation) are restricted +// to the specified campaign. +// +// Ad group: +// - An equality filter on `ad group` and `campaign` is specified. Supported +// campaign types are Shopping, Demand Gen, Video. +// - Only products that are included by the specified campaign are returned. +// - Metrics and some fields (see the per-field documentation) are restricted +// to the specified ad group. +// +// Note that segmentation by date segments is not permitted and will return +// UNSUPPORTED_DATE_SEGMENTATION error. On the other hand, filtering on date +// segments is allowed. +type ShoppingProduct struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + // Output only. The resource name of the shopping product. + // Shopping product resource names have the form: + // + // `customers/{customer_id}/shoppingProducts/{merchant_center_id}~{channel}~{language_code}~{feed_label}~{item_id}` + ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` + // Output only. The id of the merchant that owns the product. + MerchantCenterId int64 `protobuf:"varint,2,opt,name=merchant_center_id,json=merchantCenterId,proto3" json:"merchant_center_id,omitempty"` + // Output only. The product channel describing the locality of the product. + Channel enums.ProductChannelEnum_ProductChannel `protobuf:"varint,3,opt,name=channel,proto3,enum=google.ads.googleads.v17.enums.ProductChannelEnum_ProductChannel" json:"channel,omitempty"` + // Output only. The language code as provided by the merchant, in BCP 47 + // format. + LanguageCode string `protobuf:"bytes,4,opt,name=language_code,json=languageCode,proto3" json:"language_code,omitempty"` + // Output only. The product feed label as provided by the merchant. + FeedLabel string `protobuf:"bytes,5,opt,name=feed_label,json=feedLabel,proto3" json:"feed_label,omitempty"` + // Output only. The item id of the product as provided by the merchant. + ItemId string `protobuf:"bytes,6,opt,name=item_id,json=itemId,proto3" json:"item_id,omitempty"` + // Output only. The id of the Multi Client Account of the merchant, if + // present. + MultiClientAccountId *int64 `protobuf:"varint,7,opt,name=multi_client_account_id,json=multiClientAccountId,proto3,oneof" json:"multi_client_account_id,omitempty"` + // Output only. The title of the product as provided by the merchant. + Title *string `protobuf:"bytes,8,opt,name=title,proto3,oneof" json:"title,omitempty"` + // Output only. The brand of the product as provided by the merchant. + Brand *string `protobuf:"bytes,9,opt,name=brand,proto3,oneof" json:"brand,omitempty"` + // Output only. The price of the product in micros as provided by the + // merchant, in the currency specified in `currency_code` (e.g. $2.97 is + // reported as 2970000). + PriceMicros *int64 `protobuf:"varint,10,opt,name=price_micros,json=priceMicros,proto3,oneof" json:"price_micros,omitempty"` + // Output only. The currency code as provided by the merchant, in ISO 4217 + // format. + CurrencyCode *string `protobuf:"bytes,11,opt,name=currency_code,json=currencyCode,proto3,oneof" json:"currency_code,omitempty"` + // Output only. The channel exclusivity of the product as provided by the + // merchant. + ChannelExclusivity *enums.ProductChannelExclusivityEnum_ProductChannelExclusivity `protobuf:"varint,12,opt,name=channel_exclusivity,json=channelExclusivity,proto3,enum=google.ads.googleads.v17.enums.ProductChannelExclusivityEnum_ProductChannelExclusivity,oneof" json:"channel_exclusivity,omitempty"` + // Output only. The condition of the product as provided by the merchant. + Condition *enums.ProductConditionEnum_ProductCondition `protobuf:"varint,13,opt,name=condition,proto3,enum=google.ads.googleads.v17.enums.ProductConditionEnum_ProductCondition,oneof" json:"condition,omitempty"` + // Output only. The availability of the product as provided by the merchant. + Availability *enums.ProductAvailabilityEnum_ProductAvailability `protobuf:"varint,14,opt,name=availability,proto3,enum=google.ads.googleads.v17.enums.ProductAvailabilityEnum_ProductAvailability,oneof" json:"availability,omitempty"` + // Output only. Upper-case two-letter ISO 3166-1 code of the regions where the + // product is intended to be shown in ads. + TargetCountries []string `protobuf:"bytes,15,rep,name=target_countries,json=targetCountries,proto3" json:"target_countries,omitempty"` + // Output only. The custom attribute 0 of the product as provided by the + // merchant. + CustomAttribute0 *string `protobuf:"bytes,16,opt,name=custom_attribute0,json=customAttribute0,proto3,oneof" json:"custom_attribute0,omitempty"` + // Output only. The custom attribute 1 of the product as provided by the + // merchant. + CustomAttribute1 *string `protobuf:"bytes,17,opt,name=custom_attribute1,json=customAttribute1,proto3,oneof" json:"custom_attribute1,omitempty"` + // Output only. The custom attribute 2 of the product as provided by the + // merchant. + CustomAttribute2 *string `protobuf:"bytes,18,opt,name=custom_attribute2,json=customAttribute2,proto3,oneof" json:"custom_attribute2,omitempty"` + // Output only. The custom attribute 3 of the product as provided by the + // merchant. + CustomAttribute3 *string `protobuf:"bytes,19,opt,name=custom_attribute3,json=customAttribute3,proto3,oneof" json:"custom_attribute3,omitempty"` + // Output only. The custom attribute 4 of the product as provided by the + // merchant. + CustomAttribute4 *string `protobuf:"bytes,20,opt,name=custom_attribute4,json=customAttribute4,proto3,oneof" json:"custom_attribute4,omitempty"` + // Output only. The category level 1 of the product. + CategoryLevel1 *string `protobuf:"bytes,21,opt,name=category_level1,json=categoryLevel1,proto3,oneof" json:"category_level1,omitempty"` + // Output only. The category level 2 of the product. + CategoryLevel2 *string `protobuf:"bytes,22,opt,name=category_level2,json=categoryLevel2,proto3,oneof" json:"category_level2,omitempty"` + // Output only. The category level 3 of the product. + CategoryLevel3 *string `protobuf:"bytes,23,opt,name=category_level3,json=categoryLevel3,proto3,oneof" json:"category_level3,omitempty"` + // Output only. The category level 4 of the product. + CategoryLevel4 *string `protobuf:"bytes,24,opt,name=category_level4,json=categoryLevel4,proto3,oneof" json:"category_level4,omitempty"` + // Output only. The category level 5 of the product. + CategoryLevel5 *string `protobuf:"bytes,25,opt,name=category_level5,json=categoryLevel5,proto3,oneof" json:"category_level5,omitempty"` + // Output only. The product type level 1 as provided by the merchant. + ProductTypeLevel1 *string `protobuf:"bytes,26,opt,name=product_type_level1,json=productTypeLevel1,proto3,oneof" json:"product_type_level1,omitempty"` + // Output only. The product type level 2 as provided by the merchant. + ProductTypeLevel2 *string `protobuf:"bytes,27,opt,name=product_type_level2,json=productTypeLevel2,proto3,oneof" json:"product_type_level2,omitempty"` + // Output only. The product type level 3 as provided by the merchant. + ProductTypeLevel3 *string `protobuf:"bytes,28,opt,name=product_type_level3,json=productTypeLevel3,proto3,oneof" json:"product_type_level3,omitempty"` + // Output only. The product type level 4 as provided by the merchant. + ProductTypeLevel4 *string `protobuf:"bytes,29,opt,name=product_type_level4,json=productTypeLevel4,proto3,oneof" json:"product_type_level4,omitempty"` + // Output only. The product type level 5 as provided by the merchant. + ProductTypeLevel5 *string `protobuf:"bytes,30,opt,name=product_type_level5,json=productTypeLevel5,proto3,oneof" json:"product_type_level5,omitempty"` + // Output only. The effective maximum cost-per-click (effective max. CPC) of + // the product. This field is available only if the query specifies the + // campaign or ad group scope, and if the campaign uses manual bidding. The + // value is the highest bid set for the product in product groups across all + // enabled ad groups. It represents the most you're willing to pay for a click + // on the product. This field can take up to 24 hours to update. + EffectiveMaxCpcMicros *int64 `protobuf:"varint,31,opt,name=effective_max_cpc_micros,json=effectiveMaxCpcMicros,proto3,oneof" json:"effective_max_cpc_micros,omitempty"` + // Output only. The status that indicates whether the product can show in ads. + // The value of this field is restricted to the scope specified in the query, + // see the documentation of the resource. + // This field can take up to 24 hours to update. + Status enums.ProductStatusEnum_ProductStatus `protobuf:"varint,32,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.ProductStatusEnum_ProductStatus" json:"status,omitempty"` + // Output only. The list of issues affecting whether the product can show in + // ads. The value of this field is restricted to the scope specified in the + // query, see the documentation of the resource. This field can take up to 24 + // hours to update. + Issues []*ShoppingProduct_ProductIssue `protobuf:"bytes,33,rep,name=issues,proto3" json:"issues,omitempty"` + // Output only. A campaign that includes the product. + // This field is selectable only in the campaign scope, which requires an + // equality filter on `campaign`. + Campaign *string `protobuf:"bytes,34,opt,name=campaign,proto3,oneof" json:"campaign,omitempty"` + // Output only. An ad group of a campaign that includes the product. + // This field is selectable only in the ad group scope, which requires an + // equality filter on `campaign` and `ad_group`. + AdGroup *string `protobuf:"bytes,35,opt,name=ad_group,json=adGroup,proto3,oneof" json:"ad_group,omitempty"` +} + +func (x *ShoppingProduct) Reset() { + *x = ShoppingProduct{} + if protoimpl.UnsafeEnabled { + mi := &file_google_ads_googleads_v17_resources_shopping_product_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *ShoppingProduct) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ShoppingProduct) ProtoMessage() {} + +func (x *ShoppingProduct) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v17_resources_shopping_product_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 ShoppingProduct.ProtoReflect.Descriptor instead. +func (*ShoppingProduct) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v17_resources_shopping_product_proto_rawDescGZIP(), []int{0} +} + +func (x *ShoppingProduct) GetResourceName() string { + if x != nil { + return x.ResourceName + } + return "" +} + +func (x *ShoppingProduct) GetMerchantCenterId() int64 { + if x != nil { + return x.MerchantCenterId + } + return 0 +} + +func (x *ShoppingProduct) GetChannel() enums.ProductChannelEnum_ProductChannel { + if x != nil { + return x.Channel + } + return enums.ProductChannelEnum_ProductChannel(0) +} + +func (x *ShoppingProduct) GetLanguageCode() string { + if x != nil { + return x.LanguageCode + } + return "" +} + +func (x *ShoppingProduct) GetFeedLabel() string { + if x != nil { + return x.FeedLabel + } + return "" +} + +func (x *ShoppingProduct) GetItemId() string { + if x != nil { + return x.ItemId + } + return "" +} + +func (x *ShoppingProduct) GetMultiClientAccountId() int64 { + if x != nil && x.MultiClientAccountId != nil { + return *x.MultiClientAccountId + } + return 0 +} + +func (x *ShoppingProduct) GetTitle() string { + if x != nil && x.Title != nil { + return *x.Title + } + return "" +} + +func (x *ShoppingProduct) GetBrand() string { + if x != nil && x.Brand != nil { + return *x.Brand + } + return "" +} + +func (x *ShoppingProduct) GetPriceMicros() int64 { + if x != nil && x.PriceMicros != nil { + return *x.PriceMicros + } + return 0 +} + +func (x *ShoppingProduct) GetCurrencyCode() string { + if x != nil && x.CurrencyCode != nil { + return *x.CurrencyCode + } + return "" +} + +func (x *ShoppingProduct) GetChannelExclusivity() enums.ProductChannelExclusivityEnum_ProductChannelExclusivity { + if x != nil && x.ChannelExclusivity != nil { + return *x.ChannelExclusivity + } + return enums.ProductChannelExclusivityEnum_ProductChannelExclusivity(0) +} + +func (x *ShoppingProduct) GetCondition() enums.ProductConditionEnum_ProductCondition { + if x != nil && x.Condition != nil { + return *x.Condition + } + return enums.ProductConditionEnum_ProductCondition(0) +} + +func (x *ShoppingProduct) GetAvailability() enums.ProductAvailabilityEnum_ProductAvailability { + if x != nil && x.Availability != nil { + return *x.Availability + } + return enums.ProductAvailabilityEnum_ProductAvailability(0) +} + +func (x *ShoppingProduct) GetTargetCountries() []string { + if x != nil { + return x.TargetCountries + } + return nil +} + +func (x *ShoppingProduct) GetCustomAttribute0() string { + if x != nil && x.CustomAttribute0 != nil { + return *x.CustomAttribute0 + } + return "" +} + +func (x *ShoppingProduct) GetCustomAttribute1() string { + if x != nil && x.CustomAttribute1 != nil { + return *x.CustomAttribute1 + } + return "" +} + +func (x *ShoppingProduct) GetCustomAttribute2() string { + if x != nil && x.CustomAttribute2 != nil { + return *x.CustomAttribute2 + } + return "" +} + +func (x *ShoppingProduct) GetCustomAttribute3() string { + if x != nil && x.CustomAttribute3 != nil { + return *x.CustomAttribute3 + } + return "" +} + +func (x *ShoppingProduct) GetCustomAttribute4() string { + if x != nil && x.CustomAttribute4 != nil { + return *x.CustomAttribute4 + } + return "" +} + +func (x *ShoppingProduct) GetCategoryLevel1() string { + if x != nil && x.CategoryLevel1 != nil { + return *x.CategoryLevel1 + } + return "" +} + +func (x *ShoppingProduct) GetCategoryLevel2() string { + if x != nil && x.CategoryLevel2 != nil { + return *x.CategoryLevel2 + } + return "" +} + +func (x *ShoppingProduct) GetCategoryLevel3() string { + if x != nil && x.CategoryLevel3 != nil { + return *x.CategoryLevel3 + } + return "" +} + +func (x *ShoppingProduct) GetCategoryLevel4() string { + if x != nil && x.CategoryLevel4 != nil { + return *x.CategoryLevel4 + } + return "" +} + +func (x *ShoppingProduct) GetCategoryLevel5() string { + if x != nil && x.CategoryLevel5 != nil { + return *x.CategoryLevel5 + } + return "" +} + +func (x *ShoppingProduct) GetProductTypeLevel1() string { + if x != nil && x.ProductTypeLevel1 != nil { + return *x.ProductTypeLevel1 + } + return "" +} + +func (x *ShoppingProduct) GetProductTypeLevel2() string { + if x != nil && x.ProductTypeLevel2 != nil { + return *x.ProductTypeLevel2 + } + return "" +} + +func (x *ShoppingProduct) GetProductTypeLevel3() string { + if x != nil && x.ProductTypeLevel3 != nil { + return *x.ProductTypeLevel3 + } + return "" +} + +func (x *ShoppingProduct) GetProductTypeLevel4() string { + if x != nil && x.ProductTypeLevel4 != nil { + return *x.ProductTypeLevel4 + } + return "" +} + +func (x *ShoppingProduct) GetProductTypeLevel5() string { + if x != nil && x.ProductTypeLevel5 != nil { + return *x.ProductTypeLevel5 + } + return "" +} + +func (x *ShoppingProduct) GetEffectiveMaxCpcMicros() int64 { + if x != nil && x.EffectiveMaxCpcMicros != nil { + return *x.EffectiveMaxCpcMicros + } + return 0 +} + +func (x *ShoppingProduct) GetStatus() enums.ProductStatusEnum_ProductStatus { + if x != nil { + return x.Status + } + return enums.ProductStatusEnum_ProductStatus(0) +} + +func (x *ShoppingProduct) GetIssues() []*ShoppingProduct_ProductIssue { + if x != nil { + return x.Issues + } + return nil +} + +func (x *ShoppingProduct) GetCampaign() string { + if x != nil && x.Campaign != nil { + return *x.Campaign + } + return "" +} + +func (x *ShoppingProduct) GetAdGroup() string { + if x != nil && x.AdGroup != nil { + return *x.AdGroup + } + return "" +} + +// An issue affecting whether a product can show in ads. +type ShoppingProduct_ProductIssue struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + // Output only. The error code that identifies the issue. + ErrorCode string `protobuf:"bytes,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"` + // Output only. The severity of the issue in Google Ads. + AdsSeverity enums.ProductIssueSeverityEnum_ProductIssueSeverity `protobuf:"varint,2,opt,name=ads_severity,json=adsSeverity,proto3,enum=google.ads.googleads.v17.enums.ProductIssueSeverityEnum_ProductIssueSeverity" json:"ads_severity,omitempty"` + // Output only. The name of the product's attribute, if any, that triggered + // the issue. + AttributeName *string `protobuf:"bytes,3,opt,name=attribute_name,json=attributeName,proto3,oneof" json:"attribute_name,omitempty"` + // Output only. The short description of the issue in English. + Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description,omitempty"` + // Output only. The detailed description of the issue in English. + Detail string `protobuf:"bytes,5,opt,name=detail,proto3" json:"detail,omitempty"` + // Output only. The URL of the Help Center article for the issue. + Documentation string `protobuf:"bytes,6,opt,name=documentation,proto3" json:"documentation,omitempty"` + // Output only. List of upper-case two-letter ISO 3166-1 codes of the + // regions affected by the issue. If empty, all regions are affected. + AffectedRegions []string `protobuf:"bytes,7,rep,name=affected_regions,json=affectedRegions,proto3" json:"affected_regions,omitempty"` +} + +func (x *ShoppingProduct_ProductIssue) Reset() { + *x = ShoppingProduct_ProductIssue{} + if protoimpl.UnsafeEnabled { + mi := &file_google_ads_googleads_v17_resources_shopping_product_proto_msgTypes[1] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *ShoppingProduct_ProductIssue) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ShoppingProduct_ProductIssue) ProtoMessage() {} + +func (x *ShoppingProduct_ProductIssue) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v17_resources_shopping_product_proto_msgTypes[1] + 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 ShoppingProduct_ProductIssue.ProtoReflect.Descriptor instead. +func (*ShoppingProduct_ProductIssue) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v17_resources_shopping_product_proto_rawDescGZIP(), []int{0, 0} +} + +func (x *ShoppingProduct_ProductIssue) GetErrorCode() string { + if x != nil { + return x.ErrorCode + } + return "" +} + +func (x *ShoppingProduct_ProductIssue) GetAdsSeverity() enums.ProductIssueSeverityEnum_ProductIssueSeverity { + if x != nil { + return x.AdsSeverity + } + return enums.ProductIssueSeverityEnum_ProductIssueSeverity(0) +} + +func (x *ShoppingProduct_ProductIssue) GetAttributeName() string { + if x != nil && x.AttributeName != nil { + return *x.AttributeName + } + return "" +} + +func (x *ShoppingProduct_ProductIssue) GetDescription() string { + if x != nil { + return x.Description + } + return "" +} + +func (x *ShoppingProduct_ProductIssue) GetDetail() string { + if x != nil { + return x.Detail + } + return "" +} + +func (x *ShoppingProduct_ProductIssue) GetDocumentation() string { + if x != nil { + return x.Documentation + } + return "" +} + +func (x *ShoppingProduct_ProductIssue) GetAffectedRegions() []string { + if x != nil { + return x.AffectedRegions + } + return nil +} + +var File_google_ads_googleads_v17_resources_shopping_product_proto protoreflect.FileDescriptor + +var file_google_ads_googleads_v17_resources_shopping_product_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, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2f, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x72, + 0x6f, 0x64, 0x75, 0x63, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 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, 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, 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, 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, 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, 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, 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, + 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, 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, 0xa6, 0x1c, 0x0a, 0x0f, 0x53, 0x68, 0x6f, + 0x70, 0x70, 0x69, 0x6e, 0x67, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x12, 0x55, 0x0a, 0x0d, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x09, 0x42, 0x30, 0xe0, 0x41, 0x03, 0xfa, 0x41, 0x2a, 0x0a, 0x28, 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, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x50, 0x72, + 0x6f, 0x64, 0x75, 0x63, 0x74, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, + 0x61, 0x6d, 0x65, 0x12, 0x31, 0x0a, 0x12, 0x6d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x5f, + 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x42, + 0x03, 0xe0, 0x41, 0x03, 0x52, 0x10, 0x6d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x43, 0x65, + 0x6e, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x60, 0x0a, 0x07, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, + 0x6c, 0x18, 0x03, 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, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, + 0x07, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x12, 0x28, 0x0a, 0x0d, 0x6c, 0x61, 0x6e, 0x67, + 0x75, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, + 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0c, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x43, 0x6f, + 0x64, 0x65, 0x12, 0x22, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, + 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x09, 0x66, 0x65, 0x65, + 0x64, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x1c, 0x0a, 0x07, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x69, + 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x69, 0x74, + 0x65, 0x6d, 0x49, 0x64, 0x12, 0x3f, 0x0a, 0x17, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x5f, 0x63, 0x6c, + 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, + 0x07, 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x14, 0x6d, 0x75, + 0x6c, 0x74, 0x69, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, + 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x08, + 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x01, 0x52, 0x05, 0x74, 0x69, 0x74, + 0x6c, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x05, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x18, 0x09, + 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x02, 0x52, 0x05, 0x62, 0x72, 0x61, + 0x6e, 0x64, 0x88, 0x01, 0x01, 0x12, 0x2b, 0x0a, 0x0c, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x6d, + 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, 0x03, + 0x48, 0x03, 0x52, 0x0b, 0x70, 0x72, 0x69, 0x63, 0x65, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, + 0x01, 0x01, 0x12, 0x2d, 0x0a, 0x0d, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x63, + 0x6f, 0x64, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x04, + 0x52, 0x0c, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x88, 0x01, + 0x01, 0x12, 0x92, 0x01, 0x0a, 0x13, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x65, 0x78, + 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x69, 0x74, 0x79, 0x18, 0x0c, 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, 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, 0x73, 0x69, 0x76, 0x69, 0x74, 0x79, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x05, 0x52, + 0x12, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, + 0x69, 0x74, 0x79, 0x88, 0x01, 0x01, 0x12, 0x6d, 0x0a, 0x09, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, + 0x69, 0x6f, 0x6e, 0x18, 0x0d, 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, 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, + 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x06, 0x52, 0x09, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, + 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x79, 0x0a, 0x0c, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, + 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x0e, 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, 0x50, 0x72, 0x6f, + 0x64, 0x75, 0x63, 0x74, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, + 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x41, 0x76, 0x61, 0x69, + 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x07, 0x52, + 0x0c, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x88, 0x01, 0x01, + 0x12, 0x2e, 0x0a, 0x10, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, + 0x72, 0x69, 0x65, 0x73, 0x18, 0x0f, 0x20, 0x03, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, + 0x0f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, + 0x12, 0x35, 0x0a, 0x11, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, + 0x62, 0x75, 0x74, 0x65, 0x30, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, + 0x48, 0x08, 0x52, 0x10, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, + 0x75, 0x74, 0x65, 0x30, 0x88, 0x01, 0x01, 0x12, 0x35, 0x0a, 0x11, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x6d, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x31, 0x18, 0x11, 0x20, 0x01, + 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x09, 0x52, 0x10, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x6d, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x31, 0x88, 0x01, 0x01, 0x12, 0x35, + 0x0a, 0x11, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, + 0x74, 0x65, 0x32, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x0a, + 0x52, 0x10, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, + 0x65, 0x32, 0x88, 0x01, 0x01, 0x12, 0x35, 0x0a, 0x11, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, + 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x33, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, + 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x0b, 0x52, 0x10, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, + 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x33, 0x88, 0x01, 0x01, 0x12, 0x35, 0x0a, 0x11, + 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, + 0x34, 0x18, 0x14, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x0c, 0x52, 0x10, + 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x34, + 0x88, 0x01, 0x01, 0x12, 0x66, 0x0a, 0x0f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, + 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x31, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x42, 0x38, 0xe0, 0x41, + 0x03, 0xfa, 0x41, 0x32, 0x0a, 0x30, 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, 0x50, + 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x43, 0x6f, + 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x48, 0x0d, 0x52, 0x0e, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, + 0x72, 0x79, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x31, 0x88, 0x01, 0x01, 0x12, 0x66, 0x0a, 0x0f, 0x63, + 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x32, 0x18, 0x16, + 0x20, 0x01, 0x28, 0x09, 0x42, 0x38, 0xe0, 0x41, 0x03, 0xfa, 0x41, 0x32, 0x0a, 0x30, 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, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x61, + 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x48, 0x0e, + 0x52, 0x0e, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x32, + 0x88, 0x01, 0x01, 0x12, 0x66, 0x0a, 0x0f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, + 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x33, 0x18, 0x17, 0x20, 0x01, 0x28, 0x09, 0x42, 0x38, 0xe0, 0x41, + 0x03, 0xfa, 0x41, 0x32, 0x0a, 0x30, 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, 0x50, + 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x43, 0x6f, + 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x48, 0x0f, 0x52, 0x0e, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, + 0x72, 0x79, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x33, 0x88, 0x01, 0x01, 0x12, 0x66, 0x0a, 0x0f, 0x63, + 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x34, 0x18, 0x18, + 0x20, 0x01, 0x28, 0x09, 0x42, 0x38, 0xe0, 0x41, 0x03, 0xfa, 0x41, 0x32, 0x0a, 0x30, 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, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x61, + 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x48, 0x10, + 0x52, 0x0e, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x34, + 0x88, 0x01, 0x01, 0x12, 0x66, 0x0a, 0x0f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, + 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x35, 0x18, 0x19, 0x20, 0x01, 0x28, 0x09, 0x42, 0x38, 0xe0, 0x41, + 0x03, 0xfa, 0x41, 0x32, 0x0a, 0x30, 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, 0x50, + 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x43, 0x6f, + 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x48, 0x11, 0x52, 0x0e, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, + 0x72, 0x79, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x35, 0x88, 0x01, 0x01, 0x12, 0x38, 0x0a, 0x13, 0x70, + 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6c, 0x65, 0x76, 0x65, + 0x6c, 0x31, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x12, 0x52, + 0x11, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x4c, 0x65, 0x76, 0x65, + 0x6c, 0x31, 0x88, 0x01, 0x01, 0x12, 0x38, 0x0a, 0x13, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, + 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x32, 0x18, 0x1b, 0x20, 0x01, + 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x13, 0x52, 0x11, 0x70, 0x72, 0x6f, 0x64, 0x75, + 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x32, 0x88, 0x01, 0x01, 0x12, + 0x38, 0x0a, 0x13, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, + 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x33, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, + 0x03, 0x48, 0x14, 0x52, 0x11, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, + 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x33, 0x88, 0x01, 0x01, 0x12, 0x38, 0x0a, 0x13, 0x70, 0x72, 0x6f, + 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x34, + 0x18, 0x1d, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x15, 0x52, 0x11, 0x70, + 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x34, + 0x88, 0x01, 0x01, 0x12, 0x38, 0x0a, 0x13, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, + 0x79, 0x70, 0x65, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x35, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x09, + 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x16, 0x52, 0x11, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, + 0x54, 0x79, 0x70, 0x65, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x35, 0x88, 0x01, 0x01, 0x12, 0x41, 0x0a, + 0x18, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x63, + 0x70, 0x63, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x1f, 0x20, 0x01, 0x28, 0x03, 0x42, + 0x03, 0xe0, 0x41, 0x03, 0x48, 0x17, 0x52, 0x15, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, + 0x65, 0x4d, 0x61, 0x78, 0x43, 0x70, 0x63, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, + 0x12, 0x5c, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 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, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, + 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, + 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x5d, + 0x0a, 0x06, 0x69, 0x73, 0x73, 0x75, 0x65, 0x73, 0x18, 0x21, 0x20, 0x03, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x73, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x50, 0x72, 0x6f, 0x64, + 0x75, 0x63, 0x74, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x49, 0x73, 0x73, 0x75, 0x65, + 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x69, 0x73, 0x73, 0x75, 0x65, 0x73, 0x12, 0x4a, 0x0a, + 0x08, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x18, 0x22, 0x20, 0x01, 0x28, 0x09, 0x42, + 0x29, 0xe0, 0x41, 0x03, 0xfa, 0x41, 0x23, 0x0a, 0x21, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x48, 0x18, 0x52, 0x08, 0x63, 0x61, + 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x48, 0x0a, 0x08, 0x61, 0x64, 0x5f, + 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x23, 0x20, 0x01, 0x28, 0x09, 0x42, 0x28, 0xe0, 0x41, 0x03, + 0xfa, 0x41, 0x22, 0x0a, 0x20, 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, + 0x47, 0x72, 0x6f, 0x75, 0x70, 0x48, 0x19, 0x52, 0x07, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, + 0x88, 0x01, 0x01, 0x1a, 0x8c, 0x03, 0x0a, 0x0c, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x49, + 0x73, 0x73, 0x75, 0x65, 0x12, 0x22, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, + 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x09, 0x65, + 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x75, 0x0a, 0x0c, 0x61, 0x64, 0x73, 0x5f, + 0x73, 0x65, 0x76, 0x65, 0x72, 0x69, 0x74, 0x79, 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, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x49, 0x73, 0x73, 0x75, 0x65, 0x53, 0x65, 0x76, 0x65, + 0x72, 0x69, 0x74, 0x79, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, + 0x49, 0x73, 0x73, 0x75, 0x65, 0x53, 0x65, 0x76, 0x65, 0x72, 0x69, 0x74, 0x79, 0x42, 0x03, 0xe0, + 0x41, 0x03, 0x52, 0x0b, 0x61, 0x64, 0x73, 0x53, 0x65, 0x76, 0x65, 0x72, 0x69, 0x74, 0x79, 0x12, + 0x2f, 0x0a, 0x0e, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x6e, 0x61, 0x6d, + 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x0d, + 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, + 0x12, 0x25, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, + 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, + 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x06, 0x64, 0x65, 0x74, 0x61, 0x69, + 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x64, 0x65, + 0x74, 0x61, 0x69, 0x6c, 0x12, 0x29, 0x0a, 0x0d, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, + 0x52, 0x0d, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, + 0x2e, 0x0a, 0x10, 0x61, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x67, 0x69, + 0x6f, 0x6e, 0x73, 0x18, 0x07, 0x20, 0x03, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0f, + 0x61, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x73, 0x42, + 0x11, 0x0a, 0x0f, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x6e, 0x61, + 0x6d, 0x65, 0x3a, 0xc1, 0x01, 0xea, 0x41, 0xbd, 0x01, 0x0a, 0x28, 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, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x50, 0x72, 0x6f, 0x64, + 0x75, 0x63, 0x74, 0x12, 0x6e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, + 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x73, 0x68, 0x6f, + 0x70, 0x70, 0x69, 0x6e, 0x67, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x6d, + 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x5f, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x5f, 0x69, + 0x64, 0x7d, 0x7e, 0x7b, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x7d, 0x7e, 0x7b, 0x6c, 0x61, + 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x7d, 0x7e, 0x7b, 0x66, 0x65, + 0x65, 0x64, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x7d, 0x7e, 0x7b, 0x69, 0x74, 0x65, 0x6d, 0x5f, + 0x69, 0x64, 0x7d, 0x2a, 0x10, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x50, 0x72, 0x6f, + 0x64, 0x75, 0x63, 0x74, 0x73, 0x32, 0x0f, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x50, + 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x42, 0x1a, 0x0a, 0x18, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, + 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, + 0x69, 0x64, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x42, 0x08, 0x0a, 0x06, + 0x5f, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x70, 0x72, 0x69, 0x63, 0x65, + 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x63, 0x75, 0x72, 0x72, + 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x63, 0x68, + 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x69, 0x74, + 0x79, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x42, + 0x0f, 0x0a, 0x0d, 0x5f, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, + 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x74, 0x74, 0x72, + 0x69, 0x62, 0x75, 0x74, 0x65, 0x30, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x6d, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x31, 0x42, 0x14, 0x0a, 0x12, + 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, + 0x65, 0x32, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x74, + 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x33, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x63, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x34, 0x42, 0x12, + 0x0a, 0x10, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x6c, 0x65, 0x76, 0x65, + 0x6c, 0x31, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, + 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x32, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, + 0x6f, 0x72, 0x79, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x33, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x63, + 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x34, 0x42, 0x12, + 0x0a, 0x10, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x6c, 0x65, 0x76, 0x65, + 0x6c, 0x35, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, + 0x79, 0x70, 0x65, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x31, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x70, + 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6c, 0x65, 0x76, 0x65, + 0x6c, 0x32, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, + 0x79, 0x70, 0x65, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x33, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x70, + 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6c, 0x65, 0x76, 0x65, + 0x6c, 0x34, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, + 0x79, 0x70, 0x65, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x35, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x65, + 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x63, 0x70, 0x63, + 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x63, 0x61, 0x6d, 0x70, + 0x61, 0x69, 0x67, 0x6e, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, + 0x70, 0x42, 0x86, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x14, 0x53, 0x68, + 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 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, 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_v17_resources_shopping_product_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_shopping_product_proto_rawDescData = file_google_ads_googleads_v17_resources_shopping_product_proto_rawDesc +) + +func file_google_ads_googleads_v17_resources_shopping_product_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_shopping_product_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_shopping_product_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_shopping_product_proto_rawDescData) + }) + return file_google_ads_googleads_v17_resources_shopping_product_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_shopping_product_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v17_resources_shopping_product_proto_goTypes = []interface{}{ + (*ShoppingProduct)(nil), // 0: google.ads.googleads.v17.resources.ShoppingProduct + (*ShoppingProduct_ProductIssue)(nil), // 1: google.ads.googleads.v17.resources.ShoppingProduct.ProductIssue + (enums.ProductChannelEnum_ProductChannel)(0), // 2: google.ads.googleads.v17.enums.ProductChannelEnum.ProductChannel + (enums.ProductChannelExclusivityEnum_ProductChannelExclusivity)(0), // 3: google.ads.googleads.v17.enums.ProductChannelExclusivityEnum.ProductChannelExclusivity + (enums.ProductConditionEnum_ProductCondition)(0), // 4: google.ads.googleads.v17.enums.ProductConditionEnum.ProductCondition + (enums.ProductAvailabilityEnum_ProductAvailability)(0), // 5: google.ads.googleads.v17.enums.ProductAvailabilityEnum.ProductAvailability + (enums.ProductStatusEnum_ProductStatus)(0), // 6: google.ads.googleads.v17.enums.ProductStatusEnum.ProductStatus + (enums.ProductIssueSeverityEnum_ProductIssueSeverity)(0), // 7: google.ads.googleads.v17.enums.ProductIssueSeverityEnum.ProductIssueSeverity +} +var file_google_ads_googleads_v17_resources_shopping_product_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v17.resources.ShoppingProduct.channel:type_name -> google.ads.googleads.v17.enums.ProductChannelEnum.ProductChannel + 3, // 1: google.ads.googleads.v17.resources.ShoppingProduct.channel_exclusivity:type_name -> google.ads.googleads.v17.enums.ProductChannelExclusivityEnum.ProductChannelExclusivity + 4, // 2: google.ads.googleads.v17.resources.ShoppingProduct.condition:type_name -> google.ads.googleads.v17.enums.ProductConditionEnum.ProductCondition + 5, // 3: google.ads.googleads.v17.resources.ShoppingProduct.availability:type_name -> google.ads.googleads.v17.enums.ProductAvailabilityEnum.ProductAvailability + 6, // 4: google.ads.googleads.v17.resources.ShoppingProduct.status:type_name -> google.ads.googleads.v17.enums.ProductStatusEnum.ProductStatus + 1, // 5: google.ads.googleads.v17.resources.ShoppingProduct.issues:type_name -> google.ads.googleads.v17.resources.ShoppingProduct.ProductIssue + 7, // 6: google.ads.googleads.v17.resources.ShoppingProduct.ProductIssue.ads_severity:type_name -> google.ads.googleads.v17.enums.ProductIssueSeverityEnum.ProductIssueSeverity + 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 + 7, // [7:7] is the sub-list for extension extendee + 0, // [0:7] is the sub-list for field type_name +} + +func init() { file_google_ads_googleads_v17_resources_shopping_product_proto_init() } +func file_google_ads_googleads_v17_resources_shopping_product_proto_init() { + if File_google_ads_googleads_v17_resources_shopping_product_proto != nil { + return + } + if !protoimpl.UnsafeEnabled { + file_google_ads_googleads_v17_resources_shopping_product_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*ShoppingProduct); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_google_ads_googleads_v17_resources_shopping_product_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*ShoppingProduct_ProductIssue); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + } + file_google_ads_googleads_v17_resources_shopping_product_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_shopping_product_proto_msgTypes[1].OneofWrappers = []interface{}{} + type x struct{} + out := protoimpl.TypeBuilder{ + File: protoimpl.DescBuilder{ + GoPackagePath: reflect.TypeOf(x{}).PkgPath(), + RawDescriptor: file_google_ads_googleads_v17_resources_shopping_product_proto_rawDesc, + NumEnums: 0, + NumMessages: 2, + NumExtensions: 0, + NumServices: 0, + }, + GoTypes: file_google_ads_googleads_v17_resources_shopping_product_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_shopping_product_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_shopping_product_proto_msgTypes, + }.Build() + File_google_ads_googleads_v17_resources_shopping_product_proto = out.File + file_google_ads_googleads_v17_resources_shopping_product_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_shopping_product_proto_goTypes = nil + file_google_ads_googleads_v17_resources_shopping_product_proto_depIdxs = nil +} diff --git a/resources/smart_campaign_search_term_view.pb.go b/resources/smart_campaign_search_term_view.pb.go index 2c1efd7e..59cd3764 100644 --- a/resources/smart_campaign_search_term_view.pb.go +++ b/resources/smart_campaign_search_term_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/smart_campaign_search_term_view.proto +// source: google/ads/googleads/v17/resources/smart_campaign_search_term_view.proto package resources @@ -55,7 +55,7 @@ type SmartCampaignSearchTermView struct { func (x *SmartCampaignSearchTermView) Reset() { *x = SmartCampaignSearchTermView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_smart_campaign_search_term_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_smart_campaign_search_term_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68,7 +68,7 @@ func (x *SmartCampaignSearchTermView) String() string { func (*SmartCampaignSearchTermView) ProtoMessage() {} func (x *SmartCampaignSearchTermView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_smart_campaign_search_term_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_smart_campaign_search_term_view_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 *SmartCampaignSearchTermView) ProtoReflect() protoreflect.Message { // Deprecated: Use SmartCampaignSearchTermView.ProtoReflect.Descriptor instead. func (*SmartCampaignSearchTermView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_smart_campaign_search_term_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_smart_campaign_search_term_view_proto_rawDescGZIP(), []int{0} } func (x *SmartCampaignSearchTermView) GetResourceName() string { @@ -105,16 +105,16 @@ func (x *SmartCampaignSearchTermView) GetCampaign() string { return "" } -var File_google_ads_googleads_v16_resources_smart_campaign_search_term_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_smart_campaign_search_term_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_smart_campaign_search_term_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_smart_campaign_search_term_view_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, 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, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 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, 0x73, 0x1a, 0x1f, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -144,41 +144,41 @@ var file_google_ads_googleads_v16_resources_smart_campaign_search_term_view_prot 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x71, 0x75, 0x65, 0x72, 0x79, 0x7d, 0x42, 0x92, 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, 0x20, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x20, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 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, 0x73, 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, + 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, 0x36, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 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, + 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_smart_campaign_search_term_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_smart_campaign_search_term_view_proto_rawDescData = file_google_ads_googleads_v16_resources_smart_campaign_search_term_view_proto_rawDesc + file_google_ads_googleads_v17_resources_smart_campaign_search_term_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_smart_campaign_search_term_view_proto_rawDescData = file_google_ads_googleads_v17_resources_smart_campaign_search_term_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_smart_campaign_search_term_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_smart_campaign_search_term_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_smart_campaign_search_term_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_smart_campaign_search_term_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_smart_campaign_search_term_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_smart_campaign_search_term_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_smart_campaign_search_term_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_smart_campaign_search_term_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_smart_campaign_search_term_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_smart_campaign_search_term_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_smart_campaign_search_term_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_smart_campaign_search_term_view_proto_goTypes = []interface{}{ - (*SmartCampaignSearchTermView)(nil), // 0: google.ads.googleads.v16.resources.SmartCampaignSearchTermView +var file_google_ads_googleads_v17_resources_smart_campaign_search_term_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_smart_campaign_search_term_view_proto_goTypes = []interface{}{ + (*SmartCampaignSearchTermView)(nil), // 0: google.ads.googleads.v17.resources.SmartCampaignSearchTermView } -var file_google_ads_googleads_v16_resources_smart_campaign_search_term_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_smart_campaign_search_term_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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_resources_smart_campaign_search_term_view_prot 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_smart_campaign_search_term_view_proto_init() } -func file_google_ads_googleads_v16_resources_smart_campaign_search_term_view_proto_init() { - if File_google_ads_googleads_v16_resources_smart_campaign_search_term_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_smart_campaign_search_term_view_proto_init() } +func file_google_ads_googleads_v17_resources_smart_campaign_search_term_view_proto_init() { + if File_google_ads_googleads_v17_resources_smart_campaign_search_term_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_smart_campaign_search_term_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_smart_campaign_search_term_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SmartCampaignSearchTermView); i { case 0: return &v.state @@ -209,18 +209,18 @@ func file_google_ads_googleads_v16_resources_smart_campaign_search_term_view_pro out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_smart_campaign_search_term_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_smart_campaign_search_term_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_smart_campaign_search_term_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_smart_campaign_search_term_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_smart_campaign_search_term_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_smart_campaign_search_term_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_smart_campaign_search_term_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_smart_campaign_search_term_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_smart_campaign_search_term_view_proto = out.File - file_google_ads_googleads_v16_resources_smart_campaign_search_term_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_smart_campaign_search_term_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_smart_campaign_search_term_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_smart_campaign_search_term_view_proto = out.File + file_google_ads_googleads_v17_resources_smart_campaign_search_term_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_smart_campaign_search_term_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_smart_campaign_search_term_view_proto_depIdxs = nil } diff --git a/resources/smart_campaign_setting.pb.go b/resources/smart_campaign_setting.pb.go index 6928b40e..42de21b0 100644 --- a/resources/smart_campaign_setting.pb.go +++ b/resources/smart_campaign_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/resources/smart_campaign_setting.proto +// source: google/ads/googleads/v17/resources/smart_campaign_setting.proto package resources @@ -73,7 +73,7 @@ type SmartCampaignSetting struct { func (x *SmartCampaignSetting) Reset() { *x = SmartCampaignSetting{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -86,7 +86,7 @@ func (x *SmartCampaignSetting) String() string { func (*SmartCampaignSetting) ProtoMessage() {} func (x *SmartCampaignSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_smart_campaign_setting_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 *SmartCampaignSetting) ProtoReflect() protoreflect.Message { // Deprecated: Use SmartCampaignSetting.ProtoReflect.Descriptor instead. func (*SmartCampaignSetting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_rawDescGZIP(), []int{0} } func (x *SmartCampaignSetting) GetResourceName() string { @@ -234,7 +234,7 @@ type SmartCampaignSetting_PhoneNumber struct { func (x *SmartCampaignSetting_PhoneNumber) Reset() { *x = SmartCampaignSetting_PhoneNumber{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -247,7 +247,7 @@ func (x *SmartCampaignSetting_PhoneNumber) String() string { func (*SmartCampaignSetting_PhoneNumber) ProtoMessage() {} func (x *SmartCampaignSetting_PhoneNumber) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -260,7 +260,7 @@ func (x *SmartCampaignSetting_PhoneNumber) ProtoReflect() protoreflect.Message { // Deprecated: Use SmartCampaignSetting_PhoneNumber.ProtoReflect.Descriptor instead. func (*SmartCampaignSetting_PhoneNumber) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_rawDescGZIP(), []int{0, 0} } func (x *SmartCampaignSetting_PhoneNumber) GetPhoneNumber() string { @@ -293,7 +293,7 @@ type SmartCampaignSetting_AdOptimizedBusinessProfileSetting struct { func (x *SmartCampaignSetting_AdOptimizedBusinessProfileSetting) Reset() { *x = SmartCampaignSetting_AdOptimizedBusinessProfileSetting{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -306,7 +306,7 @@ func (x *SmartCampaignSetting_AdOptimizedBusinessProfileSetting) String() string func (*SmartCampaignSetting_AdOptimizedBusinessProfileSetting) ProtoMessage() {} func (x *SmartCampaignSetting_AdOptimizedBusinessProfileSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -319,7 +319,7 @@ func (x *SmartCampaignSetting_AdOptimizedBusinessProfileSetting) ProtoReflect() // Deprecated: Use SmartCampaignSetting_AdOptimizedBusinessProfileSetting.ProtoReflect.Descriptor instead. func (*SmartCampaignSetting_AdOptimizedBusinessProfileSetting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_rawDescGZIP(), []int{0, 1} + return file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_rawDescGZIP(), []int{0, 1} } func (x *SmartCampaignSetting_AdOptimizedBusinessProfileSetting) GetIncludeLeadForm() bool { @@ -329,15 +329,15 @@ func (x *SmartCampaignSetting_AdOptimizedBusinessProfileSetting) GetIncludeLeadF return false } -var File_google_ads_googleads_v16_resources_smart_campaign_setting_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_smart_campaign_setting_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_smart_campaign_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, 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, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 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, 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, @@ -356,7 +356,7 @@ var file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_rawDesc 0x69, 0x67, 0x6e, 0x52, 0x08, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x12, 0x67, 0x0a, 0x0c, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 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, 0x72, + 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, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x0b, 0x70, 0x68, 0x6f, 0x6e, 0x65, @@ -370,7 +370,7 @@ var file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_rawDesc 0x65, 0x64, 0x5f, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x5f, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 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, 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, 0x2e, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x41, 0x64, 0x4f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x64, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x50, @@ -409,45 +409,45 @@ var file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_rawDesc 0x5f, 0x70, 0x61, 0x67, 0x65, 0x42, 0x12, 0x0a, 0x10, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x42, 0x8b, 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, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x19, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 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_smart_campaign_setting_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_rawDescData = file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_rawDesc + file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_rawDescData = file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_rawDescData) +func file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_rawDescData + return file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_rawDescData } -var file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_goTypes = []interface{}{ - (*SmartCampaignSetting)(nil), // 0: google.ads.googleads.v16.resources.SmartCampaignSetting - (*SmartCampaignSetting_PhoneNumber)(nil), // 1: google.ads.googleads.v16.resources.SmartCampaignSetting.PhoneNumber - (*SmartCampaignSetting_AdOptimizedBusinessProfileSetting)(nil), // 2: google.ads.googleads.v16.resources.SmartCampaignSetting.AdOptimizedBusinessProfileSetting +var file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_msgTypes = make([]protoimpl.MessageInfo, 3) +var file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_goTypes = []interface{}{ + (*SmartCampaignSetting)(nil), // 0: google.ads.googleads.v17.resources.SmartCampaignSetting + (*SmartCampaignSetting_PhoneNumber)(nil), // 1: google.ads.googleads.v17.resources.SmartCampaignSetting.PhoneNumber + (*SmartCampaignSetting_AdOptimizedBusinessProfileSetting)(nil), // 2: google.ads.googleads.v17.resources.SmartCampaignSetting.AdOptimizedBusinessProfileSetting } -var file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.SmartCampaignSetting.phone_number:type_name -> google.ads.googleads.v16.resources.SmartCampaignSetting.PhoneNumber - 2, // 1: google.ads.googleads.v16.resources.SmartCampaignSetting.ad_optimized_business_profile_setting:type_name -> google.ads.googleads.v16.resources.SmartCampaignSetting.AdOptimizedBusinessProfileSetting +var file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.SmartCampaignSetting.phone_number:type_name -> google.ads.googleads.v17.resources.SmartCampaignSetting.PhoneNumber + 2, // 1: google.ads.googleads.v17.resources.SmartCampaignSetting.ad_optimized_business_profile_setting:type_name -> google.ads.googleads.v17.resources.SmartCampaignSetting.AdOptimizedBusinessProfileSetting 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 @@ -455,13 +455,13 @@ var file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_depIdxs 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_init() } -func file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_init() { - if File_google_ads_googleads_v16_resources_smart_campaign_setting_proto != nil { +func init() { file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_init() } +func file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_init() { + if File_google_ads_googleads_v17_resources_smart_campaign_setting_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SmartCampaignSetting); i { case 0: return &v.state @@ -473,7 +473,7 @@ func file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_init() return nil } } - file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SmartCampaignSetting_PhoneNumber); i { case 0: return &v.state @@ -485,7 +485,7 @@ func file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_init() return nil } } - file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SmartCampaignSetting_AdOptimizedBusinessProfileSetting); i { case 0: return &v.state @@ -498,30 +498,30 @@ func file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_init() } } } - file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_msgTypes[0].OneofWrappers = []interface{}{ (*SmartCampaignSetting_FinalUrl)(nil), (*SmartCampaignSetting_AdOptimizedBusinessProfileSetting_)(nil), (*SmartCampaignSetting_BusinessName)(nil), (*SmartCampaignSetting_BusinessProfileLocation)(nil), } - file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_msgTypes[1].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_msgTypes[2].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_msgTypes[1].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_smart_campaign_setting_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_resources_smart_campaign_setting_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_rawDesc, NumEnums: 0, NumMessages: 3, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_smart_campaign_setting_proto = out.File - file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_goTypes = nil - file_google_ads_googleads_v16_resources_smart_campaign_setting_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_smart_campaign_setting_proto = out.File + file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_goTypes = nil + file_google_ads_googleads_v17_resources_smart_campaign_setting_proto_depIdxs = nil } diff --git a/resources/third_party_app_analytics_link.pb.go b/resources/third_party_app_analytics_link.pb.go index 9d744660..d5ff35e6 100644 --- a/resources/third_party_app_analytics_link.pb.go +++ b/resources/third_party_app_analytics_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/third_party_app_analytics_link.proto +// source: google/ads/googleads/v17/resources/third_party_app_analytics_link.proto package resources @@ -56,7 +56,7 @@ type ThirdPartyAppAnalyticsLink struct { func (x *ThirdPartyAppAnalyticsLink) Reset() { *x = ThirdPartyAppAnalyticsLink{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_third_party_app_analytics_link_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_third_party_app_analytics_link_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -69,7 +69,7 @@ func (x *ThirdPartyAppAnalyticsLink) String() string { func (*ThirdPartyAppAnalyticsLink) ProtoMessage() {} func (x *ThirdPartyAppAnalyticsLink) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_third_party_app_analytics_link_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_third_party_app_analytics_link_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 *ThirdPartyAppAnalyticsLink) ProtoReflect() protoreflect.Message { // Deprecated: Use ThirdPartyAppAnalyticsLink.ProtoReflect.Descriptor instead. func (*ThirdPartyAppAnalyticsLink) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_third_party_app_analytics_link_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_third_party_app_analytics_link_proto_rawDescGZIP(), []int{0} } func (x *ThirdPartyAppAnalyticsLink) GetResourceName() string { @@ -99,16 +99,16 @@ func (x *ThirdPartyAppAnalyticsLink) GetShareableLinkId() string { return "" } -var File_google_ads_googleads_v16_resources_third_party_app_analytics_link_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_third_party_app_analytics_link_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_third_party_app_analytics_link_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_third_party_app_analytics_link_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, 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, 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, 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, 0x1f, 0x67, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -135,42 +135,42 @@ var file_google_ads_googleads_v16_resources_third_party_app_analytics_link_proto 0x69, 0x64, 0x7d, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x69, 0x64, 0x42, 0x91, 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, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x1f, 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, 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, + 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, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, + 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, + 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, 0x70, + 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_third_party_app_analytics_link_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_third_party_app_analytics_link_proto_rawDescData = file_google_ads_googleads_v16_resources_third_party_app_analytics_link_proto_rawDesc + file_google_ads_googleads_v17_resources_third_party_app_analytics_link_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_third_party_app_analytics_link_proto_rawDescData = file_google_ads_googleads_v17_resources_third_party_app_analytics_link_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_third_party_app_analytics_link_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_third_party_app_analytics_link_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_third_party_app_analytics_link_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_third_party_app_analytics_link_proto_rawDescData) +func file_google_ads_googleads_v17_resources_third_party_app_analytics_link_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_third_party_app_analytics_link_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_third_party_app_analytics_link_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_third_party_app_analytics_link_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_third_party_app_analytics_link_proto_rawDescData + return file_google_ads_googleads_v17_resources_third_party_app_analytics_link_proto_rawDescData } -var file_google_ads_googleads_v16_resources_third_party_app_analytics_link_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_third_party_app_analytics_link_proto_goTypes = []interface{}{ - (*ThirdPartyAppAnalyticsLink)(nil), // 0: google.ads.googleads.v16.resources.ThirdPartyAppAnalyticsLink +var file_google_ads_googleads_v17_resources_third_party_app_analytics_link_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_third_party_app_analytics_link_proto_goTypes = []interface{}{ + (*ThirdPartyAppAnalyticsLink)(nil), // 0: google.ads.googleads.v17.resources.ThirdPartyAppAnalyticsLink } -var file_google_ads_googleads_v16_resources_third_party_app_analytics_link_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_third_party_app_analytics_link_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method output_type 0, // [0:0] is the sub-list for method input_type 0, // [0:0] is the sub-list for extension type_name @@ -178,13 +178,13 @@ var file_google_ads_googleads_v16_resources_third_party_app_analytics_link_proto 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_third_party_app_analytics_link_proto_init() } -func file_google_ads_googleads_v16_resources_third_party_app_analytics_link_proto_init() { - if File_google_ads_googleads_v16_resources_third_party_app_analytics_link_proto != nil { +func init() { file_google_ads_googleads_v17_resources_third_party_app_analytics_link_proto_init() } +func file_google_ads_googleads_v17_resources_third_party_app_analytics_link_proto_init() { + if File_google_ads_googleads_v17_resources_third_party_app_analytics_link_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_third_party_app_analytics_link_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_third_party_app_analytics_link_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ThirdPartyAppAnalyticsLink); i { case 0: return &v.state @@ -197,23 +197,23 @@ func file_google_ads_googleads_v16_resources_third_party_app_analytics_link_prot } } } - file_google_ads_googleads_v16_resources_third_party_app_analytics_link_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_third_party_app_analytics_link_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_third_party_app_analytics_link_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_third_party_app_analytics_link_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_third_party_app_analytics_link_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_third_party_app_analytics_link_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_third_party_app_analytics_link_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_third_party_app_analytics_link_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_third_party_app_analytics_link_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_third_party_app_analytics_link_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_third_party_app_analytics_link_proto = out.File - file_google_ads_googleads_v16_resources_third_party_app_analytics_link_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_third_party_app_analytics_link_proto_goTypes = nil - file_google_ads_googleads_v16_resources_third_party_app_analytics_link_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_third_party_app_analytics_link_proto = out.File + file_google_ads_googleads_v17_resources_third_party_app_analytics_link_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_third_party_app_analytics_link_proto_goTypes = nil + file_google_ads_googleads_v17_resources_third_party_app_analytics_link_proto_depIdxs = nil } diff --git a/resources/topic_constant.pb.go b/resources/topic_constant.pb.go index 912d13dd..2743ed81 100644 --- a/resources/topic_constant.pb.go +++ b/resources/topic_constant.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/topic_constant.proto +// source: google/ads/googleads/v17/resources/topic_constant.proto package resources @@ -63,7 +63,7 @@ type TopicConstant struct { func (x *TopicConstant) Reset() { *x = TopicConstant{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_topic_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_topic_constant_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76,7 +76,7 @@ func (x *TopicConstant) String() string { func (*TopicConstant) ProtoMessage() {} func (x *TopicConstant) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_topic_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_topic_constant_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 *TopicConstant) ProtoReflect() protoreflect.Message { // Deprecated: Use TopicConstant.ProtoReflect.Descriptor instead. func (*TopicConstant) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_topic_constant_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_topic_constant_proto_rawDescGZIP(), []int{0} } func (x *TopicConstant) GetResourceName() string { @@ -120,15 +120,15 @@ func (x *TopicConstant) GetPath() []string { return nil } -var File_google_ads_googleads_v16_resources_topic_constant_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_topic_constant_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_topic_constant_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_topic_constant_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, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 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, 0x1f, 0x67, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -157,41 +157,41 @@ var file_google_ads_googleads_v16_resources_topic_constant_proto_rawDesc = []byt 0x74, 0x6f, 0x70, 0x69, 0x63, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x5f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 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, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x12, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 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, + 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, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, + 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, + 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, 0x70, 0x72, + 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_topic_constant_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_topic_constant_proto_rawDescData = file_google_ads_googleads_v16_resources_topic_constant_proto_rawDesc + file_google_ads_googleads_v17_resources_topic_constant_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_topic_constant_proto_rawDescData = file_google_ads_googleads_v17_resources_topic_constant_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_topic_constant_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_topic_constant_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_topic_constant_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_topic_constant_proto_rawDescData) +func file_google_ads_googleads_v17_resources_topic_constant_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_topic_constant_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_topic_constant_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_topic_constant_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_topic_constant_proto_rawDescData + return file_google_ads_googleads_v17_resources_topic_constant_proto_rawDescData } -var file_google_ads_googleads_v16_resources_topic_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_topic_constant_proto_goTypes = []interface{}{ - (*TopicConstant)(nil), // 0: google.ads.googleads.v16.resources.TopicConstant +var file_google_ads_googleads_v17_resources_topic_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_topic_constant_proto_goTypes = []interface{}{ + (*TopicConstant)(nil), // 0: google.ads.googleads.v17.resources.TopicConstant } -var file_google_ads_googleads_v16_resources_topic_constant_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_topic_constant_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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_resources_topic_constant_proto_depIdxs = []int 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_topic_constant_proto_init() } -func file_google_ads_googleads_v16_resources_topic_constant_proto_init() { - if File_google_ads_googleads_v16_resources_topic_constant_proto != nil { +func init() { file_google_ads_googleads_v17_resources_topic_constant_proto_init() } +func file_google_ads_googleads_v17_resources_topic_constant_proto_init() { + if File_google_ads_googleads_v17_resources_topic_constant_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_topic_constant_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_topic_constant_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TopicConstant); i { case 0: return &v.state @@ -218,23 +218,23 @@ func file_google_ads_googleads_v16_resources_topic_constant_proto_init() { } } } - file_google_ads_googleads_v16_resources_topic_constant_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_topic_constant_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_topic_constant_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_topic_constant_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_topic_constant_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_topic_constant_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_topic_constant_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_topic_constant_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_topic_constant_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_topic_constant_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_topic_constant_proto = out.File - file_google_ads_googleads_v16_resources_topic_constant_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_topic_constant_proto_goTypes = nil - file_google_ads_googleads_v16_resources_topic_constant_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_topic_constant_proto = out.File + file_google_ads_googleads_v17_resources_topic_constant_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_topic_constant_proto_goTypes = nil + file_google_ads_googleads_v17_resources_topic_constant_proto_depIdxs = nil } diff --git a/resources/topic_view.pb.go b/resources/topic_view.pb.go index c63236c9..53e38e87 100644 --- a/resources/topic_view.pb.go +++ b/resources/topic_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/topic_view.proto +// source: google/ads/googleads/v17/resources/topic_view.proto package resources @@ -51,7 +51,7 @@ type TopicView struct { func (x *TopicView) Reset() { *x = TopicView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_topic_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_topic_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64,7 +64,7 @@ func (x *TopicView) String() string { func (*TopicView) ProtoMessage() {} func (x *TopicView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_topic_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_topic_view_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 *TopicView) ProtoReflect() protoreflect.Message { // Deprecated: Use TopicView.ProtoReflect.Descriptor instead. func (*TopicView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_topic_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_topic_view_proto_rawDescGZIP(), []int{0} } func (x *TopicView) GetResourceName() string { @@ -87,14 +87,14 @@ func (x *TopicView) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_resources_topic_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_topic_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_topic_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_topic_view_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, 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, 0x74, 0x6f, 0x70, 0x69, 0x63, 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, + 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, 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, @@ -113,41 +113,41 @@ var file_google_ads_googleads_v16_resources_topic_view_proto_rawDesc = []byte{ 0x73, 0x2f, 0x7b, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 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, + 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, 0x0e, 0x54, 0x6f, 0x70, 0x69, 0x63, 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, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, + 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, + 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, + 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, 0x63, 0x65, + 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_topic_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_topic_view_proto_rawDescData = file_google_ads_googleads_v16_resources_topic_view_proto_rawDesc + file_google_ads_googleads_v17_resources_topic_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_topic_view_proto_rawDescData = file_google_ads_googleads_v17_resources_topic_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_topic_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_topic_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_topic_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_topic_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_topic_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_topic_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_topic_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_topic_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_topic_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_topic_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_topic_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_topic_view_proto_goTypes = []interface{}{ - (*TopicView)(nil), // 0: google.ads.googleads.v16.resources.TopicView +var file_google_ads_googleads_v17_resources_topic_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_topic_view_proto_goTypes = []interface{}{ + (*TopicView)(nil), // 0: google.ads.googleads.v17.resources.TopicView } -var file_google_ads_googleads_v16_resources_topic_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_topic_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method output_type 0, // [0:0] is the sub-list for method input_type 0, // [0:0] is the sub-list for extension type_name @@ -155,13 +155,13 @@ var file_google_ads_googleads_v16_resources_topic_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_topic_view_proto_init() } -func file_google_ads_googleads_v16_resources_topic_view_proto_init() { - if File_google_ads_googleads_v16_resources_topic_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_topic_view_proto_init() } +func file_google_ads_googleads_v17_resources_topic_view_proto_init() { + if File_google_ads_googleads_v17_resources_topic_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_topic_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_topic_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TopicView); i { case 0: return &v.state @@ -178,18 +178,18 @@ func file_google_ads_googleads_v16_resources_topic_view_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_topic_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_topic_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_topic_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_topic_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_topic_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_topic_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_topic_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_topic_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_topic_view_proto = out.File - file_google_ads_googleads_v16_resources_topic_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_topic_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_topic_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_topic_view_proto = out.File + file_google_ads_googleads_v17_resources_topic_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_topic_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_topic_view_proto_depIdxs = nil } diff --git a/resources/travel_activity_group_view.pb.go b/resources/travel_activity_group_view.pb.go index 818e8d84..1c3706a4 100644 --- a/resources/travel_activity_group_view.pb.go +++ b/resources/travel_activity_group_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/travel_activity_group_view.proto +// source: google/ads/googleads/v17/resources/travel_activity_group_view.proto package resources @@ -51,7 +51,7 @@ type TravelActivityGroupView struct { func (x *TravelActivityGroupView) Reset() { *x = TravelActivityGroupView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_travel_activity_group_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_travel_activity_group_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64,7 +64,7 @@ func (x *TravelActivityGroupView) String() string { func (*TravelActivityGroupView) ProtoMessage() {} func (x *TravelActivityGroupView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_travel_activity_group_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_travel_activity_group_view_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 *TravelActivityGroupView) ProtoReflect() protoreflect.Message { // Deprecated: Use TravelActivityGroupView.ProtoReflect.Descriptor instead. func (*TravelActivityGroupView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_travel_activity_group_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_travel_activity_group_view_proto_rawDescGZIP(), []int{0} } func (x *TravelActivityGroupView) GetResourceName() string { @@ -87,15 +87,15 @@ func (x *TravelActivityGroupView) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_resources_travel_activity_group_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_travel_activity_group_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_travel_activity_group_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_travel_activity_group_view_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, 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, 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 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, + 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, 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, @@ -118,42 +118,42 @@ var file_google_ads_googleads_v16_resources_travel_activity_group_view_proto_raw 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x8e, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x1c, 0x54, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x47, 0x72, 0x6f, 0x75, 0x70, 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, 0x73, + 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, 0x6f, + 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, + 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_travel_activity_group_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_travel_activity_group_view_proto_rawDescData = file_google_ads_googleads_v16_resources_travel_activity_group_view_proto_rawDesc + file_google_ads_googleads_v17_resources_travel_activity_group_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_travel_activity_group_view_proto_rawDescData = file_google_ads_googleads_v17_resources_travel_activity_group_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_travel_activity_group_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_travel_activity_group_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_travel_activity_group_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_travel_activity_group_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_travel_activity_group_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_travel_activity_group_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_travel_activity_group_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_travel_activity_group_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_travel_activity_group_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_travel_activity_group_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_travel_activity_group_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_travel_activity_group_view_proto_goTypes = []interface{}{ - (*TravelActivityGroupView)(nil), // 0: google.ads.googleads.v16.resources.TravelActivityGroupView +var file_google_ads_googleads_v17_resources_travel_activity_group_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_travel_activity_group_view_proto_goTypes = []interface{}{ + (*TravelActivityGroupView)(nil), // 0: google.ads.googleads.v17.resources.TravelActivityGroupView } -var file_google_ads_googleads_v16_resources_travel_activity_group_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_travel_activity_group_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method output_type 0, // [0:0] is the sub-list for method input_type 0, // [0:0] is the sub-list for extension type_name @@ -161,13 +161,13 @@ var file_google_ads_googleads_v16_resources_travel_activity_group_view_proto_dep 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_travel_activity_group_view_proto_init() } -func file_google_ads_googleads_v16_resources_travel_activity_group_view_proto_init() { - if File_google_ads_googleads_v16_resources_travel_activity_group_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_travel_activity_group_view_proto_init() } +func file_google_ads_googleads_v17_resources_travel_activity_group_view_proto_init() { + if File_google_ads_googleads_v17_resources_travel_activity_group_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_travel_activity_group_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_travel_activity_group_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TravelActivityGroupView); i { case 0: return &v.state @@ -184,18 +184,18 @@ func file_google_ads_googleads_v16_resources_travel_activity_group_view_proto_in out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_travel_activity_group_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_travel_activity_group_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_travel_activity_group_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_travel_activity_group_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_travel_activity_group_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_travel_activity_group_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_travel_activity_group_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_travel_activity_group_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_travel_activity_group_view_proto = out.File - file_google_ads_googleads_v16_resources_travel_activity_group_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_travel_activity_group_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_travel_activity_group_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_travel_activity_group_view_proto = out.File + file_google_ads_googleads_v17_resources_travel_activity_group_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_travel_activity_group_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_travel_activity_group_view_proto_depIdxs = nil } diff --git a/resources/travel_activity_performance_view.pb.go b/resources/travel_activity_performance_view.pb.go index a0b5b4fa..4d8722ba 100644 --- a/resources/travel_activity_performance_view.pb.go +++ b/resources/travel_activity_performance_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/travel_activity_performance_view.proto +// source: google/ads/googleads/v17/resources/travel_activity_performance_view.proto package resources @@ -51,7 +51,7 @@ type TravelActivityPerformanceView struct { func (x *TravelActivityPerformanceView) Reset() { *x = TravelActivityPerformanceView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_travel_activity_performance_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_travel_activity_performance_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64,7 +64,7 @@ func (x *TravelActivityPerformanceView) String() string { func (*TravelActivityPerformanceView) ProtoMessage() {} func (x *TravelActivityPerformanceView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_travel_activity_performance_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_travel_activity_performance_view_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 *TravelActivityPerformanceView) ProtoReflect() protoreflect.Message { // Deprecated: Use TravelActivityPerformanceView.ProtoReflect.Descriptor instead. func (*TravelActivityPerformanceView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_travel_activity_performance_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_travel_activity_performance_view_proto_rawDescGZIP(), []int{0} } func (x *TravelActivityPerformanceView) GetResourceName() string { @@ -87,16 +87,16 @@ func (x *TravelActivityPerformanceView) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_resources_travel_activity_performance_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_travel_activity_performance_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_travel_activity_performance_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_travel_activity_performance_view_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, 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, 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x5f, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 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, 0x73, 0x1a, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -118,42 +118,42 @@ var file_google_ads_googleads_v16_resources_travel_activity_performance_view_pro 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x56, 0x69, 0x65, 0x77, 0x73, 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, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x22, 0x54, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 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, 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_travel_activity_performance_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_travel_activity_performance_view_proto_rawDescData = file_google_ads_googleads_v16_resources_travel_activity_performance_view_proto_rawDesc + file_google_ads_googleads_v17_resources_travel_activity_performance_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_travel_activity_performance_view_proto_rawDescData = file_google_ads_googleads_v17_resources_travel_activity_performance_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_travel_activity_performance_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_travel_activity_performance_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_travel_activity_performance_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_travel_activity_performance_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_travel_activity_performance_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_travel_activity_performance_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_travel_activity_performance_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_travel_activity_performance_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_travel_activity_performance_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_travel_activity_performance_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_travel_activity_performance_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_travel_activity_performance_view_proto_goTypes = []interface{}{ - (*TravelActivityPerformanceView)(nil), // 0: google.ads.googleads.v16.resources.TravelActivityPerformanceView +var file_google_ads_googleads_v17_resources_travel_activity_performance_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_travel_activity_performance_view_proto_goTypes = []interface{}{ + (*TravelActivityPerformanceView)(nil), // 0: google.ads.googleads.v17.resources.TravelActivityPerformanceView } -var file_google_ads_googleads_v16_resources_travel_activity_performance_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_travel_activity_performance_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method output_type 0, // [0:0] is the sub-list for method input_type 0, // [0:0] is the sub-list for extension type_name @@ -161,13 +161,13 @@ var file_google_ads_googleads_v16_resources_travel_activity_performance_view_pro 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_travel_activity_performance_view_proto_init() } -func file_google_ads_googleads_v16_resources_travel_activity_performance_view_proto_init() { - if File_google_ads_googleads_v16_resources_travel_activity_performance_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_travel_activity_performance_view_proto_init() } +func file_google_ads_googleads_v17_resources_travel_activity_performance_view_proto_init() { + if File_google_ads_googleads_v17_resources_travel_activity_performance_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_travel_activity_performance_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_travel_activity_performance_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TravelActivityPerformanceView); i { case 0: return &v.state @@ -184,18 +184,18 @@ func file_google_ads_googleads_v16_resources_travel_activity_performance_view_pr out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_travel_activity_performance_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_travel_activity_performance_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_travel_activity_performance_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_travel_activity_performance_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_travel_activity_performance_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_travel_activity_performance_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_travel_activity_performance_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_travel_activity_performance_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_travel_activity_performance_view_proto = out.File - file_google_ads_googleads_v16_resources_travel_activity_performance_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_travel_activity_performance_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_travel_activity_performance_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_travel_activity_performance_view_proto = out.File + file_google_ads_googleads_v17_resources_travel_activity_performance_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_travel_activity_performance_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_travel_activity_performance_view_proto_depIdxs = nil } diff --git a/resources/user_interest.pb.go b/resources/user_interest.pb.go index d52f8973..785330b1 100644 --- a/resources/user_interest.pb.go +++ b/resources/user_interest.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/user_interest.proto +// source: google/ads/googleads/v17/resources/user_interest.proto package resources @@ -49,7 +49,7 @@ type UserInterest struct { // `customers/{customer_id}/userInterests/{user_interest_id}` ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` // Output only. Taxonomy type of the user interest. - TaxonomyType enums.UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType `protobuf:"varint,2,opt,name=taxonomy_type,json=taxonomyType,proto3,enum=google.ads.googleads.v16.enums.UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType" json:"taxonomy_type,omitempty"` + TaxonomyType enums.UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType `protobuf:"varint,2,opt,name=taxonomy_type,json=taxonomyType,proto3,enum=google.ads.googleads.v17.enums.UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType" json:"taxonomy_type,omitempty"` // Output only. The ID of the user interest. UserInterestId *int64 `protobuf:"varint,8,opt,name=user_interest_id,json=userInterestId,proto3,oneof" json:"user_interest_id,omitempty"` // Output only. The name of the user interest. @@ -66,7 +66,7 @@ type UserInterest struct { func (x *UserInterest) Reset() { *x = UserInterest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_user_interest_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_user_interest_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *UserInterest) String() string { func (*UserInterest) ProtoMessage() {} func (x *UserInterest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_user_interest_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_user_interest_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *UserInterest) ProtoReflect() protoreflect.Message { // Deprecated: Use UserInterest.ProtoReflect.Descriptor instead. func (*UserInterest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_user_interest_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_user_interest_proto_rawDescGZIP(), []int{0} } func (x *UserInterest) GetResourceName() string { @@ -144,21 +144,21 @@ func (x *UserInterest) GetAvailabilities() []*common.CriterionCategoryAvailabili return nil } -var File_google_ads_googleads_v16_resources_user_interest_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_user_interest_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_user_interest_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_user_interest_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, 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, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 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, 0x45, 0x67, 0x6f, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x72, + 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, 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, 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, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, @@ -174,7 +174,7 @@ var file_google_ads_googleads_v16_resources_user_interest_proto_rawDesc = []byte 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x7f, 0x0a, 0x0d, 0x74, 0x61, 0x78, 0x6f, 0x6e, 0x6f, 0x6d, 0x79, 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, 0x2e, 0x55, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x54, 0x61, 0x78, 0x6f, 0x6e, 0x6f, 0x6d, 0x79, @@ -197,7 +197,7 @@ var file_google_ads_googleads_v16_resources_user_interest_proto_rawDesc = []byte 0x01, 0x12, 0x6b, 0x0a, 0x0e, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x69, 0x65, 0x73, 0x18, 0x07, 0x20, 0x03, 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, 0x43, 0x72, 0x69, 0x74, + 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, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0e, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x69, 0x65, 0x73, 0x3a, 0x64, @@ -213,45 +213,45 @@ var file_google_ads_googleads_v16_resources_user_interest_proto_rawDesc = []byte 0x72, 0x65, 0x73, 0x74, 0x5f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x6c, 0x61, 0x75, 0x6e, 0x63, 0x68, 0x65, 0x64, 0x5f, 0x74, 0x6f, 0x5f, 0x61, 0x6c, 0x6c, 0x42, 0x83, 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, + 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, 0x11, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 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, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 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, + 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, 0x26, 0x47, + 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, + 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_user_interest_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_user_interest_proto_rawDescData = file_google_ads_googleads_v16_resources_user_interest_proto_rawDesc + file_google_ads_googleads_v17_resources_user_interest_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_user_interest_proto_rawDescData = file_google_ads_googleads_v17_resources_user_interest_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_user_interest_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_user_interest_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_user_interest_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_user_interest_proto_rawDescData) +func file_google_ads_googleads_v17_resources_user_interest_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_user_interest_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_user_interest_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_user_interest_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_user_interest_proto_rawDescData + return file_google_ads_googleads_v17_resources_user_interest_proto_rawDescData } -var file_google_ads_googleads_v16_resources_user_interest_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_user_interest_proto_goTypes = []interface{}{ - (*UserInterest)(nil), // 0: google.ads.googleads.v16.resources.UserInterest - (enums.UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType)(0), // 1: google.ads.googleads.v16.enums.UserInterestTaxonomyTypeEnum.UserInterestTaxonomyType - (*common.CriterionCategoryAvailability)(nil), // 2: google.ads.googleads.v16.common.CriterionCategoryAvailability +var file_google_ads_googleads_v17_resources_user_interest_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_user_interest_proto_goTypes = []interface{}{ + (*UserInterest)(nil), // 0: google.ads.googleads.v17.resources.UserInterest + (enums.UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType)(0), // 1: google.ads.googleads.v17.enums.UserInterestTaxonomyTypeEnum.UserInterestTaxonomyType + (*common.CriterionCategoryAvailability)(nil), // 2: google.ads.googleads.v17.common.CriterionCategoryAvailability } -var file_google_ads_googleads_v16_resources_user_interest_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.UserInterest.taxonomy_type:type_name -> google.ads.googleads.v16.enums.UserInterestTaxonomyTypeEnum.UserInterestTaxonomyType - 2, // 1: google.ads.googleads.v16.resources.UserInterest.availabilities:type_name -> google.ads.googleads.v16.common.CriterionCategoryAvailability +var file_google_ads_googleads_v17_resources_user_interest_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.UserInterest.taxonomy_type:type_name -> google.ads.googleads.v17.enums.UserInterestTaxonomyTypeEnum.UserInterestTaxonomyType + 2, // 1: google.ads.googleads.v17.resources.UserInterest.availabilities:type_name -> google.ads.googleads.v17.common.CriterionCategoryAvailability 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 @@ -259,13 +259,13 @@ var file_google_ads_googleads_v16_resources_user_interest_proto_depIdxs = []int3 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_user_interest_proto_init() } -func file_google_ads_googleads_v16_resources_user_interest_proto_init() { - if File_google_ads_googleads_v16_resources_user_interest_proto != nil { +func init() { file_google_ads_googleads_v17_resources_user_interest_proto_init() } +func file_google_ads_googleads_v17_resources_user_interest_proto_init() { + if File_google_ads_googleads_v17_resources_user_interest_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_user_interest_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_user_interest_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*UserInterest); i { case 0: return &v.state @@ -278,23 +278,23 @@ func file_google_ads_googleads_v16_resources_user_interest_proto_init() { } } } - file_google_ads_googleads_v16_resources_user_interest_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_user_interest_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_user_interest_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_user_interest_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_user_interest_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_user_interest_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_user_interest_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_user_interest_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_user_interest_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_user_interest_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_user_interest_proto = out.File - file_google_ads_googleads_v16_resources_user_interest_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_user_interest_proto_goTypes = nil - file_google_ads_googleads_v16_resources_user_interest_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_user_interest_proto = out.File + file_google_ads_googleads_v17_resources_user_interest_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_user_interest_proto_goTypes = nil + file_google_ads_googleads_v17_resources_user_interest_proto_depIdxs = nil } diff --git a/resources/user_list.pb.go b/resources/user_list.pb.go index e99a51f2..a3ec76b1 100644 --- a/resources/user_list.pb.go +++ b/resources/user_list.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/user_list.proto +// source: google/ads/googleads/v17/resources/user_list.proto package resources @@ -64,7 +64,7 @@ type UserList struct { // Membership status of this user list. Indicates whether a user list is open // or active. Only open user lists can accumulate more users and can be // targeted to. - MembershipStatus enums.UserListMembershipStatusEnum_UserListMembershipStatus `protobuf:"varint,6,opt,name=membership_status,json=membershipStatus,proto3,enum=google.ads.googleads.v16.enums.UserListMembershipStatusEnum_UserListMembershipStatus" json:"membership_status,omitempty"` + MembershipStatus enums.UserListMembershipStatusEnum_UserListMembershipStatus `protobuf:"varint,6,opt,name=membership_status,json=membershipStatus,proto3,enum=google.ads.googleads.v17.enums.UserListMembershipStatusEnum_UserListMembershipStatus" json:"membership_status,omitempty"` // An ID from external system. It is used by user list sellers to correlate // IDs on their systems. IntegrationCode *string `protobuf:"bytes,29,opt,name=integration_code,json=integrationCode,proto3,oneof" json:"integration_code,omitempty"` @@ -87,7 +87,7 @@ type UserList struct { // Google Display Network. // // This field is read-only. - SizeRangeForDisplay enums.UserListSizeRangeEnum_UserListSizeRange `protobuf:"varint,10,opt,name=size_range_for_display,json=sizeRangeForDisplay,proto3,enum=google.ads.googleads.v16.enums.UserListSizeRangeEnum_UserListSizeRange" json:"size_range_for_display,omitempty"` + SizeRangeForDisplay enums.UserListSizeRangeEnum_UserListSizeRange `protobuf:"varint,10,opt,name=size_range_for_display,json=sizeRangeForDisplay,proto3,enum=google.ads.googleads.v17.enums.UserListSizeRangeEnum_UserListSizeRange" json:"size_range_for_display,omitempty"` // Output only. Estimated number of users in this user list in the google.com // domain. These are the users available for targeting in Search campaigns. // This value is null if the number of users has not yet been determined. @@ -98,25 +98,25 @@ type UserList struct { // Search ads. // // This field is read-only. - SizeRangeForSearch enums.UserListSizeRangeEnum_UserListSizeRange `protobuf:"varint,12,opt,name=size_range_for_search,json=sizeRangeForSearch,proto3,enum=google.ads.googleads.v16.enums.UserListSizeRangeEnum_UserListSizeRange" json:"size_range_for_search,omitempty"` + SizeRangeForSearch enums.UserListSizeRangeEnum_UserListSizeRange `protobuf:"varint,12,opt,name=size_range_for_search,json=sizeRangeForSearch,proto3,enum=google.ads.googleads.v17.enums.UserListSizeRangeEnum_UserListSizeRange" json:"size_range_for_search,omitempty"` // Output only. Type of this list. // // This field is read-only. - Type enums.UserListTypeEnum_UserListType `protobuf:"varint,13,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.UserListTypeEnum_UserListType" json:"type,omitempty"` + Type enums.UserListTypeEnum_UserListType `protobuf:"varint,13,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.UserListTypeEnum_UserListType" json:"type,omitempty"` // Indicating the reason why this user list membership status is closed. It is // only populated on lists that were automatically closed due to inactivity, // and will be cleared once the list membership status becomes open. - ClosingReason enums.UserListClosingReasonEnum_UserListClosingReason `protobuf:"varint,14,opt,name=closing_reason,json=closingReason,proto3,enum=google.ads.googleads.v16.enums.UserListClosingReasonEnum_UserListClosingReason" json:"closing_reason,omitempty"` + ClosingReason enums.UserListClosingReasonEnum_UserListClosingReason `protobuf:"varint,14,opt,name=closing_reason,json=closingReason,proto3,enum=google.ads.googleads.v17.enums.UserListClosingReasonEnum_UserListClosingReason" json:"closing_reason,omitempty"` // Output only. Indicates the reason this account has been granted access to // the list. The reason can be SHARED, OWNED, LICENSED or SUBSCRIBED. // // This field is read-only. - AccessReason enums.AccessReasonEnum_AccessReason `protobuf:"varint,15,opt,name=access_reason,json=accessReason,proto3,enum=google.ads.googleads.v16.enums.AccessReasonEnum_AccessReason" json:"access_reason,omitempty"` + AccessReason enums.AccessReasonEnum_AccessReason `protobuf:"varint,15,opt,name=access_reason,json=accessReason,proto3,enum=google.ads.googleads.v17.enums.AccessReasonEnum_AccessReason" json:"access_reason,omitempty"` // Indicates if this share is still enabled. When a UserList is shared with // the user this field is set to ENABLED. Later the userList owner can decide // to revoke the share and make it DISABLED. // The default value of this field is set to ENABLED. - AccountUserListStatus enums.UserListAccessStatusEnum_UserListAccessStatus `protobuf:"varint,16,opt,name=account_user_list_status,json=accountUserListStatus,proto3,enum=google.ads.googleads.v16.enums.UserListAccessStatusEnum_UserListAccessStatus" json:"account_user_list_status,omitempty"` + AccountUserListStatus enums.UserListAccessStatusEnum_UserListAccessStatus `protobuf:"varint,16,opt,name=account_user_list_status,json=accountUserListStatus,proto3,enum=google.ads.googleads.v17.enums.UserListAccessStatusEnum_UserListAccessStatus" json:"account_user_list_status,omitempty"` // Indicates if this user list is eligible for Google Search Network. EligibleForSearch *bool `protobuf:"varint,33,opt,name=eligible_for_search,json=eligibleForSearch,proto3,oneof" json:"eligible_for_search,omitempty"` // Output only. Indicates this user list is eligible for Google Display @@ -148,7 +148,7 @@ type UserList struct { func (x *UserList) Reset() { *x = UserList{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_user_list_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_user_list_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -161,7 +161,7 @@ func (x *UserList) String() string { func (*UserList) ProtoMessage() {} func (x *UserList) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_user_list_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_user_list_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -174,7 +174,7 @@ func (x *UserList) ProtoReflect() protoreflect.Message { // Deprecated: Use UserList.ProtoReflect.Descriptor instead. func (*UserList) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_user_list_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_user_list_proto_rawDescGZIP(), []int{0} } func (x *UserList) GetResourceName() string { @@ -406,39 +406,39 @@ func (*UserList_BasicUserList) isUserList_UserList() {} func (*UserList_LookalikeUserList) isUserList_UserList() {} -var File_google_ads_googleads_v16_resources_user_list_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_user_list_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_user_list_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_user_list_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, 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, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 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, + 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, 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, 0x6e, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, + 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, 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, 0x61, 0x63, 0x63, 0x65, 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, 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, 0x75, + 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, 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, 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, 0x63, 0x6c, 0x6f, 0x73, 0x69, 0x6e, 0x67, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 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, 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, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x68, 0x69, 0x70, 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, 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, 0x73, 0x69, 0x7a, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 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, 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, 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, @@ -460,7 +460,7 @@ var file_google_ads_googleads_v16_resources_user_list_proto_rawDesc = []byte{ 0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x82, 0x01, 0x0a, 0x11, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x68, 0x69, 0x70, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x06, 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, + 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, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x68, 0x69, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, @@ -479,7 +479,7 @@ var file_google_ads_googleads_v16_resources_user_list_proto_rawDesc = []byte{ 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x66, 0x6f, 0x72, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x18, 0x0a, 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, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, + 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x69, 0x7a, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x69, 0x7a, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x13, 0x73, 0x69, 0x7a, 0x65, 0x52, 0x61, 0x6e, 0x67, @@ -490,27 +490,27 @@ var file_google_ads_googleads_v16_resources_user_list_proto_rawDesc = []byte{ 0x15, 0x73, 0x69, 0x7a, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x66, 0x6f, 0x72, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x18, 0x0c, 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, 0x55, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x69, 0x7a, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x69, 0x7a, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x12, 0x73, 0x69, 0x7a, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x46, 0x6f, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x12, 0x56, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0d, 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, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x55, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x76, 0x0a, 0x0e, 0x63, 0x6c, 0x6f, 0x73, 0x69, 0x6e, 0x67, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x0e, 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, 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, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x6c, 0x6f, 0x73, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x52, 0x0d, 0x63, 0x6c, 0x6f, 0x73, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x12, 0x67, 0x0a, 0x0d, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x0f, 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, + 0x64, 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, 0x65, 0x73, 0x73, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0c, 0x61, 0x63, 0x63, 0x65, 0x73, @@ -518,7 +518,7 @@ var file_google_ads_googleads_v16_resources_user_list_proto_rawDesc = []byte{ 0x75, 0x6e, 0x74, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x10, 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, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x15, 0x61, 0x63, 0x63, 0x6f, 0x75, @@ -537,39 +537,39 @@ var file_google_ads_googleads_v16_resources_user_list_proto_rawDesc = []byte{ 0x66, 0x0a, 0x13, 0x63, 0x72, 0x6d, 0x5f, 0x62, 0x61, 0x73, 0x65, 0x64, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x13, 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, 0x43, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72, 0x6d, 0x42, 0x61, 0x73, 0x65, 0x64, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x10, 0x63, 0x72, 0x6d, 0x42, 0x61, 0x73, 0x65, 0x64, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x67, 0x0a, 0x11, 0x73, 0x69, 0x6d, 0x69, 0x6c, 0x61, 0x72, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x69, 0x6d, 0x69, 0x6c, 0x61, 0x72, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x0f, 0x73, 0x69, 0x6d, 0x69, 0x6c, 0x61, 0x72, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x69, 0x0a, 0x14, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x62, 0x61, 0x73, 0x65, 0x64, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x15, 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, 0x52, 0x75, 0x6c, 0x65, 0x42, 0x61, 0x73, 0x65, 0x64, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x11, 0x72, 0x75, 0x6c, 0x65, 0x42, 0x61, 0x73, 0x65, 0x64, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x62, 0x0a, 0x11, 0x6c, 0x6f, 0x67, 0x69, 0x63, 0x61, 0x6c, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x16, 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, 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, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x0f, 0x6c, 0x6f, 0x67, 0x69, 0x63, 0x61, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x5c, 0x0a, 0x0f, 0x62, 0x61, 0x73, 0x69, 0x63, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x17, 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, 0x42, 0x61, 0x73, 0x69, 0x63, + 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x42, 0x61, 0x73, 0x69, 0x63, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x0d, 0x62, 0x61, 0x73, 0x69, 0x63, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x6d, 0x0a, 0x13, 0x6c, 0x6f, 0x6f, 0x6b, 0x61, 0x6c, 0x69, 0x6b, 0x65, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x24, 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, 0x4c, 0x6f, 0x6f, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x61, 0x6c, 0x69, 0x6b, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x11, 0x6c, 0x6f, 0x6f, 0x6b, 0x61, 0x6c, 0x69, 0x6b, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x3a, 0x58, 0xea, 0x41, @@ -594,65 +594,65 @@ var file_google_ads_googleads_v16_resources_user_list_proto_rawDesc = []byte{ 0x74, 0x63, 0x68, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x42, 0xff, 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, 0x0d, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 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, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 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, + 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, 0x26, 0x47, + 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, + 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_user_list_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_user_list_proto_rawDescData = file_google_ads_googleads_v16_resources_user_list_proto_rawDesc + file_google_ads_googleads_v17_resources_user_list_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_user_list_proto_rawDescData = file_google_ads_googleads_v17_resources_user_list_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_user_list_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_user_list_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_user_list_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_user_list_proto_rawDescData) +func file_google_ads_googleads_v17_resources_user_list_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_user_list_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_user_list_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_user_list_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_user_list_proto_rawDescData -} - -var file_google_ads_googleads_v16_resources_user_list_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_user_list_proto_goTypes = []interface{}{ - (*UserList)(nil), // 0: google.ads.googleads.v16.resources.UserList - (enums.UserListMembershipStatusEnum_UserListMembershipStatus)(0), // 1: google.ads.googleads.v16.enums.UserListMembershipStatusEnum.UserListMembershipStatus - (enums.UserListSizeRangeEnum_UserListSizeRange)(0), // 2: google.ads.googleads.v16.enums.UserListSizeRangeEnum.UserListSizeRange - (enums.UserListTypeEnum_UserListType)(0), // 3: google.ads.googleads.v16.enums.UserListTypeEnum.UserListType - (enums.UserListClosingReasonEnum_UserListClosingReason)(0), // 4: google.ads.googleads.v16.enums.UserListClosingReasonEnum.UserListClosingReason - (enums.AccessReasonEnum_AccessReason)(0), // 5: google.ads.googleads.v16.enums.AccessReasonEnum.AccessReason - (enums.UserListAccessStatusEnum_UserListAccessStatus)(0), // 6: google.ads.googleads.v16.enums.UserListAccessStatusEnum.UserListAccessStatus - (*common.CrmBasedUserListInfo)(nil), // 7: google.ads.googleads.v16.common.CrmBasedUserListInfo - (*common.SimilarUserListInfo)(nil), // 8: google.ads.googleads.v16.common.SimilarUserListInfo - (*common.RuleBasedUserListInfo)(nil), // 9: google.ads.googleads.v16.common.RuleBasedUserListInfo - (*common.LogicalUserListInfo)(nil), // 10: google.ads.googleads.v16.common.LogicalUserListInfo - (*common.BasicUserListInfo)(nil), // 11: google.ads.googleads.v16.common.BasicUserListInfo - (*common.LookalikeUserListInfo)(nil), // 12: google.ads.googleads.v16.common.LookalikeUserListInfo -} -var file_google_ads_googleads_v16_resources_user_list_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.resources.UserList.membership_status:type_name -> google.ads.googleads.v16.enums.UserListMembershipStatusEnum.UserListMembershipStatus - 2, // 1: google.ads.googleads.v16.resources.UserList.size_range_for_display:type_name -> google.ads.googleads.v16.enums.UserListSizeRangeEnum.UserListSizeRange - 2, // 2: google.ads.googleads.v16.resources.UserList.size_range_for_search:type_name -> google.ads.googleads.v16.enums.UserListSizeRangeEnum.UserListSizeRange - 3, // 3: google.ads.googleads.v16.resources.UserList.type:type_name -> google.ads.googleads.v16.enums.UserListTypeEnum.UserListType - 4, // 4: google.ads.googleads.v16.resources.UserList.closing_reason:type_name -> google.ads.googleads.v16.enums.UserListClosingReasonEnum.UserListClosingReason - 5, // 5: google.ads.googleads.v16.resources.UserList.access_reason:type_name -> google.ads.googleads.v16.enums.AccessReasonEnum.AccessReason - 6, // 6: google.ads.googleads.v16.resources.UserList.account_user_list_status:type_name -> google.ads.googleads.v16.enums.UserListAccessStatusEnum.UserListAccessStatus - 7, // 7: google.ads.googleads.v16.resources.UserList.crm_based_user_list:type_name -> google.ads.googleads.v16.common.CrmBasedUserListInfo - 8, // 8: google.ads.googleads.v16.resources.UserList.similar_user_list:type_name -> google.ads.googleads.v16.common.SimilarUserListInfo - 9, // 9: google.ads.googleads.v16.resources.UserList.rule_based_user_list:type_name -> google.ads.googleads.v16.common.RuleBasedUserListInfo - 10, // 10: google.ads.googleads.v16.resources.UserList.logical_user_list:type_name -> google.ads.googleads.v16.common.LogicalUserListInfo - 11, // 11: google.ads.googleads.v16.resources.UserList.basic_user_list:type_name -> google.ads.googleads.v16.common.BasicUserListInfo - 12, // 12: google.ads.googleads.v16.resources.UserList.lookalike_user_list:type_name -> google.ads.googleads.v16.common.LookalikeUserListInfo + return file_google_ads_googleads_v17_resources_user_list_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_user_list_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_user_list_proto_goTypes = []interface{}{ + (*UserList)(nil), // 0: google.ads.googleads.v17.resources.UserList + (enums.UserListMembershipStatusEnum_UserListMembershipStatus)(0), // 1: google.ads.googleads.v17.enums.UserListMembershipStatusEnum.UserListMembershipStatus + (enums.UserListSizeRangeEnum_UserListSizeRange)(0), // 2: google.ads.googleads.v17.enums.UserListSizeRangeEnum.UserListSizeRange + (enums.UserListTypeEnum_UserListType)(0), // 3: google.ads.googleads.v17.enums.UserListTypeEnum.UserListType + (enums.UserListClosingReasonEnum_UserListClosingReason)(0), // 4: google.ads.googleads.v17.enums.UserListClosingReasonEnum.UserListClosingReason + (enums.AccessReasonEnum_AccessReason)(0), // 5: google.ads.googleads.v17.enums.AccessReasonEnum.AccessReason + (enums.UserListAccessStatusEnum_UserListAccessStatus)(0), // 6: google.ads.googleads.v17.enums.UserListAccessStatusEnum.UserListAccessStatus + (*common.CrmBasedUserListInfo)(nil), // 7: google.ads.googleads.v17.common.CrmBasedUserListInfo + (*common.SimilarUserListInfo)(nil), // 8: google.ads.googleads.v17.common.SimilarUserListInfo + (*common.RuleBasedUserListInfo)(nil), // 9: google.ads.googleads.v17.common.RuleBasedUserListInfo + (*common.LogicalUserListInfo)(nil), // 10: google.ads.googleads.v17.common.LogicalUserListInfo + (*common.BasicUserListInfo)(nil), // 11: google.ads.googleads.v17.common.BasicUserListInfo + (*common.LookalikeUserListInfo)(nil), // 12: google.ads.googleads.v17.common.LookalikeUserListInfo +} +var file_google_ads_googleads_v17_resources_user_list_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.UserList.membership_status:type_name -> google.ads.googleads.v17.enums.UserListMembershipStatusEnum.UserListMembershipStatus + 2, // 1: google.ads.googleads.v17.resources.UserList.size_range_for_display:type_name -> google.ads.googleads.v17.enums.UserListSizeRangeEnum.UserListSizeRange + 2, // 2: google.ads.googleads.v17.resources.UserList.size_range_for_search:type_name -> google.ads.googleads.v17.enums.UserListSizeRangeEnum.UserListSizeRange + 3, // 3: google.ads.googleads.v17.resources.UserList.type:type_name -> google.ads.googleads.v17.enums.UserListTypeEnum.UserListType + 4, // 4: google.ads.googleads.v17.resources.UserList.closing_reason:type_name -> google.ads.googleads.v17.enums.UserListClosingReasonEnum.UserListClosingReason + 5, // 5: google.ads.googleads.v17.resources.UserList.access_reason:type_name -> google.ads.googleads.v17.enums.AccessReasonEnum.AccessReason + 6, // 6: google.ads.googleads.v17.resources.UserList.account_user_list_status:type_name -> google.ads.googleads.v17.enums.UserListAccessStatusEnum.UserListAccessStatus + 7, // 7: google.ads.googleads.v17.resources.UserList.crm_based_user_list:type_name -> google.ads.googleads.v17.common.CrmBasedUserListInfo + 8, // 8: google.ads.googleads.v17.resources.UserList.similar_user_list:type_name -> google.ads.googleads.v17.common.SimilarUserListInfo + 9, // 9: google.ads.googleads.v17.resources.UserList.rule_based_user_list:type_name -> google.ads.googleads.v17.common.RuleBasedUserListInfo + 10, // 10: google.ads.googleads.v17.resources.UserList.logical_user_list:type_name -> google.ads.googleads.v17.common.LogicalUserListInfo + 11, // 11: google.ads.googleads.v17.resources.UserList.basic_user_list:type_name -> google.ads.googleads.v17.common.BasicUserListInfo + 12, // 12: google.ads.googleads.v17.resources.UserList.lookalike_user_list:type_name -> google.ads.googleads.v17.common.LookalikeUserListInfo 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 @@ -660,13 +660,13 @@ var file_google_ads_googleads_v16_resources_user_list_proto_depIdxs = []int32{ 0, // [0:13] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_user_list_proto_init() } -func file_google_ads_googleads_v16_resources_user_list_proto_init() { - if File_google_ads_googleads_v16_resources_user_list_proto != nil { +func init() { file_google_ads_googleads_v17_resources_user_list_proto_init() } +func file_google_ads_googleads_v17_resources_user_list_proto_init() { + if File_google_ads_googleads_v17_resources_user_list_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_user_list_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_user_list_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*UserList); i { case 0: return &v.state @@ -679,7 +679,7 @@ func file_google_ads_googleads_v16_resources_user_list_proto_init() { } } } - file_google_ads_googleads_v16_resources_user_list_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_resources_user_list_proto_msgTypes[0].OneofWrappers = []interface{}{ (*UserList_CrmBasedUserList)(nil), (*UserList_SimilarUserList)(nil), (*UserList_RuleBasedUserList)(nil), @@ -691,18 +691,18 @@ func file_google_ads_googleads_v16_resources_user_list_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_user_list_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_user_list_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_user_list_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_user_list_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_user_list_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_user_list_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_user_list_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_user_list_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_user_list_proto = out.File - file_google_ads_googleads_v16_resources_user_list_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_user_list_proto_goTypes = nil - file_google_ads_googleads_v16_resources_user_list_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_user_list_proto = out.File + file_google_ads_googleads_v17_resources_user_list_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_user_list_proto_goTypes = nil + file_google_ads_googleads_v17_resources_user_list_proto_depIdxs = nil } diff --git a/resources/user_list_customer_type.pb.go b/resources/user_list_customer_type.pb.go new file mode 100644 index 00000000..7b1f3ed8 --- /dev/null +++ b/resources/user_list_customer_type.pb.go @@ -0,0 +1,239 @@ +// Copyright 2024 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/resources/user_list_customer_type.proto + +package resources + +import ( + enums "github.com/shenzhencenter/google-ads-pb/enums" + _ "google.golang.org/genproto/googleapis/api/annotations" + 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) +) + +// A user list customer type +type UserListCustomerType struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + // Immutable. The resource name of the user list customer type + // User list customer type resource names have the form: + // `customers/{customer_id}/userListCustomerTypes/{user_list_id}~{customer_type_category}` + ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` + // Immutable. The resource name for the user list this user list customer type + // is associated with + UserList string `protobuf:"bytes,2,opt,name=user_list,json=userList,proto3" json:"user_list,omitempty"` + // Immutable. The user list customer type category + CustomerTypeCategory enums.UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory `protobuf:"varint,3,opt,name=customer_type_category,json=customerTypeCategory,proto3,enum=google.ads.googleads.v17.enums.UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory" json:"customer_type_category,omitempty"` +} + +func (x *UserListCustomerType) Reset() { + *x = UserListCustomerType{} + if protoimpl.UnsafeEnabled { + mi := &file_google_ads_googleads_v17_resources_user_list_customer_type_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *UserListCustomerType) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*UserListCustomerType) ProtoMessage() {} + +func (x *UserListCustomerType) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v17_resources_user_list_customer_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 UserListCustomerType.ProtoReflect.Descriptor instead. +func (*UserListCustomerType) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v17_resources_user_list_customer_type_proto_rawDescGZIP(), []int{0} +} + +func (x *UserListCustomerType) GetResourceName() string { + if x != nil { + return x.ResourceName + } + return "" +} + +func (x *UserListCustomerType) GetUserList() string { + if x != nil { + return x.UserList + } + return "" +} + +func (x *UserListCustomerType) GetCustomerTypeCategory() enums.UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory { + if x != nil { + return x.CustomerTypeCategory + } + return enums.UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory(0) +} + +var File_google_ads_googleads_v17_resources_user_list_customer_type_proto protoreflect.FileDescriptor + +var file_google_ads_googleads_v17_resources_user_list_customer_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, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 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, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, 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, 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, 0xd9, 0x03, 0x0a, 0x14, 0x55, 0x73, + 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x54, 0x79, + 0x70, 0x65, 0x12, 0x5a, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, + 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x35, 0xe0, 0x41, 0x05, 0xfa, 0x41, + 0x2f, 0x0a, 0x2d, 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, 0x55, 0x73, 0x65, 0x72, + 0x4c, 0x69, 0x73, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, + 0x52, 0x0c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x46, + 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x09, 0x42, 0x29, 0xe0, 0x41, 0x05, 0xfa, 0x41, 0x23, 0x0a, 0x21, 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, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x08, 0x75, 0x73, + 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x98, 0x01, 0x0a, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x6d, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, + 0x79, 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, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 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, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x52, 0x14, 0x63, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, + 0x79, 0x3a, 0x81, 0x01, 0xea, 0x41, 0x7e, 0x0a, 0x2d, 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, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x12, 0x4d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x2f, + 0x75, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x54, 0x79, 0x70, 0x65, 0x73, 0x2f, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, + 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x73, 0x65, 0x6d, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x5f, 0x6c, + 0x61, 0x62, 0x65, 0x6c, 0x7d, 0x42, 0x8b, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x42, 0x19, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 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_v17_resources_user_list_customer_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_user_list_customer_type_proto_rawDescData = file_google_ads_googleads_v17_resources_user_list_customer_type_proto_rawDesc +) + +func file_google_ads_googleads_v17_resources_user_list_customer_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_user_list_customer_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_user_list_customer_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_user_list_customer_type_proto_rawDescData) + }) + return file_google_ads_googleads_v17_resources_user_list_customer_type_proto_rawDescData +} + +var file_google_ads_googleads_v17_resources_user_list_customer_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_user_list_customer_type_proto_goTypes = []interface{}{ + (*UserListCustomerType)(nil), // 0: google.ads.googleads.v17.resources.UserListCustomerType + (enums.UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory)(0), // 1: google.ads.googleads.v17.enums.UserListCustomerTypeCategoryEnum.UserListCustomerTypeCategory +} +var file_google_ads_googleads_v17_resources_user_list_customer_type_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.resources.UserListCustomerType.customer_type_category:type_name -> google.ads.googleads.v17.enums.UserListCustomerTypeCategoryEnum.UserListCustomerTypeCategory + 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 + 1, // [1:1] is the sub-list for extension extendee + 0, // [0:1] is the sub-list for field type_name +} + +func init() { file_google_ads_googleads_v17_resources_user_list_customer_type_proto_init() } +func file_google_ads_googleads_v17_resources_user_list_customer_type_proto_init() { + if File_google_ads_googleads_v17_resources_user_list_customer_type_proto != nil { + return + } + if !protoimpl.UnsafeEnabled { + file_google_ads_googleads_v17_resources_user_list_customer_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*UserListCustomerType); 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_resources_user_list_customer_type_proto_rawDesc, + NumEnums: 0, + NumMessages: 1, + NumExtensions: 0, + NumServices: 0, + }, + GoTypes: file_google_ads_googleads_v17_resources_user_list_customer_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_user_list_customer_type_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_user_list_customer_type_proto_msgTypes, + }.Build() + File_google_ads_googleads_v17_resources_user_list_customer_type_proto = out.File + file_google_ads_googleads_v17_resources_user_list_customer_type_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_user_list_customer_type_proto_goTypes = nil + file_google_ads_googleads_v17_resources_user_list_customer_type_proto_depIdxs = nil +} diff --git a/resources/user_location_view.pb.go b/resources/user_location_view.pb.go index 54f77968..011c6380 100644 --- a/resources/user_location_view.pb.go +++ b/resources/user_location_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/user_location_view.proto +// source: google/ads/googleads/v17/resources/user_location_view.proto package resources @@ -60,7 +60,7 @@ type UserLocationView struct { func (x *UserLocationView) Reset() { *x = UserLocationView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_user_location_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_user_location_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73,7 +73,7 @@ func (x *UserLocationView) String() string { func (*UserLocationView) ProtoMessage() {} func (x *UserLocationView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_user_location_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_user_location_view_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 *UserLocationView) ProtoReflect() protoreflect.Message { // Deprecated: Use UserLocationView.ProtoReflect.Descriptor instead. func (*UserLocationView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_user_location_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_user_location_view_proto_rawDescGZIP(), []int{0} } func (x *UserLocationView) GetResourceName() string { @@ -110,15 +110,15 @@ func (x *UserLocationView) GetTargetingLocation() bool { return false } -var File_google_ads_googleads_v16_resources_user_location_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_user_location_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_user_location_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_user_location_view_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, 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, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x6f, 0x63, 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, 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, @@ -150,41 +150,41 @@ var file_google_ads_googleads_v16_resources_user_location_view_proto_rawDesc = [ 0x6e, 0x5f, 0x69, 0x64, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x87, 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, 0x15, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x63, 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, 0x73, 0x6f, 0x75, 0x72, 0x63, + 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, + 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, 0x26, 0x47, + 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, + 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_user_location_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_user_location_view_proto_rawDescData = file_google_ads_googleads_v16_resources_user_location_view_proto_rawDesc + file_google_ads_googleads_v17_resources_user_location_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_user_location_view_proto_rawDescData = file_google_ads_googleads_v17_resources_user_location_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_user_location_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_user_location_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_user_location_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_user_location_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_user_location_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_user_location_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_user_location_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_user_location_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_user_location_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_user_location_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_user_location_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_user_location_view_proto_goTypes = []interface{}{ - (*UserLocationView)(nil), // 0: google.ads.googleads.v16.resources.UserLocationView +var file_google_ads_googleads_v17_resources_user_location_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_user_location_view_proto_goTypes = []interface{}{ + (*UserLocationView)(nil), // 0: google.ads.googleads.v17.resources.UserLocationView } -var file_google_ads_googleads_v16_resources_user_location_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_user_location_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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_resources_user_location_view_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_user_location_view_proto_init() } -func file_google_ads_googleads_v16_resources_user_location_view_proto_init() { - if File_google_ads_googleads_v16_resources_user_location_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_user_location_view_proto_init() } +func file_google_ads_googleads_v17_resources_user_location_view_proto_init() { + if File_google_ads_googleads_v17_resources_user_location_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_user_location_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_user_location_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*UserLocationView); i { case 0: return &v.state @@ -211,23 +211,23 @@ func file_google_ads_googleads_v16_resources_user_location_view_proto_init() { } } } - file_google_ads_googleads_v16_resources_user_location_view_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_user_location_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_user_location_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_user_location_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_user_location_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_user_location_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_user_location_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_user_location_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_user_location_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_user_location_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_user_location_view_proto = out.File - file_google_ads_googleads_v16_resources_user_location_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_user_location_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_user_location_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_user_location_view_proto = out.File + file_google_ads_googleads_v17_resources_user_location_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_user_location_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_user_location_view_proto_depIdxs = nil } diff --git a/resources/video.pb.go b/resources/video.pb.go index 9dd42d7e..046a8b26 100644 --- a/resources/video.pb.go +++ b/resources/video.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO 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/video.proto +// source: google/ads/googleads/v17/resources/video.proto package resources @@ -59,7 +59,7 @@ type Video struct { func (x *Video) Reset() { *x = Video{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_video_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_video_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -72,7 +72,7 @@ func (x *Video) String() string { func (*Video) ProtoMessage() {} func (x *Video) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_video_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_video_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85,7 +85,7 @@ func (x *Video) ProtoReflect() protoreflect.Message { // Deprecated: Use Video.ProtoReflect.Descriptor instead. func (*Video) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_video_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_video_proto_rawDescGZIP(), []int{0} } func (x *Video) GetResourceName() string { @@ -123,14 +123,14 @@ func (x *Video) GetTitle() string { return "" } -var File_google_ads_googleads_v16_resources_video_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_video_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_video_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_video_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, 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, 0x76, 0x69, 0x64, 0x65, 0x6f, 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, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -160,40 +160,40 @@ var file_google_ads_googleads_v16_resources_video_proto_rawDesc = []byte{ 0x5f, 0x6d, 0x69, 0x6c, 0x6c, 0x69, 0x73, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x42, 0xfc, 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, 0x0a, 0x56, 0x69, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x0a, 0x56, 0x69, 0x64, 0x65, 0x6f, 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, + 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, 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, + 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, 0x63, 0x65, 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_video_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_video_proto_rawDescData = file_google_ads_googleads_v16_resources_video_proto_rawDesc + file_google_ads_googleads_v17_resources_video_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_video_proto_rawDescData = file_google_ads_googleads_v17_resources_video_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_video_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_video_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_video_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_video_proto_rawDescData) +func file_google_ads_googleads_v17_resources_video_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_video_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_video_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_video_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_video_proto_rawDescData + return file_google_ads_googleads_v17_resources_video_proto_rawDescData } -var file_google_ads_googleads_v16_resources_video_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_video_proto_goTypes = []interface{}{ - (*Video)(nil), // 0: google.ads.googleads.v16.resources.Video +var file_google_ads_googleads_v17_resources_video_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_video_proto_goTypes = []interface{}{ + (*Video)(nil), // 0: google.ads.googleads.v17.resources.Video } -var file_google_ads_googleads_v16_resources_video_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_video_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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_resources_video_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_video_proto_init() } -func file_google_ads_googleads_v16_resources_video_proto_init() { - if File_google_ads_googleads_v16_resources_video_proto != nil { +func init() { file_google_ads_googleads_v17_resources_video_proto_init() } +func file_google_ads_googleads_v17_resources_video_proto_init() { + if File_google_ads_googleads_v17_resources_video_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_video_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_video_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Video); i { case 0: return &v.state @@ -220,23 +220,23 @@ func file_google_ads_googleads_v16_resources_video_proto_init() { } } } - file_google_ads_googleads_v16_resources_video_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_resources_video_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_video_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_video_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_video_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_video_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_video_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_video_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_video_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_video_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_video_proto = out.File - file_google_ads_googleads_v16_resources_video_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_video_proto_goTypes = nil - file_google_ads_googleads_v16_resources_video_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_video_proto = out.File + file_google_ads_googleads_v17_resources_video_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_video_proto_goTypes = nil + file_google_ads_googleads_v17_resources_video_proto_depIdxs = nil } diff --git a/resources/webpage_view.pb.go b/resources/webpage_view.pb.go index 91d6b3b2..b816544c 100644 --- a/resources/webpage_view.pb.go +++ b/resources/webpage_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/webpage_view.proto +// source: google/ads/googleads/v17/resources/webpage_view.proto package resources @@ -51,7 +51,7 @@ type WebpageView struct { func (x *WebpageView) Reset() { *x = WebpageView{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_resources_webpage_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_webpage_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64,7 +64,7 @@ func (x *WebpageView) String() string { func (*WebpageView) ProtoMessage() {} func (x *WebpageView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_resources_webpage_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_resources_webpage_view_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 *WebpageView) ProtoReflect() protoreflect.Message { // Deprecated: Use WebpageView.ProtoReflect.Descriptor instead. func (*WebpageView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_resources_webpage_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_resources_webpage_view_proto_rawDescGZIP(), []int{0} } func (x *WebpageView) GetResourceName() string { @@ -87,15 +87,15 @@ func (x *WebpageView) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_resources_webpage_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_resources_webpage_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_resources_webpage_view_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_resources_webpage_view_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, 0x77, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 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, 0x73, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 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, @@ -114,41 +114,41 @@ var file_google_ads_googleads_v16_resources_webpage_view_proto_rawDesc = []byte{ 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x10, 0x57, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 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, + 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, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, + 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, + 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, 0x70, + 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_webpage_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_resources_webpage_view_proto_rawDescData = file_google_ads_googleads_v16_resources_webpage_view_proto_rawDesc + file_google_ads_googleads_v17_resources_webpage_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_resources_webpage_view_proto_rawDescData = file_google_ads_googleads_v17_resources_webpage_view_proto_rawDesc ) -func file_google_ads_googleads_v16_resources_webpage_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_resources_webpage_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_resources_webpage_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_webpage_view_proto_rawDescData) +func file_google_ads_googleads_v17_resources_webpage_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_resources_webpage_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_resources_webpage_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_webpage_view_proto_rawDescData) }) - return file_google_ads_googleads_v16_resources_webpage_view_proto_rawDescData + return file_google_ads_googleads_v17_resources_webpage_view_proto_rawDescData } -var file_google_ads_googleads_v16_resources_webpage_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v16_resources_webpage_view_proto_goTypes = []interface{}{ - (*WebpageView)(nil), // 0: google.ads.googleads.v16.resources.WebpageView +var file_google_ads_googleads_v17_resources_webpage_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v17_resources_webpage_view_proto_goTypes = []interface{}{ + (*WebpageView)(nil), // 0: google.ads.googleads.v17.resources.WebpageView } -var file_google_ads_googleads_v16_resources_webpage_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v17_resources_webpage_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method output_type 0, // [0:0] is the sub-list for method input_type 0, // [0:0] is the sub-list for extension type_name @@ -156,13 +156,13 @@ var file_google_ads_googleads_v16_resources_webpage_view_proto_depIdxs = []int32 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_resources_webpage_view_proto_init() } -func file_google_ads_googleads_v16_resources_webpage_view_proto_init() { - if File_google_ads_googleads_v16_resources_webpage_view_proto != nil { +func init() { file_google_ads_googleads_v17_resources_webpage_view_proto_init() } +func file_google_ads_googleads_v17_resources_webpage_view_proto_init() { + if File_google_ads_googleads_v17_resources_webpage_view_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_resources_webpage_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_resources_webpage_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*WebpageView); i { case 0: return &v.state @@ -179,18 +179,18 @@ func file_google_ads_googleads_v16_resources_webpage_view_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_resources_webpage_view_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_resources_webpage_view_proto_rawDesc, NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v16_resources_webpage_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_resources_webpage_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_resources_webpage_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_resources_webpage_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_resources_webpage_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_resources_webpage_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_resources_webpage_view_proto = out.File - file_google_ads_googleads_v16_resources_webpage_view_proto_rawDesc = nil - file_google_ads_googleads_v16_resources_webpage_view_proto_goTypes = nil - file_google_ads_googleads_v16_resources_webpage_view_proto_depIdxs = nil + File_google_ads_googleads_v17_resources_webpage_view_proto = out.File + file_google_ads_googleads_v17_resources_webpage_view_proto_rawDesc = nil + file_google_ads_googleads_v17_resources_webpage_view_proto_goTypes = nil + file_google_ads_googleads_v17_resources_webpage_view_proto_depIdxs = nil } diff --git a/services/account_budget_proposal_service.pb.go b/services/account_budget_proposal_service.pb.go index 0882908b..8bd16cb1 100644 --- a/services/account_budget_proposal_service.pb.go +++ b/services/account_budget_proposal_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/account_budget_proposal_service.proto +// source: google/ads/googleads/v17/services/account_budget_proposal_service.proto package services @@ -38,7 +38,7 @@ const ( ) // Request message for -// [AccountBudgetProposalService.MutateAccountBudgetProposal][google.ads.googleads.v16.services.AccountBudgetProposalService.MutateAccountBudgetProposal]. +// [AccountBudgetProposalService.MutateAccountBudgetProposal][google.ads.googleads.v17.services.AccountBudgetProposalService.MutateAccountBudgetProposal]. type MutateAccountBudgetProposalRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -57,7 +57,7 @@ type MutateAccountBudgetProposalRequest struct { func (x *MutateAccountBudgetProposalRequest) Reset() { *x = MutateAccountBudgetProposalRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -70,7 +70,7 @@ func (x *MutateAccountBudgetProposalRequest) String() string { func (*MutateAccountBudgetProposalRequest) ProtoMessage() {} func (x *MutateAccountBudgetProposalRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_account_budget_proposal_service_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 *MutateAccountBudgetProposalRequest) ProtoReflect() protoreflect.Message // Deprecated: Use MutateAccountBudgetProposalRequest.ProtoReflect.Descriptor instead. func (*MutateAccountBudgetProposalRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAccountBudgetProposalRequest) GetCustomerId() string { @@ -133,7 +133,7 @@ type AccountBudgetProposalOperation struct { func (x *AccountBudgetProposalOperation) Reset() { *x = AccountBudgetProposalOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -146,7 +146,7 @@ func (x *AccountBudgetProposalOperation) String() string { func (*AccountBudgetProposalOperation) ProtoMessage() {} func (x *AccountBudgetProposalOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -159,7 +159,7 @@ func (x *AccountBudgetProposalOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AccountBudgetProposalOperation.ProtoReflect.Descriptor instead. func (*AccountBudgetProposalOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_rawDescGZIP(), []int{1} } func (x *AccountBudgetProposalOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -228,7 +228,7 @@ type MutateAccountBudgetProposalResponse struct { func (x *MutateAccountBudgetProposalResponse) Reset() { *x = MutateAccountBudgetProposalResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -241,7 +241,7 @@ func (x *MutateAccountBudgetProposalResponse) String() string { func (*MutateAccountBudgetProposalResponse) ProtoMessage() {} func (x *MutateAccountBudgetProposalResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_account_budget_proposal_service_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 *MutateAccountBudgetProposalResponse) ProtoReflect() protoreflect.Messag // Deprecated: Use MutateAccountBudgetProposalResponse.ProtoReflect.Descriptor instead. func (*MutateAccountBudgetProposalResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAccountBudgetProposalResponse) GetResult() *MutateAccountBudgetProposalResult { @@ -277,7 +277,7 @@ type MutateAccountBudgetProposalResult struct { func (x *MutateAccountBudgetProposalResult) Reset() { *x = MutateAccountBudgetProposalResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -290,7 +290,7 @@ func (x *MutateAccountBudgetProposalResult) String() string { func (*MutateAccountBudgetProposalResult) ProtoMessage() {} func (x *MutateAccountBudgetProposalResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -303,7 +303,7 @@ func (x *MutateAccountBudgetProposalResult) ProtoReflect() protoreflect.Message // Deprecated: Use MutateAccountBudgetProposalResult.ProtoReflect.Descriptor instead. func (*MutateAccountBudgetProposalResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAccountBudgetProposalResult) GetResourceName() string { @@ -313,18 +313,18 @@ func (x *MutateAccountBudgetProposalResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_account_budget_proposal_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_account_budget_proposal_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_account_budget_proposal_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x40, 0x67, 0x6f, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 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, 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, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, @@ -343,7 +343,7 @@ var file_google_ads_googleads_v16_services_account_budget_proposal_service_proto 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x64, 0x0a, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 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, 0x36, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x09, 0x6f, 0x70, 0x65, @@ -358,7 +358,7 @@ var file_google_ads_googleads_v16_services_account_budget_proposal_service_proto 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x53, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x02, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 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, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x4d, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, @@ -371,7 +371,7 @@ var file_google_ads_googleads_v16_services_account_budget_proposal_service_proto 0x64, 0x67, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5c, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x02, 0x20, 0x01, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, @@ -388,17 +388,17 @@ var file_google_ads_googleads_v16_services_account_budget_proposal_service_proto 0x63, 0x65, 0x12, 0x8d, 0x02, 0x0a, 0x1b, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x12, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5f, 0xda, 0x41, 0x15, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x82, 0xd3, 0xe4, 0x93, 0x02, - 0x41, 0x3a, 0x01, 0x2a, 0x22, 0x3c, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x41, 0x3a, 0x01, 0x2a, 0x22, 0x3c, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, @@ -408,53 +408,53 @@ var file_google_ads_googleads_v16_services_account_budget_proposal_service_proto 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x8d, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x21, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, + 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_rawDescData = file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_rawDesc + file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_rawDescData = file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_rawDescData + return file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_goTypes = []interface{}{ - (*MutateAccountBudgetProposalRequest)(nil), // 0: google.ads.googleads.v16.services.MutateAccountBudgetProposalRequest - (*AccountBudgetProposalOperation)(nil), // 1: google.ads.googleads.v16.services.AccountBudgetProposalOperation - (*MutateAccountBudgetProposalResponse)(nil), // 2: google.ads.googleads.v16.services.MutateAccountBudgetProposalResponse - (*MutateAccountBudgetProposalResult)(nil), // 3: google.ads.googleads.v16.services.MutateAccountBudgetProposalResult +var file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_goTypes = []interface{}{ + (*MutateAccountBudgetProposalRequest)(nil), // 0: google.ads.googleads.v17.services.MutateAccountBudgetProposalRequest + (*AccountBudgetProposalOperation)(nil), // 1: google.ads.googleads.v17.services.AccountBudgetProposalOperation + (*MutateAccountBudgetProposalResponse)(nil), // 2: google.ads.googleads.v17.services.MutateAccountBudgetProposalResponse + (*MutateAccountBudgetProposalResult)(nil), // 3: google.ads.googleads.v17.services.MutateAccountBudgetProposalResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.AccountBudgetProposal)(nil), // 5: google.ads.googleads.v16.resources.AccountBudgetProposal -} -var file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateAccountBudgetProposalRequest.operation:type_name -> google.ads.googleads.v16.services.AccountBudgetProposalOperation - 4, // 1: google.ads.googleads.v16.services.AccountBudgetProposalOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v16.services.AccountBudgetProposalOperation.create:type_name -> google.ads.googleads.v16.resources.AccountBudgetProposal - 3, // 3: google.ads.googleads.v16.services.MutateAccountBudgetProposalResponse.result:type_name -> google.ads.googleads.v16.services.MutateAccountBudgetProposalResult - 0, // 4: google.ads.googleads.v16.services.AccountBudgetProposalService.MutateAccountBudgetProposal:input_type -> google.ads.googleads.v16.services.MutateAccountBudgetProposalRequest - 2, // 5: google.ads.googleads.v16.services.AccountBudgetProposalService.MutateAccountBudgetProposal:output_type -> google.ads.googleads.v16.services.MutateAccountBudgetProposalResponse + (*resources.AccountBudgetProposal)(nil), // 5: google.ads.googleads.v17.resources.AccountBudgetProposal +} +var file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateAccountBudgetProposalRequest.operation:type_name -> google.ads.googleads.v17.services.AccountBudgetProposalOperation + 4, // 1: google.ads.googleads.v17.services.AccountBudgetProposalOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v17.services.AccountBudgetProposalOperation.create:type_name -> google.ads.googleads.v17.resources.AccountBudgetProposal + 3, // 3: google.ads.googleads.v17.services.MutateAccountBudgetProposalResponse.result:type_name -> google.ads.googleads.v17.services.MutateAccountBudgetProposalResult + 0, // 4: google.ads.googleads.v17.services.AccountBudgetProposalService.MutateAccountBudgetProposal:input_type -> google.ads.googleads.v17.services.MutateAccountBudgetProposalRequest + 2, // 5: google.ads.googleads.v17.services.AccountBudgetProposalService.MutateAccountBudgetProposal:output_type -> google.ads.googleads.v17.services.MutateAccountBudgetProposalResponse 5, // [5:6] is the sub-list for method output_type 4, // [4:5] is the sub-list for method input_type 4, // [4:4] is the sub-list for extension type_name @@ -462,13 +462,13 @@ var file_google_ads_googleads_v16_services_account_budget_proposal_service_proto 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_init() } -func file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_init() { - if File_google_ads_googleads_v16_services_account_budget_proposal_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_init() } +func file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_init() { + if File_google_ads_googleads_v17_services_account_budget_proposal_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAccountBudgetProposalRequest); i { case 0: return &v.state @@ -480,7 +480,7 @@ func file_google_ads_googleads_v16_services_account_budget_proposal_service_prot return nil } } - file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AccountBudgetProposalOperation); i { case 0: return &v.state @@ -492,7 +492,7 @@ func file_google_ads_googleads_v16_services_account_budget_proposal_service_prot return nil } } - file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAccountBudgetProposalResponse); i { case 0: return &v.state @@ -504,7 +504,7 @@ func file_google_ads_googleads_v16_services_account_budget_proposal_service_prot return nil } } - file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAccountBudgetProposalResult); i { case 0: return &v.state @@ -517,7 +517,7 @@ func file_google_ads_googleads_v16_services_account_budget_proposal_service_prot } } } - file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*AccountBudgetProposalOperation_Create)(nil), (*AccountBudgetProposalOperation_Remove)(nil), } @@ -525,18 +525,18 @@ func file_google_ads_googleads_v16_services_account_budget_proposal_service_prot out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_account_budget_proposal_service_proto = out.File - file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_account_budget_proposal_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_account_budget_proposal_service_proto = out.File + file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_account_budget_proposal_service_proto_depIdxs = nil } diff --git a/services/account_budget_proposal_service_grpc.pb.go b/services/account_budget_proposal_service_grpc.pb.go index 9b8b3ccf..6d3a9b8c 100644 --- a/services/account_budget_proposal_service_grpc.pb.go +++ b/services/account_budget_proposal_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/account_budget_proposal_service.proto +// source: google/ads/googleads/v17/services/account_budget_proposal_service.proto package services @@ -29,16 +29,26 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - AccountBudgetProposalService_MutateAccountBudgetProposal_FullMethodName = "/google.ads.googleads.v16.services.AccountBudgetProposalService/MutateAccountBudgetProposal" + AccountBudgetProposalService_MutateAccountBudgetProposal_FullMethodName = "/google.ads.googleads.v17.services.AccountBudgetProposalService/MutateAccountBudgetProposal" ) // AccountBudgetProposalServiceClient is the client API for AccountBudgetProposalService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// A service for managing account-level budgets through proposals. +// +// A proposal is a request to create a new budget or make changes to an +// existing one. +// +// Mutates: +// The CREATE operation creates a new proposal. +// UPDATE operations aren't supported. +// The REMOVE operation cancels a pending proposal. type AccountBudgetProposalServiceClient interface { // Creates, updates, or removes account budget proposals. Operation statuses // are returned. @@ -70,8 +80,9 @@ func NewAccountBudgetProposalServiceClient(cc grpc.ClientConnInterface) AccountB } func (c *accountBudgetProposalServiceClient) MutateAccountBudgetProposal(ctx context.Context, in *MutateAccountBudgetProposalRequest, opts ...grpc.CallOption) (*MutateAccountBudgetProposalResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateAccountBudgetProposalResponse) - err := c.cc.Invoke(ctx, AccountBudgetProposalService_MutateAccountBudgetProposal_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AccountBudgetProposalService_MutateAccountBudgetProposal_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -81,6 +92,16 @@ func (c *accountBudgetProposalServiceClient) MutateAccountBudgetProposal(ctx con // AccountBudgetProposalServiceServer is the server API for AccountBudgetProposalService service. // All implementations must embed UnimplementedAccountBudgetProposalServiceServer // for forward compatibility +// +// A service for managing account-level budgets through proposals. +// +// A proposal is a request to create a new budget or make changes to an +// existing one. +// +// Mutates: +// The CREATE operation creates a new proposal. +// UPDATE operations aren't supported. +// The REMOVE operation cancels a pending proposal. type AccountBudgetProposalServiceServer interface { // Creates, updates, or removes account budget proposals. Operation statuses // are returned. @@ -147,7 +168,7 @@ func _AccountBudgetProposalService_MutateAccountBudgetProposal_Handler(srv inter // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var AccountBudgetProposalService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.AccountBudgetProposalService", + ServiceName: "google.ads.googleads.v17.services.AccountBudgetProposalService", HandlerType: (*AccountBudgetProposalServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -156,5 +177,5 @@ var AccountBudgetProposalService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/account_budget_proposal_service.proto", + Metadata: "google/ads/googleads/v17/services/account_budget_proposal_service.proto", } diff --git a/services/account_link_service.pb.go b/services/account_link_service.pb.go index ae7547d6..b6c022e8 100644 --- a/services/account_link_service.pb.go +++ b/services/account_link_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/account_link_service.proto +// source: google/ads/googleads/v17/services/account_link_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [AccountLinkService.CreateAccountLink][google.ads.googleads.v16.services.AccountLinkService.CreateAccountLink]. +// [AccountLinkService.CreateAccountLink][google.ads.googleads.v17.services.AccountLinkService.CreateAccountLink]. type CreateAccountLinkRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -54,7 +54,7 @@ type CreateAccountLinkRequest struct { func (x *CreateAccountLinkRequest) Reset() { *x = CreateAccountLinkRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_account_link_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_account_link_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67,7 +67,7 @@ func (x *CreateAccountLinkRequest) String() string { func (*CreateAccountLinkRequest) ProtoMessage() {} func (x *CreateAccountLinkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_account_link_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_account_link_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80,7 +80,7 @@ func (x *CreateAccountLinkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateAccountLinkRequest.ProtoReflect.Descriptor instead. func (*CreateAccountLinkRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_account_link_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_account_link_service_proto_rawDescGZIP(), []int{0} } func (x *CreateAccountLinkRequest) GetCustomerId() string { @@ -98,7 +98,7 @@ func (x *CreateAccountLinkRequest) GetAccountLink() *resources.AccountLink { } // Response message for -// [AccountLinkService.CreateAccountLink][google.ads.googleads.v16.services.AccountLinkService.CreateAccountLink]. +// [AccountLinkService.CreateAccountLink][google.ads.googleads.v17.services.AccountLinkService.CreateAccountLink]. type CreateAccountLinkResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -111,7 +111,7 @@ type CreateAccountLinkResponse struct { func (x *CreateAccountLinkResponse) Reset() { *x = CreateAccountLinkResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_account_link_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_account_link_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -124,7 +124,7 @@ func (x *CreateAccountLinkResponse) String() string { func (*CreateAccountLinkResponse) ProtoMessage() {} func (x *CreateAccountLinkResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_account_link_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_account_link_service_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 *CreateAccountLinkResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateAccountLinkResponse.ProtoReflect.Descriptor instead. func (*CreateAccountLinkResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_account_link_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_account_link_service_proto_rawDescGZIP(), []int{1} } func (x *CreateAccountLinkResponse) GetResourceName() string { @@ -148,7 +148,7 @@ func (x *CreateAccountLinkResponse) GetResourceName() string { } // Request message for -// [AccountLinkService.MutateAccountLink][google.ads.googleads.v16.services.AccountLinkService.MutateAccountLink]. +// [AccountLinkService.MutateAccountLink][google.ads.googleads.v17.services.AccountLinkService.MutateAccountLink]. type MutateAccountLinkRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -171,7 +171,7 @@ type MutateAccountLinkRequest struct { func (x *MutateAccountLinkRequest) Reset() { *x = MutateAccountLinkRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_account_link_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_account_link_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -184,7 +184,7 @@ func (x *MutateAccountLinkRequest) String() string { func (*MutateAccountLinkRequest) ProtoMessage() {} func (x *MutateAccountLinkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_account_link_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_account_link_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -197,7 +197,7 @@ func (x *MutateAccountLinkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAccountLinkRequest.ProtoReflect.Descriptor instead. func (*MutateAccountLinkRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_account_link_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_account_link_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAccountLinkRequest) GetCustomerId() string { @@ -248,7 +248,7 @@ type AccountLinkOperation struct { func (x *AccountLinkOperation) Reset() { *x = AccountLinkOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_account_link_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_account_link_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -261,7 +261,7 @@ func (x *AccountLinkOperation) String() string { func (*AccountLinkOperation) ProtoMessage() {} func (x *AccountLinkOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_account_link_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_account_link_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -274,7 +274,7 @@ func (x *AccountLinkOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AccountLinkOperation.ProtoReflect.Descriptor instead. func (*AccountLinkOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_account_link_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_account_link_service_proto_rawDescGZIP(), []int{3} } func (x *AccountLinkOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -345,7 +345,7 @@ type MutateAccountLinkResponse struct { func (x *MutateAccountLinkResponse) Reset() { *x = MutateAccountLinkResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_account_link_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_account_link_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -358,7 +358,7 @@ func (x *MutateAccountLinkResponse) String() string { func (*MutateAccountLinkResponse) ProtoMessage() {} func (x *MutateAccountLinkResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_account_link_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_account_link_service_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 *MutateAccountLinkResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAccountLinkResponse.ProtoReflect.Descriptor instead. func (*MutateAccountLinkResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_account_link_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v17_services_account_link_service_proto_rawDescGZIP(), []int{4} } func (x *MutateAccountLinkResponse) GetResult() *MutateAccountLinkResult { @@ -401,7 +401,7 @@ type MutateAccountLinkResult struct { func (x *MutateAccountLinkResult) Reset() { *x = MutateAccountLinkResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_account_link_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_account_link_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -414,7 +414,7 @@ func (x *MutateAccountLinkResult) String() string { func (*MutateAccountLinkResult) ProtoMessage() {} func (x *MutateAccountLinkResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_account_link_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_account_link_service_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -427,7 +427,7 @@ func (x *MutateAccountLinkResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAccountLinkResult.ProtoReflect.Descriptor instead. func (*MutateAccountLinkResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_account_link_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v17_services_account_link_service_proto_rawDescGZIP(), []int{5} } func (x *MutateAccountLinkResult) GetResourceName() string { @@ -437,17 +437,17 @@ func (x *MutateAccountLinkResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_account_link_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_account_link_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_account_link_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_account_link_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 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, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, @@ -467,7 +467,7 @@ var file_google_ads_googleads_v16_services_account_link_service_proto_rawDesc = 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x57, 0x0a, 0x0c, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x18, 0x02, 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, 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, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0b, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x22, 0x6b, 0x0a, 0x19, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, @@ -483,7 +483,7 @@ var file_google_ads_googleads_v16_services_account_link_service_proto_rawDesc = 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5a, 0x0a, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x27, @@ -499,7 +499,7 @@ var file_google_ads_googleads_v16_services_account_link_service_proto_rawDesc = 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x49, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x02, 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, 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, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x43, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x29, 0xfa, @@ -511,7 +511,7 @@ var file_google_ads_googleads_v16_services_account_link_service_proto_rawDesc = 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x52, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x46, 0x0a, 0x15, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x66, 0x61, 0x69, @@ -529,30 +529,30 @@ var file_google_ads_googleads_v16_services_account_link_service_proto_rawDesc = 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xe8, 0x01, 0x0a, 0x11, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x12, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x58, 0xda, 0x41, 0x18, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x37, 0x3a, - 0x01, 0x2a, 0x22, 0x32, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x01, 0x2a, 0x22, 0x32, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x73, 0x3a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0xe5, 0x01, 0x0a, 0x11, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x55, 0xda, 0x41, 0x15, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x37, 0x3a, 0x01, 0x2a, 0x22, 0x32, 0x2f, 0x76, 0x31, 0x36, + 0x6e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x37, 0x3a, 0x01, 0x2a, 0x22, 0x32, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, @@ -562,59 +562,59 @@ var file_google_ads_googleads_v16_services_account_link_service_proto_rawDesc = 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x83, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x17, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, + 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, + 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, - 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_account_link_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_account_link_service_proto_rawDescData = file_google_ads_googleads_v16_services_account_link_service_proto_rawDesc + file_google_ads_googleads_v17_services_account_link_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_account_link_service_proto_rawDescData = file_google_ads_googleads_v17_services_account_link_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_account_link_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_account_link_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_account_link_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_account_link_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_account_link_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_account_link_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_account_link_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_account_link_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_account_link_service_proto_rawDescData -} - -var file_google_ads_googleads_v16_services_account_link_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) -var file_google_ads_googleads_v16_services_account_link_service_proto_goTypes = []interface{}{ - (*CreateAccountLinkRequest)(nil), // 0: google.ads.googleads.v16.services.CreateAccountLinkRequest - (*CreateAccountLinkResponse)(nil), // 1: google.ads.googleads.v16.services.CreateAccountLinkResponse - (*MutateAccountLinkRequest)(nil), // 2: google.ads.googleads.v16.services.MutateAccountLinkRequest - (*AccountLinkOperation)(nil), // 3: google.ads.googleads.v16.services.AccountLinkOperation - (*MutateAccountLinkResponse)(nil), // 4: google.ads.googleads.v16.services.MutateAccountLinkResponse - (*MutateAccountLinkResult)(nil), // 5: google.ads.googleads.v16.services.MutateAccountLinkResult - (*resources.AccountLink)(nil), // 6: google.ads.googleads.v16.resources.AccountLink + return file_google_ads_googleads_v17_services_account_link_service_proto_rawDescData +} + +var file_google_ads_googleads_v17_services_account_link_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) +var file_google_ads_googleads_v17_services_account_link_service_proto_goTypes = []interface{}{ + (*CreateAccountLinkRequest)(nil), // 0: google.ads.googleads.v17.services.CreateAccountLinkRequest + (*CreateAccountLinkResponse)(nil), // 1: google.ads.googleads.v17.services.CreateAccountLinkResponse + (*MutateAccountLinkRequest)(nil), // 2: google.ads.googleads.v17.services.MutateAccountLinkRequest + (*AccountLinkOperation)(nil), // 3: google.ads.googleads.v17.services.AccountLinkOperation + (*MutateAccountLinkResponse)(nil), // 4: google.ads.googleads.v17.services.MutateAccountLinkResponse + (*MutateAccountLinkResult)(nil), // 5: google.ads.googleads.v17.services.MutateAccountLinkResult + (*resources.AccountLink)(nil), // 6: google.ads.googleads.v17.resources.AccountLink (*fieldmaskpb.FieldMask)(nil), // 7: google.protobuf.FieldMask (*status.Status)(nil), // 8: google.rpc.Status } -var file_google_ads_googleads_v16_services_account_link_service_proto_depIdxs = []int32{ - 6, // 0: google.ads.googleads.v16.services.CreateAccountLinkRequest.account_link:type_name -> google.ads.googleads.v16.resources.AccountLink - 3, // 1: google.ads.googleads.v16.services.MutateAccountLinkRequest.operation:type_name -> google.ads.googleads.v16.services.AccountLinkOperation - 7, // 2: google.ads.googleads.v16.services.AccountLinkOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.AccountLinkOperation.update:type_name -> google.ads.googleads.v16.resources.AccountLink - 5, // 4: google.ads.googleads.v16.services.MutateAccountLinkResponse.result:type_name -> google.ads.googleads.v16.services.MutateAccountLinkResult - 8, // 5: google.ads.googleads.v16.services.MutateAccountLinkResponse.partial_failure_error:type_name -> google.rpc.Status - 0, // 6: google.ads.googleads.v16.services.AccountLinkService.CreateAccountLink:input_type -> google.ads.googleads.v16.services.CreateAccountLinkRequest - 2, // 7: google.ads.googleads.v16.services.AccountLinkService.MutateAccountLink:input_type -> google.ads.googleads.v16.services.MutateAccountLinkRequest - 1, // 8: google.ads.googleads.v16.services.AccountLinkService.CreateAccountLink:output_type -> google.ads.googleads.v16.services.CreateAccountLinkResponse - 4, // 9: google.ads.googleads.v16.services.AccountLinkService.MutateAccountLink:output_type -> google.ads.googleads.v16.services.MutateAccountLinkResponse +var file_google_ads_googleads_v17_services_account_link_service_proto_depIdxs = []int32{ + 6, // 0: google.ads.googleads.v17.services.CreateAccountLinkRequest.account_link:type_name -> google.ads.googleads.v17.resources.AccountLink + 3, // 1: google.ads.googleads.v17.services.MutateAccountLinkRequest.operation:type_name -> google.ads.googleads.v17.services.AccountLinkOperation + 7, // 2: google.ads.googleads.v17.services.AccountLinkOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.AccountLinkOperation.update:type_name -> google.ads.googleads.v17.resources.AccountLink + 5, // 4: google.ads.googleads.v17.services.MutateAccountLinkResponse.result:type_name -> google.ads.googleads.v17.services.MutateAccountLinkResult + 8, // 5: google.ads.googleads.v17.services.MutateAccountLinkResponse.partial_failure_error:type_name -> google.rpc.Status + 0, // 6: google.ads.googleads.v17.services.AccountLinkService.CreateAccountLink:input_type -> google.ads.googleads.v17.services.CreateAccountLinkRequest + 2, // 7: google.ads.googleads.v17.services.AccountLinkService.MutateAccountLink:input_type -> google.ads.googleads.v17.services.MutateAccountLinkRequest + 1, // 8: google.ads.googleads.v17.services.AccountLinkService.CreateAccountLink:output_type -> google.ads.googleads.v17.services.CreateAccountLinkResponse + 4, // 9: google.ads.googleads.v17.services.AccountLinkService.MutateAccountLink:output_type -> google.ads.googleads.v17.services.MutateAccountLinkResponse 8, // [8:10] is the sub-list for method output_type 6, // [6:8] is the sub-list for method input_type 6, // [6:6] is the sub-list for extension type_name @@ -622,13 +622,13 @@ var file_google_ads_googleads_v16_services_account_link_service_proto_depIdxs = 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_account_link_service_proto_init() } -func file_google_ads_googleads_v16_services_account_link_service_proto_init() { - if File_google_ads_googleads_v16_services_account_link_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_account_link_service_proto_init() } +func file_google_ads_googleads_v17_services_account_link_service_proto_init() { + if File_google_ads_googleads_v17_services_account_link_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_account_link_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_account_link_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateAccountLinkRequest); i { case 0: return &v.state @@ -640,7 +640,7 @@ func file_google_ads_googleads_v16_services_account_link_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_account_link_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_account_link_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateAccountLinkResponse); i { case 0: return &v.state @@ -652,7 +652,7 @@ func file_google_ads_googleads_v16_services_account_link_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_account_link_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_account_link_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAccountLinkRequest); i { case 0: return &v.state @@ -664,7 +664,7 @@ func file_google_ads_googleads_v16_services_account_link_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_account_link_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_account_link_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AccountLinkOperation); i { case 0: return &v.state @@ -676,7 +676,7 @@ func file_google_ads_googleads_v16_services_account_link_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_account_link_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_account_link_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAccountLinkResponse); i { case 0: return &v.state @@ -688,7 +688,7 @@ func file_google_ads_googleads_v16_services_account_link_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_account_link_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_account_link_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAccountLinkResult); i { case 0: return &v.state @@ -701,7 +701,7 @@ func file_google_ads_googleads_v16_services_account_link_service_proto_init() { } } } - file_google_ads_googleads_v16_services_account_link_service_proto_msgTypes[3].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_account_link_service_proto_msgTypes[3].OneofWrappers = []interface{}{ (*AccountLinkOperation_Update)(nil), (*AccountLinkOperation_Remove)(nil), } @@ -709,18 +709,18 @@ func file_google_ads_googleads_v16_services_account_link_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_account_link_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_account_link_service_proto_rawDesc, NumEnums: 0, NumMessages: 6, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_account_link_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_account_link_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_account_link_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_account_link_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_account_link_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_account_link_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_account_link_service_proto = out.File - file_google_ads_googleads_v16_services_account_link_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_account_link_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_account_link_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_account_link_service_proto = out.File + file_google_ads_googleads_v17_services_account_link_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_account_link_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_account_link_service_proto_depIdxs = nil } diff --git a/services/account_link_service_grpc.pb.go b/services/account_link_service_grpc.pb.go index 26e547ab..aa11147b 100644 --- a/services/account_link_service_grpc.pb.go +++ b/services/account_link_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/account_link_service.proto +// source: google/ads/googleads/v17/services/account_link_service.proto package services @@ -29,17 +29,20 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - AccountLinkService_CreateAccountLink_FullMethodName = "/google.ads.googleads.v16.services.AccountLinkService/CreateAccountLink" - AccountLinkService_MutateAccountLink_FullMethodName = "/google.ads.googleads.v16.services.AccountLinkService/MutateAccountLink" + AccountLinkService_CreateAccountLink_FullMethodName = "/google.ads.googleads.v17.services.AccountLinkService/CreateAccountLink" + AccountLinkService_MutateAccountLink_FullMethodName = "/google.ads.googleads.v17.services.AccountLinkService/MutateAccountLink" ) // AccountLinkServiceClient is the client API for AccountLinkService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// This service allows management of links between Google Ads accounts and other +// accounts. type AccountLinkServiceClient interface { // Creates an account link. // @@ -84,8 +87,9 @@ func NewAccountLinkServiceClient(cc grpc.ClientConnInterface) AccountLinkService } func (c *accountLinkServiceClient) CreateAccountLink(ctx context.Context, in *CreateAccountLinkRequest, opts ...grpc.CallOption) (*CreateAccountLinkResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(CreateAccountLinkResponse) - err := c.cc.Invoke(ctx, AccountLinkService_CreateAccountLink_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AccountLinkService_CreateAccountLink_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -93,8 +97,9 @@ func (c *accountLinkServiceClient) CreateAccountLink(ctx context.Context, in *Cr } func (c *accountLinkServiceClient) MutateAccountLink(ctx context.Context, in *MutateAccountLinkRequest, opts ...grpc.CallOption) (*MutateAccountLinkResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateAccountLinkResponse) - err := c.cc.Invoke(ctx, AccountLinkService_MutateAccountLink_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AccountLinkService_MutateAccountLink_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -104,6 +109,9 @@ func (c *accountLinkServiceClient) MutateAccountLink(ctx context.Context, in *Mu // AccountLinkServiceServer is the server API for AccountLinkService service. // All implementations must embed UnimplementedAccountLinkServiceServer // for forward compatibility +// +// This service allows management of links between Google Ads accounts and other +// accounts. type AccountLinkServiceServer interface { // Creates an account link. // @@ -203,7 +211,7 @@ func _AccountLinkService_MutateAccountLink_Handler(srv interface{}, ctx context. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var AccountLinkService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.AccountLinkService", + ServiceName: "google.ads.googleads.v17.services.AccountLinkService", HandlerType: (*AccountLinkServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -216,5 +224,5 @@ var AccountLinkService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/account_link_service.proto", + Metadata: "google/ads/googleads/v17/services/account_link_service.proto", } diff --git a/services/ad_group_ad_label_service.pb.go b/services/ad_group_ad_label_service.pb.go index 26e69304..511093cc 100644 --- a/services/ad_group_ad_label_service.pb.go +++ b/services/ad_group_ad_label_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_group_ad_label_service.proto +// source: google/ads/googleads/v17/services/ad_group_ad_label_service.proto package services @@ -38,7 +38,7 @@ const ( ) // Request message for -// [AdGroupAdLabelService.MutateAdGroupAdLabels][google.ads.googleads.v16.services.AdGroupAdLabelService.MutateAdGroupAdLabels]. +// [AdGroupAdLabelService.MutateAdGroupAdLabels][google.ads.googleads.v17.services.AdGroupAdLabelService.MutateAdGroupAdLabels]. type MutateAdGroupAdLabelsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -61,7 +61,7 @@ type MutateAdGroupAdLabelsRequest struct { func (x *MutateAdGroupAdLabelsRequest) Reset() { *x = MutateAdGroupAdLabelsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74,7 +74,7 @@ func (x *MutateAdGroupAdLabelsRequest) String() string { func (*MutateAdGroupAdLabelsRequest) ProtoMessage() {} func (x *MutateAdGroupAdLabelsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -87,7 +87,7 @@ func (x *MutateAdGroupAdLabelsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupAdLabelsRequest.ProtoReflect.Descriptor instead. func (*MutateAdGroupAdLabelsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAdGroupAdLabelsRequest) GetCustomerId() string { @@ -136,7 +136,7 @@ type AdGroupAdLabelOperation struct { func (x *AdGroupAdLabelOperation) Reset() { *x = AdGroupAdLabelOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -149,7 +149,7 @@ func (x *AdGroupAdLabelOperation) String() string { func (*AdGroupAdLabelOperation) ProtoMessage() {} func (x *AdGroupAdLabelOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -162,7 +162,7 @@ func (x *AdGroupAdLabelOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupAdLabelOperation.ProtoReflect.Descriptor instead. func (*AdGroupAdLabelOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_rawDescGZIP(), []int{1} } func (m *AdGroupAdLabelOperation) GetOperation() isAdGroupAdLabelOperation_Operation { @@ -226,7 +226,7 @@ type MutateAdGroupAdLabelsResponse struct { func (x *MutateAdGroupAdLabelsResponse) Reset() { *x = MutateAdGroupAdLabelsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -239,7 +239,7 @@ func (x *MutateAdGroupAdLabelsResponse) String() string { func (*MutateAdGroupAdLabelsResponse) ProtoMessage() {} func (x *MutateAdGroupAdLabelsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -252,7 +252,7 @@ func (x *MutateAdGroupAdLabelsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupAdLabelsResponse.ProtoReflect.Descriptor instead. func (*MutateAdGroupAdLabelsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAdGroupAdLabelsResponse) GetPartialFailureError() *status.Status { @@ -282,7 +282,7 @@ type MutateAdGroupAdLabelResult struct { func (x *MutateAdGroupAdLabelResult) Reset() { *x = MutateAdGroupAdLabelResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -295,7 +295,7 @@ func (x *MutateAdGroupAdLabelResult) String() string { func (*MutateAdGroupAdLabelResult) ProtoMessage() {} func (x *MutateAdGroupAdLabelResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -308,7 +308,7 @@ func (x *MutateAdGroupAdLabelResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupAdLabelResult.ProtoReflect.Descriptor instead. func (*MutateAdGroupAdLabelResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAdGroupAdLabelResult) GetResourceName() string { @@ -318,17 +318,17 @@ func (x *MutateAdGroupAdLabelResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_ad_group_ad_label_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_ad_group_ad_label_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_ad_group_ad_label_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 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, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, @@ -347,7 +347,7 @@ var file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_rawDe 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5f, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, @@ -359,7 +359,7 @@ var file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_rawDe 0x41, 0x64, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4c, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 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, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x46, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2c, @@ -376,7 +376,7 @@ var file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_rawDe 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x57, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x6f, 0x0a, 0x1a, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, @@ -391,16 +391,16 @@ var file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_rawDe 0x65, 0x12, 0xf5, 0x01, 0x0a, 0x15, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x59, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3a, 0x3a, - 0x01, 0x2a, 0x22, 0x35, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x01, 0x2a, 0x22, 0x35, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, @@ -410,52 +410,52 @@ var file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_rawDe 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x86, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1a, 0x41, 0x64, 0x47, 0x72, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1a, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, + 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_rawDescData = file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_rawDesc + file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_rawDescData = file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_rawDescData + return file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_goTypes = []interface{}{ - (*MutateAdGroupAdLabelsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateAdGroupAdLabelsRequest - (*AdGroupAdLabelOperation)(nil), // 1: google.ads.googleads.v16.services.AdGroupAdLabelOperation - (*MutateAdGroupAdLabelsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateAdGroupAdLabelsResponse - (*MutateAdGroupAdLabelResult)(nil), // 3: google.ads.googleads.v16.services.MutateAdGroupAdLabelResult - (*resources.AdGroupAdLabel)(nil), // 4: google.ads.googleads.v16.resources.AdGroupAdLabel +var file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_goTypes = []interface{}{ + (*MutateAdGroupAdLabelsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateAdGroupAdLabelsRequest + (*AdGroupAdLabelOperation)(nil), // 1: google.ads.googleads.v17.services.AdGroupAdLabelOperation + (*MutateAdGroupAdLabelsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateAdGroupAdLabelsResponse + (*MutateAdGroupAdLabelResult)(nil), // 3: google.ads.googleads.v17.services.MutateAdGroupAdLabelResult + (*resources.AdGroupAdLabel)(nil), // 4: google.ads.googleads.v17.resources.AdGroupAdLabel (*status.Status)(nil), // 5: google.rpc.Status } -var file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateAdGroupAdLabelsRequest.operations:type_name -> google.ads.googleads.v16.services.AdGroupAdLabelOperation - 4, // 1: google.ads.googleads.v16.services.AdGroupAdLabelOperation.create:type_name -> google.ads.googleads.v16.resources.AdGroupAdLabel - 5, // 2: google.ads.googleads.v16.services.MutateAdGroupAdLabelsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 3: google.ads.googleads.v16.services.MutateAdGroupAdLabelsResponse.results:type_name -> google.ads.googleads.v16.services.MutateAdGroupAdLabelResult - 0, // 4: google.ads.googleads.v16.services.AdGroupAdLabelService.MutateAdGroupAdLabels:input_type -> google.ads.googleads.v16.services.MutateAdGroupAdLabelsRequest - 2, // 5: google.ads.googleads.v16.services.AdGroupAdLabelService.MutateAdGroupAdLabels:output_type -> google.ads.googleads.v16.services.MutateAdGroupAdLabelsResponse +var file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateAdGroupAdLabelsRequest.operations:type_name -> google.ads.googleads.v17.services.AdGroupAdLabelOperation + 4, // 1: google.ads.googleads.v17.services.AdGroupAdLabelOperation.create:type_name -> google.ads.googleads.v17.resources.AdGroupAdLabel + 5, // 2: google.ads.googleads.v17.services.MutateAdGroupAdLabelsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 3: google.ads.googleads.v17.services.MutateAdGroupAdLabelsResponse.results:type_name -> google.ads.googleads.v17.services.MutateAdGroupAdLabelResult + 0, // 4: google.ads.googleads.v17.services.AdGroupAdLabelService.MutateAdGroupAdLabels:input_type -> google.ads.googleads.v17.services.MutateAdGroupAdLabelsRequest + 2, // 5: google.ads.googleads.v17.services.AdGroupAdLabelService.MutateAdGroupAdLabels:output_type -> google.ads.googleads.v17.services.MutateAdGroupAdLabelsResponse 5, // [5:6] is the sub-list for method output_type 4, // [4:5] is the sub-list for method input_type 4, // [4:4] is the sub-list for extension type_name @@ -463,13 +463,13 @@ var file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_depId 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_init() } -func file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_init() { - if File_google_ads_googleads_v16_services_ad_group_ad_label_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_init() } +func file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_init() { + if File_google_ads_googleads_v17_services_ad_group_ad_label_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupAdLabelsRequest); i { case 0: return &v.state @@ -481,7 +481,7 @@ func file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_init return nil } } - file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupAdLabelOperation); i { case 0: return &v.state @@ -493,7 +493,7 @@ func file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_init return nil } } - file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupAdLabelsResponse); i { case 0: return &v.state @@ -505,7 +505,7 @@ func file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_init return nil } } - file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupAdLabelResult); i { case 0: return &v.state @@ -518,7 +518,7 @@ func file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_init } } } - file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*AdGroupAdLabelOperation_Create)(nil), (*AdGroupAdLabelOperation_Remove)(nil), } @@ -526,18 +526,18 @@ func file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_init out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_ad_group_ad_label_service_proto = out.File - file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_ad_group_ad_label_service_proto = out.File + file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_depIdxs = nil } diff --git a/services/ad_group_ad_label_service_grpc.pb.go b/services/ad_group_ad_label_service_grpc.pb.go index 2a2e3e29..2c110c2c 100644 --- a/services/ad_group_ad_label_service_grpc.pb.go +++ b/services/ad_group_ad_label_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_group_ad_label_service.proto +// source: google/ads/googleads/v17/services/ad_group_ad_label_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - AdGroupAdLabelService_MutateAdGroupAdLabels_FullMethodName = "/google.ads.googleads.v16.services.AdGroupAdLabelService/MutateAdGroupAdLabels" + AdGroupAdLabelService_MutateAdGroupAdLabels_FullMethodName = "/google.ads.googleads.v17.services.AdGroupAdLabelService/MutateAdGroupAdLabels" ) // AdGroupAdLabelServiceClient is the client API for AdGroupAdLabelService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage labels on ad group ads. type AdGroupAdLabelServiceClient interface { // Creates and removes ad group ad labels. // Operation statuses are returned. @@ -67,8 +69,9 @@ func NewAdGroupAdLabelServiceClient(cc grpc.ClientConnInterface) AdGroupAdLabelS } func (c *adGroupAdLabelServiceClient) MutateAdGroupAdLabels(ctx context.Context, in *MutateAdGroupAdLabelsRequest, opts ...grpc.CallOption) (*MutateAdGroupAdLabelsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateAdGroupAdLabelsResponse) - err := c.cc.Invoke(ctx, AdGroupAdLabelService_MutateAdGroupAdLabels_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AdGroupAdLabelService_MutateAdGroupAdLabels_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -78,6 +81,8 @@ func (c *adGroupAdLabelServiceClient) MutateAdGroupAdLabels(ctx context.Context, // AdGroupAdLabelServiceServer is the server API for AdGroupAdLabelService service. // All implementations must embed UnimplementedAdGroupAdLabelServiceServer // for forward compatibility +// +// Service to manage labels on ad group ads. type AdGroupAdLabelServiceServer interface { // Creates and removes ad group ad labels. // Operation statuses are returned. @@ -140,7 +145,7 @@ func _AdGroupAdLabelService_MutateAdGroupAdLabels_Handler(srv interface{}, ctx c // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var AdGroupAdLabelService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.AdGroupAdLabelService", + ServiceName: "google.ads.googleads.v17.services.AdGroupAdLabelService", HandlerType: (*AdGroupAdLabelServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -149,5 +154,5 @@ var AdGroupAdLabelService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/ad_group_ad_label_service.proto", + Metadata: "google/ads/googleads/v17/services/ad_group_ad_label_service.proto", } diff --git a/services/ad_group_ad_service.pb.go b/services/ad_group_ad_service.pb.go index 2d5a04e2..5004ad8a 100644 --- a/services/ad_group_ad_service.pb.go +++ b/services/ad_group_ad_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_group_ad_service.proto +// source: google/ads/googleads/v17/services/ad_group_ad_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [AdGroupAdService.MutateAdGroupAds][google.ads.googleads.v16.services.AdGroupAdService.MutateAdGroupAds]. +// [AdGroupAdService.MutateAdGroupAds][google.ads.googleads.v17.services.AdGroupAdService.MutateAdGroupAds]. type MutateAdGroupAdsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -61,13 +61,13 @@ type MutateAdGroupAdsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateAdGroupAdsRequest) Reset() { *x = MutateAdGroupAdsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_ad_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_ad_group_ad_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80,7 +80,7 @@ func (x *MutateAdGroupAdsRequest) String() string { func (*MutateAdGroupAdsRequest) ProtoMessage() {} func (x *MutateAdGroupAdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_ad_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_ad_group_ad_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93,7 +93,7 @@ func (x *MutateAdGroupAdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupAdsRequest.ProtoReflect.Descriptor instead. func (*MutateAdGroupAdsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_ad_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_ad_group_ad_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAdGroupAdsRequest) GetCustomerId() string { @@ -154,7 +154,7 @@ type AdGroupAdOperation struct { func (x *AdGroupAdOperation) Reset() { *x = AdGroupAdOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_ad_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_group_ad_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -167,7 +167,7 @@ func (x *AdGroupAdOperation) String() string { func (*AdGroupAdOperation) ProtoMessage() {} func (x *AdGroupAdOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_ad_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_group_ad_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -180,7 +180,7 @@ func (x *AdGroupAdOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupAdOperation.ProtoReflect.Descriptor instead. func (*AdGroupAdOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_ad_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_ad_group_ad_service_proto_rawDescGZIP(), []int{1} } func (x *AdGroupAdOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -271,7 +271,7 @@ type MutateAdGroupAdsResponse struct { func (x *MutateAdGroupAdsResponse) Reset() { *x = MutateAdGroupAdsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_ad_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_group_ad_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -284,7 +284,7 @@ func (x *MutateAdGroupAdsResponse) String() string { func (*MutateAdGroupAdsResponse) ProtoMessage() {} func (x *MutateAdGroupAdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_ad_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_group_ad_service_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 *MutateAdGroupAdsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupAdsResponse.ProtoReflect.Descriptor instead. func (*MutateAdGroupAdsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_ad_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_ad_group_ad_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAdGroupAdsResponse) GetPartialFailureError() *status.Status { @@ -331,7 +331,7 @@ type MutateAdGroupAdResult struct { func (x *MutateAdGroupAdResult) Reset() { *x = MutateAdGroupAdResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_ad_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_group_ad_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -344,7 +344,7 @@ func (x *MutateAdGroupAdResult) String() string { func (*MutateAdGroupAdResult) ProtoMessage() {} func (x *MutateAdGroupAdResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_ad_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_group_ad_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -357,7 +357,7 @@ func (x *MutateAdGroupAdResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupAdResult.ProtoReflect.Descriptor instead. func (*MutateAdGroupAdResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_ad_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_ad_group_ad_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAdGroupAdResult) GetResourceName() string { @@ -374,24 +374,24 @@ func (x *MutateAdGroupAdResult) GetAdGroupAd() *resources.AdGroupAd { return nil } -var File_google_ads_googleads_v16_services_ad_group_ad_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_ad_group_ad_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_ad_group_ad_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_ad_group_ad_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 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, 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, 0x72, + 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, + 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, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, @@ -410,7 +410,7 @@ var file_google_ads_googleads_v16_services_ad_group_ad_service_proto_rawDesc = [ 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5a, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, @@ -422,7 +422,7 @@ var file_google_ads_googleads_v16_services_ad_group_ad_service_proto_rawDesc = [ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, @@ -435,18 +435,18 @@ var file_google_ads_googleads_v16_services_ad_group_ad_service_proto_rawDesc = [ 0x7a, 0x0a, 0x1b, 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, 0x18, 0x05, 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, + 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, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x52, 0x19, 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, 0x12, 0x47, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 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, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x47, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 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, + 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, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x41, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x27, 0xfa, @@ -462,7 +462,7 @@ var file_google_ads_googleads_v16_services_ad_group_ad_service_proto_rawDesc = [ 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x52, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xb4, 0x01, 0x0a, 0x15, 0x4d, 0x75, 0x74, 0x61, 0x74, @@ -474,22 +474,22 @@ var file_google_ads_googleads_v16_services_ad_group_ad_service_proto_rawDesc = [ 0x52, 0x0c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x4d, 0x0a, 0x0b, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64, 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, 0x72, + 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, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x52, 0x09, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x32, 0xbd, 0x02, 0x0a, 0x10, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xe1, 0x01, 0x0a, 0x10, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x54, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, - 0x35, 0x3a, 0x01, 0x2a, 0x22, 0x30, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x35, 0x3a, 0x01, 0x2a, 0x22, 0x30, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, @@ -498,60 +498,60 @@ var file_google_ads_googleads_v16_services_ad_group_ad_service_proto_rawDesc = [ 0x77, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x81, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x15, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_ad_group_ad_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_ad_group_ad_service_proto_rawDescData = file_google_ads_googleads_v16_services_ad_group_ad_service_proto_rawDesc + file_google_ads_googleads_v17_services_ad_group_ad_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_ad_group_ad_service_proto_rawDescData = file_google_ads_googleads_v17_services_ad_group_ad_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_ad_group_ad_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_ad_group_ad_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_ad_group_ad_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_ad_group_ad_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_ad_group_ad_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_ad_group_ad_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_ad_group_ad_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_ad_group_ad_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_ad_group_ad_service_proto_rawDescData + return file_google_ads_googleads_v17_services_ad_group_ad_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_ad_group_ad_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_ad_group_ad_service_proto_goTypes = []interface{}{ - (*MutateAdGroupAdsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateAdGroupAdsRequest - (*AdGroupAdOperation)(nil), // 1: google.ads.googleads.v16.services.AdGroupAdOperation - (*MutateAdGroupAdsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateAdGroupAdsResponse - (*MutateAdGroupAdResult)(nil), // 3: google.ads.googleads.v16.services.MutateAdGroupAdResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_ad_group_ad_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_ad_group_ad_service_proto_goTypes = []interface{}{ + (*MutateAdGroupAdsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateAdGroupAdsRequest + (*AdGroupAdOperation)(nil), // 1: google.ads.googleads.v17.services.AdGroupAdOperation + (*MutateAdGroupAdsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateAdGroupAdsResponse + (*MutateAdGroupAdResult)(nil), // 3: google.ads.googleads.v17.services.MutateAdGroupAdResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*common.PolicyValidationParameter)(nil), // 6: google.ads.googleads.v16.common.PolicyValidationParameter - (*resources.AdGroupAd)(nil), // 7: google.ads.googleads.v16.resources.AdGroupAd + (*common.PolicyValidationParameter)(nil), // 6: google.ads.googleads.v17.common.PolicyValidationParameter + (*resources.AdGroupAd)(nil), // 7: google.ads.googleads.v17.resources.AdGroupAd (*status.Status)(nil), // 8: google.rpc.Status } -var file_google_ads_googleads_v16_services_ad_group_ad_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateAdGroupAdsRequest.operations:type_name -> google.ads.googleads.v16.services.AdGroupAdOperation - 4, // 1: google.ads.googleads.v16.services.MutateAdGroupAdsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.AdGroupAdOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.AdGroupAdOperation.policy_validation_parameter:type_name -> google.ads.googleads.v16.common.PolicyValidationParameter - 7, // 4: google.ads.googleads.v16.services.AdGroupAdOperation.create:type_name -> google.ads.googleads.v16.resources.AdGroupAd - 7, // 5: google.ads.googleads.v16.services.AdGroupAdOperation.update:type_name -> google.ads.googleads.v16.resources.AdGroupAd - 8, // 6: google.ads.googleads.v16.services.MutateAdGroupAdsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 7: google.ads.googleads.v16.services.MutateAdGroupAdsResponse.results:type_name -> google.ads.googleads.v16.services.MutateAdGroupAdResult - 7, // 8: google.ads.googleads.v16.services.MutateAdGroupAdResult.ad_group_ad:type_name -> google.ads.googleads.v16.resources.AdGroupAd - 0, // 9: google.ads.googleads.v16.services.AdGroupAdService.MutateAdGroupAds:input_type -> google.ads.googleads.v16.services.MutateAdGroupAdsRequest - 2, // 10: google.ads.googleads.v16.services.AdGroupAdService.MutateAdGroupAds:output_type -> google.ads.googleads.v16.services.MutateAdGroupAdsResponse +var file_google_ads_googleads_v17_services_ad_group_ad_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateAdGroupAdsRequest.operations:type_name -> google.ads.googleads.v17.services.AdGroupAdOperation + 4, // 1: google.ads.googleads.v17.services.MutateAdGroupAdsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.AdGroupAdOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.AdGroupAdOperation.policy_validation_parameter:type_name -> google.ads.googleads.v17.common.PolicyValidationParameter + 7, // 4: google.ads.googleads.v17.services.AdGroupAdOperation.create:type_name -> google.ads.googleads.v17.resources.AdGroupAd + 7, // 5: google.ads.googleads.v17.services.AdGroupAdOperation.update:type_name -> google.ads.googleads.v17.resources.AdGroupAd + 8, // 6: google.ads.googleads.v17.services.MutateAdGroupAdsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 7: google.ads.googleads.v17.services.MutateAdGroupAdsResponse.results:type_name -> google.ads.googleads.v17.services.MutateAdGroupAdResult + 7, // 8: google.ads.googleads.v17.services.MutateAdGroupAdResult.ad_group_ad:type_name -> google.ads.googleads.v17.resources.AdGroupAd + 0, // 9: google.ads.googleads.v17.services.AdGroupAdService.MutateAdGroupAds:input_type -> google.ads.googleads.v17.services.MutateAdGroupAdsRequest + 2, // 10: google.ads.googleads.v17.services.AdGroupAdService.MutateAdGroupAds:output_type -> google.ads.googleads.v17.services.MutateAdGroupAdsResponse 10, // [10:11] is the sub-list for method output_type 9, // [9:10] is the sub-list for method input_type 9, // [9:9] is the sub-list for extension type_name @@ -559,13 +559,13 @@ var file_google_ads_googleads_v16_services_ad_group_ad_service_proto_depIdxs = [ 0, // [0:9] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_ad_group_ad_service_proto_init() } -func file_google_ads_googleads_v16_services_ad_group_ad_service_proto_init() { - if File_google_ads_googleads_v16_services_ad_group_ad_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_ad_group_ad_service_proto_init() } +func file_google_ads_googleads_v17_services_ad_group_ad_service_proto_init() { + if File_google_ads_googleads_v17_services_ad_group_ad_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_ad_group_ad_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_ad_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupAdsRequest); i { case 0: return &v.state @@ -577,7 +577,7 @@ func file_google_ads_googleads_v16_services_ad_group_ad_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_ad_group_ad_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_ad_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupAdOperation); i { case 0: return &v.state @@ -589,7 +589,7 @@ func file_google_ads_googleads_v16_services_ad_group_ad_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_ad_group_ad_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_ad_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupAdsResponse); i { case 0: return &v.state @@ -601,7 +601,7 @@ func file_google_ads_googleads_v16_services_ad_group_ad_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_ad_group_ad_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_ad_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupAdResult); i { case 0: return &v.state @@ -614,7 +614,7 @@ func file_google_ads_googleads_v16_services_ad_group_ad_service_proto_init() { } } } - file_google_ads_googleads_v16_services_ad_group_ad_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_ad_group_ad_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*AdGroupAdOperation_Create)(nil), (*AdGroupAdOperation_Update)(nil), (*AdGroupAdOperation_Remove)(nil), @@ -623,18 +623,18 @@ func file_google_ads_googleads_v16_services_ad_group_ad_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_ad_group_ad_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_ad_group_ad_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_ad_group_ad_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_ad_group_ad_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_ad_group_ad_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_ad_group_ad_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_ad_group_ad_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_ad_group_ad_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_ad_group_ad_service_proto = out.File - file_google_ads_googleads_v16_services_ad_group_ad_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_ad_group_ad_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_ad_group_ad_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_ad_group_ad_service_proto = out.File + file_google_ads_googleads_v17_services_ad_group_ad_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_ad_group_ad_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_ad_group_ad_service_proto_depIdxs = nil } diff --git a/services/ad_group_ad_service_grpc.pb.go b/services/ad_group_ad_service_grpc.pb.go index f4307a15..6b5b093e 100644 --- a/services/ad_group_ad_service_grpc.pb.go +++ b/services/ad_group_ad_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_group_ad_service.proto +// source: google/ads/googleads/v17/services/ad_group_ad_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - AdGroupAdService_MutateAdGroupAds_FullMethodName = "/google.ads.googleads.v16.services.AdGroupAdService/MutateAdGroupAds" + AdGroupAdService_MutateAdGroupAds_FullMethodName = "/google.ads.googleads.v17.services.AdGroupAdService/MutateAdGroupAds" ) // AdGroupAdServiceClient is the client API for AdGroupAdService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage ads in an ad group. type AdGroupAdServiceClient interface { // Creates, updates, or removes ads. Operation statuses are returned. // @@ -99,8 +101,9 @@ func NewAdGroupAdServiceClient(cc grpc.ClientConnInterface) AdGroupAdServiceClie } func (c *adGroupAdServiceClient) MutateAdGroupAds(ctx context.Context, in *MutateAdGroupAdsRequest, opts ...grpc.CallOption) (*MutateAdGroupAdsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateAdGroupAdsResponse) - err := c.cc.Invoke(ctx, AdGroupAdService_MutateAdGroupAds_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AdGroupAdService_MutateAdGroupAds_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -110,6 +113,8 @@ func (c *adGroupAdServiceClient) MutateAdGroupAds(ctx context.Context, in *Mutat // AdGroupAdServiceServer is the server API for AdGroupAdService service. // All implementations must embed UnimplementedAdGroupAdServiceServer // for forward compatibility +// +// Service to manage ads in an ad group. type AdGroupAdServiceServer interface { // Creates, updates, or removes ads. Operation statuses are returned. // @@ -204,7 +209,7 @@ func _AdGroupAdService_MutateAdGroupAds_Handler(srv interface{}, ctx context.Con // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var AdGroupAdService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.AdGroupAdService", + ServiceName: "google.ads.googleads.v17.services.AdGroupAdService", HandlerType: (*AdGroupAdServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -213,5 +218,5 @@ var AdGroupAdService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/ad_group_ad_service.proto", + Metadata: "google/ads/googleads/v17/services/ad_group_ad_service.proto", } diff --git a/services/ad_group_asset_service.pb.go b/services/ad_group_asset_service.pb.go index 662fb814..a796bcd8 100644 --- a/services/ad_group_asset_service.pb.go +++ b/services/ad_group_asset_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_group_asset_service.proto +// source: google/ads/googleads/v17/services/ad_group_asset_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [AdGroupAssetService.MutateAdGroupAssets][google.ads.googleads.v16.services.AdGroupAssetService.MutateAdGroupAssets]. +// [AdGroupAssetService.MutateAdGroupAssets][google.ads.googleads.v17.services.AdGroupAssetService.MutateAdGroupAssets]. type MutateAdGroupAssetsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -60,13 +60,13 @@ type MutateAdGroupAssetsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateAdGroupAssetsRequest) Reset() { *x = MutateAdGroupAssetsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_asset_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_ad_group_asset_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateAdGroupAssetsRequest) String() string { func (*MutateAdGroupAssetsRequest) ProtoMessage() {} func (x *MutateAdGroupAssetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_asset_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_ad_group_asset_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateAdGroupAssetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupAssetsRequest.ProtoReflect.Descriptor instead. func (*MutateAdGroupAssetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_asset_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_ad_group_asset_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAdGroupAssetsRequest) GetCustomerId() string { @@ -151,7 +151,7 @@ type AdGroupAssetOperation struct { func (x *AdGroupAssetOperation) Reset() { *x = AdGroupAssetOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_asset_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_group_asset_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164,7 +164,7 @@ func (x *AdGroupAssetOperation) String() string { func (*AdGroupAssetOperation) ProtoMessage() {} func (x *AdGroupAssetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_asset_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_group_asset_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177,7 +177,7 @@ func (x *AdGroupAssetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupAssetOperation.ProtoReflect.Descriptor instead. func (*AdGroupAssetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_asset_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_ad_group_asset_service_proto_rawDescGZIP(), []int{1} } func (x *AdGroupAssetOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -263,7 +263,7 @@ type MutateAdGroupAssetsResponse struct { func (x *MutateAdGroupAssetsResponse) Reset() { *x = MutateAdGroupAssetsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_asset_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_group_asset_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -276,7 +276,7 @@ func (x *MutateAdGroupAssetsResponse) String() string { func (*MutateAdGroupAssetsResponse) ProtoMessage() {} func (x *MutateAdGroupAssetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_asset_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_group_asset_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -289,7 +289,7 @@ func (x *MutateAdGroupAssetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupAssetsResponse.ProtoReflect.Descriptor instead. func (*MutateAdGroupAssetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_asset_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_ad_group_asset_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAdGroupAssetsResponse) GetPartialFailureError() *status.Status { @@ -323,7 +323,7 @@ type MutateAdGroupAssetResult struct { func (x *MutateAdGroupAssetResult) Reset() { *x = MutateAdGroupAssetResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_asset_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_group_asset_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -336,7 +336,7 @@ func (x *MutateAdGroupAssetResult) String() string { func (*MutateAdGroupAssetResult) ProtoMessage() {} func (x *MutateAdGroupAssetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_asset_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_group_asset_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -349,7 +349,7 @@ func (x *MutateAdGroupAssetResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupAssetResult.ProtoReflect.Descriptor instead. func (*MutateAdGroupAssetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_asset_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_ad_group_asset_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAdGroupAssetResult) GetResourceName() string { @@ -366,21 +366,21 @@ func (x *MutateAdGroupAssetResult) GetAdGroupAsset() *resources.AdGroupAsset { return nil } -var File_google_ads_googleads_v16_services_ad_group_asset_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_ad_group_asset_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_ad_group_asset_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_ad_group_asset_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 0x67, 0x6f, 0x6f, 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 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, 0x73, 0x73, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, @@ -400,7 +400,7 @@ var file_google_ads_googleads_v16_services_ad_group_asset_service_proto_rawDesc 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5d, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, @@ -412,7 +412,7 @@ var file_google_ads_googleads_v16_services_ad_group_asset_service_proto_rawDesc 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, @@ -424,12 +424,12 @@ var file_google_ads_googleads_v16_services_ad_group_asset_service_proto_rawDesc 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x4a, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 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, 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, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x4a, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x03, 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, 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, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x44, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2a, 0xfa, 0x41, 0x27, 0x0a, 0x25, 0x67, @@ -445,7 +445,7 @@ var file_google_ads_googleads_v16_services_ad_group_asset_service_proto_rawDesc 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x55, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xc3, 0x01, 0x0a, 0x18, 0x4d, @@ -458,23 +458,23 @@ var file_google_ads_googleads_v16_services_ad_group_asset_service_proto_rawDesc 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x56, 0x0a, 0x0e, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 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, 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, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0c, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x32, 0xcc, 0x02, 0x0a, 0x13, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xed, 0x01, 0x0a, 0x13, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x12, 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, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x57, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x38, - 0x3a, 0x01, 0x2a, 0x22, 0x33, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x3a, 0x01, 0x2a, 0x22, 0x33, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, @@ -483,58 +483,58 @@ var file_google_ads_googleads_v16_services_ad_group_asset_service_proto_rawDesc 0x77, 0x77, 0x77, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x84, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x18, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, - 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, + 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_ad_group_asset_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_ad_group_asset_service_proto_rawDescData = file_google_ads_googleads_v16_services_ad_group_asset_service_proto_rawDesc + file_google_ads_googleads_v17_services_ad_group_asset_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_ad_group_asset_service_proto_rawDescData = file_google_ads_googleads_v17_services_ad_group_asset_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_ad_group_asset_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_ad_group_asset_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_ad_group_asset_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_ad_group_asset_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_ad_group_asset_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_ad_group_asset_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_ad_group_asset_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_ad_group_asset_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_ad_group_asset_service_proto_rawDescData + return file_google_ads_googleads_v17_services_ad_group_asset_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_ad_group_asset_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_ad_group_asset_service_proto_goTypes = []interface{}{ - (*MutateAdGroupAssetsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateAdGroupAssetsRequest - (*AdGroupAssetOperation)(nil), // 1: google.ads.googleads.v16.services.AdGroupAssetOperation - (*MutateAdGroupAssetsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateAdGroupAssetsResponse - (*MutateAdGroupAssetResult)(nil), // 3: google.ads.googleads.v16.services.MutateAdGroupAssetResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_ad_group_asset_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_ad_group_asset_service_proto_goTypes = []interface{}{ + (*MutateAdGroupAssetsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateAdGroupAssetsRequest + (*AdGroupAssetOperation)(nil), // 1: google.ads.googleads.v17.services.AdGroupAssetOperation + (*MutateAdGroupAssetsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateAdGroupAssetsResponse + (*MutateAdGroupAssetResult)(nil), // 3: google.ads.googleads.v17.services.MutateAdGroupAssetResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.AdGroupAsset)(nil), // 6: google.ads.googleads.v16.resources.AdGroupAsset + (*resources.AdGroupAsset)(nil), // 6: google.ads.googleads.v17.resources.AdGroupAsset (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_ad_group_asset_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateAdGroupAssetsRequest.operations:type_name -> google.ads.googleads.v16.services.AdGroupAssetOperation - 4, // 1: google.ads.googleads.v16.services.MutateAdGroupAssetsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.AdGroupAssetOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.AdGroupAssetOperation.create:type_name -> google.ads.googleads.v16.resources.AdGroupAsset - 6, // 4: google.ads.googleads.v16.services.AdGroupAssetOperation.update:type_name -> google.ads.googleads.v16.resources.AdGroupAsset - 7, // 5: google.ads.googleads.v16.services.MutateAdGroupAssetsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v16.services.MutateAdGroupAssetsResponse.results:type_name -> google.ads.googleads.v16.services.MutateAdGroupAssetResult - 6, // 7: google.ads.googleads.v16.services.MutateAdGroupAssetResult.ad_group_asset:type_name -> google.ads.googleads.v16.resources.AdGroupAsset - 0, // 8: google.ads.googleads.v16.services.AdGroupAssetService.MutateAdGroupAssets:input_type -> google.ads.googleads.v16.services.MutateAdGroupAssetsRequest - 2, // 9: google.ads.googleads.v16.services.AdGroupAssetService.MutateAdGroupAssets:output_type -> google.ads.googleads.v16.services.MutateAdGroupAssetsResponse +var file_google_ads_googleads_v17_services_ad_group_asset_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateAdGroupAssetsRequest.operations:type_name -> google.ads.googleads.v17.services.AdGroupAssetOperation + 4, // 1: google.ads.googleads.v17.services.MutateAdGroupAssetsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.AdGroupAssetOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.AdGroupAssetOperation.create:type_name -> google.ads.googleads.v17.resources.AdGroupAsset + 6, // 4: google.ads.googleads.v17.services.AdGroupAssetOperation.update:type_name -> google.ads.googleads.v17.resources.AdGroupAsset + 7, // 5: google.ads.googleads.v17.services.MutateAdGroupAssetsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v17.services.MutateAdGroupAssetsResponse.results:type_name -> google.ads.googleads.v17.services.MutateAdGroupAssetResult + 6, // 7: google.ads.googleads.v17.services.MutateAdGroupAssetResult.ad_group_asset:type_name -> google.ads.googleads.v17.resources.AdGroupAsset + 0, // 8: google.ads.googleads.v17.services.AdGroupAssetService.MutateAdGroupAssets:input_type -> google.ads.googleads.v17.services.MutateAdGroupAssetsRequest + 2, // 9: google.ads.googleads.v17.services.AdGroupAssetService.MutateAdGroupAssets:output_type -> google.ads.googleads.v17.services.MutateAdGroupAssetsResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -542,13 +542,13 @@ var file_google_ads_googleads_v16_services_ad_group_asset_service_proto_depIdxs 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_ad_group_asset_service_proto_init() } -func file_google_ads_googleads_v16_services_ad_group_asset_service_proto_init() { - if File_google_ads_googleads_v16_services_ad_group_asset_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_ad_group_asset_service_proto_init() } +func file_google_ads_googleads_v17_services_ad_group_asset_service_proto_init() { + if File_google_ads_googleads_v17_services_ad_group_asset_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_ad_group_asset_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_asset_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupAssetsRequest); i { case 0: return &v.state @@ -560,7 +560,7 @@ func file_google_ads_googleads_v16_services_ad_group_asset_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_ad_group_asset_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_asset_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupAssetOperation); i { case 0: return &v.state @@ -572,7 +572,7 @@ func file_google_ads_googleads_v16_services_ad_group_asset_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_ad_group_asset_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_asset_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupAssetsResponse); i { case 0: return &v.state @@ -584,7 +584,7 @@ func file_google_ads_googleads_v16_services_ad_group_asset_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_ad_group_asset_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_asset_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupAssetResult); i { case 0: return &v.state @@ -597,7 +597,7 @@ func file_google_ads_googleads_v16_services_ad_group_asset_service_proto_init() } } } - file_google_ads_googleads_v16_services_ad_group_asset_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_ad_group_asset_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*AdGroupAssetOperation_Create)(nil), (*AdGroupAssetOperation_Update)(nil), (*AdGroupAssetOperation_Remove)(nil), @@ -606,18 +606,18 @@ func file_google_ads_googleads_v16_services_ad_group_asset_service_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_ad_group_asset_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_ad_group_asset_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_ad_group_asset_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_ad_group_asset_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_ad_group_asset_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_ad_group_asset_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_ad_group_asset_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_ad_group_asset_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_ad_group_asset_service_proto = out.File - file_google_ads_googleads_v16_services_ad_group_asset_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_ad_group_asset_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_ad_group_asset_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_ad_group_asset_service_proto = out.File + file_google_ads_googleads_v17_services_ad_group_asset_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_ad_group_asset_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_ad_group_asset_service_proto_depIdxs = nil } diff --git a/services/ad_group_asset_service_grpc.pb.go b/services/ad_group_asset_service_grpc.pb.go index 7c14e109..3eed63ec 100644 --- a/services/ad_group_asset_service_grpc.pb.go +++ b/services/ad_group_asset_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_group_asset_service.proto +// source: google/ads/googleads/v17/services/ad_group_asset_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - AdGroupAssetService_MutateAdGroupAssets_FullMethodName = "/google.ads.googleads.v16.services.AdGroupAssetService/MutateAdGroupAssets" + AdGroupAssetService_MutateAdGroupAssets_FullMethodName = "/google.ads.googleads.v17.services.AdGroupAssetService/MutateAdGroupAssets" ) // AdGroupAssetServiceClient is the client API for AdGroupAssetService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage ad group assets. type AdGroupAssetServiceClient interface { // Creates, updates, or removes ad group assets. Operation statuses are // returned. @@ -68,8 +70,9 @@ func NewAdGroupAssetServiceClient(cc grpc.ClientConnInterface) AdGroupAssetServi } func (c *adGroupAssetServiceClient) MutateAdGroupAssets(ctx context.Context, in *MutateAdGroupAssetsRequest, opts ...grpc.CallOption) (*MutateAdGroupAssetsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateAdGroupAssetsResponse) - err := c.cc.Invoke(ctx, AdGroupAssetService_MutateAdGroupAssets_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AdGroupAssetService_MutateAdGroupAssets_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -79,6 +82,8 @@ func (c *adGroupAssetServiceClient) MutateAdGroupAssets(ctx context.Context, in // AdGroupAssetServiceServer is the server API for AdGroupAssetService service. // All implementations must embed UnimplementedAdGroupAssetServiceServer // for forward compatibility +// +// Service to manage ad group assets. type AdGroupAssetServiceServer interface { // Creates, updates, or removes ad group assets. Operation statuses are // returned. @@ -142,7 +147,7 @@ func _AdGroupAssetService_MutateAdGroupAssets_Handler(srv interface{}, ctx conte // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var AdGroupAssetService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.AdGroupAssetService", + ServiceName: "google.ads.googleads.v17.services.AdGroupAssetService", HandlerType: (*AdGroupAssetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -151,5 +156,5 @@ var AdGroupAssetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/ad_group_asset_service.proto", + Metadata: "google/ads/googleads/v17/services/ad_group_asset_service.proto", } diff --git a/services/ad_group_asset_set_service.pb.go b/services/ad_group_asset_set_service.pb.go index e7c1bcff..5c49bf8d 100644 --- a/services/ad_group_asset_set_service.pb.go +++ b/services/ad_group_asset_set_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_group_asset_set_service.proto +// source: google/ads/googleads/v17/services/ad_group_asset_set_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [AdGroupAssetSetService.MutateAdGroupAssetSets][google.ads.googleads.v16.services.AdGroupAssetSetService.MutateAdGroupAssetSets]. +// [AdGroupAssetSetService.MutateAdGroupAssetSets][google.ads.googleads.v17.services.AdGroupAssetSetService.MutateAdGroupAssetSets]. type MutateAdGroupAssetSetsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -61,13 +61,13 @@ type MutateAdGroupAssetSetsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateAdGroupAssetSetsRequest) Reset() { *x = MutateAdGroupAssetSetsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80,7 +80,7 @@ func (x *MutateAdGroupAssetSetsRequest) String() string { func (*MutateAdGroupAssetSetsRequest) ProtoMessage() {} func (x *MutateAdGroupAssetSetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93,7 +93,7 @@ func (x *MutateAdGroupAssetSetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupAssetSetsRequest.ProtoReflect.Descriptor instead. func (*MutateAdGroupAssetSetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAdGroupAssetSetsRequest) GetCustomerId() string { @@ -149,7 +149,7 @@ type AdGroupAssetSetOperation struct { func (x *AdGroupAssetSetOperation) Reset() { *x = AdGroupAssetSetOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -162,7 +162,7 @@ func (x *AdGroupAssetSetOperation) String() string { func (*AdGroupAssetSetOperation) ProtoMessage() {} func (x *AdGroupAssetSetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -175,7 +175,7 @@ func (x *AdGroupAssetSetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupAssetSetOperation.ProtoReflect.Descriptor instead. func (*AdGroupAssetSetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_rawDescGZIP(), []int{1} } func (m *AdGroupAssetSetOperation) GetOperation() isAdGroupAssetSetOperation_Operation { @@ -238,7 +238,7 @@ type MutateAdGroupAssetSetsResponse struct { func (x *MutateAdGroupAssetSetsResponse) Reset() { *x = MutateAdGroupAssetSetsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -251,7 +251,7 @@ func (x *MutateAdGroupAssetSetsResponse) String() string { func (*MutateAdGroupAssetSetsResponse) ProtoMessage() {} func (x *MutateAdGroupAssetSetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -264,7 +264,7 @@ func (x *MutateAdGroupAssetSetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupAssetSetsResponse.ProtoReflect.Descriptor instead. func (*MutateAdGroupAssetSetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAdGroupAssetSetsResponse) GetResults() []*MutateAdGroupAssetSetResult { @@ -298,7 +298,7 @@ type MutateAdGroupAssetSetResult struct { func (x *MutateAdGroupAssetSetResult) Reset() { *x = MutateAdGroupAssetSetResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -311,7 +311,7 @@ func (x *MutateAdGroupAssetSetResult) String() string { func (*MutateAdGroupAssetSetResult) ProtoMessage() {} func (x *MutateAdGroupAssetSetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -324,7 +324,7 @@ func (x *MutateAdGroupAssetSetResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupAssetSetResult.ProtoReflect.Descriptor instead. func (*MutateAdGroupAssetSetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAdGroupAssetSetResult) GetResourceName() string { @@ -341,21 +341,21 @@ func (x *MutateAdGroupAssetSetResult) GetAdGroupAssetSet() *resources.AdGroupAss return nil } -var File_google_ads_googleads_v16_services_ad_group_asset_set_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_ad_group_asset_set_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_ad_group_asset_set_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 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, 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, 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, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, @@ -374,7 +374,7 @@ var file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_rawD 0x65, 0x72, 0x49, 0x64, 0x12, 0x60, 0x0a, 0x0a, 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, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, @@ -385,7 +385,7 @@ var file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_rawD 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, @@ -394,7 +394,7 @@ var file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_rawD 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4d, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 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, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x47, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, @@ -407,7 +407,7 @@ var file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_rawD 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x58, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x46, 0x0a, 0x15, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, @@ -425,7 +425,7 @@ var file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_rawD 0x12, 0x60, 0x0a, 0x12, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 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, 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, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x52, 0x0f, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x32, 0xdb, 0x02, 0x0a, 0x16, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, @@ -433,16 +433,16 @@ var file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_rawD 0x0a, 0x16, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5a, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3b, 0x3a, 0x01, - 0x2a, 0x22, 0x36, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x2a, 0x22, 0x36, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, @@ -452,55 +452,55 @@ var file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_rawD 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x87, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1b, 0x41, 0x64, 0x47, 0x72, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1b, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, + 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, + 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_rawDescData = file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_rawDesc + file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_rawDescData = file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_rawDescData + return file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_goTypes = []interface{}{ - (*MutateAdGroupAssetSetsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateAdGroupAssetSetsRequest - (*AdGroupAssetSetOperation)(nil), // 1: google.ads.googleads.v16.services.AdGroupAssetSetOperation - (*MutateAdGroupAssetSetsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateAdGroupAssetSetsResponse - (*MutateAdGroupAssetSetResult)(nil), // 3: google.ads.googleads.v16.services.MutateAdGroupAssetSetResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - (*resources.AdGroupAssetSet)(nil), // 5: google.ads.googleads.v16.resources.AdGroupAssetSet +var file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_goTypes = []interface{}{ + (*MutateAdGroupAssetSetsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateAdGroupAssetSetsRequest + (*AdGroupAssetSetOperation)(nil), // 1: google.ads.googleads.v17.services.AdGroupAssetSetOperation + (*MutateAdGroupAssetSetsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateAdGroupAssetSetsResponse + (*MutateAdGroupAssetSetResult)(nil), // 3: google.ads.googleads.v17.services.MutateAdGroupAssetSetResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + (*resources.AdGroupAssetSet)(nil), // 5: google.ads.googleads.v17.resources.AdGroupAssetSet (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateAdGroupAssetSetsRequest.operations:type_name -> google.ads.googleads.v16.services.AdGroupAssetSetOperation - 4, // 1: google.ads.googleads.v16.services.MutateAdGroupAssetSetsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.AdGroupAssetSetOperation.create:type_name -> google.ads.googleads.v16.resources.AdGroupAssetSet - 3, // 3: google.ads.googleads.v16.services.MutateAdGroupAssetSetsResponse.results:type_name -> google.ads.googleads.v16.services.MutateAdGroupAssetSetResult - 6, // 4: google.ads.googleads.v16.services.MutateAdGroupAssetSetsResponse.partial_failure_error:type_name -> google.rpc.Status - 5, // 5: google.ads.googleads.v16.services.MutateAdGroupAssetSetResult.ad_group_asset_set:type_name -> google.ads.googleads.v16.resources.AdGroupAssetSet - 0, // 6: google.ads.googleads.v16.services.AdGroupAssetSetService.MutateAdGroupAssetSets:input_type -> google.ads.googleads.v16.services.MutateAdGroupAssetSetsRequest - 2, // 7: google.ads.googleads.v16.services.AdGroupAssetSetService.MutateAdGroupAssetSets:output_type -> google.ads.googleads.v16.services.MutateAdGroupAssetSetsResponse +var file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateAdGroupAssetSetsRequest.operations:type_name -> google.ads.googleads.v17.services.AdGroupAssetSetOperation + 4, // 1: google.ads.googleads.v17.services.MutateAdGroupAssetSetsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.AdGroupAssetSetOperation.create:type_name -> google.ads.googleads.v17.resources.AdGroupAssetSet + 3, // 3: google.ads.googleads.v17.services.MutateAdGroupAssetSetsResponse.results:type_name -> google.ads.googleads.v17.services.MutateAdGroupAssetSetResult + 6, // 4: google.ads.googleads.v17.services.MutateAdGroupAssetSetsResponse.partial_failure_error:type_name -> google.rpc.Status + 5, // 5: google.ads.googleads.v17.services.MutateAdGroupAssetSetResult.ad_group_asset_set:type_name -> google.ads.googleads.v17.resources.AdGroupAssetSet + 0, // 6: google.ads.googleads.v17.services.AdGroupAssetSetService.MutateAdGroupAssetSets:input_type -> google.ads.googleads.v17.services.MutateAdGroupAssetSetsRequest + 2, // 7: google.ads.googleads.v17.services.AdGroupAssetSetService.MutateAdGroupAssetSets:output_type -> google.ads.googleads.v17.services.MutateAdGroupAssetSetsResponse 7, // [7:8] is the sub-list for method output_type 6, // [6:7] is the sub-list for method input_type 6, // [6:6] is the sub-list for extension type_name @@ -508,13 +508,13 @@ var file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_depI 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_init() } -func file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_init() { - if File_google_ads_googleads_v16_services_ad_group_asset_set_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_init() } +func file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_init() { + if File_google_ads_googleads_v17_services_ad_group_asset_set_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupAssetSetsRequest); i { case 0: return &v.state @@ -526,7 +526,7 @@ func file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_ini return nil } } - file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupAssetSetOperation); i { case 0: return &v.state @@ -538,7 +538,7 @@ func file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_ini return nil } } - file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupAssetSetsResponse); i { case 0: return &v.state @@ -550,7 +550,7 @@ func file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_ini return nil } } - file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupAssetSetResult); i { case 0: return &v.state @@ -563,7 +563,7 @@ func file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_ini } } } - file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*AdGroupAssetSetOperation_Create)(nil), (*AdGroupAssetSetOperation_Remove)(nil), } @@ -571,18 +571,18 @@ func file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_ini out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_ad_group_asset_set_service_proto = out.File - file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_ad_group_asset_set_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_ad_group_asset_set_service_proto = out.File + file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_ad_group_asset_set_service_proto_depIdxs = nil } diff --git a/services/ad_group_asset_set_service_grpc.pb.go b/services/ad_group_asset_set_service_grpc.pb.go index c1d1e54d..6cdb519a 100644 --- a/services/ad_group_asset_set_service_grpc.pb.go +++ b/services/ad_group_asset_set_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_group_asset_set_service.proto +// source: google/ads/googleads/v17/services/ad_group_asset_set_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - AdGroupAssetSetService_MutateAdGroupAssetSets_FullMethodName = "/google.ads.googleads.v16.services.AdGroupAssetSetService/MutateAdGroupAssetSets" + AdGroupAssetSetService_MutateAdGroupAssetSets_FullMethodName = "/google.ads.googleads.v17.services.AdGroupAssetSetService/MutateAdGroupAssetSets" ) // AdGroupAssetSetServiceClient is the client API for AdGroupAssetSetService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage ad group asset set type AdGroupAssetSetServiceClient interface { // Creates, or removes ad group asset sets. Operation statuses are // returned. @@ -54,8 +56,9 @@ func NewAdGroupAssetSetServiceClient(cc grpc.ClientConnInterface) AdGroupAssetSe } func (c *adGroupAssetSetServiceClient) MutateAdGroupAssetSets(ctx context.Context, in *MutateAdGroupAssetSetsRequest, opts ...grpc.CallOption) (*MutateAdGroupAssetSetsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateAdGroupAssetSetsResponse) - err := c.cc.Invoke(ctx, AdGroupAssetSetService_MutateAdGroupAssetSets_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AdGroupAssetSetService_MutateAdGroupAssetSets_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -65,6 +68,8 @@ func (c *adGroupAssetSetServiceClient) MutateAdGroupAssetSets(ctx context.Contex // AdGroupAssetSetServiceServer is the server API for AdGroupAssetSetService service. // All implementations must embed UnimplementedAdGroupAssetSetServiceServer // for forward compatibility +// +// Service to manage ad group asset set type AdGroupAssetSetServiceServer interface { // Creates, or removes ad group asset sets. Operation statuses are // returned. @@ -115,7 +120,7 @@ func _AdGroupAssetSetService_MutateAdGroupAssetSets_Handler(srv interface{}, ctx // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var AdGroupAssetSetService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.AdGroupAssetSetService", + ServiceName: "google.ads.googleads.v17.services.AdGroupAssetSetService", HandlerType: (*AdGroupAssetSetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -124,5 +129,5 @@ var AdGroupAssetSetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/ad_group_asset_set_service.proto", + Metadata: "google/ads/googleads/v17/services/ad_group_asset_set_service.proto", } diff --git a/services/ad_group_bid_modifier_service.pb.go b/services/ad_group_bid_modifier_service.pb.go index 824446bd..398add1e 100644 --- a/services/ad_group_bid_modifier_service.pb.go +++ b/services/ad_group_bid_modifier_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_group_bid_modifier_service.proto +// source: google/ads/googleads/v17/services/ad_group_bid_modifier_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [AdGroupBidModifierService.MutateAdGroupBidModifiers][google.ads.googleads.v16.services.AdGroupBidModifierService.MutateAdGroupBidModifiers]. +// [AdGroupBidModifierService.MutateAdGroupBidModifiers][google.ads.googleads.v17.services.AdGroupBidModifierService.MutateAdGroupBidModifiers]. type MutateAdGroupBidModifiersRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -62,13 +62,13 @@ type MutateAdGroupBidModifiersRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateAdGroupBidModifiersRequest) Reset() { *x = MutateAdGroupBidModifiersRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81,7 +81,7 @@ func (x *MutateAdGroupBidModifiersRequest) String() string { func (*MutateAdGroupBidModifiersRequest) ProtoMessage() {} func (x *MutateAdGroupBidModifiersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_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 *MutateAdGroupBidModifiersRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupBidModifiersRequest.ProtoReflect.Descriptor instead. func (*MutateAdGroupBidModifiersRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAdGroupBidModifiersRequest) GetCustomerId() string { @@ -153,7 +153,7 @@ type AdGroupBidModifierOperation struct { func (x *AdGroupBidModifierOperation) Reset() { *x = AdGroupBidModifierOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -166,7 +166,7 @@ func (x *AdGroupBidModifierOperation) String() string { func (*AdGroupBidModifierOperation) ProtoMessage() {} func (x *AdGroupBidModifierOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -179,7 +179,7 @@ func (x *AdGroupBidModifierOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupBidModifierOperation.ProtoReflect.Descriptor instead. func (*AdGroupBidModifierOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_rawDescGZIP(), []int{1} } func (x *AdGroupBidModifierOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -265,7 +265,7 @@ type MutateAdGroupBidModifiersResponse struct { func (x *MutateAdGroupBidModifiersResponse) Reset() { *x = MutateAdGroupBidModifiersResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -278,7 +278,7 @@ func (x *MutateAdGroupBidModifiersResponse) String() string { func (*MutateAdGroupBidModifiersResponse) ProtoMessage() {} func (x *MutateAdGroupBidModifiersResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -291,7 +291,7 @@ func (x *MutateAdGroupBidModifiersResponse) ProtoReflect() protoreflect.Message // Deprecated: Use MutateAdGroupBidModifiersResponse.ProtoReflect.Descriptor instead. func (*MutateAdGroupBidModifiersResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAdGroupBidModifiersResponse) GetPartialFailureError() *status.Status { @@ -325,7 +325,7 @@ type MutateAdGroupBidModifierResult struct { func (x *MutateAdGroupBidModifierResult) Reset() { *x = MutateAdGroupBidModifierResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -338,7 +338,7 @@ func (x *MutateAdGroupBidModifierResult) String() string { func (*MutateAdGroupBidModifierResult) ProtoMessage() {} func (x *MutateAdGroupBidModifierResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -351,7 +351,7 @@ func (x *MutateAdGroupBidModifierResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupBidModifierResult.ProtoReflect.Descriptor instead. func (*MutateAdGroupBidModifierResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAdGroupBidModifierResult) GetResourceName() string { @@ -368,21 +368,21 @@ func (x *MutateAdGroupBidModifierResult) GetAdGroupBidModifier() *resources.AdGr return nil } -var File_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, 0x65, 0x73, 0x70, 0x6f, + 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, 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, + 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, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, @@ -403,7 +403,7 @@ var file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_r 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x63, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, @@ -415,7 +415,7 @@ var file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_r 0x6c, 0x79, 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, @@ -428,12 +428,12 @@ var file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_r 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x50, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 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, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x50, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x02, 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, 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, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x4a, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, @@ -451,7 +451,7 @@ var file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_r 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x5b, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x36, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xe2, 0x01, 0x0a, 0x1e, 0x4d, 0x75, 0x74, @@ -465,7 +465,7 @@ var file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_r 0x6d, 0x65, 0x12, 0x69, 0x0a, 0x15, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x18, 0x02, 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, 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, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x12, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x32, 0xea, 0x02, @@ -474,16 +474,16 @@ var file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_r 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5d, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, - 0xd3, 0xe4, 0x93, 0x02, 0x3e, 0x3a, 0x01, 0x2a, 0x22, 0x39, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, + 0xd3, 0xe4, 0x93, 0x02, 0x3e, 0x3a, 0x01, 0x2a, 0x22, 0x39, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x73, 0x3a, 0x6d, 0x75, 0x74, @@ -493,58 +493,58 @@ var file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_r 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x8a, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, + 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, + 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_rawDescData = file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_rawDesc + file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_rawDescData = file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_rawDescData + return file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_goTypes = []interface{}{ - (*MutateAdGroupBidModifiersRequest)(nil), // 0: google.ads.googleads.v16.services.MutateAdGroupBidModifiersRequest - (*AdGroupBidModifierOperation)(nil), // 1: google.ads.googleads.v16.services.AdGroupBidModifierOperation - (*MutateAdGroupBidModifiersResponse)(nil), // 2: google.ads.googleads.v16.services.MutateAdGroupBidModifiersResponse - (*MutateAdGroupBidModifierResult)(nil), // 3: google.ads.googleads.v16.services.MutateAdGroupBidModifierResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_goTypes = []interface{}{ + (*MutateAdGroupBidModifiersRequest)(nil), // 0: google.ads.googleads.v17.services.MutateAdGroupBidModifiersRequest + (*AdGroupBidModifierOperation)(nil), // 1: google.ads.googleads.v17.services.AdGroupBidModifierOperation + (*MutateAdGroupBidModifiersResponse)(nil), // 2: google.ads.googleads.v17.services.MutateAdGroupBidModifiersResponse + (*MutateAdGroupBidModifierResult)(nil), // 3: google.ads.googleads.v17.services.MutateAdGroupBidModifierResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.AdGroupBidModifier)(nil), // 6: google.ads.googleads.v16.resources.AdGroupBidModifier + (*resources.AdGroupBidModifier)(nil), // 6: google.ads.googleads.v17.resources.AdGroupBidModifier (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateAdGroupBidModifiersRequest.operations:type_name -> google.ads.googleads.v16.services.AdGroupBidModifierOperation - 4, // 1: google.ads.googleads.v16.services.MutateAdGroupBidModifiersRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.AdGroupBidModifierOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.AdGroupBidModifierOperation.create:type_name -> google.ads.googleads.v16.resources.AdGroupBidModifier - 6, // 4: google.ads.googleads.v16.services.AdGroupBidModifierOperation.update:type_name -> google.ads.googleads.v16.resources.AdGroupBidModifier - 7, // 5: google.ads.googleads.v16.services.MutateAdGroupBidModifiersResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v16.services.MutateAdGroupBidModifiersResponse.results:type_name -> google.ads.googleads.v16.services.MutateAdGroupBidModifierResult - 6, // 7: google.ads.googleads.v16.services.MutateAdGroupBidModifierResult.ad_group_bid_modifier:type_name -> google.ads.googleads.v16.resources.AdGroupBidModifier - 0, // 8: google.ads.googleads.v16.services.AdGroupBidModifierService.MutateAdGroupBidModifiers:input_type -> google.ads.googleads.v16.services.MutateAdGroupBidModifiersRequest - 2, // 9: google.ads.googleads.v16.services.AdGroupBidModifierService.MutateAdGroupBidModifiers:output_type -> google.ads.googleads.v16.services.MutateAdGroupBidModifiersResponse +var file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateAdGroupBidModifiersRequest.operations:type_name -> google.ads.googleads.v17.services.AdGroupBidModifierOperation + 4, // 1: google.ads.googleads.v17.services.MutateAdGroupBidModifiersRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.AdGroupBidModifierOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.AdGroupBidModifierOperation.create:type_name -> google.ads.googleads.v17.resources.AdGroupBidModifier + 6, // 4: google.ads.googleads.v17.services.AdGroupBidModifierOperation.update:type_name -> google.ads.googleads.v17.resources.AdGroupBidModifier + 7, // 5: google.ads.googleads.v17.services.MutateAdGroupBidModifiersResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v17.services.MutateAdGroupBidModifiersResponse.results:type_name -> google.ads.googleads.v17.services.MutateAdGroupBidModifierResult + 6, // 7: google.ads.googleads.v17.services.MutateAdGroupBidModifierResult.ad_group_bid_modifier:type_name -> google.ads.googleads.v17.resources.AdGroupBidModifier + 0, // 8: google.ads.googleads.v17.services.AdGroupBidModifierService.MutateAdGroupBidModifiers:input_type -> google.ads.googleads.v17.services.MutateAdGroupBidModifiersRequest + 2, // 9: google.ads.googleads.v17.services.AdGroupBidModifierService.MutateAdGroupBidModifiers:output_type -> google.ads.googleads.v17.services.MutateAdGroupBidModifiersResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -552,13 +552,13 @@ var file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_d 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_init() } -func file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_init() { - if File_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_init() } +func file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_init() { + if File_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupBidModifiersRequest); i { case 0: return &v.state @@ -570,7 +570,7 @@ func file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_ return nil } } - file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupBidModifierOperation); i { case 0: return &v.state @@ -582,7 +582,7 @@ func file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_ return nil } } - file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupBidModifiersResponse); i { case 0: return &v.state @@ -594,7 +594,7 @@ func file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_ return nil } } - file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupBidModifierResult); i { case 0: return &v.state @@ -607,7 +607,7 @@ func file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_ } } } - file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*AdGroupBidModifierOperation_Create)(nil), (*AdGroupBidModifierOperation_Update)(nil), (*AdGroupBidModifierOperation_Remove)(nil), @@ -616,18 +616,18 @@ func file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_ out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto = out.File - file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto = out.File + file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_depIdxs = nil } diff --git a/services/ad_group_bid_modifier_service_grpc.pb.go b/services/ad_group_bid_modifier_service_grpc.pb.go index 354ae77b..6fe2dc1e 100644 --- a/services/ad_group_bid_modifier_service_grpc.pb.go +++ b/services/ad_group_bid_modifier_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_group_bid_modifier_service.proto +// source: google/ads/googleads/v17/services/ad_group_bid_modifier_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - AdGroupBidModifierService_MutateAdGroupBidModifiers_FullMethodName = "/google.ads.googleads.v16.services.AdGroupBidModifierService/MutateAdGroupBidModifiers" + AdGroupBidModifierService_MutateAdGroupBidModifiers_FullMethodName = "/google.ads.googleads.v17.services.AdGroupBidModifierService/MutateAdGroupBidModifiers" ) // AdGroupBidModifierServiceClient is the client API for AdGroupBidModifierService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage ad group bid modifiers. type AdGroupBidModifierServiceClient interface { // Creates, updates, or removes ad group bid modifiers. // Operation statuses are returned. @@ -80,8 +82,9 @@ func NewAdGroupBidModifierServiceClient(cc grpc.ClientConnInterface) AdGroupBidM } func (c *adGroupBidModifierServiceClient) MutateAdGroupBidModifiers(ctx context.Context, in *MutateAdGroupBidModifiersRequest, opts ...grpc.CallOption) (*MutateAdGroupBidModifiersResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateAdGroupBidModifiersResponse) - err := c.cc.Invoke(ctx, AdGroupBidModifierService_MutateAdGroupBidModifiers_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AdGroupBidModifierService_MutateAdGroupBidModifiers_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -91,6 +94,8 @@ func (c *adGroupBidModifierServiceClient) MutateAdGroupBidModifiers(ctx context. // AdGroupBidModifierServiceServer is the server API for AdGroupBidModifierService service. // All implementations must embed UnimplementedAdGroupBidModifierServiceServer // for forward compatibility +// +// Service to manage ad group bid modifiers. type AdGroupBidModifierServiceServer interface { // Creates, updates, or removes ad group bid modifiers. // Operation statuses are returned. @@ -167,7 +172,7 @@ func _AdGroupBidModifierService_MutateAdGroupBidModifiers_Handler(srv interface{ // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var AdGroupBidModifierService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.AdGroupBidModifierService", + ServiceName: "google.ads.googleads.v17.services.AdGroupBidModifierService", HandlerType: (*AdGroupBidModifierServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -176,5 +181,5 @@ var AdGroupBidModifierService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/ad_group_bid_modifier_service.proto", + Metadata: "google/ads/googleads/v17/services/ad_group_bid_modifier_service.proto", } diff --git a/services/ad_group_criterion_customizer_service.pb.go b/services/ad_group_criterion_customizer_service.pb.go index fc5a6ef7..4671b884 100644 --- a/services/ad_group_criterion_customizer_service.pb.go +++ b/services/ad_group_criterion_customizer_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_group_criterion_customizer_service.proto +// source: google/ads/googleads/v17/services/ad_group_criterion_customizer_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [AdGroupCriterionCustomizerService.MutateAdGroupCriterionCustomizers][google.ads.googleads.v16.services.AdGroupCriterionCustomizerService.MutateAdGroupCriterionCustomizers]. +// [AdGroupCriterionCustomizerService.MutateAdGroupCriterionCustomizers][google.ads.googleads.v17.services.AdGroupCriterionCustomizerService.MutateAdGroupCriterionCustomizers]. type MutateAdGroupCriterionCustomizersRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -61,13 +61,13 @@ type MutateAdGroupCriterionCustomizersRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateAdGroupCriterionCustomizersRequest) Reset() { *x = MutateAdGroupCriterionCustomizersRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80,7 +80,7 @@ func (x *MutateAdGroupCriterionCustomizersRequest) String() string { func (*MutateAdGroupCriterionCustomizersRequest) ProtoMessage() {} func (x *MutateAdGroupCriterionCustomizersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93,7 +93,7 @@ func (x *MutateAdGroupCriterionCustomizersRequest) ProtoReflect() protoreflect.M // Deprecated: Use MutateAdGroupCriterionCustomizersRequest.ProtoReflect.Descriptor instead. func (*MutateAdGroupCriterionCustomizersRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAdGroupCriterionCustomizersRequest) GetCustomerId() string { @@ -149,7 +149,7 @@ type AdGroupCriterionCustomizerOperation struct { func (x *AdGroupCriterionCustomizerOperation) Reset() { *x = AdGroupCriterionCustomizerOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -162,7 +162,7 @@ func (x *AdGroupCriterionCustomizerOperation) String() string { func (*AdGroupCriterionCustomizerOperation) ProtoMessage() {} func (x *AdGroupCriterionCustomizerOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -175,7 +175,7 @@ func (x *AdGroupCriterionCustomizerOperation) ProtoReflect() protoreflect.Messag // Deprecated: Use AdGroupCriterionCustomizerOperation.ProtoReflect.Descriptor instead. func (*AdGroupCriterionCustomizerOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_rawDescGZIP(), []int{1} } func (m *AdGroupCriterionCustomizerOperation) GetOperation() isAdGroupCriterionCustomizerOperation_Operation { @@ -241,7 +241,7 @@ type MutateAdGroupCriterionCustomizersResponse struct { func (x *MutateAdGroupCriterionCustomizersResponse) Reset() { *x = MutateAdGroupCriterionCustomizersResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -254,7 +254,7 @@ func (x *MutateAdGroupCriterionCustomizersResponse) String() string { func (*MutateAdGroupCriterionCustomizersResponse) ProtoMessage() {} func (x *MutateAdGroupCriterionCustomizersResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -267,7 +267,7 @@ func (x *MutateAdGroupCriterionCustomizersResponse) ProtoReflect() protoreflect. // Deprecated: Use MutateAdGroupCriterionCustomizersResponse.ProtoReflect.Descriptor instead. func (*MutateAdGroupCriterionCustomizersResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAdGroupCriterionCustomizersResponse) GetResults() []*MutateAdGroupCriterionCustomizerResult { @@ -301,7 +301,7 @@ type MutateAdGroupCriterionCustomizerResult struct { func (x *MutateAdGroupCriterionCustomizerResult) Reset() { *x = MutateAdGroupCriterionCustomizerResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -314,7 +314,7 @@ func (x *MutateAdGroupCriterionCustomizerResult) String() string { func (*MutateAdGroupCriterionCustomizerResult) ProtoMessage() {} func (x *MutateAdGroupCriterionCustomizerResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -327,7 +327,7 @@ func (x *MutateAdGroupCriterionCustomizerResult) ProtoReflect() protoreflect.Mes // Deprecated: Use MutateAdGroupCriterionCustomizerResult.ProtoReflect.Descriptor instead. func (*MutateAdGroupCriterionCustomizerResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAdGroupCriterionCustomizerResult) GetResourceName() string { @@ -344,22 +344,22 @@ func (x *MutateAdGroupCriterionCustomizerResult) GetAdGroupCriterionCustomizer() return nil } -var File_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_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, 0x36, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 0x6f, 0x6f, 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 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, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, @@ -379,7 +379,7 @@ var file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x6b, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, @@ -391,7 +391,7 @@ var file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, @@ -401,7 +401,7 @@ var file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x58, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x52, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x02, 0x20, @@ -415,7 +415,7 @@ var file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x63, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, @@ -436,7 +436,7 @@ var file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service 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, 0x18, 0x02, 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, 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, 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, 0x52, 0x1a, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, @@ -447,17 +447,17 @@ var file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x65, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, - 0xd3, 0xe4, 0x93, 0x02, 0x46, 0x3a, 0x01, 0x2a, 0x22, 0x41, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, + 0xd3, 0xe4, 0x93, 0x02, 0x46, 0x3a, 0x01, 0x2a, 0x22, 0x41, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, @@ -468,55 +468,55 @@ var file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x92, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x26, 0x41, 0x64, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x26, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, + 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, + 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_rawDescData = file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_rawDesc + file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_rawDescData = file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_rawDescData + return file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_goTypes = []interface{}{ - (*MutateAdGroupCriterionCustomizersRequest)(nil), // 0: google.ads.googleads.v16.services.MutateAdGroupCriterionCustomizersRequest - (*AdGroupCriterionCustomizerOperation)(nil), // 1: google.ads.googleads.v16.services.AdGroupCriterionCustomizerOperation - (*MutateAdGroupCriterionCustomizersResponse)(nil), // 2: google.ads.googleads.v16.services.MutateAdGroupCriterionCustomizersResponse - (*MutateAdGroupCriterionCustomizerResult)(nil), // 3: google.ads.googleads.v16.services.MutateAdGroupCriterionCustomizerResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - (*resources.AdGroupCriterionCustomizer)(nil), // 5: google.ads.googleads.v16.resources.AdGroupCriterionCustomizer +var file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_goTypes = []interface{}{ + (*MutateAdGroupCriterionCustomizersRequest)(nil), // 0: google.ads.googleads.v17.services.MutateAdGroupCriterionCustomizersRequest + (*AdGroupCriterionCustomizerOperation)(nil), // 1: google.ads.googleads.v17.services.AdGroupCriterionCustomizerOperation + (*MutateAdGroupCriterionCustomizersResponse)(nil), // 2: google.ads.googleads.v17.services.MutateAdGroupCriterionCustomizersResponse + (*MutateAdGroupCriterionCustomizerResult)(nil), // 3: google.ads.googleads.v17.services.MutateAdGroupCriterionCustomizerResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + (*resources.AdGroupCriterionCustomizer)(nil), // 5: google.ads.googleads.v17.resources.AdGroupCriterionCustomizer (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateAdGroupCriterionCustomizersRequest.operations:type_name -> google.ads.googleads.v16.services.AdGroupCriterionCustomizerOperation - 4, // 1: google.ads.googleads.v16.services.MutateAdGroupCriterionCustomizersRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.AdGroupCriterionCustomizerOperation.create:type_name -> google.ads.googleads.v16.resources.AdGroupCriterionCustomizer - 3, // 3: google.ads.googleads.v16.services.MutateAdGroupCriterionCustomizersResponse.results:type_name -> google.ads.googleads.v16.services.MutateAdGroupCriterionCustomizerResult - 6, // 4: google.ads.googleads.v16.services.MutateAdGroupCriterionCustomizersResponse.partial_failure_error:type_name -> google.rpc.Status - 5, // 5: google.ads.googleads.v16.services.MutateAdGroupCriterionCustomizerResult.ad_group_criterion_customizer:type_name -> google.ads.googleads.v16.resources.AdGroupCriterionCustomizer - 0, // 6: google.ads.googleads.v16.services.AdGroupCriterionCustomizerService.MutateAdGroupCriterionCustomizers:input_type -> google.ads.googleads.v16.services.MutateAdGroupCriterionCustomizersRequest - 2, // 7: google.ads.googleads.v16.services.AdGroupCriterionCustomizerService.MutateAdGroupCriterionCustomizers:output_type -> google.ads.googleads.v16.services.MutateAdGroupCriterionCustomizersResponse +var file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateAdGroupCriterionCustomizersRequest.operations:type_name -> google.ads.googleads.v17.services.AdGroupCriterionCustomizerOperation + 4, // 1: google.ads.googleads.v17.services.MutateAdGroupCriterionCustomizersRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.AdGroupCriterionCustomizerOperation.create:type_name -> google.ads.googleads.v17.resources.AdGroupCriterionCustomizer + 3, // 3: google.ads.googleads.v17.services.MutateAdGroupCriterionCustomizersResponse.results:type_name -> google.ads.googleads.v17.services.MutateAdGroupCriterionCustomizerResult + 6, // 4: google.ads.googleads.v17.services.MutateAdGroupCriterionCustomizersResponse.partial_failure_error:type_name -> google.rpc.Status + 5, // 5: google.ads.googleads.v17.services.MutateAdGroupCriterionCustomizerResult.ad_group_criterion_customizer:type_name -> google.ads.googleads.v17.resources.AdGroupCriterionCustomizer + 0, // 6: google.ads.googleads.v17.services.AdGroupCriterionCustomizerService.MutateAdGroupCriterionCustomizers:input_type -> google.ads.googleads.v17.services.MutateAdGroupCriterionCustomizersRequest + 2, // 7: google.ads.googleads.v17.services.AdGroupCriterionCustomizerService.MutateAdGroupCriterionCustomizers:output_type -> google.ads.googleads.v17.services.MutateAdGroupCriterionCustomizersResponse 7, // [7:8] is the sub-list for method output_type 6, // [6:7] is the sub-list for method input_type 6, // [6:6] is the sub-list for extension type_name @@ -525,14 +525,14 @@ var file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service } func init() { - file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_init() + file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_init() } -func file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_init() { - if File_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto != nil { +func file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_init() { + if File_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupCriterionCustomizersRequest); i { case 0: return &v.state @@ -544,7 +544,7 @@ func file_google_ads_googleads_v16_services_ad_group_criterion_customizer_servic return nil } } - file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupCriterionCustomizerOperation); i { case 0: return &v.state @@ -556,7 +556,7 @@ func file_google_ads_googleads_v16_services_ad_group_criterion_customizer_servic return nil } } - file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupCriterionCustomizersResponse); i { case 0: return &v.state @@ -568,7 +568,7 @@ func file_google_ads_googleads_v16_services_ad_group_criterion_customizer_servic return nil } } - file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupCriterionCustomizerResult); i { case 0: return &v.state @@ -581,7 +581,7 @@ func file_google_ads_googleads_v16_services_ad_group_criterion_customizer_servic } } } - file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*AdGroupCriterionCustomizerOperation_Create)(nil), (*AdGroupCriterionCustomizerOperation_Remove)(nil), } @@ -589,18 +589,18 @@ func file_google_ads_googleads_v16_services_ad_group_criterion_customizer_servic out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto = out.File - file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto = out.File + file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_depIdxs = nil } diff --git a/services/ad_group_criterion_customizer_service_grpc.pb.go b/services/ad_group_criterion_customizer_service_grpc.pb.go index 5d61614b..baea6604 100644 --- a/services/ad_group_criterion_customizer_service_grpc.pb.go +++ b/services/ad_group_criterion_customizer_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_group_criterion_customizer_service.proto +// source: google/ads/googleads/v17/services/ad_group_criterion_customizer_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - AdGroupCriterionCustomizerService_MutateAdGroupCriterionCustomizers_FullMethodName = "/google.ads.googleads.v16.services.AdGroupCriterionCustomizerService/MutateAdGroupCriterionCustomizers" + AdGroupCriterionCustomizerService_MutateAdGroupCriterionCustomizers_FullMethodName = "/google.ads.googleads.v17.services.AdGroupCriterionCustomizerService/MutateAdGroupCriterionCustomizers" ) // AdGroupCriterionCustomizerServiceClient is the client API for AdGroupCriterionCustomizerService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage ad group criterion customizer type AdGroupCriterionCustomizerServiceClient interface { // Creates, updates or removes ad group criterion customizers. Operation // statuses are returned. @@ -54,8 +56,9 @@ func NewAdGroupCriterionCustomizerServiceClient(cc grpc.ClientConnInterface) AdG } func (c *adGroupCriterionCustomizerServiceClient) MutateAdGroupCriterionCustomizers(ctx context.Context, in *MutateAdGroupCriterionCustomizersRequest, opts ...grpc.CallOption) (*MutateAdGroupCriterionCustomizersResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateAdGroupCriterionCustomizersResponse) - err := c.cc.Invoke(ctx, AdGroupCriterionCustomizerService_MutateAdGroupCriterionCustomizers_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AdGroupCriterionCustomizerService_MutateAdGroupCriterionCustomizers_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -65,6 +68,8 @@ func (c *adGroupCriterionCustomizerServiceClient) MutateAdGroupCriterionCustomiz // AdGroupCriterionCustomizerServiceServer is the server API for AdGroupCriterionCustomizerService service. // All implementations must embed UnimplementedAdGroupCriterionCustomizerServiceServer // for forward compatibility +// +// Service to manage ad group criterion customizer type AdGroupCriterionCustomizerServiceServer interface { // Creates, updates or removes ad group criterion customizers. Operation // statuses are returned. @@ -115,7 +120,7 @@ func _AdGroupCriterionCustomizerService_MutateAdGroupCriterionCustomizers_Handle // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var AdGroupCriterionCustomizerService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.AdGroupCriterionCustomizerService", + ServiceName: "google.ads.googleads.v17.services.AdGroupCriterionCustomizerService", HandlerType: (*AdGroupCriterionCustomizerServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -124,5 +129,5 @@ var AdGroupCriterionCustomizerService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/ad_group_criterion_customizer_service.proto", + Metadata: "google/ads/googleads/v17/services/ad_group_criterion_customizer_service.proto", } diff --git a/services/ad_group_criterion_label_service.pb.go b/services/ad_group_criterion_label_service.pb.go index f7d59822..785d8ea0 100644 --- a/services/ad_group_criterion_label_service.pb.go +++ b/services/ad_group_criterion_label_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_group_criterion_label_service.proto +// source: google/ads/googleads/v17/services/ad_group_criterion_label_service.proto package services @@ -38,7 +38,7 @@ const ( ) // Request message for -// [AdGroupCriterionLabelService.MutateAdGroupCriterionLabels][google.ads.googleads.v16.services.AdGroupCriterionLabelService.MutateAdGroupCriterionLabels]. +// [AdGroupCriterionLabelService.MutateAdGroupCriterionLabels][google.ads.googleads.v17.services.AdGroupCriterionLabelService.MutateAdGroupCriterionLabels]. type MutateAdGroupCriterionLabelsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -62,7 +62,7 @@ type MutateAdGroupCriterionLabelsRequest struct { func (x *MutateAdGroupCriterionLabelsRequest) Reset() { *x = MutateAdGroupCriterionLabelsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75,7 +75,7 @@ func (x *MutateAdGroupCriterionLabelsRequest) String() string { func (*MutateAdGroupCriterionLabelsRequest) ProtoMessage() {} func (x *MutateAdGroupCriterionLabelsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88,7 +88,7 @@ func (x *MutateAdGroupCriterionLabelsRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use MutateAdGroupCriterionLabelsRequest.ProtoReflect.Descriptor instead. func (*MutateAdGroupCriterionLabelsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAdGroupCriterionLabelsRequest) GetCustomerId() string { @@ -137,7 +137,7 @@ type AdGroupCriterionLabelOperation struct { func (x *AdGroupCriterionLabelOperation) Reset() { *x = AdGroupCriterionLabelOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -150,7 +150,7 @@ func (x *AdGroupCriterionLabelOperation) String() string { func (*AdGroupCriterionLabelOperation) ProtoMessage() {} func (x *AdGroupCriterionLabelOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -163,7 +163,7 @@ func (x *AdGroupCriterionLabelOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupCriterionLabelOperation.ProtoReflect.Descriptor instead. func (*AdGroupCriterionLabelOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_rawDescGZIP(), []int{1} } func (m *AdGroupCriterionLabelOperation) GetOperation() isAdGroupCriterionLabelOperation_Operation { @@ -227,7 +227,7 @@ type MutateAdGroupCriterionLabelsResponse struct { func (x *MutateAdGroupCriterionLabelsResponse) Reset() { *x = MutateAdGroupCriterionLabelsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -240,7 +240,7 @@ func (x *MutateAdGroupCriterionLabelsResponse) String() string { func (*MutateAdGroupCriterionLabelsResponse) ProtoMessage() {} func (x *MutateAdGroupCriterionLabelsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -253,7 +253,7 @@ func (x *MutateAdGroupCriterionLabelsResponse) ProtoReflect() protoreflect.Messa // Deprecated: Use MutateAdGroupCriterionLabelsResponse.ProtoReflect.Descriptor instead. func (*MutateAdGroupCriterionLabelsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAdGroupCriterionLabelsResponse) GetPartialFailureError() *status.Status { @@ -283,7 +283,7 @@ type MutateAdGroupCriterionLabelResult struct { func (x *MutateAdGroupCriterionLabelResult) Reset() { *x = MutateAdGroupCriterionLabelResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -296,7 +296,7 @@ func (x *MutateAdGroupCriterionLabelResult) String() string { func (*MutateAdGroupCriterionLabelResult) ProtoMessage() {} func (x *MutateAdGroupCriterionLabelResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -309,7 +309,7 @@ func (x *MutateAdGroupCriterionLabelResult) ProtoReflect() protoreflect.Message // Deprecated: Use MutateAdGroupCriterionLabelResult.ProtoReflect.Descriptor instead. func (*MutateAdGroupCriterionLabelResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAdGroupCriterionLabelResult) GetResourceName() string { @@ -319,18 +319,18 @@ func (x *MutateAdGroupCriterionLabelResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_ad_group_criterion_label_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x41, 0x67, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 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, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, @@ -349,7 +349,7 @@ var file_google_ads_googleads_v16_services_ad_group_criterion_label_service_prot 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x66, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x36, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, @@ -362,7 +362,7 @@ var file_google_ads_googleads_v16_services_ad_group_criterion_label_service_prot 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x53, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 0x72, + 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, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x4d, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, @@ -381,7 +381,7 @@ var file_google_ads_googleads_v16_services_ad_group_criterion_label_service_prot 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x5e, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x7d, 0x0a, 0x21, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, @@ -398,17 +398,17 @@ var file_google_ads_googleads_v16_services_ad_group_criterion_label_service_prot 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x60, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x41, 0x3a, 0x01, 0x2a, 0x22, 0x3c, 0x2f, 0x76, 0x31, - 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, + 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, @@ -418,52 +418,52 @@ var file_google_ads_googleads_v16_services_ad_group_criterion_label_service_prot 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x8d, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x21, 0x41, 0x64, 0x47, 0x72, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x21, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_rawDescData = file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_rawDesc + file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_rawDescData = file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_rawDescData + return file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_goTypes = []interface{}{ - (*MutateAdGroupCriterionLabelsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateAdGroupCriterionLabelsRequest - (*AdGroupCriterionLabelOperation)(nil), // 1: google.ads.googleads.v16.services.AdGroupCriterionLabelOperation - (*MutateAdGroupCriterionLabelsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateAdGroupCriterionLabelsResponse - (*MutateAdGroupCriterionLabelResult)(nil), // 3: google.ads.googleads.v16.services.MutateAdGroupCriterionLabelResult - (*resources.AdGroupCriterionLabel)(nil), // 4: google.ads.googleads.v16.resources.AdGroupCriterionLabel +var file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_goTypes = []interface{}{ + (*MutateAdGroupCriterionLabelsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateAdGroupCriterionLabelsRequest + (*AdGroupCriterionLabelOperation)(nil), // 1: google.ads.googleads.v17.services.AdGroupCriterionLabelOperation + (*MutateAdGroupCriterionLabelsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateAdGroupCriterionLabelsResponse + (*MutateAdGroupCriterionLabelResult)(nil), // 3: google.ads.googleads.v17.services.MutateAdGroupCriterionLabelResult + (*resources.AdGroupCriterionLabel)(nil), // 4: google.ads.googleads.v17.resources.AdGroupCriterionLabel (*status.Status)(nil), // 5: google.rpc.Status } -var file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateAdGroupCriterionLabelsRequest.operations:type_name -> google.ads.googleads.v16.services.AdGroupCriterionLabelOperation - 4, // 1: google.ads.googleads.v16.services.AdGroupCriterionLabelOperation.create:type_name -> google.ads.googleads.v16.resources.AdGroupCriterionLabel - 5, // 2: google.ads.googleads.v16.services.MutateAdGroupCriterionLabelsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 3: google.ads.googleads.v16.services.MutateAdGroupCriterionLabelsResponse.results:type_name -> google.ads.googleads.v16.services.MutateAdGroupCriterionLabelResult - 0, // 4: google.ads.googleads.v16.services.AdGroupCriterionLabelService.MutateAdGroupCriterionLabels:input_type -> google.ads.googleads.v16.services.MutateAdGroupCriterionLabelsRequest - 2, // 5: google.ads.googleads.v16.services.AdGroupCriterionLabelService.MutateAdGroupCriterionLabels:output_type -> google.ads.googleads.v16.services.MutateAdGroupCriterionLabelsResponse +var file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateAdGroupCriterionLabelsRequest.operations:type_name -> google.ads.googleads.v17.services.AdGroupCriterionLabelOperation + 4, // 1: google.ads.googleads.v17.services.AdGroupCriterionLabelOperation.create:type_name -> google.ads.googleads.v17.resources.AdGroupCriterionLabel + 5, // 2: google.ads.googleads.v17.services.MutateAdGroupCriterionLabelsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 3: google.ads.googleads.v17.services.MutateAdGroupCriterionLabelsResponse.results:type_name -> google.ads.googleads.v17.services.MutateAdGroupCriterionLabelResult + 0, // 4: google.ads.googleads.v17.services.AdGroupCriterionLabelService.MutateAdGroupCriterionLabels:input_type -> google.ads.googleads.v17.services.MutateAdGroupCriterionLabelsRequest + 2, // 5: google.ads.googleads.v17.services.AdGroupCriterionLabelService.MutateAdGroupCriterionLabels:output_type -> google.ads.googleads.v17.services.MutateAdGroupCriterionLabelsResponse 5, // [5:6] is the sub-list for method output_type 4, // [4:5] is the sub-list for method input_type 4, // [4:4] is the sub-list for extension type_name @@ -471,13 +471,13 @@ var file_google_ads_googleads_v16_services_ad_group_criterion_label_service_prot 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_init() } -func file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_init() { - if File_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_init() } +func file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_init() { + if File_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupCriterionLabelsRequest); i { case 0: return &v.state @@ -489,7 +489,7 @@ func file_google_ads_googleads_v16_services_ad_group_criterion_label_service_pro return nil } } - file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupCriterionLabelOperation); i { case 0: return &v.state @@ -501,7 +501,7 @@ func file_google_ads_googleads_v16_services_ad_group_criterion_label_service_pro return nil } } - file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupCriterionLabelsResponse); i { case 0: return &v.state @@ -513,7 +513,7 @@ func file_google_ads_googleads_v16_services_ad_group_criterion_label_service_pro return nil } } - file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupCriterionLabelResult); i { case 0: return &v.state @@ -526,7 +526,7 @@ func file_google_ads_googleads_v16_services_ad_group_criterion_label_service_pro } } } - file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*AdGroupCriterionLabelOperation_Create)(nil), (*AdGroupCriterionLabelOperation_Remove)(nil), } @@ -534,18 +534,18 @@ func file_google_ads_googleads_v16_services_ad_group_criterion_label_service_pro out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto = out.File - file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto = out.File + file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_depIdxs = nil } diff --git a/services/ad_group_criterion_label_service_grpc.pb.go b/services/ad_group_criterion_label_service_grpc.pb.go index 5e5cf86c..bfd45691 100644 --- a/services/ad_group_criterion_label_service_grpc.pb.go +++ b/services/ad_group_criterion_label_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_group_criterion_label_service.proto +// source: google/ads/googleads/v17/services/ad_group_criterion_label_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - AdGroupCriterionLabelService_MutateAdGroupCriterionLabels_FullMethodName = "/google.ads.googleads.v16.services.AdGroupCriterionLabelService/MutateAdGroupCriterionLabels" + AdGroupCriterionLabelService_MutateAdGroupCriterionLabels_FullMethodName = "/google.ads.googleads.v17.services.AdGroupCriterionLabelService/MutateAdGroupCriterionLabels" ) // AdGroupCriterionLabelServiceClient is the client API for AdGroupCriterionLabelService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage labels on ad group criteria. type AdGroupCriterionLabelServiceClient interface { // Creates and removes ad group criterion labels. // Operation statuses are returned. @@ -65,8 +67,9 @@ func NewAdGroupCriterionLabelServiceClient(cc grpc.ClientConnInterface) AdGroupC } func (c *adGroupCriterionLabelServiceClient) MutateAdGroupCriterionLabels(ctx context.Context, in *MutateAdGroupCriterionLabelsRequest, opts ...grpc.CallOption) (*MutateAdGroupCriterionLabelsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateAdGroupCriterionLabelsResponse) - err := c.cc.Invoke(ctx, AdGroupCriterionLabelService_MutateAdGroupCriterionLabels_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AdGroupCriterionLabelService_MutateAdGroupCriterionLabels_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -76,6 +79,8 @@ func (c *adGroupCriterionLabelServiceClient) MutateAdGroupCriterionLabels(ctx co // AdGroupCriterionLabelServiceServer is the server API for AdGroupCriterionLabelService service. // All implementations must embed UnimplementedAdGroupCriterionLabelServiceServer // for forward compatibility +// +// Service to manage labels on ad group criteria. type AdGroupCriterionLabelServiceServer interface { // Creates and removes ad group criterion labels. // Operation statuses are returned. @@ -137,7 +142,7 @@ func _AdGroupCriterionLabelService_MutateAdGroupCriterionLabels_Handler(srv inte // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var AdGroupCriterionLabelService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.AdGroupCriterionLabelService", + ServiceName: "google.ads.googleads.v17.services.AdGroupCriterionLabelService", HandlerType: (*AdGroupCriterionLabelServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -146,5 +151,5 @@ var AdGroupCriterionLabelService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/ad_group_criterion_label_service.proto", + Metadata: "google/ads/googleads/v17/services/ad_group_criterion_label_service.proto", } diff --git a/services/ad_group_criterion_service.pb.go b/services/ad_group_criterion_service.pb.go index eff7917f..b00d4e21 100644 --- a/services/ad_group_criterion_service.pb.go +++ b/services/ad_group_criterion_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_group_criterion_service.proto +// source: google/ads/googleads/v17/services/ad_group_criterion_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [AdGroupCriterionService.MutateAdGroupCriteria][google.ads.googleads.v16.services.AdGroupCriterionService.MutateAdGroupCriteria]. +// [AdGroupCriterionService.MutateAdGroupCriteria][google.ads.googleads.v17.services.AdGroupCriterionService.MutateAdGroupCriteria]. type MutateAdGroupCriteriaRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -61,13 +61,13 @@ type MutateAdGroupCriteriaRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateAdGroupCriteriaRequest) Reset() { *x = MutateAdGroupCriteriaRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80,7 +80,7 @@ func (x *MutateAdGroupCriteriaRequest) String() string { func (*MutateAdGroupCriteriaRequest) ProtoMessage() {} func (x *MutateAdGroupCriteriaRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93,7 +93,7 @@ func (x *MutateAdGroupCriteriaRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupCriteriaRequest.ProtoReflect.Descriptor instead. func (*MutateAdGroupCriteriaRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAdGroupCriteriaRequest) GetCustomerId() string { @@ -162,7 +162,7 @@ type AdGroupCriterionOperation struct { func (x *AdGroupCriterionOperation) Reset() { *x = AdGroupCriterionOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -175,7 +175,7 @@ func (x *AdGroupCriterionOperation) String() string { func (*AdGroupCriterionOperation) ProtoMessage() {} func (x *AdGroupCriterionOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -188,7 +188,7 @@ func (x *AdGroupCriterionOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupCriterionOperation.ProtoReflect.Descriptor instead. func (*AdGroupCriterionOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_rawDescGZIP(), []int{1} } func (x *AdGroupCriterionOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -280,7 +280,7 @@ type MutateAdGroupCriteriaResponse struct { func (x *MutateAdGroupCriteriaResponse) Reset() { *x = MutateAdGroupCriteriaResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -293,7 +293,7 @@ func (x *MutateAdGroupCriteriaResponse) String() string { func (*MutateAdGroupCriteriaResponse) ProtoMessage() {} func (x *MutateAdGroupCriteriaResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -306,7 +306,7 @@ func (x *MutateAdGroupCriteriaResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupCriteriaResponse.ProtoReflect.Descriptor instead. func (*MutateAdGroupCriteriaResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAdGroupCriteriaResponse) GetPartialFailureError() *status.Status { @@ -340,7 +340,7 @@ type MutateAdGroupCriterionResult struct { func (x *MutateAdGroupCriterionResult) Reset() { *x = MutateAdGroupCriterionResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -353,7 +353,7 @@ func (x *MutateAdGroupCriterionResult) String() string { func (*MutateAdGroupCriterionResult) ProtoMessage() {} func (x *MutateAdGroupCriterionResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_group_criterion_service_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 *MutateAdGroupCriterionResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupCriterionResult.ProtoReflect.Descriptor instead. func (*MutateAdGroupCriterionResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAdGroupCriterionResult) GetResourceName() string { @@ -383,24 +383,24 @@ func (x *MutateAdGroupCriterionResult) GetAdGroupCriterion() *resources.AdGroupC return nil } -var File_google_ads_googleads_v16_services_ad_group_criterion_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_ad_group_criterion_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_ad_group_criterion_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 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, 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, 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, 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, 0x72, 0x65, 0x73, 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, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, @@ -421,7 +421,7 @@ var file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_rawD 0x72, 0x49, 0x64, 0x12, 0x61, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, @@ -432,7 +432,7 @@ var file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_rawD 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, @@ -447,18 +447,18 @@ var file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_rawD 0x79, 0x5f, 0x76, 0x69, 0x6f, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x05, 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, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56, + 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, 0x12, 0x4e, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x4e, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x48, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2e, 0xfa, 0x41, 0x2b, 0x0a, 0x29, 0x67, 0x6f, 0x6f, @@ -475,7 +475,7 @@ var file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_rawD 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x59, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xd7, 0x01, 0x0a, 0x1c, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, @@ -488,7 +488,7 @@ var file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_rawD 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x62, 0x0a, 0x12, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 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, + 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, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x52, 0x10, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x32, 0xd8, 0x02, 0x0a, @@ -496,16 +496,16 @@ var file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_rawD 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xf5, 0x01, 0x0a, 0x15, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x12, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x59, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, - 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3a, 0x3a, 0x01, 0x2a, 0x22, 0x35, 0x2f, 0x76, 0x31, 0x36, 0x2f, + 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3a, 0x3a, 0x01, 0x2a, 0x22, 0x35, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, @@ -515,60 +515,60 @@ var file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_rawD 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x88, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1c, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, - 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, + 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_rawDescData = file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_rawDesc + file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_rawDescData = file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_rawDescData + return file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_goTypes = []interface{}{ - (*MutateAdGroupCriteriaRequest)(nil), // 0: google.ads.googleads.v16.services.MutateAdGroupCriteriaRequest - (*AdGroupCriterionOperation)(nil), // 1: google.ads.googleads.v16.services.AdGroupCriterionOperation - (*MutateAdGroupCriteriaResponse)(nil), // 2: google.ads.googleads.v16.services.MutateAdGroupCriteriaResponse - (*MutateAdGroupCriterionResult)(nil), // 3: google.ads.googleads.v16.services.MutateAdGroupCriterionResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_goTypes = []interface{}{ + (*MutateAdGroupCriteriaRequest)(nil), // 0: google.ads.googleads.v17.services.MutateAdGroupCriteriaRequest + (*AdGroupCriterionOperation)(nil), // 1: google.ads.googleads.v17.services.AdGroupCriterionOperation + (*MutateAdGroupCriteriaResponse)(nil), // 2: google.ads.googleads.v17.services.MutateAdGroupCriteriaResponse + (*MutateAdGroupCriterionResult)(nil), // 3: google.ads.googleads.v17.services.MutateAdGroupCriterionResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*common.PolicyViolationKey)(nil), // 6: google.ads.googleads.v16.common.PolicyViolationKey - (*resources.AdGroupCriterion)(nil), // 7: google.ads.googleads.v16.resources.AdGroupCriterion + (*common.PolicyViolationKey)(nil), // 6: google.ads.googleads.v17.common.PolicyViolationKey + (*resources.AdGroupCriterion)(nil), // 7: google.ads.googleads.v17.resources.AdGroupCriterion (*status.Status)(nil), // 8: google.rpc.Status } -var file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateAdGroupCriteriaRequest.operations:type_name -> google.ads.googleads.v16.services.AdGroupCriterionOperation - 4, // 1: google.ads.googleads.v16.services.MutateAdGroupCriteriaRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.AdGroupCriterionOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.AdGroupCriterionOperation.exempt_policy_violation_keys:type_name -> google.ads.googleads.v16.common.PolicyViolationKey - 7, // 4: google.ads.googleads.v16.services.AdGroupCriterionOperation.create:type_name -> google.ads.googleads.v16.resources.AdGroupCriterion - 7, // 5: google.ads.googleads.v16.services.AdGroupCriterionOperation.update:type_name -> google.ads.googleads.v16.resources.AdGroupCriterion - 8, // 6: google.ads.googleads.v16.services.MutateAdGroupCriteriaResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 7: google.ads.googleads.v16.services.MutateAdGroupCriteriaResponse.results:type_name -> google.ads.googleads.v16.services.MutateAdGroupCriterionResult - 7, // 8: google.ads.googleads.v16.services.MutateAdGroupCriterionResult.ad_group_criterion:type_name -> google.ads.googleads.v16.resources.AdGroupCriterion - 0, // 9: google.ads.googleads.v16.services.AdGroupCriterionService.MutateAdGroupCriteria:input_type -> google.ads.googleads.v16.services.MutateAdGroupCriteriaRequest - 2, // 10: google.ads.googleads.v16.services.AdGroupCriterionService.MutateAdGroupCriteria:output_type -> google.ads.googleads.v16.services.MutateAdGroupCriteriaResponse +var file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateAdGroupCriteriaRequest.operations:type_name -> google.ads.googleads.v17.services.AdGroupCriterionOperation + 4, // 1: google.ads.googleads.v17.services.MutateAdGroupCriteriaRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.AdGroupCriterionOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.AdGroupCriterionOperation.exempt_policy_violation_keys:type_name -> google.ads.googleads.v17.common.PolicyViolationKey + 7, // 4: google.ads.googleads.v17.services.AdGroupCriterionOperation.create:type_name -> google.ads.googleads.v17.resources.AdGroupCriterion + 7, // 5: google.ads.googleads.v17.services.AdGroupCriterionOperation.update:type_name -> google.ads.googleads.v17.resources.AdGroupCriterion + 8, // 6: google.ads.googleads.v17.services.MutateAdGroupCriteriaResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 7: google.ads.googleads.v17.services.MutateAdGroupCriteriaResponse.results:type_name -> google.ads.googleads.v17.services.MutateAdGroupCriterionResult + 7, // 8: google.ads.googleads.v17.services.MutateAdGroupCriterionResult.ad_group_criterion:type_name -> google.ads.googleads.v17.resources.AdGroupCriterion + 0, // 9: google.ads.googleads.v17.services.AdGroupCriterionService.MutateAdGroupCriteria:input_type -> google.ads.googleads.v17.services.MutateAdGroupCriteriaRequest + 2, // 10: google.ads.googleads.v17.services.AdGroupCriterionService.MutateAdGroupCriteria:output_type -> google.ads.googleads.v17.services.MutateAdGroupCriteriaResponse 10, // [10:11] is the sub-list for method output_type 9, // [9:10] is the sub-list for method input_type 9, // [9:9] is the sub-list for extension type_name @@ -576,13 +576,13 @@ var file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_depI 0, // [0:9] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_init() } -func file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_init() { - if File_google_ads_googleads_v16_services_ad_group_criterion_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_init() } +func file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_init() { + if File_google_ads_googleads_v17_services_ad_group_criterion_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupCriteriaRequest); i { case 0: return &v.state @@ -594,7 +594,7 @@ func file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_ini return nil } } - file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupCriterionOperation); i { case 0: return &v.state @@ -606,7 +606,7 @@ func file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_ini return nil } } - file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupCriteriaResponse); i { case 0: return &v.state @@ -618,7 +618,7 @@ func file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_ini return nil } } - file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupCriterionResult); i { case 0: return &v.state @@ -631,7 +631,7 @@ func file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_ini } } } - file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*AdGroupCriterionOperation_Create)(nil), (*AdGroupCriterionOperation_Update)(nil), (*AdGroupCriterionOperation_Remove)(nil), @@ -640,18 +640,18 @@ func file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_ini out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_ad_group_criterion_service_proto = out.File - file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_ad_group_criterion_service_proto = out.File + file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_depIdxs = nil } diff --git a/services/ad_group_criterion_service_grpc.pb.go b/services/ad_group_criterion_service_grpc.pb.go index 6b7f7bae..1f954b40 100644 --- a/services/ad_group_criterion_service_grpc.pb.go +++ b/services/ad_group_criterion_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_group_criterion_service.proto +// source: google/ads/googleads/v17/services/ad_group_criterion_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - AdGroupCriterionService_MutateAdGroupCriteria_FullMethodName = "/google.ads.googleads.v16.services.AdGroupCriterionService/MutateAdGroupCriteria" + AdGroupCriterionService_MutateAdGroupCriteria_FullMethodName = "/google.ads.googleads.v17.services.AdGroupCriterionService/MutateAdGroupCriteria" ) // AdGroupCriterionServiceClient is the client API for AdGroupCriterionService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage ad group criteria. type AdGroupCriterionServiceClient interface { // Creates, updates, or removes criteria. Operation statuses are returned. // @@ -89,8 +91,9 @@ func NewAdGroupCriterionServiceClient(cc grpc.ClientConnInterface) AdGroupCriter } func (c *adGroupCriterionServiceClient) MutateAdGroupCriteria(ctx context.Context, in *MutateAdGroupCriteriaRequest, opts ...grpc.CallOption) (*MutateAdGroupCriteriaResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateAdGroupCriteriaResponse) - err := c.cc.Invoke(ctx, AdGroupCriterionService_MutateAdGroupCriteria_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AdGroupCriterionService_MutateAdGroupCriteria_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -100,6 +103,8 @@ func (c *adGroupCriterionServiceClient) MutateAdGroupCriteria(ctx context.Contex // AdGroupCriterionServiceServer is the server API for AdGroupCriterionService service. // All implementations must embed UnimplementedAdGroupCriterionServiceServer // for forward compatibility +// +// Service to manage ad group criteria. type AdGroupCriterionServiceServer interface { // Creates, updates, or removes criteria. Operation statuses are returned. // @@ -185,7 +190,7 @@ func _AdGroupCriterionService_MutateAdGroupCriteria_Handler(srv interface{}, ctx // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var AdGroupCriterionService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.AdGroupCriterionService", + ServiceName: "google.ads.googleads.v17.services.AdGroupCriterionService", HandlerType: (*AdGroupCriterionServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -194,5 +199,5 @@ var AdGroupCriterionService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/ad_group_criterion_service.proto", + Metadata: "google/ads/googleads/v17/services/ad_group_criterion_service.proto", } diff --git a/services/ad_group_customizer_service.pb.go b/services/ad_group_customizer_service.pb.go index 9bebf32a..dc0968d4 100644 --- a/services/ad_group_customizer_service.pb.go +++ b/services/ad_group_customizer_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_group_customizer_service.proto +// source: google/ads/googleads/v17/services/ad_group_customizer_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [AdGroupCustomizerService.MutateAdGroupCustomizers][google.ads.googleads.v16.services.AdGroupCustomizerService.MutateAdGroupCustomizers]. +// [AdGroupCustomizerService.MutateAdGroupCustomizers][google.ads.googleads.v17.services.AdGroupCustomizerService.MutateAdGroupCustomizers]. type MutateAdGroupCustomizersRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -61,13 +61,13 @@ type MutateAdGroupCustomizersRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateAdGroupCustomizersRequest) Reset() { *x = MutateAdGroupCustomizersRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80,7 +80,7 @@ func (x *MutateAdGroupCustomizersRequest) String() string { func (*MutateAdGroupCustomizersRequest) ProtoMessage() {} func (x *MutateAdGroupCustomizersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93,7 +93,7 @@ func (x *MutateAdGroupCustomizersRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupCustomizersRequest.ProtoReflect.Descriptor instead. func (*MutateAdGroupCustomizersRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAdGroupCustomizersRequest) GetCustomerId() string { @@ -149,7 +149,7 @@ type AdGroupCustomizerOperation struct { func (x *AdGroupCustomizerOperation) Reset() { *x = AdGroupCustomizerOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -162,7 +162,7 @@ func (x *AdGroupCustomizerOperation) String() string { func (*AdGroupCustomizerOperation) ProtoMessage() {} func (x *AdGroupCustomizerOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -175,7 +175,7 @@ func (x *AdGroupCustomizerOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupCustomizerOperation.ProtoReflect.Descriptor instead. func (*AdGroupCustomizerOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_rawDescGZIP(), []int{1} } func (m *AdGroupCustomizerOperation) GetOperation() isAdGroupCustomizerOperation_Operation { @@ -238,7 +238,7 @@ type MutateAdGroupCustomizersResponse struct { func (x *MutateAdGroupCustomizersResponse) Reset() { *x = MutateAdGroupCustomizersResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -251,7 +251,7 @@ func (x *MutateAdGroupCustomizersResponse) String() string { func (*MutateAdGroupCustomizersResponse) ProtoMessage() {} func (x *MutateAdGroupCustomizersResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -264,7 +264,7 @@ func (x *MutateAdGroupCustomizersResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupCustomizersResponse.ProtoReflect.Descriptor instead. func (*MutateAdGroupCustomizersResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAdGroupCustomizersResponse) GetResults() []*MutateAdGroupCustomizerResult { @@ -298,7 +298,7 @@ type MutateAdGroupCustomizerResult struct { func (x *MutateAdGroupCustomizerResult) Reset() { *x = MutateAdGroupCustomizerResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -311,7 +311,7 @@ func (x *MutateAdGroupCustomizerResult) String() string { func (*MutateAdGroupCustomizerResult) ProtoMessage() {} func (x *MutateAdGroupCustomizerResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -324,7 +324,7 @@ func (x *MutateAdGroupCustomizerResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupCustomizerResult.ProtoReflect.Descriptor instead. func (*MutateAdGroupCustomizerResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAdGroupCustomizerResult) GetResourceName() string { @@ -341,21 +341,21 @@ func (x *MutateAdGroupCustomizerResult) GetAdGroupCustomizer() *resources.AdGrou return nil } -var File_google_ads_googleads_v16_services_ad_group_customizer_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_ad_group_customizer_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_ad_group_customizer_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 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, 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, 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, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, @@ -374,7 +374,7 @@ var file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_raw 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x62, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, @@ -386,7 +386,7 @@ var file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_raw 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, @@ -395,7 +395,7 @@ var file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_raw 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4f, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 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, 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, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x49, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2f, 0xfa, 0x41, 0x2c, @@ -408,7 +408,7 @@ var file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_raw 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5a, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x46, 0x0a, 0x15, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, @@ -426,7 +426,7 @@ var file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_raw 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x65, 0x0a, 0x13, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 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, 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, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x52, 0x11, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x32, 0xe5, 0x02, 0x0a, 0x18, @@ -434,17 +434,17 @@ var file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_raw 0x72, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x81, 0x02, 0x0a, 0x18, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x73, 0x12, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5c, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3d, 0x3a, - 0x01, 0x2a, 0x22, 0x38, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x01, 0x2a, 0x22, 0x38, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, @@ -454,55 +454,55 @@ var file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_raw 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x89, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1d, 0x41, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1d, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_rawDescData = file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_rawDesc + file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_rawDescData = file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_rawDescData + return file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_goTypes = []interface{}{ - (*MutateAdGroupCustomizersRequest)(nil), // 0: google.ads.googleads.v16.services.MutateAdGroupCustomizersRequest - (*AdGroupCustomizerOperation)(nil), // 1: google.ads.googleads.v16.services.AdGroupCustomizerOperation - (*MutateAdGroupCustomizersResponse)(nil), // 2: google.ads.googleads.v16.services.MutateAdGroupCustomizersResponse - (*MutateAdGroupCustomizerResult)(nil), // 3: google.ads.googleads.v16.services.MutateAdGroupCustomizerResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - (*resources.AdGroupCustomizer)(nil), // 5: google.ads.googleads.v16.resources.AdGroupCustomizer +var file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_goTypes = []interface{}{ + (*MutateAdGroupCustomizersRequest)(nil), // 0: google.ads.googleads.v17.services.MutateAdGroupCustomizersRequest + (*AdGroupCustomizerOperation)(nil), // 1: google.ads.googleads.v17.services.AdGroupCustomizerOperation + (*MutateAdGroupCustomizersResponse)(nil), // 2: google.ads.googleads.v17.services.MutateAdGroupCustomizersResponse + (*MutateAdGroupCustomizerResult)(nil), // 3: google.ads.googleads.v17.services.MutateAdGroupCustomizerResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + (*resources.AdGroupCustomizer)(nil), // 5: google.ads.googleads.v17.resources.AdGroupCustomizer (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateAdGroupCustomizersRequest.operations:type_name -> google.ads.googleads.v16.services.AdGroupCustomizerOperation - 4, // 1: google.ads.googleads.v16.services.MutateAdGroupCustomizersRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.AdGroupCustomizerOperation.create:type_name -> google.ads.googleads.v16.resources.AdGroupCustomizer - 3, // 3: google.ads.googleads.v16.services.MutateAdGroupCustomizersResponse.results:type_name -> google.ads.googleads.v16.services.MutateAdGroupCustomizerResult - 6, // 4: google.ads.googleads.v16.services.MutateAdGroupCustomizersResponse.partial_failure_error:type_name -> google.rpc.Status - 5, // 5: google.ads.googleads.v16.services.MutateAdGroupCustomizerResult.ad_group_customizer:type_name -> google.ads.googleads.v16.resources.AdGroupCustomizer - 0, // 6: google.ads.googleads.v16.services.AdGroupCustomizerService.MutateAdGroupCustomizers:input_type -> google.ads.googleads.v16.services.MutateAdGroupCustomizersRequest - 2, // 7: google.ads.googleads.v16.services.AdGroupCustomizerService.MutateAdGroupCustomizers:output_type -> google.ads.googleads.v16.services.MutateAdGroupCustomizersResponse +var file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateAdGroupCustomizersRequest.operations:type_name -> google.ads.googleads.v17.services.AdGroupCustomizerOperation + 4, // 1: google.ads.googleads.v17.services.MutateAdGroupCustomizersRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.AdGroupCustomizerOperation.create:type_name -> google.ads.googleads.v17.resources.AdGroupCustomizer + 3, // 3: google.ads.googleads.v17.services.MutateAdGroupCustomizersResponse.results:type_name -> google.ads.googleads.v17.services.MutateAdGroupCustomizerResult + 6, // 4: google.ads.googleads.v17.services.MutateAdGroupCustomizersResponse.partial_failure_error:type_name -> google.rpc.Status + 5, // 5: google.ads.googleads.v17.services.MutateAdGroupCustomizerResult.ad_group_customizer:type_name -> google.ads.googleads.v17.resources.AdGroupCustomizer + 0, // 6: google.ads.googleads.v17.services.AdGroupCustomizerService.MutateAdGroupCustomizers:input_type -> google.ads.googleads.v17.services.MutateAdGroupCustomizersRequest + 2, // 7: google.ads.googleads.v17.services.AdGroupCustomizerService.MutateAdGroupCustomizers:output_type -> google.ads.googleads.v17.services.MutateAdGroupCustomizersResponse 7, // [7:8] is the sub-list for method output_type 6, // [6:7] is the sub-list for method input_type 6, // [6:6] is the sub-list for extension type_name @@ -510,13 +510,13 @@ var file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_dep 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_init() } -func file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_init() { - if File_google_ads_googleads_v16_services_ad_group_customizer_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_init() } +func file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_init() { + if File_google_ads_googleads_v17_services_ad_group_customizer_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupCustomizersRequest); i { case 0: return &v.state @@ -528,7 +528,7 @@ func file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_in return nil } } - file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupCustomizerOperation); i { case 0: return &v.state @@ -540,7 +540,7 @@ func file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_in return nil } } - file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupCustomizersResponse); i { case 0: return &v.state @@ -552,7 +552,7 @@ func file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_in return nil } } - file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupCustomizerResult); i { case 0: return &v.state @@ -565,7 +565,7 @@ func file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_in } } } - file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*AdGroupCustomizerOperation_Create)(nil), (*AdGroupCustomizerOperation_Remove)(nil), } @@ -573,18 +573,18 @@ func file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_in out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_ad_group_customizer_service_proto = out.File - file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_ad_group_customizer_service_proto = out.File + file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_depIdxs = nil } diff --git a/services/ad_group_customizer_service_grpc.pb.go b/services/ad_group_customizer_service_grpc.pb.go index f7cac21d..33a96523 100644 --- a/services/ad_group_customizer_service_grpc.pb.go +++ b/services/ad_group_customizer_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_group_customizer_service.proto +// source: google/ads/googleads/v17/services/ad_group_customizer_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - AdGroupCustomizerService_MutateAdGroupCustomizers_FullMethodName = "/google.ads.googleads.v16.services.AdGroupCustomizerService/MutateAdGroupCustomizers" + AdGroupCustomizerService_MutateAdGroupCustomizers_FullMethodName = "/google.ads.googleads.v17.services.AdGroupCustomizerService/MutateAdGroupCustomizers" ) // AdGroupCustomizerServiceClient is the client API for AdGroupCustomizerService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage ad group customizer type AdGroupCustomizerServiceClient interface { // Creates, updates or removes ad group customizers. Operation statuses are // returned. @@ -54,8 +56,9 @@ func NewAdGroupCustomizerServiceClient(cc grpc.ClientConnInterface) AdGroupCusto } func (c *adGroupCustomizerServiceClient) MutateAdGroupCustomizers(ctx context.Context, in *MutateAdGroupCustomizersRequest, opts ...grpc.CallOption) (*MutateAdGroupCustomizersResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateAdGroupCustomizersResponse) - err := c.cc.Invoke(ctx, AdGroupCustomizerService_MutateAdGroupCustomizers_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AdGroupCustomizerService_MutateAdGroupCustomizers_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -65,6 +68,8 @@ func (c *adGroupCustomizerServiceClient) MutateAdGroupCustomizers(ctx context.Co // AdGroupCustomizerServiceServer is the server API for AdGroupCustomizerService service. // All implementations must embed UnimplementedAdGroupCustomizerServiceServer // for forward compatibility +// +// Service to manage ad group customizer type AdGroupCustomizerServiceServer interface { // Creates, updates or removes ad group customizers. Operation statuses are // returned. @@ -115,7 +120,7 @@ func _AdGroupCustomizerService_MutateAdGroupCustomizers_Handler(srv interface{}, // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var AdGroupCustomizerService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.AdGroupCustomizerService", + ServiceName: "google.ads.googleads.v17.services.AdGroupCustomizerService", HandlerType: (*AdGroupCustomizerServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -124,5 +129,5 @@ var AdGroupCustomizerService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/ad_group_customizer_service.proto", + Metadata: "google/ads/googleads/v17/services/ad_group_customizer_service.proto", } diff --git a/services/ad_group_extension_setting_service.pb.go b/services/ad_group_extension_setting_service.pb.go index bac94068..5d9d0392 100644 --- a/services/ad_group_extension_setting_service.pb.go +++ b/services/ad_group_extension_setting_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_group_extension_setting_service.proto +// source: google/ads/googleads/v17/services/ad_group_extension_setting_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [AdGroupExtensionSettingService.MutateAdGroupExtensionSettings][google.ads.googleads.v16.services.AdGroupExtensionSettingService.MutateAdGroupExtensionSettings]. +// [AdGroupExtensionSettingService.MutateAdGroupExtensionSettings][google.ads.googleads.v17.services.AdGroupExtensionSettingService.MutateAdGroupExtensionSettings]. type MutateAdGroupExtensionSettingsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -65,7 +65,7 @@ type MutateAdGroupExtensionSettingsRequest struct { func (x *MutateAdGroupExtensionSettingsRequest) Reset() { *x = MutateAdGroupExtensionSettingsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *MutateAdGroupExtensionSettingsRequest) String() string { func (*MutateAdGroupExtensionSettingsRequest) ProtoMessage() {} func (x *MutateAdGroupExtensionSettingsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_ad_group_extension_setting_service_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 *MutateAdGroupExtensionSettingsRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use MutateAdGroupExtensionSettingsRequest.ProtoReflect.Descriptor instead. func (*MutateAdGroupExtensionSettingsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAdGroupExtensionSettingsRequest) GetCustomerId() string { @@ -132,7 +132,7 @@ type AdGroupExtensionSettingOperation struct { UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,4,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` // The mutate operation. // // Types that are assignable to Operation: @@ -146,7 +146,7 @@ type AdGroupExtensionSettingOperation struct { func (x *AdGroupExtensionSettingOperation) Reset() { *x = AdGroupExtensionSettingOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159,7 +159,7 @@ func (x *AdGroupExtensionSettingOperation) String() string { func (*AdGroupExtensionSettingOperation) ProtoMessage() {} func (x *AdGroupExtensionSettingOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -172,7 +172,7 @@ func (x *AdGroupExtensionSettingOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupExtensionSettingOperation.ProtoReflect.Descriptor instead. func (*AdGroupExtensionSettingOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_rawDescGZIP(), []int{1} } func (x *AdGroupExtensionSettingOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -265,7 +265,7 @@ type MutateAdGroupExtensionSettingsResponse struct { func (x *MutateAdGroupExtensionSettingsResponse) Reset() { *x = MutateAdGroupExtensionSettingsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -278,7 +278,7 @@ func (x *MutateAdGroupExtensionSettingsResponse) String() string { func (*MutateAdGroupExtensionSettingsResponse) ProtoMessage() {} func (x *MutateAdGroupExtensionSettingsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -291,7 +291,7 @@ func (x *MutateAdGroupExtensionSettingsResponse) ProtoReflect() protoreflect.Mes // Deprecated: Use MutateAdGroupExtensionSettingsResponse.ProtoReflect.Descriptor instead. func (*MutateAdGroupExtensionSettingsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAdGroupExtensionSettingsResponse) GetPartialFailureError() *status.Status { @@ -325,7 +325,7 @@ type MutateAdGroupExtensionSettingResult struct { func (x *MutateAdGroupExtensionSettingResult) Reset() { *x = MutateAdGroupExtensionSettingResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -338,7 +338,7 @@ func (x *MutateAdGroupExtensionSettingResult) String() string { func (*MutateAdGroupExtensionSettingResult) ProtoMessage() {} func (x *MutateAdGroupExtensionSettingResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -351,7 +351,7 @@ func (x *MutateAdGroupExtensionSettingResult) ProtoReflect() protoreflect.Messag // Deprecated: Use MutateAdGroupExtensionSettingResult.ProtoReflect.Descriptor instead. func (*MutateAdGroupExtensionSettingResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAdGroupExtensionSettingResult) GetResourceName() string { @@ -368,22 +368,22 @@ func (x *MutateAdGroupExtensionSettingResult) GetAdGroupExtensionSetting() *reso return nil } -var File_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_ad_group_extension_setting_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, + 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, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, @@ -404,7 +404,7 @@ var file_google_ads_googleads_v16_services_ad_group_extension_setting_service_pr 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x68, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, @@ -423,19 +423,19 @@ var file_google_ads_googleads_v16_services_ad_group_extension_setting_service_pr 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x55, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x55, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 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, 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, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x4f, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, @@ -454,7 +454,7 @@ var file_google_ads_googleads_v16_services_ad_group_extension_setting_service_pr 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x60, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xfb, 0x01, 0x0a, 0x23, 0x4d, @@ -469,7 +469,7 @@ var file_google_ads_googleads_v16_services_ad_group_extension_setting_service_pr 0x0a, 0x1a, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 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, 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, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x17, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, @@ -479,17 +479,17 @@ var file_google_ads_googleads_v16_services_ad_group_extension_setting_service_pr 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x62, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, - 0xe4, 0x93, 0x02, 0x43, 0x3a, 0x01, 0x2a, 0x22, 0x3e, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, + 0xe4, 0x93, 0x02, 0x43, 0x3a, 0x01, 0x2a, 0x22, 0x3e, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, @@ -499,59 +499,59 @@ var file_google_ads_googleads_v16_services_ad_group_extension_setting_service_pr 0x77, 0x77, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x8f, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x23, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_rawDescData = file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_rawDesc + file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_rawDescData = file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_rawDescData + return file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_goTypes = []interface{}{ - (*MutateAdGroupExtensionSettingsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateAdGroupExtensionSettingsRequest - (*AdGroupExtensionSettingOperation)(nil), // 1: google.ads.googleads.v16.services.AdGroupExtensionSettingOperation - (*MutateAdGroupExtensionSettingsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateAdGroupExtensionSettingsResponse - (*MutateAdGroupExtensionSettingResult)(nil), // 3: google.ads.googleads.v16.services.MutateAdGroupExtensionSettingResult +var file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_goTypes = []interface{}{ + (*MutateAdGroupExtensionSettingsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateAdGroupExtensionSettingsRequest + (*AdGroupExtensionSettingOperation)(nil), // 1: google.ads.googleads.v17.services.AdGroupExtensionSettingOperation + (*MutateAdGroupExtensionSettingsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateAdGroupExtensionSettingsResponse + (*MutateAdGroupExtensionSettingResult)(nil), // 3: google.ads.googleads.v17.services.MutateAdGroupExtensionSettingResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 5: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - (*resources.AdGroupExtensionSetting)(nil), // 6: google.ads.googleads.v16.resources.AdGroupExtensionSetting + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 5: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + (*resources.AdGroupExtensionSetting)(nil), // 6: google.ads.googleads.v17.resources.AdGroupExtensionSetting (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateAdGroupExtensionSettingsRequest.operations:type_name -> google.ads.googleads.v16.services.AdGroupExtensionSettingOperation - 4, // 1: google.ads.googleads.v16.services.AdGroupExtensionSettingOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v16.services.AdGroupExtensionSettingOperation.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 6, // 3: google.ads.googleads.v16.services.AdGroupExtensionSettingOperation.create:type_name -> google.ads.googleads.v16.resources.AdGroupExtensionSetting - 6, // 4: google.ads.googleads.v16.services.AdGroupExtensionSettingOperation.update:type_name -> google.ads.googleads.v16.resources.AdGroupExtensionSetting - 7, // 5: google.ads.googleads.v16.services.MutateAdGroupExtensionSettingsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v16.services.MutateAdGroupExtensionSettingsResponse.results:type_name -> google.ads.googleads.v16.services.MutateAdGroupExtensionSettingResult - 6, // 7: google.ads.googleads.v16.services.MutateAdGroupExtensionSettingResult.ad_group_extension_setting:type_name -> google.ads.googleads.v16.resources.AdGroupExtensionSetting - 0, // 8: google.ads.googleads.v16.services.AdGroupExtensionSettingService.MutateAdGroupExtensionSettings:input_type -> google.ads.googleads.v16.services.MutateAdGroupExtensionSettingsRequest - 2, // 9: google.ads.googleads.v16.services.AdGroupExtensionSettingService.MutateAdGroupExtensionSettings:output_type -> google.ads.googleads.v16.services.MutateAdGroupExtensionSettingsResponse +var file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateAdGroupExtensionSettingsRequest.operations:type_name -> google.ads.googleads.v17.services.AdGroupExtensionSettingOperation + 4, // 1: google.ads.googleads.v17.services.AdGroupExtensionSettingOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v17.services.AdGroupExtensionSettingOperation.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 6, // 3: google.ads.googleads.v17.services.AdGroupExtensionSettingOperation.create:type_name -> google.ads.googleads.v17.resources.AdGroupExtensionSetting + 6, // 4: google.ads.googleads.v17.services.AdGroupExtensionSettingOperation.update:type_name -> google.ads.googleads.v17.resources.AdGroupExtensionSetting + 7, // 5: google.ads.googleads.v17.services.MutateAdGroupExtensionSettingsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v17.services.MutateAdGroupExtensionSettingsResponse.results:type_name -> google.ads.googleads.v17.services.MutateAdGroupExtensionSettingResult + 6, // 7: google.ads.googleads.v17.services.MutateAdGroupExtensionSettingResult.ad_group_extension_setting:type_name -> google.ads.googleads.v17.resources.AdGroupExtensionSetting + 0, // 8: google.ads.googleads.v17.services.AdGroupExtensionSettingService.MutateAdGroupExtensionSettings:input_type -> google.ads.googleads.v17.services.MutateAdGroupExtensionSettingsRequest + 2, // 9: google.ads.googleads.v17.services.AdGroupExtensionSettingService.MutateAdGroupExtensionSettings:output_type -> google.ads.googleads.v17.services.MutateAdGroupExtensionSettingsResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -559,13 +559,13 @@ var file_google_ads_googleads_v16_services_ad_group_extension_setting_service_pr 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_init() } -func file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_init() { - if File_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_init() } +func file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_init() { + if File_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupExtensionSettingsRequest); i { case 0: return &v.state @@ -577,7 +577,7 @@ func file_google_ads_googleads_v16_services_ad_group_extension_setting_service_p return nil } } - file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupExtensionSettingOperation); i { case 0: return &v.state @@ -589,7 +589,7 @@ func file_google_ads_googleads_v16_services_ad_group_extension_setting_service_p return nil } } - file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupExtensionSettingsResponse); i { case 0: return &v.state @@ -601,7 +601,7 @@ func file_google_ads_googleads_v16_services_ad_group_extension_setting_service_p return nil } } - file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupExtensionSettingResult); i { case 0: return &v.state @@ -614,7 +614,7 @@ func file_google_ads_googleads_v16_services_ad_group_extension_setting_service_p } } } - file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*AdGroupExtensionSettingOperation_Create)(nil), (*AdGroupExtensionSettingOperation_Update)(nil), (*AdGroupExtensionSettingOperation_Remove)(nil), @@ -623,18 +623,18 @@ func file_google_ads_googleads_v16_services_ad_group_extension_setting_service_p out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto = out.File - file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto = out.File + file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_depIdxs = nil } diff --git a/services/ad_group_extension_setting_service_grpc.pb.go b/services/ad_group_extension_setting_service_grpc.pb.go index abd38d16..bffb43fa 100644 --- a/services/ad_group_extension_setting_service_grpc.pb.go +++ b/services/ad_group_extension_setting_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_group_extension_setting_service.proto +// source: google/ads/googleads/v17/services/ad_group_extension_setting_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - AdGroupExtensionSettingService_MutateAdGroupExtensionSettings_FullMethodName = "/google.ads.googleads.v16.services.AdGroupExtensionSettingService/MutateAdGroupExtensionSettings" + AdGroupExtensionSettingService_MutateAdGroupExtensionSettings_FullMethodName = "/google.ads.googleads.v17.services.AdGroupExtensionSettingService/MutateAdGroupExtensionSettings" ) // AdGroupExtensionSettingServiceClient is the client API for AdGroupExtensionSettingService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage ad group extension settings. type AdGroupExtensionSettingServiceClient interface { // Creates, updates, or removes ad group extension settings. Operation // statuses are returned. @@ -85,8 +87,9 @@ func NewAdGroupExtensionSettingServiceClient(cc grpc.ClientConnInterface) AdGrou } func (c *adGroupExtensionSettingServiceClient) MutateAdGroupExtensionSettings(ctx context.Context, in *MutateAdGroupExtensionSettingsRequest, opts ...grpc.CallOption) (*MutateAdGroupExtensionSettingsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateAdGroupExtensionSettingsResponse) - err := c.cc.Invoke(ctx, AdGroupExtensionSettingService_MutateAdGroupExtensionSettings_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AdGroupExtensionSettingService_MutateAdGroupExtensionSettings_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -96,6 +99,8 @@ func (c *adGroupExtensionSettingServiceClient) MutateAdGroupExtensionSettings(ct // AdGroupExtensionSettingServiceServer is the server API for AdGroupExtensionSettingService service. // All implementations must embed UnimplementedAdGroupExtensionSettingServiceServer // for forward compatibility +// +// Service to manage ad group extension settings. type AdGroupExtensionSettingServiceServer interface { // Creates, updates, or removes ad group extension settings. Operation // statuses are returned. @@ -177,7 +182,7 @@ func _AdGroupExtensionSettingService_MutateAdGroupExtensionSettings_Handler(srv // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var AdGroupExtensionSettingService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.AdGroupExtensionSettingService", + ServiceName: "google.ads.googleads.v17.services.AdGroupExtensionSettingService", HandlerType: (*AdGroupExtensionSettingServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -186,5 +191,5 @@ var AdGroupExtensionSettingService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/ad_group_extension_setting_service.proto", + Metadata: "google/ads/googleads/v17/services/ad_group_extension_setting_service.proto", } diff --git a/services/ad_group_feed_service.pb.go b/services/ad_group_feed_service.pb.go index 535765d6..59e8dc7b 100644 --- a/services/ad_group_feed_service.pb.go +++ b/services/ad_group_feed_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_group_feed_service.proto +// source: google/ads/googleads/v17/services/ad_group_feed_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [AdGroupFeedService.MutateAdGroupFeeds][google.ads.googleads.v16.services.AdGroupFeedService.MutateAdGroupFeeds]. +// [AdGroupFeedService.MutateAdGroupFeeds][google.ads.googleads.v17.services.AdGroupFeedService.MutateAdGroupFeeds]. type MutateAdGroupFeedsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -60,13 +60,13 @@ type MutateAdGroupFeedsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateAdGroupFeedsRequest) Reset() { *x = MutateAdGroupFeedsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_feed_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_ad_group_feed_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateAdGroupFeedsRequest) String() string { func (*MutateAdGroupFeedsRequest) ProtoMessage() {} func (x *MutateAdGroupFeedsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_feed_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_ad_group_feed_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateAdGroupFeedsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupFeedsRequest.ProtoReflect.Descriptor instead. func (*MutateAdGroupFeedsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_feed_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_ad_group_feed_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAdGroupFeedsRequest) GetCustomerId() string { @@ -151,7 +151,7 @@ type AdGroupFeedOperation struct { func (x *AdGroupFeedOperation) Reset() { *x = AdGroupFeedOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_feed_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_group_feed_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164,7 +164,7 @@ func (x *AdGroupFeedOperation) String() string { func (*AdGroupFeedOperation) ProtoMessage() {} func (x *AdGroupFeedOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_feed_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_group_feed_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177,7 +177,7 @@ func (x *AdGroupFeedOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupFeedOperation.ProtoReflect.Descriptor instead. func (*AdGroupFeedOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_feed_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_ad_group_feed_service_proto_rawDescGZIP(), []int{1} } func (x *AdGroupFeedOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -262,7 +262,7 @@ type MutateAdGroupFeedsResponse struct { func (x *MutateAdGroupFeedsResponse) Reset() { *x = MutateAdGroupFeedsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_feed_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_group_feed_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -275,7 +275,7 @@ func (x *MutateAdGroupFeedsResponse) String() string { func (*MutateAdGroupFeedsResponse) ProtoMessage() {} func (x *MutateAdGroupFeedsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_feed_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_group_feed_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -288,7 +288,7 @@ func (x *MutateAdGroupFeedsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupFeedsResponse.ProtoReflect.Descriptor instead. func (*MutateAdGroupFeedsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_feed_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_ad_group_feed_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAdGroupFeedsResponse) GetPartialFailureError() *status.Status { @@ -322,7 +322,7 @@ type MutateAdGroupFeedResult struct { func (x *MutateAdGroupFeedResult) Reset() { *x = MutateAdGroupFeedResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_feed_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_group_feed_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -335,7 +335,7 @@ func (x *MutateAdGroupFeedResult) String() string { func (*MutateAdGroupFeedResult) ProtoMessage() {} func (x *MutateAdGroupFeedResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_feed_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_group_feed_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -348,7 +348,7 @@ func (x *MutateAdGroupFeedResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupFeedResult.ProtoReflect.Descriptor instead. func (*MutateAdGroupFeedResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_feed_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_ad_group_feed_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAdGroupFeedResult) GetResourceName() string { @@ -365,21 +365,21 @@ func (x *MutateAdGroupFeedResult) GetAdGroupFeed() *resources.AdGroupFeed { return nil } -var File_google_ads_googleads_v16_services_ad_group_feed_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_ad_group_feed_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_ad_group_feed_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_ad_group_feed_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 0x6f, 0x6f, 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 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, 0x66, 0x65, 0x65, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, @@ -399,7 +399,7 @@ var file_google_ads_googleads_v16_services_ad_group_feed_service_proto_rawDesc = 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5c, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 0x64, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, @@ -410,7 +410,7 @@ var file_google_ads_googleads_v16_services_ad_group_feed_service_proto_rawDesc = 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, @@ -423,12 +423,12 @@ var file_google_ads_googleads_v16_services_ad_group_feed_service_proto_rawDesc = 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x49, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 0x64, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x49, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x02, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 0x64, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x43, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x29, 0xfa, 0x41, 0x26, 0x0a, 0x24, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, @@ -444,7 +444,7 @@ var file_google_ads_googleads_v16_services_ad_group_feed_service_proto_rawDesc = 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x54, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 0x64, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xbe, 0x01, 0x0a, 0x17, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, @@ -456,23 +456,23 @@ var file_google_ads_googleads_v16_services_ad_group_feed_service_proto_rawDesc = 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x53, 0x0a, 0x0d, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x18, 0x02, 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, 0x72, + 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, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 0x64, 0x52, 0x0b, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 0x64, 0x32, 0xc7, 0x02, 0x0a, 0x12, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xe9, 0x01, 0x0a, 0x12, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 0x64, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x56, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x37, 0x3a, 0x01, 0x2a, - 0x22, 0x32, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, + 0x22, 0x32, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 0x64, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, @@ -481,58 +481,58 @@ var file_google_ads_googleads_v16_services_ad_group_feed_service_proto_rawDesc = 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x83, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x17, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_ad_group_feed_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_ad_group_feed_service_proto_rawDescData = file_google_ads_googleads_v16_services_ad_group_feed_service_proto_rawDesc + file_google_ads_googleads_v17_services_ad_group_feed_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_ad_group_feed_service_proto_rawDescData = file_google_ads_googleads_v17_services_ad_group_feed_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_ad_group_feed_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_ad_group_feed_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_ad_group_feed_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_ad_group_feed_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_ad_group_feed_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_ad_group_feed_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_ad_group_feed_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_ad_group_feed_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_ad_group_feed_service_proto_rawDescData + return file_google_ads_googleads_v17_services_ad_group_feed_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_ad_group_feed_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_ad_group_feed_service_proto_goTypes = []interface{}{ - (*MutateAdGroupFeedsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateAdGroupFeedsRequest - (*AdGroupFeedOperation)(nil), // 1: google.ads.googleads.v16.services.AdGroupFeedOperation - (*MutateAdGroupFeedsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateAdGroupFeedsResponse - (*MutateAdGroupFeedResult)(nil), // 3: google.ads.googleads.v16.services.MutateAdGroupFeedResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_ad_group_feed_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_ad_group_feed_service_proto_goTypes = []interface{}{ + (*MutateAdGroupFeedsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateAdGroupFeedsRequest + (*AdGroupFeedOperation)(nil), // 1: google.ads.googleads.v17.services.AdGroupFeedOperation + (*MutateAdGroupFeedsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateAdGroupFeedsResponse + (*MutateAdGroupFeedResult)(nil), // 3: google.ads.googleads.v17.services.MutateAdGroupFeedResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.AdGroupFeed)(nil), // 6: google.ads.googleads.v16.resources.AdGroupFeed + (*resources.AdGroupFeed)(nil), // 6: google.ads.googleads.v17.resources.AdGroupFeed (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_ad_group_feed_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateAdGroupFeedsRequest.operations:type_name -> google.ads.googleads.v16.services.AdGroupFeedOperation - 4, // 1: google.ads.googleads.v16.services.MutateAdGroupFeedsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.AdGroupFeedOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.AdGroupFeedOperation.create:type_name -> google.ads.googleads.v16.resources.AdGroupFeed - 6, // 4: google.ads.googleads.v16.services.AdGroupFeedOperation.update:type_name -> google.ads.googleads.v16.resources.AdGroupFeed - 7, // 5: google.ads.googleads.v16.services.MutateAdGroupFeedsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v16.services.MutateAdGroupFeedsResponse.results:type_name -> google.ads.googleads.v16.services.MutateAdGroupFeedResult - 6, // 7: google.ads.googleads.v16.services.MutateAdGroupFeedResult.ad_group_feed:type_name -> google.ads.googleads.v16.resources.AdGroupFeed - 0, // 8: google.ads.googleads.v16.services.AdGroupFeedService.MutateAdGroupFeeds:input_type -> google.ads.googleads.v16.services.MutateAdGroupFeedsRequest - 2, // 9: google.ads.googleads.v16.services.AdGroupFeedService.MutateAdGroupFeeds:output_type -> google.ads.googleads.v16.services.MutateAdGroupFeedsResponse +var file_google_ads_googleads_v17_services_ad_group_feed_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateAdGroupFeedsRequest.operations:type_name -> google.ads.googleads.v17.services.AdGroupFeedOperation + 4, // 1: google.ads.googleads.v17.services.MutateAdGroupFeedsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.AdGroupFeedOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.AdGroupFeedOperation.create:type_name -> google.ads.googleads.v17.resources.AdGroupFeed + 6, // 4: google.ads.googleads.v17.services.AdGroupFeedOperation.update:type_name -> google.ads.googleads.v17.resources.AdGroupFeed + 7, // 5: google.ads.googleads.v17.services.MutateAdGroupFeedsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v17.services.MutateAdGroupFeedsResponse.results:type_name -> google.ads.googleads.v17.services.MutateAdGroupFeedResult + 6, // 7: google.ads.googleads.v17.services.MutateAdGroupFeedResult.ad_group_feed:type_name -> google.ads.googleads.v17.resources.AdGroupFeed + 0, // 8: google.ads.googleads.v17.services.AdGroupFeedService.MutateAdGroupFeeds:input_type -> google.ads.googleads.v17.services.MutateAdGroupFeedsRequest + 2, // 9: google.ads.googleads.v17.services.AdGroupFeedService.MutateAdGroupFeeds:output_type -> google.ads.googleads.v17.services.MutateAdGroupFeedsResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -540,13 +540,13 @@ var file_google_ads_googleads_v16_services_ad_group_feed_service_proto_depIdxs = 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_ad_group_feed_service_proto_init() } -func file_google_ads_googleads_v16_services_ad_group_feed_service_proto_init() { - if File_google_ads_googleads_v16_services_ad_group_feed_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_ad_group_feed_service_proto_init() } +func file_google_ads_googleads_v17_services_ad_group_feed_service_proto_init() { + if File_google_ads_googleads_v17_services_ad_group_feed_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_ad_group_feed_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_feed_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupFeedsRequest); i { case 0: return &v.state @@ -558,7 +558,7 @@ func file_google_ads_googleads_v16_services_ad_group_feed_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_ad_group_feed_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_feed_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupFeedOperation); i { case 0: return &v.state @@ -570,7 +570,7 @@ func file_google_ads_googleads_v16_services_ad_group_feed_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_ad_group_feed_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_feed_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupFeedsResponse); i { case 0: return &v.state @@ -582,7 +582,7 @@ func file_google_ads_googleads_v16_services_ad_group_feed_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_ad_group_feed_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_feed_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupFeedResult); i { case 0: return &v.state @@ -595,7 +595,7 @@ func file_google_ads_googleads_v16_services_ad_group_feed_service_proto_init() { } } } - file_google_ads_googleads_v16_services_ad_group_feed_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_ad_group_feed_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*AdGroupFeedOperation_Create)(nil), (*AdGroupFeedOperation_Update)(nil), (*AdGroupFeedOperation_Remove)(nil), @@ -604,18 +604,18 @@ func file_google_ads_googleads_v16_services_ad_group_feed_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_ad_group_feed_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_ad_group_feed_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_ad_group_feed_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_ad_group_feed_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_ad_group_feed_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_ad_group_feed_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_ad_group_feed_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_ad_group_feed_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_ad_group_feed_service_proto = out.File - file_google_ads_googleads_v16_services_ad_group_feed_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_ad_group_feed_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_ad_group_feed_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_ad_group_feed_service_proto = out.File + file_google_ads_googleads_v17_services_ad_group_feed_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_ad_group_feed_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_ad_group_feed_service_proto_depIdxs = nil } diff --git a/services/ad_group_feed_service_grpc.pb.go b/services/ad_group_feed_service_grpc.pb.go index cb05f3d3..7e1571fd 100644 --- a/services/ad_group_feed_service_grpc.pb.go +++ b/services/ad_group_feed_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_group_feed_service.proto +// source: google/ads/googleads/v17/services/ad_group_feed_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - AdGroupFeedService_MutateAdGroupFeeds_FullMethodName = "/google.ads.googleads.v16.services.AdGroupFeedService/MutateAdGroupFeeds" + AdGroupFeedService_MutateAdGroupFeeds_FullMethodName = "/google.ads.googleads.v17.services.AdGroupFeedService/MutateAdGroupFeeds" ) // AdGroupFeedServiceClient is the client API for AdGroupFeedService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage ad group feeds. type AdGroupFeedServiceClient interface { // Creates, updates, or removes ad group feeds. Operation statuses are // returned. @@ -79,8 +81,9 @@ func NewAdGroupFeedServiceClient(cc grpc.ClientConnInterface) AdGroupFeedService } func (c *adGroupFeedServiceClient) MutateAdGroupFeeds(ctx context.Context, in *MutateAdGroupFeedsRequest, opts ...grpc.CallOption) (*MutateAdGroupFeedsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateAdGroupFeedsResponse) - err := c.cc.Invoke(ctx, AdGroupFeedService_MutateAdGroupFeeds_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AdGroupFeedService_MutateAdGroupFeeds_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -90,6 +93,8 @@ func (c *adGroupFeedServiceClient) MutateAdGroupFeeds(ctx context.Context, in *M // AdGroupFeedServiceServer is the server API for AdGroupFeedService service. // All implementations must embed UnimplementedAdGroupFeedServiceServer // for forward compatibility +// +// Service to manage ad group feeds. type AdGroupFeedServiceServer interface { // Creates, updates, or removes ad group feeds. Operation statuses are // returned. @@ -164,7 +169,7 @@ func _AdGroupFeedService_MutateAdGroupFeeds_Handler(srv interface{}, ctx context // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var AdGroupFeedService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.AdGroupFeedService", + ServiceName: "google.ads.googleads.v17.services.AdGroupFeedService", HandlerType: (*AdGroupFeedServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -173,5 +178,5 @@ var AdGroupFeedService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/ad_group_feed_service.proto", + Metadata: "google/ads/googleads/v17/services/ad_group_feed_service.proto", } diff --git a/services/ad_group_label_service.pb.go b/services/ad_group_label_service.pb.go index 68478992..33f9c951 100644 --- a/services/ad_group_label_service.pb.go +++ b/services/ad_group_label_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_group_label_service.proto +// source: google/ads/googleads/v17/services/ad_group_label_service.proto package services @@ -38,7 +38,7 @@ const ( ) // Request message for -// [AdGroupLabelService.MutateAdGroupLabels][google.ads.googleads.v16.services.AdGroupLabelService.MutateAdGroupLabels]. +// [AdGroupLabelService.MutateAdGroupLabels][google.ads.googleads.v17.services.AdGroupLabelService.MutateAdGroupLabels]. type MutateAdGroupLabelsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -61,7 +61,7 @@ type MutateAdGroupLabelsRequest struct { func (x *MutateAdGroupLabelsRequest) Reset() { *x = MutateAdGroupLabelsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_label_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_ad_group_label_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74,7 +74,7 @@ func (x *MutateAdGroupLabelsRequest) String() string { func (*MutateAdGroupLabelsRequest) ProtoMessage() {} func (x *MutateAdGroupLabelsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_label_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_ad_group_label_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -87,7 +87,7 @@ func (x *MutateAdGroupLabelsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupLabelsRequest.ProtoReflect.Descriptor instead. func (*MutateAdGroupLabelsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_label_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_ad_group_label_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAdGroupLabelsRequest) GetCustomerId() string { @@ -136,7 +136,7 @@ type AdGroupLabelOperation struct { func (x *AdGroupLabelOperation) Reset() { *x = AdGroupLabelOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_label_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_group_label_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -149,7 +149,7 @@ func (x *AdGroupLabelOperation) String() string { func (*AdGroupLabelOperation) ProtoMessage() {} func (x *AdGroupLabelOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_label_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_group_label_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -162,7 +162,7 @@ func (x *AdGroupLabelOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupLabelOperation.ProtoReflect.Descriptor instead. func (*AdGroupLabelOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_label_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_ad_group_label_service_proto_rawDescGZIP(), []int{1} } func (m *AdGroupLabelOperation) GetOperation() isAdGroupLabelOperation_Operation { @@ -226,7 +226,7 @@ type MutateAdGroupLabelsResponse struct { func (x *MutateAdGroupLabelsResponse) Reset() { *x = MutateAdGroupLabelsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_label_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_group_label_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -239,7 +239,7 @@ func (x *MutateAdGroupLabelsResponse) String() string { func (*MutateAdGroupLabelsResponse) ProtoMessage() {} func (x *MutateAdGroupLabelsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_label_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_group_label_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -252,7 +252,7 @@ func (x *MutateAdGroupLabelsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupLabelsResponse.ProtoReflect.Descriptor instead. func (*MutateAdGroupLabelsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_label_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_ad_group_label_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAdGroupLabelsResponse) GetPartialFailureError() *status.Status { @@ -282,7 +282,7 @@ type MutateAdGroupLabelResult struct { func (x *MutateAdGroupLabelResult) Reset() { *x = MutateAdGroupLabelResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_label_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_group_label_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -295,7 +295,7 @@ func (x *MutateAdGroupLabelResult) String() string { func (*MutateAdGroupLabelResult) ProtoMessage() {} func (x *MutateAdGroupLabelResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_label_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_group_label_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -308,7 +308,7 @@ func (x *MutateAdGroupLabelResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupLabelResult.ProtoReflect.Descriptor instead. func (*MutateAdGroupLabelResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_label_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_ad_group_label_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAdGroupLabelResult) GetResourceName() string { @@ -318,17 +318,17 @@ func (x *MutateAdGroupLabelResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_ad_group_label_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_ad_group_label_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_ad_group_label_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_ad_group_label_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 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, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, @@ -346,7 +346,7 @@ var file_google_ads_googleads_v16_services_ad_group_label_service_proto_rawDesc 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5d, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, @@ -358,7 +358,7 @@ var file_google_ads_googleads_v16_services_ad_group_label_service_proto_rawDesc 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4a, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x44, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, @@ -375,7 +375,7 @@ var file_google_ads_googleads_v16_services_ad_group_label_service_proto_rawDesc 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x55, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x6b, 0x0a, 0x18, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, @@ -389,16 +389,16 @@ var file_google_ads_googleads_v16_services_ad_group_label_service_proto_rawDesc 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xed, 0x01, 0x0a, 0x13, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x57, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x38, 0x3a, - 0x01, 0x2a, 0x22, 0x33, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x01, 0x2a, 0x22, 0x33, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, @@ -407,52 +407,52 @@ var file_google_ads_googleads_v16_services_ad_group_label_service_proto_rawDesc 0x77, 0x77, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x84, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x18, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, + 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_ad_group_label_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_ad_group_label_service_proto_rawDescData = file_google_ads_googleads_v16_services_ad_group_label_service_proto_rawDesc + file_google_ads_googleads_v17_services_ad_group_label_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_ad_group_label_service_proto_rawDescData = file_google_ads_googleads_v17_services_ad_group_label_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_ad_group_label_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_ad_group_label_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_ad_group_label_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_ad_group_label_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_ad_group_label_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_ad_group_label_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_ad_group_label_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_ad_group_label_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_ad_group_label_service_proto_rawDescData + return file_google_ads_googleads_v17_services_ad_group_label_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_ad_group_label_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_ad_group_label_service_proto_goTypes = []interface{}{ - (*MutateAdGroupLabelsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateAdGroupLabelsRequest - (*AdGroupLabelOperation)(nil), // 1: google.ads.googleads.v16.services.AdGroupLabelOperation - (*MutateAdGroupLabelsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateAdGroupLabelsResponse - (*MutateAdGroupLabelResult)(nil), // 3: google.ads.googleads.v16.services.MutateAdGroupLabelResult - (*resources.AdGroupLabel)(nil), // 4: google.ads.googleads.v16.resources.AdGroupLabel +var file_google_ads_googleads_v17_services_ad_group_label_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_ad_group_label_service_proto_goTypes = []interface{}{ + (*MutateAdGroupLabelsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateAdGroupLabelsRequest + (*AdGroupLabelOperation)(nil), // 1: google.ads.googleads.v17.services.AdGroupLabelOperation + (*MutateAdGroupLabelsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateAdGroupLabelsResponse + (*MutateAdGroupLabelResult)(nil), // 3: google.ads.googleads.v17.services.MutateAdGroupLabelResult + (*resources.AdGroupLabel)(nil), // 4: google.ads.googleads.v17.resources.AdGroupLabel (*status.Status)(nil), // 5: google.rpc.Status } -var file_google_ads_googleads_v16_services_ad_group_label_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateAdGroupLabelsRequest.operations:type_name -> google.ads.googleads.v16.services.AdGroupLabelOperation - 4, // 1: google.ads.googleads.v16.services.AdGroupLabelOperation.create:type_name -> google.ads.googleads.v16.resources.AdGroupLabel - 5, // 2: google.ads.googleads.v16.services.MutateAdGroupLabelsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 3: google.ads.googleads.v16.services.MutateAdGroupLabelsResponse.results:type_name -> google.ads.googleads.v16.services.MutateAdGroupLabelResult - 0, // 4: google.ads.googleads.v16.services.AdGroupLabelService.MutateAdGroupLabels:input_type -> google.ads.googleads.v16.services.MutateAdGroupLabelsRequest - 2, // 5: google.ads.googleads.v16.services.AdGroupLabelService.MutateAdGroupLabels:output_type -> google.ads.googleads.v16.services.MutateAdGroupLabelsResponse +var file_google_ads_googleads_v17_services_ad_group_label_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateAdGroupLabelsRequest.operations:type_name -> google.ads.googleads.v17.services.AdGroupLabelOperation + 4, // 1: google.ads.googleads.v17.services.AdGroupLabelOperation.create:type_name -> google.ads.googleads.v17.resources.AdGroupLabel + 5, // 2: google.ads.googleads.v17.services.MutateAdGroupLabelsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 3: google.ads.googleads.v17.services.MutateAdGroupLabelsResponse.results:type_name -> google.ads.googleads.v17.services.MutateAdGroupLabelResult + 0, // 4: google.ads.googleads.v17.services.AdGroupLabelService.MutateAdGroupLabels:input_type -> google.ads.googleads.v17.services.MutateAdGroupLabelsRequest + 2, // 5: google.ads.googleads.v17.services.AdGroupLabelService.MutateAdGroupLabels:output_type -> google.ads.googleads.v17.services.MutateAdGroupLabelsResponse 5, // [5:6] is the sub-list for method output_type 4, // [4:5] is the sub-list for method input_type 4, // [4:4] is the sub-list for extension type_name @@ -460,13 +460,13 @@ var file_google_ads_googleads_v16_services_ad_group_label_service_proto_depIdxs 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_ad_group_label_service_proto_init() } -func file_google_ads_googleads_v16_services_ad_group_label_service_proto_init() { - if File_google_ads_googleads_v16_services_ad_group_label_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_ad_group_label_service_proto_init() } +func file_google_ads_googleads_v17_services_ad_group_label_service_proto_init() { + if File_google_ads_googleads_v17_services_ad_group_label_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_ad_group_label_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_label_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupLabelsRequest); i { case 0: return &v.state @@ -478,7 +478,7 @@ func file_google_ads_googleads_v16_services_ad_group_label_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_ad_group_label_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_label_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupLabelOperation); i { case 0: return &v.state @@ -490,7 +490,7 @@ func file_google_ads_googleads_v16_services_ad_group_label_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_ad_group_label_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_label_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupLabelsResponse); i { case 0: return &v.state @@ -502,7 +502,7 @@ func file_google_ads_googleads_v16_services_ad_group_label_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_ad_group_label_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_label_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupLabelResult); i { case 0: return &v.state @@ -515,7 +515,7 @@ func file_google_ads_googleads_v16_services_ad_group_label_service_proto_init() } } } - file_google_ads_googleads_v16_services_ad_group_label_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_ad_group_label_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*AdGroupLabelOperation_Create)(nil), (*AdGroupLabelOperation_Remove)(nil), } @@ -523,18 +523,18 @@ func file_google_ads_googleads_v16_services_ad_group_label_service_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_ad_group_label_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_ad_group_label_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_ad_group_label_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_ad_group_label_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_ad_group_label_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_ad_group_label_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_ad_group_label_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_ad_group_label_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_ad_group_label_service_proto = out.File - file_google_ads_googleads_v16_services_ad_group_label_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_ad_group_label_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_ad_group_label_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_ad_group_label_service_proto = out.File + file_google_ads_googleads_v17_services_ad_group_label_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_ad_group_label_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_ad_group_label_service_proto_depIdxs = nil } diff --git a/services/ad_group_label_service_grpc.pb.go b/services/ad_group_label_service_grpc.pb.go index 26c0c8a4..94b0a007 100644 --- a/services/ad_group_label_service_grpc.pb.go +++ b/services/ad_group_label_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_group_label_service.proto +// source: google/ads/googleads/v17/services/ad_group_label_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - AdGroupLabelService_MutateAdGroupLabels_FullMethodName = "/google.ads.googleads.v16.services.AdGroupLabelService/MutateAdGroupLabels" + AdGroupLabelService_MutateAdGroupLabels_FullMethodName = "/google.ads.googleads.v17.services.AdGroupLabelService/MutateAdGroupLabels" ) // AdGroupLabelServiceClient is the client API for AdGroupLabelService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage labels on ad groups. type AdGroupLabelServiceClient interface { // Creates and removes ad group labels. // Operation statuses are returned. @@ -68,8 +70,9 @@ func NewAdGroupLabelServiceClient(cc grpc.ClientConnInterface) AdGroupLabelServi } func (c *adGroupLabelServiceClient) MutateAdGroupLabels(ctx context.Context, in *MutateAdGroupLabelsRequest, opts ...grpc.CallOption) (*MutateAdGroupLabelsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateAdGroupLabelsResponse) - err := c.cc.Invoke(ctx, AdGroupLabelService_MutateAdGroupLabels_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AdGroupLabelService_MutateAdGroupLabels_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -79,6 +82,8 @@ func (c *adGroupLabelServiceClient) MutateAdGroupLabels(ctx context.Context, in // AdGroupLabelServiceServer is the server API for AdGroupLabelService service. // All implementations must embed UnimplementedAdGroupLabelServiceServer // for forward compatibility +// +// Service to manage labels on ad groups. type AdGroupLabelServiceServer interface { // Creates and removes ad group labels. // Operation statuses are returned. @@ -142,7 +147,7 @@ func _AdGroupLabelService_MutateAdGroupLabels_Handler(srv interface{}, ctx conte // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var AdGroupLabelService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.AdGroupLabelService", + ServiceName: "google.ads.googleads.v17.services.AdGroupLabelService", HandlerType: (*AdGroupLabelServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -151,5 +156,5 @@ var AdGroupLabelService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/ad_group_label_service.proto", + Metadata: "google/ads/googleads/v17/services/ad_group_label_service.proto", } diff --git a/services/ad_group_service.pb.go b/services/ad_group_service.pb.go index 0e185730..bcfcb908 100644 --- a/services/ad_group_service.pb.go +++ b/services/ad_group_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_group_service.proto +// source: google/ads/googleads/v17/services/ad_group_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [AdGroupService.MutateAdGroups][google.ads.googleads.v16.services.AdGroupService.MutateAdGroups]. +// [AdGroupService.MutateAdGroups][google.ads.googleads.v17.services.AdGroupService.MutateAdGroups]. type MutateAdGroupsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -60,13 +60,13 @@ type MutateAdGroupsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateAdGroupsRequest) Reset() { *x = MutateAdGroupsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_ad_group_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateAdGroupsRequest) String() string { func (*MutateAdGroupsRequest) ProtoMessage() {} func (x *MutateAdGroupsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_ad_group_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateAdGroupsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupsRequest.ProtoReflect.Descriptor instead. func (*MutateAdGroupsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_ad_group_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAdGroupsRequest) GetCustomerId() string { @@ -151,7 +151,7 @@ type AdGroupOperation struct { func (x *AdGroupOperation) Reset() { *x = AdGroupOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_group_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164,7 +164,7 @@ func (x *AdGroupOperation) String() string { func (*AdGroupOperation) ProtoMessage() {} func (x *AdGroupOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_group_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177,7 +177,7 @@ func (x *AdGroupOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupOperation.ProtoReflect.Descriptor instead. func (*AdGroupOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_ad_group_service_proto_rawDescGZIP(), []int{1} } func (x *AdGroupOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -261,7 +261,7 @@ type MutateAdGroupsResponse struct { func (x *MutateAdGroupsResponse) Reset() { *x = MutateAdGroupsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_group_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -274,7 +274,7 @@ func (x *MutateAdGroupsResponse) String() string { func (*MutateAdGroupsResponse) ProtoMessage() {} func (x *MutateAdGroupsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_group_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -287,7 +287,7 @@ func (x *MutateAdGroupsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupsResponse.ProtoReflect.Descriptor instead. func (*MutateAdGroupsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_ad_group_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAdGroupsResponse) GetPartialFailureError() *status.Status { @@ -320,7 +320,7 @@ type MutateAdGroupResult struct { func (x *MutateAdGroupResult) Reset() { *x = MutateAdGroupResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_group_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_group_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -333,7 +333,7 @@ func (x *MutateAdGroupResult) String() string { func (*MutateAdGroupResult) ProtoMessage() {} func (x *MutateAdGroupResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_group_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_group_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -346,7 +346,7 @@ func (x *MutateAdGroupResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupResult.ProtoReflect.Descriptor instead. func (*MutateAdGroupResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_group_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_ad_group_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAdGroupResult) GetResourceName() string { @@ -363,21 +363,21 @@ func (x *MutateAdGroupResult) GetAdGroup() *resources.AdGroup { return nil } -var File_google_ads_googleads_v16_services_ad_group_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_ad_group_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_ad_group_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_ad_group_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3a, 0x67, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, + 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, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x67, 0x6f, 0x6f, 0x67, @@ -396,7 +396,7 @@ var file_google_ads_googleads_v16_services_ad_group_service_proto_rawDesc = []by 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x58, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, @@ -407,7 +407,7 @@ var file_google_ads_googleads_v16_services_ad_group_service_proto_rawDesc = []by 0x6c, 0x79, 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, @@ -419,12 +419,12 @@ var file_google_ads_googleads_v16_services_ad_group_service_proto_rawDesc = []by 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x45, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, + 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, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x45, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x02, 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, 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, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x25, 0xfa, 0x41, 0x22, 0x0a, 0x20, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, @@ -439,7 +439,7 @@ var file_google_ads_googleads_v16_services_ad_group_service_proto_rawDesc = []by 0x13, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x50, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xa9, 0x01, 0x0a, 0x13, 0x4d, 0x75, 0x74, 0x61, 0x74, @@ -451,21 +451,21 @@ var file_google_ads_googleads_v16_services_ad_group_service_proto_rawDesc = []by 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x46, 0x0a, 0x08, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x02, 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, 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, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x07, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x32, 0xb3, 0x02, 0x0a, 0x0e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xd9, 0x01, 0x0a, 0x0e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x52, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x33, 0x3a, 0x01, - 0x2a, 0x22, 0x2e, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x2a, 0x22, 0x2e, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, @@ -474,58 +474,58 @@ var file_google_ads_googleads_v16_services_ad_group_service_proto_rawDesc = []by 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0xff, 0x01, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x13, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, + 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, + 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_ad_group_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_ad_group_service_proto_rawDescData = file_google_ads_googleads_v16_services_ad_group_service_proto_rawDesc + file_google_ads_googleads_v17_services_ad_group_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_ad_group_service_proto_rawDescData = file_google_ads_googleads_v17_services_ad_group_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_ad_group_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_ad_group_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_ad_group_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_ad_group_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_ad_group_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_ad_group_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_ad_group_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_ad_group_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_ad_group_service_proto_rawDescData + return file_google_ads_googleads_v17_services_ad_group_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_ad_group_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_ad_group_service_proto_goTypes = []interface{}{ - (*MutateAdGroupsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateAdGroupsRequest - (*AdGroupOperation)(nil), // 1: google.ads.googleads.v16.services.AdGroupOperation - (*MutateAdGroupsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateAdGroupsResponse - (*MutateAdGroupResult)(nil), // 3: google.ads.googleads.v16.services.MutateAdGroupResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_ad_group_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_ad_group_service_proto_goTypes = []interface{}{ + (*MutateAdGroupsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateAdGroupsRequest + (*AdGroupOperation)(nil), // 1: google.ads.googleads.v17.services.AdGroupOperation + (*MutateAdGroupsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateAdGroupsResponse + (*MutateAdGroupResult)(nil), // 3: google.ads.googleads.v17.services.MutateAdGroupResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.AdGroup)(nil), // 6: google.ads.googleads.v16.resources.AdGroup + (*resources.AdGroup)(nil), // 6: google.ads.googleads.v17.resources.AdGroup (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_ad_group_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateAdGroupsRequest.operations:type_name -> google.ads.googleads.v16.services.AdGroupOperation - 4, // 1: google.ads.googleads.v16.services.MutateAdGroupsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.AdGroupOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.AdGroupOperation.create:type_name -> google.ads.googleads.v16.resources.AdGroup - 6, // 4: google.ads.googleads.v16.services.AdGroupOperation.update:type_name -> google.ads.googleads.v16.resources.AdGroup - 7, // 5: google.ads.googleads.v16.services.MutateAdGroupsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v16.services.MutateAdGroupsResponse.results:type_name -> google.ads.googleads.v16.services.MutateAdGroupResult - 6, // 7: google.ads.googleads.v16.services.MutateAdGroupResult.ad_group:type_name -> google.ads.googleads.v16.resources.AdGroup - 0, // 8: google.ads.googleads.v16.services.AdGroupService.MutateAdGroups:input_type -> google.ads.googleads.v16.services.MutateAdGroupsRequest - 2, // 9: google.ads.googleads.v16.services.AdGroupService.MutateAdGroups:output_type -> google.ads.googleads.v16.services.MutateAdGroupsResponse +var file_google_ads_googleads_v17_services_ad_group_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateAdGroupsRequest.operations:type_name -> google.ads.googleads.v17.services.AdGroupOperation + 4, // 1: google.ads.googleads.v17.services.MutateAdGroupsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.AdGroupOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.AdGroupOperation.create:type_name -> google.ads.googleads.v17.resources.AdGroup + 6, // 4: google.ads.googleads.v17.services.AdGroupOperation.update:type_name -> google.ads.googleads.v17.resources.AdGroup + 7, // 5: google.ads.googleads.v17.services.MutateAdGroupsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v17.services.MutateAdGroupsResponse.results:type_name -> google.ads.googleads.v17.services.MutateAdGroupResult + 6, // 7: google.ads.googleads.v17.services.MutateAdGroupResult.ad_group:type_name -> google.ads.googleads.v17.resources.AdGroup + 0, // 8: google.ads.googleads.v17.services.AdGroupService.MutateAdGroups:input_type -> google.ads.googleads.v17.services.MutateAdGroupsRequest + 2, // 9: google.ads.googleads.v17.services.AdGroupService.MutateAdGroups:output_type -> google.ads.googleads.v17.services.MutateAdGroupsResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -533,13 +533,13 @@ var file_google_ads_googleads_v16_services_ad_group_service_proto_depIdxs = []in 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_ad_group_service_proto_init() } -func file_google_ads_googleads_v16_services_ad_group_service_proto_init() { - if File_google_ads_googleads_v16_services_ad_group_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_ad_group_service_proto_init() } +func file_google_ads_googleads_v17_services_ad_group_service_proto_init() { + if File_google_ads_googleads_v17_services_ad_group_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_ad_group_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupsRequest); i { case 0: return &v.state @@ -551,7 +551,7 @@ func file_google_ads_googleads_v16_services_ad_group_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_ad_group_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupOperation); i { case 0: return &v.state @@ -563,7 +563,7 @@ func file_google_ads_googleads_v16_services_ad_group_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_ad_group_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupsResponse); i { case 0: return &v.state @@ -575,7 +575,7 @@ func file_google_ads_googleads_v16_services_ad_group_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_ad_group_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_group_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdGroupResult); i { case 0: return &v.state @@ -588,7 +588,7 @@ func file_google_ads_googleads_v16_services_ad_group_service_proto_init() { } } } - file_google_ads_googleads_v16_services_ad_group_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_ad_group_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*AdGroupOperation_Create)(nil), (*AdGroupOperation_Update)(nil), (*AdGroupOperation_Remove)(nil), @@ -597,18 +597,18 @@ func file_google_ads_googleads_v16_services_ad_group_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_ad_group_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_ad_group_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_ad_group_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_ad_group_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_ad_group_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_ad_group_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_ad_group_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_ad_group_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_ad_group_service_proto = out.File - file_google_ads_googleads_v16_services_ad_group_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_ad_group_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_ad_group_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_ad_group_service_proto = out.File + file_google_ads_googleads_v17_services_ad_group_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_ad_group_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_ad_group_service_proto_depIdxs = nil } diff --git a/services/ad_group_service_grpc.pb.go b/services/ad_group_service_grpc.pb.go index f2ebc6ea..890d50e8 100644 --- a/services/ad_group_service_grpc.pb.go +++ b/services/ad_group_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_group_service.proto +// source: google/ads/googleads/v17/services/ad_group_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - AdGroupService_MutateAdGroups_FullMethodName = "/google.ads.googleads.v16.services.AdGroupService/MutateAdGroups" + AdGroupService_MutateAdGroups_FullMethodName = "/google.ads.googleads.v17.services.AdGroupService/MutateAdGroups" ) // AdGroupServiceClient is the client API for AdGroupService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage ad groups. type AdGroupServiceClient interface { // Creates, updates, or removes ad groups. Operation statuses are returned. // @@ -87,8 +89,9 @@ func NewAdGroupServiceClient(cc grpc.ClientConnInterface) AdGroupServiceClient { } func (c *adGroupServiceClient) MutateAdGroups(ctx context.Context, in *MutateAdGroupsRequest, opts ...grpc.CallOption) (*MutateAdGroupsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateAdGroupsResponse) - err := c.cc.Invoke(ctx, AdGroupService_MutateAdGroups_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AdGroupService_MutateAdGroups_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -98,6 +101,8 @@ func (c *adGroupServiceClient) MutateAdGroups(ctx context.Context, in *MutateAdG // AdGroupServiceServer is the server API for AdGroupService service. // All implementations must embed UnimplementedAdGroupServiceServer // for forward compatibility +// +// Service to manage ad groups. type AdGroupServiceServer interface { // Creates, updates, or removes ad groups. Operation statuses are returned. // @@ -180,7 +185,7 @@ func _AdGroupService_MutateAdGroups_Handler(srv interface{}, ctx context.Context // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var AdGroupService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.AdGroupService", + ServiceName: "google.ads.googleads.v17.services.AdGroupService", HandlerType: (*AdGroupServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -189,5 +194,5 @@ var AdGroupService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/ad_group_service.proto", + Metadata: "google/ads/googleads/v17/services/ad_group_service.proto", } diff --git a/services/ad_parameter_service.pb.go b/services/ad_parameter_service.pb.go index bd3ef7ff..3a031df7 100644 --- a/services/ad_parameter_service.pb.go +++ b/services/ad_parameter_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_parameter_service.proto +// source: google/ads/googleads/v17/services/ad_parameter_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [AdParameterService.MutateAdParameters][google.ads.googleads.v16.services.AdParameterService.MutateAdParameters] +// [AdParameterService.MutateAdParameters][google.ads.googleads.v17.services.AdParameterService.MutateAdParameters] type MutateAdParametersRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -60,13 +60,13 @@ type MutateAdParametersRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateAdParametersRequest) Reset() { *x = MutateAdParametersRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_parameter_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_ad_parameter_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateAdParametersRequest) String() string { func (*MutateAdParametersRequest) ProtoMessage() {} func (x *MutateAdParametersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_parameter_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_ad_parameter_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateAdParametersRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdParametersRequest.ProtoReflect.Descriptor instead. func (*MutateAdParametersRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_parameter_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_ad_parameter_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAdParametersRequest) GetCustomerId() string { @@ -151,7 +151,7 @@ type AdParameterOperation struct { func (x *AdParameterOperation) Reset() { *x = AdParameterOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_parameter_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_parameter_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164,7 +164,7 @@ func (x *AdParameterOperation) String() string { func (*AdParameterOperation) ProtoMessage() {} func (x *AdParameterOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_parameter_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_parameter_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177,7 +177,7 @@ func (x *AdParameterOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdParameterOperation.ProtoReflect.Descriptor instead. func (*AdParameterOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_parameter_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_ad_parameter_service_proto_rawDescGZIP(), []int{1} } func (x *AdParameterOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -262,7 +262,7 @@ type MutateAdParametersResponse struct { func (x *MutateAdParametersResponse) Reset() { *x = MutateAdParametersResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_parameter_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_parameter_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -275,7 +275,7 @@ func (x *MutateAdParametersResponse) String() string { func (*MutateAdParametersResponse) ProtoMessage() {} func (x *MutateAdParametersResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_parameter_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_parameter_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -288,7 +288,7 @@ func (x *MutateAdParametersResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdParametersResponse.ProtoReflect.Descriptor instead. func (*MutateAdParametersResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_parameter_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_ad_parameter_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAdParametersResponse) GetPartialFailureError() *status.Status { @@ -322,7 +322,7 @@ type MutateAdParameterResult struct { func (x *MutateAdParameterResult) Reset() { *x = MutateAdParameterResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_parameter_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_parameter_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -335,7 +335,7 @@ func (x *MutateAdParameterResult) String() string { func (*MutateAdParameterResult) ProtoMessage() {} func (x *MutateAdParameterResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_parameter_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_parameter_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -348,7 +348,7 @@ func (x *MutateAdParameterResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdParameterResult.ProtoReflect.Descriptor instead. func (*MutateAdParameterResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_parameter_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_ad_parameter_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAdParameterResult) GetResourceName() string { @@ -365,21 +365,21 @@ func (x *MutateAdParameterResult) GetAdParameter() *resources.AdParameter { return nil } -var File_google_ads_googleads_v16_services_ad_parameter_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_ad_parameter_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_ad_parameter_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_ad_parameter_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 0x6f, 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, @@ -399,7 +399,7 @@ var file_google_ads_googleads_v16_services_ad_parameter_service_proto_rawDesc = 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5c, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, @@ -410,7 +410,7 @@ var file_google_ads_googleads_v16_services_ad_parameter_service_proto_rawDesc = 0x6c, 0x79, 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, @@ -423,11 +423,11 @@ var file_google_ads_googleads_v16_services_ad_parameter_service_proto_rawDesc = 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x49, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x49, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x02, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x43, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, @@ -444,7 +444,7 @@ var file_google_ads_googleads_v16_services_ad_parameter_service_proto_rawDesc = 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x54, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xbd, 0x01, 0x0a, 0x17, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, @@ -456,23 +456,23 @@ var file_google_ads_googleads_v16_services_ad_parameter_service_proto_rawDesc = 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x52, 0x0a, 0x0c, 0x61, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x18, 0x02, 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, 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, 0x2e, 0x41, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x52, 0x0b, 0x61, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x32, 0xc7, 0x02, 0x0a, 0x12, 0x41, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xe9, 0x01, 0x0a, 0x12, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x56, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x37, 0x3a, 0x01, 0x2a, 0x22, 0x32, 0x2f, - 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, + 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x61, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, @@ -481,58 +481,58 @@ var file_google_ads_googleads_v16_services_ad_parameter_service_proto_rawDesc = 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x83, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x17, 0x41, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, + 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_ad_parameter_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_ad_parameter_service_proto_rawDescData = file_google_ads_googleads_v16_services_ad_parameter_service_proto_rawDesc + file_google_ads_googleads_v17_services_ad_parameter_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_ad_parameter_service_proto_rawDescData = file_google_ads_googleads_v17_services_ad_parameter_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_ad_parameter_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_ad_parameter_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_ad_parameter_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_ad_parameter_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_ad_parameter_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_ad_parameter_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_ad_parameter_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_ad_parameter_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_ad_parameter_service_proto_rawDescData + return file_google_ads_googleads_v17_services_ad_parameter_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_ad_parameter_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_ad_parameter_service_proto_goTypes = []interface{}{ - (*MutateAdParametersRequest)(nil), // 0: google.ads.googleads.v16.services.MutateAdParametersRequest - (*AdParameterOperation)(nil), // 1: google.ads.googleads.v16.services.AdParameterOperation - (*MutateAdParametersResponse)(nil), // 2: google.ads.googleads.v16.services.MutateAdParametersResponse - (*MutateAdParameterResult)(nil), // 3: google.ads.googleads.v16.services.MutateAdParameterResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_ad_parameter_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_ad_parameter_service_proto_goTypes = []interface{}{ + (*MutateAdParametersRequest)(nil), // 0: google.ads.googleads.v17.services.MutateAdParametersRequest + (*AdParameterOperation)(nil), // 1: google.ads.googleads.v17.services.AdParameterOperation + (*MutateAdParametersResponse)(nil), // 2: google.ads.googleads.v17.services.MutateAdParametersResponse + (*MutateAdParameterResult)(nil), // 3: google.ads.googleads.v17.services.MutateAdParameterResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.AdParameter)(nil), // 6: google.ads.googleads.v16.resources.AdParameter + (*resources.AdParameter)(nil), // 6: google.ads.googleads.v17.resources.AdParameter (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_ad_parameter_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateAdParametersRequest.operations:type_name -> google.ads.googleads.v16.services.AdParameterOperation - 4, // 1: google.ads.googleads.v16.services.MutateAdParametersRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.AdParameterOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.AdParameterOperation.create:type_name -> google.ads.googleads.v16.resources.AdParameter - 6, // 4: google.ads.googleads.v16.services.AdParameterOperation.update:type_name -> google.ads.googleads.v16.resources.AdParameter - 7, // 5: google.ads.googleads.v16.services.MutateAdParametersResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v16.services.MutateAdParametersResponse.results:type_name -> google.ads.googleads.v16.services.MutateAdParameterResult - 6, // 7: google.ads.googleads.v16.services.MutateAdParameterResult.ad_parameter:type_name -> google.ads.googleads.v16.resources.AdParameter - 0, // 8: google.ads.googleads.v16.services.AdParameterService.MutateAdParameters:input_type -> google.ads.googleads.v16.services.MutateAdParametersRequest - 2, // 9: google.ads.googleads.v16.services.AdParameterService.MutateAdParameters:output_type -> google.ads.googleads.v16.services.MutateAdParametersResponse +var file_google_ads_googleads_v17_services_ad_parameter_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateAdParametersRequest.operations:type_name -> google.ads.googleads.v17.services.AdParameterOperation + 4, // 1: google.ads.googleads.v17.services.MutateAdParametersRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.AdParameterOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.AdParameterOperation.create:type_name -> google.ads.googleads.v17.resources.AdParameter + 6, // 4: google.ads.googleads.v17.services.AdParameterOperation.update:type_name -> google.ads.googleads.v17.resources.AdParameter + 7, // 5: google.ads.googleads.v17.services.MutateAdParametersResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v17.services.MutateAdParametersResponse.results:type_name -> google.ads.googleads.v17.services.MutateAdParameterResult + 6, // 7: google.ads.googleads.v17.services.MutateAdParameterResult.ad_parameter:type_name -> google.ads.googleads.v17.resources.AdParameter + 0, // 8: google.ads.googleads.v17.services.AdParameterService.MutateAdParameters:input_type -> google.ads.googleads.v17.services.MutateAdParametersRequest + 2, // 9: google.ads.googleads.v17.services.AdParameterService.MutateAdParameters:output_type -> google.ads.googleads.v17.services.MutateAdParametersResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -540,13 +540,13 @@ var file_google_ads_googleads_v16_services_ad_parameter_service_proto_depIdxs = 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_ad_parameter_service_proto_init() } -func file_google_ads_googleads_v16_services_ad_parameter_service_proto_init() { - if File_google_ads_googleads_v16_services_ad_parameter_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_ad_parameter_service_proto_init() } +func file_google_ads_googleads_v17_services_ad_parameter_service_proto_init() { + if File_google_ads_googleads_v17_services_ad_parameter_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_ad_parameter_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_parameter_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdParametersRequest); i { case 0: return &v.state @@ -558,7 +558,7 @@ func file_google_ads_googleads_v16_services_ad_parameter_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_ad_parameter_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_parameter_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdParameterOperation); i { case 0: return &v.state @@ -570,7 +570,7 @@ func file_google_ads_googleads_v16_services_ad_parameter_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_ad_parameter_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_parameter_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdParametersResponse); i { case 0: return &v.state @@ -582,7 +582,7 @@ func file_google_ads_googleads_v16_services_ad_parameter_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_ad_parameter_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_parameter_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdParameterResult); i { case 0: return &v.state @@ -595,7 +595,7 @@ func file_google_ads_googleads_v16_services_ad_parameter_service_proto_init() { } } } - file_google_ads_googleads_v16_services_ad_parameter_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_ad_parameter_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*AdParameterOperation_Create)(nil), (*AdParameterOperation_Update)(nil), (*AdParameterOperation_Remove)(nil), @@ -604,18 +604,18 @@ func file_google_ads_googleads_v16_services_ad_parameter_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_ad_parameter_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_ad_parameter_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_ad_parameter_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_ad_parameter_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_ad_parameter_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_ad_parameter_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_ad_parameter_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_ad_parameter_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_ad_parameter_service_proto = out.File - file_google_ads_googleads_v16_services_ad_parameter_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_ad_parameter_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_ad_parameter_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_ad_parameter_service_proto = out.File + file_google_ads_googleads_v17_services_ad_parameter_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_ad_parameter_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_ad_parameter_service_proto_depIdxs = nil } diff --git a/services/ad_parameter_service_grpc.pb.go b/services/ad_parameter_service_grpc.pb.go index a77bbb17..0fe0660c 100644 --- a/services/ad_parameter_service_grpc.pb.go +++ b/services/ad_parameter_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_parameter_service.proto +// source: google/ads/googleads/v17/services/ad_parameter_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - AdParameterService_MutateAdParameters_FullMethodName = "/google.ads.googleads.v16.services.AdParameterService/MutateAdParameters" + AdParameterService_MutateAdParameters_FullMethodName = "/google.ads.googleads.v17.services.AdParameterService/MutateAdParameters" ) // AdParameterServiceClient is the client API for AdParameterService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage ad parameters. type AdParameterServiceClient interface { // Creates, updates, or removes ad parameters. Operation statuses are // returned. @@ -69,8 +71,9 @@ func NewAdParameterServiceClient(cc grpc.ClientConnInterface) AdParameterService } func (c *adParameterServiceClient) MutateAdParameters(ctx context.Context, in *MutateAdParametersRequest, opts ...grpc.CallOption) (*MutateAdParametersResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateAdParametersResponse) - err := c.cc.Invoke(ctx, AdParameterService_MutateAdParameters_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AdParameterService_MutateAdParameters_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -80,6 +83,8 @@ func (c *adParameterServiceClient) MutateAdParameters(ctx context.Context, in *M // AdParameterServiceServer is the server API for AdParameterService service. // All implementations must embed UnimplementedAdParameterServiceServer // for forward compatibility +// +// Service to manage ad parameters. type AdParameterServiceServer interface { // Creates, updates, or removes ad parameters. Operation statuses are // returned. @@ -144,7 +149,7 @@ func _AdParameterService_MutateAdParameters_Handler(srv interface{}, ctx context // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var AdParameterService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.AdParameterService", + ServiceName: "google.ads.googleads.v17.services.AdParameterService", HandlerType: (*AdParameterServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -153,5 +158,5 @@ var AdParameterService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/ad_parameter_service.proto", + Metadata: "google/ads/googleads/v17/services/ad_parameter_service.proto", } diff --git a/services/ad_service.pb.go b/services/ad_service.pb.go index f0db6c75..d8bd2217 100644 --- a/services/ad_service.pb.go +++ b/services/ad_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_service.proto +// source: google/ads/googleads/v17/services/ad_service.proto package services @@ -41,57 +41,7 @@ const ( ) // Request message for -// [AdService.GetAd][google.ads.googleads.v16.services.AdService.GetAd]. -type GetAdRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - // Required. The resource name of the ad to fetch. - ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` -} - -func (x *GetAdRequest) Reset() { - *x = GetAdRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_service_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *GetAdRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*GetAdRequest) ProtoMessage() {} - -func (x *GetAdRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_service_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 GetAdRequest.ProtoReflect.Descriptor instead. -func (*GetAdRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_service_proto_rawDescGZIP(), []int{0} -} - -func (x *GetAdRequest) GetResourceName() string { - if x != nil { - return x.ResourceName - } - return "" -} - -// Request message for -// [AdService.MutateAds][google.ads.googleads.v16.services.AdService.MutateAds]. +// [AdService.MutateAds][google.ads.googleads.v17.services.AdService.MutateAds]. type MutateAdsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -108,7 +58,7 @@ type MutateAdsRequest struct { PartialFailure bool `protobuf:"varint,4,opt,name=partial_failure,json=partialFailure,proto3" json:"partial_failure,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` // If true, the request is validated but not executed. Only errors are // returned, not results. ValidateOnly bool `protobuf:"varint,3,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` @@ -117,7 +67,7 @@ type MutateAdsRequest struct { func (x *MutateAdsRequest) Reset() { *x = MutateAdsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -130,7 +80,7 @@ func (x *MutateAdsRequest) String() string { func (*MutateAdsRequest) ProtoMessage() {} func (x *MutateAdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_ad_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -143,7 +93,7 @@ func (x *MutateAdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdsRequest.ProtoReflect.Descriptor instead. func (*MutateAdsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_ad_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAdsRequest) GetCustomerId() string { @@ -202,7 +152,7 @@ type AdOperation struct { func (x *AdOperation) Reset() { *x = AdOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -215,7 +165,7 @@ func (x *AdOperation) String() string { func (*AdOperation) ProtoMessage() {} func (x *AdOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_ad_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -228,7 +178,7 @@ func (x *AdOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdOperation.ProtoReflect.Descriptor instead. func (*AdOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_ad_service_proto_rawDescGZIP(), []int{1} } func (x *AdOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -291,7 +241,7 @@ type MutateAdsResponse struct { func (x *MutateAdsResponse) Reset() { *x = MutateAdsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -304,7 +254,7 @@ func (x *MutateAdsResponse) String() string { func (*MutateAdsResponse) ProtoMessage() {} func (x *MutateAdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_ad_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -317,7 +267,7 @@ func (x *MutateAdsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdsResponse.ProtoReflect.Descriptor instead. func (*MutateAdsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_ad_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAdsResponse) GetPartialFailureError() *status.Status { @@ -350,7 +300,7 @@ type MutateAdResult struct { func (x *MutateAdResult) Reset() { *x = MutateAdResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_ad_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_ad_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -363,7 +313,7 @@ func (x *MutateAdResult) String() string { func (*MutateAdResult) ProtoMessage() {} func (x *MutateAdResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_ad_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_ad_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -376,7 +326,7 @@ func (x *MutateAdResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdResult.ProtoReflect.Descriptor instead. func (*MutateAdResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_ad_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v17_services_ad_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAdResult) GetResourceName() string { @@ -393,23 +343,23 @@ func (x *MutateAdResult) GetAd() *resources.Ad { return nil } -var File_google_ads_googleads_v16_services_ad_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_ad_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_ad_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_ad_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 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, 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, 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, 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, 0x65, 0x73, 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, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x67, 0x6f, @@ -421,182 +371,152 @@ var file_google_ads_googleads_v16_services_ad_service_proto_rawDesc = []byte{ 0x6f, 0x1a, 0x20, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x72, 0x70, 0x63, 0x2f, - 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x58, 0x0a, 0x0c, - 0x47, 0x65, 0x74, 0x41, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x48, 0x0a, 0x0d, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x09, 0x42, 0x23, 0xe0, 0x41, 0x02, 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, 0x63, 0x6f, 0x6d, 0x2f, 0x41, 0x64, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0xdc, 0x02, 0x0a, 0x10, 0x4d, 0x75, 0x74, 0x61, 0x74, - 0x65, 0x41, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0b, 0x63, - 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, - 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, - 0x64, 0x12, 0x53, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, - 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x4f, 0x70, 0x65, 0x72, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, - 0x6c, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, - 0x0e, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x12, - 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, - 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, - 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, - 0x12, 0x23, 0x0a, 0x0d, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6f, 0x6e, 0x6c, - 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, - 0x65, 0x4f, 0x6e, 0x6c, 0x79, 0x22, 0x95, 0x02, 0x0a, 0x0b, 0x41, 0x64, 0x4f, 0x70, 0x65, 0x72, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x3b, 0x0a, 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, - 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, - 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, - 0x73, 0x6b, 0x12, 0x7a, 0x0a, 0x1b, 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, 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, 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, 0x52, 0x19, 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, 0x12, 0x40, - 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 0x72, - 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, - 0x42, 0x0b, 0x0a, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xa8, 0x01, - 0x0a, 0x11, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, - 0x6e, 0x73, 0x65, 0x12, 0x46, 0x0a, 0x15, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x66, - 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x03, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x72, 0x70, 0x63, 0x2e, - 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x13, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x46, - 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x4b, 0x0a, 0x07, 0x72, - 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x67, + 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xdc, 0x02, 0x0a, + 0x10, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, + 0x74, 0x12, 0x24, 0x0a, 0x0b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x53, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x41, 0x64, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, + 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, + 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x18, + 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, + 0x69, 0x6c, 0x75, 0x72, 0x65, 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, + 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, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, + 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, + 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, + 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, + 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, + 0x74, 0x65, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x76, + 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x4f, 0x6e, 0x6c, 0x79, 0x22, 0x95, 0x02, 0x0a, 0x0b, + 0x41, 0x64, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x3b, 0x0a, 0x0b, 0x75, + 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, + 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, + 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x7a, 0x0a, 0x1b, 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, 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, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x52, 0x19, 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, 0x12, 0x40, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x01, + 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, 0x37, 0x2e, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x48, 0x00, 0x52, 0x06, + 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x22, 0xa8, 0x01, 0x0a, 0x11, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, + 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x46, 0x0a, 0x15, 0x70, 0x61, 0x72, + 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x5f, 0x65, 0x72, 0x72, + 0x6f, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x65, 0x2e, 0x72, 0x70, 0x63, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x13, 0x70, 0x61, + 0x72, 0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, + 0x72, 0x12, 0x4b, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 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, 0x73, 0x65, + 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x52, + 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x8f, + 0x01, 0x0a, 0x0e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x52, 0x65, 0x73, 0x75, 0x6c, + 0x74, 0x12, 0x45, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, + 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x20, 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, 0x63, 0x6f, 0x6d, 0x2f, 0x41, 0x64, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x6f, + 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x36, 0x0a, 0x02, 0x61, 0x64, 0x18, 0x02, + 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, 0x37, 0x2e, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x52, 0x02, 0x61, 0x64, + 0x32, 0x9a, 0x02, 0x0a, 0x09, 0x41, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xc5, + 0x01, 0x0a, 0x09, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, - 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, - 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x8f, 0x01, 0x0a, 0x0e, 0x4d, 0x75, 0x74, - 0x61, 0x74, 0x65, 0x41, 0x64, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x45, 0x0a, 0x0d, 0x72, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x09, 0x42, 0x20, 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, 0x63, 0x6f, - 0x6d, 0x2f, 0x41, 0x64, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, - 0x6d, 0x65, 0x12, 0x36, 0x0a, 0x02, 0x61, 0x64, 0x18, 0x02, 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, 0x72, - 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x52, 0x02, 0x61, 0x64, 0x32, 0xbd, 0x03, 0x0a, 0x09, 0x41, - 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xa0, 0x01, 0x0a, 0x05, 0x47, 0x65, 0x74, - 0x41, 0x64, 0x12, 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, 0x65, - 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x64, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x1a, 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, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x22, 0x3e, 0xda, 0x41, 0x0d, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x82, 0xd3, 0xe4, - 0x93, 0x02, 0x28, 0x12, 0x26, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, - 0x72, 0x73, 0x2f, 0x2a, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x2a, 0x7d, 0x12, 0xc5, 0x01, 0x0a, 0x09, - 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, - 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, - 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, - 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x4d, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, - 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, - 0xd3, 0xe4, 0x93, 0x02, 0x2e, 0x3a, 0x01, 0x2a, 0x22, 0x29, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, - 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, - 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x61, 0x64, 0x73, 0x3a, 0x6d, 0x75, 0x74, - 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, - 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, - 0xd2, 0x41, 0x27, 0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x67, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, - 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0xfa, 0x01, 0x0a, 0x25, 0x63, - 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, - 0x69, 0x63, 0x65, 0x73, 0x42, 0x0e, 0x41, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, - 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, - 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, - 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, - 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, + 0x74, 0x1a, 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, 0x73, 0x65, 0x72, + 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x73, 0x52, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x4d, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, + 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2e, 0x3a, 0x01, 0x2a, 0x22, 0x29, 0x2f, 0x76, 0x31, + 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x61, 0x64, 0x73, 0x3a, + 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, + 0x63, 0x6f, 0x6d, 0xd2, 0x41, 0x27, 0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x77, 0x77, + 0x77, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, + 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0xfa, 0x01, + 0x0a, 0x25, 0x63, 0x6f, 0x6d, 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, 0x73, + 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x0e, 0x41, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, + 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, + 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, + 0x21, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, + 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_ad_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_ad_service_proto_rawDescData = file_google_ads_googleads_v16_services_ad_service_proto_rawDesc + file_google_ads_googleads_v17_services_ad_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_ad_service_proto_rawDescData = file_google_ads_googleads_v17_services_ad_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_ad_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_ad_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_ad_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_ad_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_ad_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_ad_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_ad_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_ad_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_ad_service_proto_rawDescData -} - -var file_google_ads_googleads_v16_services_ad_service_proto_msgTypes = make([]protoimpl.MessageInfo, 5) -var file_google_ads_googleads_v16_services_ad_service_proto_goTypes = []interface{}{ - (*GetAdRequest)(nil), // 0: google.ads.googleads.v16.services.GetAdRequest - (*MutateAdsRequest)(nil), // 1: google.ads.googleads.v16.services.MutateAdsRequest - (*AdOperation)(nil), // 2: google.ads.googleads.v16.services.AdOperation - (*MutateAdsResponse)(nil), // 3: google.ads.googleads.v16.services.MutateAdsResponse - (*MutateAdResult)(nil), // 4: google.ads.googleads.v16.services.MutateAdResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 5: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - (*fieldmaskpb.FieldMask)(nil), // 6: google.protobuf.FieldMask - (*common.PolicyValidationParameter)(nil), // 7: google.ads.googleads.v16.common.PolicyValidationParameter - (*resources.Ad)(nil), // 8: google.ads.googleads.v16.resources.Ad - (*status.Status)(nil), // 9: google.rpc.Status -} -var file_google_ads_googleads_v16_services_ad_service_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v16.services.MutateAdsRequest.operations:type_name -> google.ads.googleads.v16.services.AdOperation - 5, // 1: google.ads.googleads.v16.services.MutateAdsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 6, // 2: google.ads.googleads.v16.services.AdOperation.update_mask:type_name -> google.protobuf.FieldMask - 7, // 3: google.ads.googleads.v16.services.AdOperation.policy_validation_parameter:type_name -> google.ads.googleads.v16.common.PolicyValidationParameter - 8, // 4: google.ads.googleads.v16.services.AdOperation.update:type_name -> google.ads.googleads.v16.resources.Ad - 9, // 5: google.ads.googleads.v16.services.MutateAdsResponse.partial_failure_error:type_name -> google.rpc.Status - 4, // 6: google.ads.googleads.v16.services.MutateAdsResponse.results:type_name -> google.ads.googleads.v16.services.MutateAdResult - 8, // 7: google.ads.googleads.v16.services.MutateAdResult.ad:type_name -> google.ads.googleads.v16.resources.Ad - 0, // 8: google.ads.googleads.v16.services.AdService.GetAd:input_type -> google.ads.googleads.v16.services.GetAdRequest - 1, // 9: google.ads.googleads.v16.services.AdService.MutateAds:input_type -> google.ads.googleads.v16.services.MutateAdsRequest - 8, // 10: google.ads.googleads.v16.services.AdService.GetAd:output_type -> google.ads.googleads.v16.resources.Ad - 3, // 11: google.ads.googleads.v16.services.AdService.MutateAds:output_type -> google.ads.googleads.v16.services.MutateAdsResponse - 10, // [10:12] is the sub-list for method output_type - 8, // [8:10] is the sub-list for method input_type - 8, // [8:8] is the sub-list for extension type_name - 8, // [8:8] is the sub-list for extension extendee - 0, // [0:8] is the sub-list for field type_name -} - -func init() { file_google_ads_googleads_v16_services_ad_service_proto_init() } -func file_google_ads_googleads_v16_services_ad_service_proto_init() { - if File_google_ads_googleads_v16_services_ad_service_proto != nil { + return file_google_ads_googleads_v17_services_ad_service_proto_rawDescData +} + +var file_google_ads_googleads_v17_services_ad_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_ad_service_proto_goTypes = []interface{}{ + (*MutateAdsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateAdsRequest + (*AdOperation)(nil), // 1: google.ads.googleads.v17.services.AdOperation + (*MutateAdsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateAdsResponse + (*MutateAdResult)(nil), // 3: google.ads.googleads.v17.services.MutateAdResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask + (*common.PolicyValidationParameter)(nil), // 6: google.ads.googleads.v17.common.PolicyValidationParameter + (*resources.Ad)(nil), // 7: google.ads.googleads.v17.resources.Ad + (*status.Status)(nil), // 8: google.rpc.Status +} +var file_google_ads_googleads_v17_services_ad_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateAdsRequest.operations:type_name -> google.ads.googleads.v17.services.AdOperation + 4, // 1: google.ads.googleads.v17.services.MutateAdsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.AdOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.AdOperation.policy_validation_parameter:type_name -> google.ads.googleads.v17.common.PolicyValidationParameter + 7, // 4: google.ads.googleads.v17.services.AdOperation.update:type_name -> google.ads.googleads.v17.resources.Ad + 8, // 5: google.ads.googleads.v17.services.MutateAdsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v17.services.MutateAdsResponse.results:type_name -> google.ads.googleads.v17.services.MutateAdResult + 7, // 7: google.ads.googleads.v17.services.MutateAdResult.ad:type_name -> google.ads.googleads.v17.resources.Ad + 0, // 8: google.ads.googleads.v17.services.AdService.MutateAds:input_type -> google.ads.googleads.v17.services.MutateAdsRequest + 2, // 9: google.ads.googleads.v17.services.AdService.MutateAds:output_type -> google.ads.googleads.v17.services.MutateAdsResponse + 9, // [9:10] is the sub-list for method output_type + 8, // [8:9] is the sub-list for method input_type + 8, // [8:8] is the sub-list for extension type_name + 8, // [8:8] is the sub-list for extension extendee + 0, // [0:8] is the sub-list for field type_name +} + +func init() { file_google_ads_googleads_v17_services_ad_service_proto_init() } +func file_google_ads_googleads_v17_services_ad_service_proto_init() { + if File_google_ads_googleads_v17_services_ad_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_ad_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetAdRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_google_ads_googleads_v16_services_ad_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdsRequest); i { case 0: return &v.state @@ -608,7 +528,7 @@ func file_google_ads_googleads_v16_services_ad_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_ad_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdOperation); i { case 0: return &v.state @@ -620,7 +540,7 @@ func file_google_ads_googleads_v16_services_ad_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_ad_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdsResponse); i { case 0: return &v.state @@ -632,7 +552,7 @@ func file_google_ads_googleads_v16_services_ad_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_ad_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_ad_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAdResult); i { case 0: return &v.state @@ -645,25 +565,25 @@ func file_google_ads_googleads_v16_services_ad_service_proto_init() { } } } - file_google_ads_googleads_v16_services_ad_service_proto_msgTypes[2].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_ad_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*AdOperation_Update)(nil), } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_ad_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_ad_service_proto_rawDesc, NumEnums: 0, - NumMessages: 5, + NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_ad_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_ad_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_ad_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_ad_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_ad_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_ad_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_ad_service_proto = out.File - file_google_ads_googleads_v16_services_ad_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_ad_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_ad_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_ad_service_proto = out.File + file_google_ads_googleads_v17_services_ad_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_ad_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_ad_service_proto_depIdxs = nil } diff --git a/services/ad_service_grpc.pb.go b/services/ad_service_grpc.pb.go index bde8f26e..412c1062 100644 --- a/services/ad_service_grpc.pb.go +++ b/services/ad_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,15 +14,14 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/ad_service.proto +// source: google/ads/googleads/v17/services/ad_service.proto package services import ( context "context" - resources "github.com/shenzhencenter/google-ads-pb/resources" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -30,29 +29,19 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - AdService_GetAd_FullMethodName = "/google.ads.googleads.v16.services.AdService/GetAd" - AdService_MutateAds_FullMethodName = "/google.ads.googleads.v16.services.AdService/MutateAds" + AdService_MutateAds_FullMethodName = "/google.ads.googleads.v17.services.AdService/MutateAds" ) // AdServiceClient is the client API for AdService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage ads. type AdServiceClient interface { - // Returns the requested ad in full detail. - // - // List of thrown errors: - // - // [AuthenticationError]() - // [AuthorizationError]() - // [HeaderError]() - // [InternalError]() - // [QuotaError]() - // [RequestError]() - GetAd(ctx context.Context, in *GetAdRequest, opts ...grpc.CallOption) (*resources.Ad, error) // Updates ads. Operation statuses are returned. Updating ads is not supported // for TextAd, ExpandedDynamicSearchAd, GmailAd and ImageAd. // @@ -107,18 +96,10 @@ func NewAdServiceClient(cc grpc.ClientConnInterface) AdServiceClient { return &adServiceClient{cc} } -func (c *adServiceClient) GetAd(ctx context.Context, in *GetAdRequest, opts ...grpc.CallOption) (*resources.Ad, error) { - out := new(resources.Ad) - err := c.cc.Invoke(ctx, AdService_GetAd_FullMethodName, in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - func (c *adServiceClient) MutateAds(ctx context.Context, in *MutateAdsRequest, opts ...grpc.CallOption) (*MutateAdsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateAdsResponse) - err := c.cc.Invoke(ctx, AdService_MutateAds_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AdService_MutateAds_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -128,18 +109,9 @@ func (c *adServiceClient) MutateAds(ctx context.Context, in *MutateAdsRequest, o // AdServiceServer is the server API for AdService service. // All implementations must embed UnimplementedAdServiceServer // for forward compatibility +// +// Service to manage ads. type AdServiceServer interface { - // Returns the requested ad in full detail. - // - // List of thrown errors: - // - // [AuthenticationError]() - // [AuthorizationError]() - // [HeaderError]() - // [InternalError]() - // [QuotaError]() - // [RequestError]() - GetAd(context.Context, *GetAdRequest) (*resources.Ad, error) // Updates ads. Operation statuses are returned. Updating ads is not supported // for TextAd, ExpandedDynamicSearchAd, GmailAd and ImageAd. // @@ -191,9 +163,6 @@ type AdServiceServer interface { type UnimplementedAdServiceServer struct { } -func (UnimplementedAdServiceServer) GetAd(context.Context, *GetAdRequest) (*resources.Ad, error) { - return nil, status.Errorf(codes.Unimplemented, "method GetAd not implemented") -} func (UnimplementedAdServiceServer) MutateAds(context.Context, *MutateAdsRequest) (*MutateAdsResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method MutateAds not implemented") } @@ -210,24 +179,6 @@ func RegisterAdServiceServer(s grpc.ServiceRegistrar, srv AdServiceServer) { s.RegisterService(&AdService_ServiceDesc, srv) } -func _AdService_GetAd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(GetAdRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(AdServiceServer).GetAd(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: AdService_GetAd_FullMethodName, - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(AdServiceServer).GetAd(ctx, req.(*GetAdRequest)) - } - return interceptor(ctx, in, info, handler) -} - func _AdService_MutateAds_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(MutateAdsRequest) if err := dec(in); err != nil { @@ -250,18 +201,14 @@ func _AdService_MutateAds_Handler(srv interface{}, ctx context.Context, dec func // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var AdService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.AdService", + ServiceName: "google.ads.googleads.v17.services.AdService", HandlerType: (*AdServiceServer)(nil), Methods: []grpc.MethodDesc{ - { - MethodName: "GetAd", - Handler: _AdService_GetAd_Handler, - }, { MethodName: "MutateAds", Handler: _AdService_MutateAds_Handler, }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/ad_service.proto", + Metadata: "google/ads/googleads/v17/services/ad_service.proto", } diff --git a/services/asset_group_asset_service.pb.go b/services/asset_group_asset_service.pb.go index 4f6e6af5..5347f766 100644 --- a/services/asset_group_asset_service.pb.go +++ b/services/asset_group_asset_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/asset_group_asset_service.proto +// source: google/ads/googleads/v17/services/asset_group_asset_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [AssetGroupAssetService.MutateAssetGroupAssets][google.ads.googleads.v16.services.AssetGroupAssetService.MutateAssetGroupAssets]. +// [AssetGroupAssetService.MutateAssetGroupAssets][google.ads.googleads.v17.services.AssetGroupAssetService.MutateAssetGroupAssets]. type MutateAssetGroupAssetsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -64,7 +64,7 @@ type MutateAssetGroupAssetsRequest struct { func (x *MutateAssetGroupAssetsRequest) Reset() { *x = MutateAssetGroupAssetsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_asset_group_asset_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_asset_group_asset_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *MutateAssetGroupAssetsRequest) String() string { func (*MutateAssetGroupAssetsRequest) ProtoMessage() {} func (x *MutateAssetGroupAssetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_asset_group_asset_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_asset_group_asset_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *MutateAssetGroupAssetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetGroupAssetsRequest.ProtoReflect.Descriptor instead. func (*MutateAssetGroupAssetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_asset_group_asset_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_asset_group_asset_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAssetGroupAssetsRequest) GetCustomerId() string { @@ -142,7 +142,7 @@ type AssetGroupAssetOperation struct { func (x *AssetGroupAssetOperation) Reset() { *x = AssetGroupAssetOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_asset_group_asset_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_asset_group_asset_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -155,7 +155,7 @@ func (x *AssetGroupAssetOperation) String() string { func (*AssetGroupAssetOperation) ProtoMessage() {} func (x *AssetGroupAssetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_asset_group_asset_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_asset_group_asset_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -168,7 +168,7 @@ func (x *AssetGroupAssetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetGroupAssetOperation.ProtoReflect.Descriptor instead. func (*AssetGroupAssetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_asset_group_asset_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_asset_group_asset_service_proto_rawDescGZIP(), []int{1} } func (x *AssetGroupAssetOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -253,7 +253,7 @@ type MutateAssetGroupAssetsResponse struct { func (x *MutateAssetGroupAssetsResponse) Reset() { *x = MutateAssetGroupAssetsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_asset_group_asset_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_asset_group_asset_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -266,7 +266,7 @@ func (x *MutateAssetGroupAssetsResponse) String() string { func (*MutateAssetGroupAssetsResponse) ProtoMessage() {} func (x *MutateAssetGroupAssetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_asset_group_asset_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_asset_group_asset_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -279,7 +279,7 @@ func (x *MutateAssetGroupAssetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetGroupAssetsResponse.ProtoReflect.Descriptor instead. func (*MutateAssetGroupAssetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_asset_group_asset_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_asset_group_asset_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAssetGroupAssetsResponse) GetResults() []*MutateAssetGroupAssetResult { @@ -309,7 +309,7 @@ type MutateAssetGroupAssetResult struct { func (x *MutateAssetGroupAssetResult) Reset() { *x = MutateAssetGroupAssetResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_asset_group_asset_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_asset_group_asset_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -322,7 +322,7 @@ func (x *MutateAssetGroupAssetResult) String() string { func (*MutateAssetGroupAssetResult) ProtoMessage() {} func (x *MutateAssetGroupAssetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_asset_group_asset_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_asset_group_asset_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -335,7 +335,7 @@ func (x *MutateAssetGroupAssetResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetGroupAssetResult.ProtoReflect.Descriptor instead. func (*MutateAssetGroupAssetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_asset_group_asset_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_asset_group_asset_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAssetGroupAssetResult) GetResourceName() string { @@ -345,17 +345,17 @@ func (x *MutateAssetGroupAssetResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_asset_group_asset_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_asset_group_asset_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_asset_group_asset_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_asset_group_asset_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 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, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, @@ -376,7 +376,7 @@ var file_google_ads_googleads_v16_services_asset_group_asset_service_proto_rawDe 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x60, 0x0a, 0x0a, 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, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, @@ -392,12 +392,12 @@ var file_google_ads_googleads_v16_services_asset_group_asset_service_proto_rawDe 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x4d, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 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, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x4d, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 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, 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, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x47, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, @@ -410,7 +410,7 @@ var file_google_ads_googleads_v16_services_asset_group_asset_service_proto_rawDe 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x58, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x46, 0x0a, 0x15, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x66, @@ -429,17 +429,17 @@ var file_google_ads_googleads_v16_services_asset_group_asset_service_proto_rawDe 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xf9, 0x01, 0x0a, 0x16, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x12, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5a, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3b, 0x3a, 0x01, 0x2a, 0x22, 0x36, 0x2f, - 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, + 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, @@ -448,55 +448,55 @@ var file_google_ads_googleads_v16_services_asset_group_asset_service_proto_rawDe 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x87, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1b, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, - 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, + 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_asset_group_asset_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_asset_group_asset_service_proto_rawDescData = file_google_ads_googleads_v16_services_asset_group_asset_service_proto_rawDesc + file_google_ads_googleads_v17_services_asset_group_asset_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_asset_group_asset_service_proto_rawDescData = file_google_ads_googleads_v17_services_asset_group_asset_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_asset_group_asset_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_asset_group_asset_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_asset_group_asset_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_asset_group_asset_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_asset_group_asset_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_asset_group_asset_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_asset_group_asset_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_asset_group_asset_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_asset_group_asset_service_proto_rawDescData + return file_google_ads_googleads_v17_services_asset_group_asset_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_asset_group_asset_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_asset_group_asset_service_proto_goTypes = []interface{}{ - (*MutateAssetGroupAssetsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateAssetGroupAssetsRequest - (*AssetGroupAssetOperation)(nil), // 1: google.ads.googleads.v16.services.AssetGroupAssetOperation - (*MutateAssetGroupAssetsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateAssetGroupAssetsResponse - (*MutateAssetGroupAssetResult)(nil), // 3: google.ads.googleads.v16.services.MutateAssetGroupAssetResult +var file_google_ads_googleads_v17_services_asset_group_asset_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_asset_group_asset_service_proto_goTypes = []interface{}{ + (*MutateAssetGroupAssetsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateAssetGroupAssetsRequest + (*AssetGroupAssetOperation)(nil), // 1: google.ads.googleads.v17.services.AssetGroupAssetOperation + (*MutateAssetGroupAssetsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateAssetGroupAssetsResponse + (*MutateAssetGroupAssetResult)(nil), // 3: google.ads.googleads.v17.services.MutateAssetGroupAssetResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.AssetGroupAsset)(nil), // 5: google.ads.googleads.v16.resources.AssetGroupAsset + (*resources.AssetGroupAsset)(nil), // 5: google.ads.googleads.v17.resources.AssetGroupAsset (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v16_services_asset_group_asset_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateAssetGroupAssetsRequest.operations:type_name -> google.ads.googleads.v16.services.AssetGroupAssetOperation - 4, // 1: google.ads.googleads.v16.services.AssetGroupAssetOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v16.services.AssetGroupAssetOperation.create:type_name -> google.ads.googleads.v16.resources.AssetGroupAsset - 5, // 3: google.ads.googleads.v16.services.AssetGroupAssetOperation.update:type_name -> google.ads.googleads.v16.resources.AssetGroupAsset - 3, // 4: google.ads.googleads.v16.services.MutateAssetGroupAssetsResponse.results:type_name -> google.ads.googleads.v16.services.MutateAssetGroupAssetResult - 6, // 5: google.ads.googleads.v16.services.MutateAssetGroupAssetsResponse.partial_failure_error:type_name -> google.rpc.Status - 0, // 6: google.ads.googleads.v16.services.AssetGroupAssetService.MutateAssetGroupAssets:input_type -> google.ads.googleads.v16.services.MutateAssetGroupAssetsRequest - 2, // 7: google.ads.googleads.v16.services.AssetGroupAssetService.MutateAssetGroupAssets:output_type -> google.ads.googleads.v16.services.MutateAssetGroupAssetsResponse +var file_google_ads_googleads_v17_services_asset_group_asset_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateAssetGroupAssetsRequest.operations:type_name -> google.ads.googleads.v17.services.AssetGroupAssetOperation + 4, // 1: google.ads.googleads.v17.services.AssetGroupAssetOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v17.services.AssetGroupAssetOperation.create:type_name -> google.ads.googleads.v17.resources.AssetGroupAsset + 5, // 3: google.ads.googleads.v17.services.AssetGroupAssetOperation.update:type_name -> google.ads.googleads.v17.resources.AssetGroupAsset + 3, // 4: google.ads.googleads.v17.services.MutateAssetGroupAssetsResponse.results:type_name -> google.ads.googleads.v17.services.MutateAssetGroupAssetResult + 6, // 5: google.ads.googleads.v17.services.MutateAssetGroupAssetsResponse.partial_failure_error:type_name -> google.rpc.Status + 0, // 6: google.ads.googleads.v17.services.AssetGroupAssetService.MutateAssetGroupAssets:input_type -> google.ads.googleads.v17.services.MutateAssetGroupAssetsRequest + 2, // 7: google.ads.googleads.v17.services.AssetGroupAssetService.MutateAssetGroupAssets:output_type -> google.ads.googleads.v17.services.MutateAssetGroupAssetsResponse 7, // [7:8] is the sub-list for method output_type 6, // [6:7] is the sub-list for method input_type 6, // [6:6] is the sub-list for extension type_name @@ -504,13 +504,13 @@ var file_google_ads_googleads_v16_services_asset_group_asset_service_proto_depId 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_asset_group_asset_service_proto_init() } -func file_google_ads_googleads_v16_services_asset_group_asset_service_proto_init() { - if File_google_ads_googleads_v16_services_asset_group_asset_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_asset_group_asset_service_proto_init() } +func file_google_ads_googleads_v17_services_asset_group_asset_service_proto_init() { + if File_google_ads_googleads_v17_services_asset_group_asset_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_asset_group_asset_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_asset_group_asset_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAssetGroupAssetsRequest); i { case 0: return &v.state @@ -522,7 +522,7 @@ func file_google_ads_googleads_v16_services_asset_group_asset_service_proto_init return nil } } - file_google_ads_googleads_v16_services_asset_group_asset_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_asset_group_asset_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AssetGroupAssetOperation); i { case 0: return &v.state @@ -534,7 +534,7 @@ func file_google_ads_googleads_v16_services_asset_group_asset_service_proto_init return nil } } - file_google_ads_googleads_v16_services_asset_group_asset_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_asset_group_asset_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAssetGroupAssetsResponse); i { case 0: return &v.state @@ -546,7 +546,7 @@ func file_google_ads_googleads_v16_services_asset_group_asset_service_proto_init return nil } } - file_google_ads_googleads_v16_services_asset_group_asset_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_asset_group_asset_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAssetGroupAssetResult); i { case 0: return &v.state @@ -559,7 +559,7 @@ func file_google_ads_googleads_v16_services_asset_group_asset_service_proto_init } } } - file_google_ads_googleads_v16_services_asset_group_asset_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_asset_group_asset_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*AssetGroupAssetOperation_Create)(nil), (*AssetGroupAssetOperation_Update)(nil), (*AssetGroupAssetOperation_Remove)(nil), @@ -568,18 +568,18 @@ func file_google_ads_googleads_v16_services_asset_group_asset_service_proto_init out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_asset_group_asset_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_asset_group_asset_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_asset_group_asset_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_asset_group_asset_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_asset_group_asset_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_asset_group_asset_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_asset_group_asset_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_asset_group_asset_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_asset_group_asset_service_proto = out.File - file_google_ads_googleads_v16_services_asset_group_asset_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_asset_group_asset_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_asset_group_asset_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_asset_group_asset_service_proto = out.File + file_google_ads_googleads_v17_services_asset_group_asset_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_asset_group_asset_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_asset_group_asset_service_proto_depIdxs = nil } diff --git a/services/asset_group_asset_service_grpc.pb.go b/services/asset_group_asset_service_grpc.pb.go index d7107ecf..27dd022f 100644 --- a/services/asset_group_asset_service_grpc.pb.go +++ b/services/asset_group_asset_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/asset_group_asset_service.proto +// source: google/ads/googleads/v17/services/asset_group_asset_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - AssetGroupAssetService_MutateAssetGroupAssets_FullMethodName = "/google.ads.googleads.v16.services.AssetGroupAssetService/MutateAssetGroupAssets" + AssetGroupAssetService_MutateAssetGroupAssets_FullMethodName = "/google.ads.googleads.v17.services.AssetGroupAssetService/MutateAssetGroupAssets" ) // AssetGroupAssetServiceClient is the client API for AssetGroupAssetService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage asset group asset. type AssetGroupAssetServiceClient interface { // Creates, updates or removes asset group assets. Operation statuses are // returned. @@ -54,8 +56,9 @@ func NewAssetGroupAssetServiceClient(cc grpc.ClientConnInterface) AssetGroupAsse } func (c *assetGroupAssetServiceClient) MutateAssetGroupAssets(ctx context.Context, in *MutateAssetGroupAssetsRequest, opts ...grpc.CallOption) (*MutateAssetGroupAssetsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateAssetGroupAssetsResponse) - err := c.cc.Invoke(ctx, AssetGroupAssetService_MutateAssetGroupAssets_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AssetGroupAssetService_MutateAssetGroupAssets_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -65,6 +68,8 @@ func (c *assetGroupAssetServiceClient) MutateAssetGroupAssets(ctx context.Contex // AssetGroupAssetServiceServer is the server API for AssetGroupAssetService service. // All implementations must embed UnimplementedAssetGroupAssetServiceServer // for forward compatibility +// +// Service to manage asset group asset. type AssetGroupAssetServiceServer interface { // Creates, updates or removes asset group assets. Operation statuses are // returned. @@ -115,7 +120,7 @@ func _AssetGroupAssetService_MutateAssetGroupAssets_Handler(srv interface{}, ctx // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var AssetGroupAssetService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.AssetGroupAssetService", + ServiceName: "google.ads.googleads.v17.services.AssetGroupAssetService", HandlerType: (*AssetGroupAssetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -124,5 +129,5 @@ var AssetGroupAssetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/asset_group_asset_service.proto", + Metadata: "google/ads/googleads/v17/services/asset_group_asset_service.proto", } diff --git a/services/asset_group_listing_group_filter_service.pb.go b/services/asset_group_listing_group_filter_service.pb.go index 5fd2fa4d..629c15e3 100644 --- a/services/asset_group_listing_group_filter_service.pb.go +++ b/services/asset_group_listing_group_filter_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/asset_group_listing_group_filter_service.proto +// source: google/ads/googleads/v17/services/asset_group_listing_group_filter_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [AssetGroupListingGroupFilterService.MutateAssetGroupListingGroupFilters][google.ads.googleads.v16.services.AssetGroupListingGroupFilterService.MutateAssetGroupListingGroupFilters]. +// [AssetGroupListingGroupFilterService.MutateAssetGroupListingGroupFilters][google.ads.googleads.v17.services.AssetGroupListingGroupFilterService.MutateAssetGroupListingGroupFilters]. // partial_failure is not supported because the tree needs to be validated // together. type MutateAssetGroupListingGroupFiltersRequest struct { @@ -58,13 +58,13 @@ type MutateAssetGroupListingGroupFiltersRequest struct { ValidateOnly bool `protobuf:"varint,3,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,4,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,4,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateAssetGroupListingGroupFiltersRequest) Reset() { *x = MutateAssetGroupListingGroupFiltersRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *MutateAssetGroupListingGroupFiltersRequest) String() string { func (*MutateAssetGroupListingGroupFiltersRequest) ProtoMessage() {} func (x *MutateAssetGroupListingGroupFiltersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *MutateAssetGroupListingGroupFiltersRequest) ProtoReflect() protoreflect // Deprecated: Use MutateAssetGroupListingGroupFiltersRequest.ProtoReflect.Descriptor instead. func (*MutateAssetGroupListingGroupFiltersRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAssetGroupListingGroupFiltersRequest) GetCustomerId() string { @@ -142,7 +142,7 @@ type AssetGroupListingGroupFilterOperation struct { func (x *AssetGroupListingGroupFilterOperation) Reset() { *x = AssetGroupListingGroupFilterOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -155,7 +155,7 @@ func (x *AssetGroupListingGroupFilterOperation) String() string { func (*AssetGroupListingGroupFilterOperation) ProtoMessage() {} func (x *AssetGroupListingGroupFilterOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -168,7 +168,7 @@ func (x *AssetGroupListingGroupFilterOperation) ProtoReflect() protoreflect.Mess // Deprecated: Use AssetGroupListingGroupFilterOperation.ProtoReflect.Descriptor instead. func (*AssetGroupListingGroupFilterOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_rawDescGZIP(), []int{1} } func (x *AssetGroupListingGroupFilterOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -254,7 +254,7 @@ type MutateAssetGroupListingGroupFiltersResponse struct { func (x *MutateAssetGroupListingGroupFiltersResponse) Reset() { *x = MutateAssetGroupListingGroupFiltersResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -267,7 +267,7 @@ func (x *MutateAssetGroupListingGroupFiltersResponse) String() string { func (*MutateAssetGroupListingGroupFiltersResponse) ProtoMessage() {} func (x *MutateAssetGroupListingGroupFiltersResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -280,7 +280,7 @@ func (x *MutateAssetGroupListingGroupFiltersResponse) ProtoReflect() protoreflec // Deprecated: Use MutateAssetGroupListingGroupFiltersResponse.ProtoReflect.Descriptor instead. func (*MutateAssetGroupListingGroupFiltersResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAssetGroupListingGroupFiltersResponse) GetResults() []*MutateAssetGroupListingGroupFilterResult { @@ -307,7 +307,7 @@ type MutateAssetGroupListingGroupFilterResult struct { func (x *MutateAssetGroupListingGroupFilterResult) Reset() { *x = MutateAssetGroupListingGroupFilterResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -320,7 +320,7 @@ func (x *MutateAssetGroupListingGroupFilterResult) String() string { func (*MutateAssetGroupListingGroupFilterResult) ProtoMessage() {} func (x *MutateAssetGroupListingGroupFilterResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -333,7 +333,7 @@ func (x *MutateAssetGroupListingGroupFilterResult) ProtoReflect() protoreflect.M // Deprecated: Use MutateAssetGroupListingGroupFilterResult.ProtoReflect.Descriptor instead. func (*MutateAssetGroupListingGroupFilterResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAssetGroupListingGroupFilterResult) GetResourceName() string { @@ -350,22 +350,22 @@ func (x *MutateAssetGroupListingGroupFilterResult) GetAssetGroupListingGroupFilt return nil } -var File_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 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, 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, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, @@ -386,7 +386,7 @@ var file_google_ads_googleads_v16_services_asset_group_listing_group_filter_serv 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x6d, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, @@ -396,7 +396,7 @@ var file_google_ads_googleads_v16_services_asset_group_listing_group_filter_serv 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 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, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, @@ -409,13 +409,13 @@ var file_google_ads_googleads_v16_services_asset_group_listing_group_filter_serv 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x5a, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 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, 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, 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, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x5a, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x02, 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, 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, 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, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x54, 0x0a, 0x06, 0x72, 0x65, @@ -430,7 +430,7 @@ var file_google_ads_googleads_v16_services_asset_group_listing_group_filter_serv 0x6c, 0x74, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x65, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, @@ -447,7 +447,7 @@ var file_google_ads_googleads_v16_services_asset_group_listing_group_filter_serv 0x75, 0x70, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x02, 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, 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, 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, 0x52, 0x1c, 0x61, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x69, @@ -458,18 +458,18 @@ var file_google_ads_googleads_v16_services_asset_group_listing_group_filter_serv 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, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x67, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x48, 0x3a, 0x01, 0x2a, - 0x22, 0x43, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, + 0x22, 0x43, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 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, 0x73, 0x3a, 0x6d, @@ -479,57 +479,57 @@ var file_google_ads_googleads_v16_services_asset_group_listing_group_filter_serv 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x94, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x28, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, - 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, + 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_rawDescData = file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_rawDesc + file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_rawDescData = file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_rawDescData + return file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_goTypes = []interface{}{ - (*MutateAssetGroupListingGroupFiltersRequest)(nil), // 0: google.ads.googleads.v16.services.MutateAssetGroupListingGroupFiltersRequest - (*AssetGroupListingGroupFilterOperation)(nil), // 1: google.ads.googleads.v16.services.AssetGroupListingGroupFilterOperation - (*MutateAssetGroupListingGroupFiltersResponse)(nil), // 2: google.ads.googleads.v16.services.MutateAssetGroupListingGroupFiltersResponse - (*MutateAssetGroupListingGroupFilterResult)(nil), // 3: google.ads.googleads.v16.services.MutateAssetGroupListingGroupFilterResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_goTypes = []interface{}{ + (*MutateAssetGroupListingGroupFiltersRequest)(nil), // 0: google.ads.googleads.v17.services.MutateAssetGroupListingGroupFiltersRequest + (*AssetGroupListingGroupFilterOperation)(nil), // 1: google.ads.googleads.v17.services.AssetGroupListingGroupFilterOperation + (*MutateAssetGroupListingGroupFiltersResponse)(nil), // 2: google.ads.googleads.v17.services.MutateAssetGroupListingGroupFiltersResponse + (*MutateAssetGroupListingGroupFilterResult)(nil), // 3: google.ads.googleads.v17.services.MutateAssetGroupListingGroupFilterResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.AssetGroupListingGroupFilter)(nil), // 6: google.ads.googleads.v16.resources.AssetGroupListingGroupFilter -} -var file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateAssetGroupListingGroupFiltersRequest.operations:type_name -> google.ads.googleads.v16.services.AssetGroupListingGroupFilterOperation - 4, // 1: google.ads.googleads.v16.services.MutateAssetGroupListingGroupFiltersRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.AssetGroupListingGroupFilterOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.AssetGroupListingGroupFilterOperation.create:type_name -> google.ads.googleads.v16.resources.AssetGroupListingGroupFilter - 6, // 4: google.ads.googleads.v16.services.AssetGroupListingGroupFilterOperation.update:type_name -> google.ads.googleads.v16.resources.AssetGroupListingGroupFilter - 3, // 5: google.ads.googleads.v16.services.MutateAssetGroupListingGroupFiltersResponse.results:type_name -> google.ads.googleads.v16.services.MutateAssetGroupListingGroupFilterResult - 6, // 6: google.ads.googleads.v16.services.MutateAssetGroupListingGroupFilterResult.asset_group_listing_group_filter:type_name -> google.ads.googleads.v16.resources.AssetGroupListingGroupFilter - 0, // 7: google.ads.googleads.v16.services.AssetGroupListingGroupFilterService.MutateAssetGroupListingGroupFilters:input_type -> google.ads.googleads.v16.services.MutateAssetGroupListingGroupFiltersRequest - 2, // 8: google.ads.googleads.v16.services.AssetGroupListingGroupFilterService.MutateAssetGroupListingGroupFilters:output_type -> google.ads.googleads.v16.services.MutateAssetGroupListingGroupFiltersResponse + (*resources.AssetGroupListingGroupFilter)(nil), // 6: google.ads.googleads.v17.resources.AssetGroupListingGroupFilter +} +var file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateAssetGroupListingGroupFiltersRequest.operations:type_name -> google.ads.googleads.v17.services.AssetGroupListingGroupFilterOperation + 4, // 1: google.ads.googleads.v17.services.MutateAssetGroupListingGroupFiltersRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.AssetGroupListingGroupFilterOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.AssetGroupListingGroupFilterOperation.create:type_name -> google.ads.googleads.v17.resources.AssetGroupListingGroupFilter + 6, // 4: google.ads.googleads.v17.services.AssetGroupListingGroupFilterOperation.update:type_name -> google.ads.googleads.v17.resources.AssetGroupListingGroupFilter + 3, // 5: google.ads.googleads.v17.services.MutateAssetGroupListingGroupFiltersResponse.results:type_name -> google.ads.googleads.v17.services.MutateAssetGroupListingGroupFilterResult + 6, // 6: google.ads.googleads.v17.services.MutateAssetGroupListingGroupFilterResult.asset_group_listing_group_filter:type_name -> google.ads.googleads.v17.resources.AssetGroupListingGroupFilter + 0, // 7: google.ads.googleads.v17.services.AssetGroupListingGroupFilterService.MutateAssetGroupListingGroupFilters:input_type -> google.ads.googleads.v17.services.MutateAssetGroupListingGroupFiltersRequest + 2, // 8: google.ads.googleads.v17.services.AssetGroupListingGroupFilterService.MutateAssetGroupListingGroupFilters:output_type -> google.ads.googleads.v17.services.MutateAssetGroupListingGroupFiltersResponse 8, // [8:9] is the sub-list for method output_type 7, // [7:8] is the sub-list for method input_type 7, // [7:7] is the sub-list for extension type_name @@ -538,14 +538,14 @@ var file_google_ads_googleads_v16_services_asset_group_listing_group_filter_serv } func init() { - file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_init() + file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_init() } -func file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_init() { - if File_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto != nil { +func file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_init() { + if File_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAssetGroupListingGroupFiltersRequest); i { case 0: return &v.state @@ -557,7 +557,7 @@ func file_google_ads_googleads_v16_services_asset_group_listing_group_filter_ser return nil } } - file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AssetGroupListingGroupFilterOperation); i { case 0: return &v.state @@ -569,7 +569,7 @@ func file_google_ads_googleads_v16_services_asset_group_listing_group_filter_ser return nil } } - file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAssetGroupListingGroupFiltersResponse); i { case 0: return &v.state @@ -581,7 +581,7 @@ func file_google_ads_googleads_v16_services_asset_group_listing_group_filter_ser return nil } } - file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAssetGroupListingGroupFilterResult); i { case 0: return &v.state @@ -594,7 +594,7 @@ func file_google_ads_googleads_v16_services_asset_group_listing_group_filter_ser } } } - file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*AssetGroupListingGroupFilterOperation_Create)(nil), (*AssetGroupListingGroupFilterOperation_Update)(nil), (*AssetGroupListingGroupFilterOperation_Remove)(nil), @@ -603,18 +603,18 @@ func file_google_ads_googleads_v16_services_asset_group_listing_group_filter_ser out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto = out.File - file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto = out.File + file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_depIdxs = nil } diff --git a/services/asset_group_listing_group_filter_service_grpc.pb.go b/services/asset_group_listing_group_filter_service_grpc.pb.go index aeb6fb45..f921e470 100644 --- a/services/asset_group_listing_group_filter_service_grpc.pb.go +++ b/services/asset_group_listing_group_filter_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/asset_group_listing_group_filter_service.proto +// source: google/ads/googleads/v17/services/asset_group_listing_group_filter_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - AssetGroupListingGroupFilterService_MutateAssetGroupListingGroupFilters_FullMethodName = "/google.ads.googleads.v16.services.AssetGroupListingGroupFilterService/MutateAssetGroupListingGroupFilters" + AssetGroupListingGroupFilterService_MutateAssetGroupListingGroupFilters_FullMethodName = "/google.ads.googleads.v17.services.AssetGroupListingGroupFilterService/MutateAssetGroupListingGroupFilters" ) // AssetGroupListingGroupFilterServiceClient is the client API for AssetGroupListingGroupFilterService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage asset group listing group filter. type AssetGroupListingGroupFilterServiceClient interface { // Creates, updates or removes asset group listing group filters. Operation // statuses are returned. @@ -54,8 +56,9 @@ func NewAssetGroupListingGroupFilterServiceClient(cc grpc.ClientConnInterface) A } func (c *assetGroupListingGroupFilterServiceClient) MutateAssetGroupListingGroupFilters(ctx context.Context, in *MutateAssetGroupListingGroupFiltersRequest, opts ...grpc.CallOption) (*MutateAssetGroupListingGroupFiltersResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateAssetGroupListingGroupFiltersResponse) - err := c.cc.Invoke(ctx, AssetGroupListingGroupFilterService_MutateAssetGroupListingGroupFilters_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AssetGroupListingGroupFilterService_MutateAssetGroupListingGroupFilters_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -65,6 +68,8 @@ func (c *assetGroupListingGroupFilterServiceClient) MutateAssetGroupListingGroup // AssetGroupListingGroupFilterServiceServer is the server API for AssetGroupListingGroupFilterService service. // All implementations must embed UnimplementedAssetGroupListingGroupFilterServiceServer // for forward compatibility +// +// Service to manage asset group listing group filter. type AssetGroupListingGroupFilterServiceServer interface { // Creates, updates or removes asset group listing group filters. Operation // statuses are returned. @@ -115,7 +120,7 @@ func _AssetGroupListingGroupFilterService_MutateAssetGroupListingGroupFilters_Ha // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var AssetGroupListingGroupFilterService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.AssetGroupListingGroupFilterService", + ServiceName: "google.ads.googleads.v17.services.AssetGroupListingGroupFilterService", HandlerType: (*AssetGroupListingGroupFilterServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -124,5 +129,5 @@ var AssetGroupListingGroupFilterService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/asset_group_listing_group_filter_service.proto", + Metadata: "google/ads/googleads/v17/services/asset_group_listing_group_filter_service.proto", } diff --git a/services/asset_group_service.pb.go b/services/asset_group_service.pb.go index f1df042c..d9d1884f 100644 --- a/services/asset_group_service.pb.go +++ b/services/asset_group_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/asset_group_service.proto +// source: google/ads/googleads/v17/services/asset_group_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [AssetGroupService.MutateAssetGroups][google.ads.googleads.v16.services.AssetGroupService.MutateAssetGroups]. +// [AssetGroupService.MutateAssetGroups][google.ads.googleads.v17.services.AssetGroupService.MutateAssetGroups]. type MutateAssetGroupsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -57,7 +57,7 @@ type MutateAssetGroupsRequest struct { func (x *MutateAssetGroupsRequest) Reset() { *x = MutateAssetGroupsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_asset_group_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_asset_group_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -70,7 +70,7 @@ func (x *MutateAssetGroupsRequest) String() string { func (*MutateAssetGroupsRequest) ProtoMessage() {} func (x *MutateAssetGroupsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_asset_group_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_asset_group_service_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 *MutateAssetGroupsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetGroupsRequest.ProtoReflect.Descriptor instead. func (*MutateAssetGroupsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_asset_group_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_asset_group_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAssetGroupsRequest) GetCustomerId() string { @@ -128,7 +128,7 @@ type AssetGroupOperation struct { func (x *AssetGroupOperation) Reset() { *x = AssetGroupOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_asset_group_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_asset_group_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -141,7 +141,7 @@ func (x *AssetGroupOperation) String() string { func (*AssetGroupOperation) ProtoMessage() {} func (x *AssetGroupOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_asset_group_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_asset_group_service_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 *AssetGroupOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetGroupOperation.ProtoReflect.Descriptor instead. func (*AssetGroupOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_asset_group_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_asset_group_service_proto_rawDescGZIP(), []int{1} } func (x *AssetGroupOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -238,7 +238,7 @@ type MutateAssetGroupsResponse struct { func (x *MutateAssetGroupsResponse) Reset() { *x = MutateAssetGroupsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_asset_group_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_asset_group_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -251,7 +251,7 @@ func (x *MutateAssetGroupsResponse) String() string { func (*MutateAssetGroupsResponse) ProtoMessage() {} func (x *MutateAssetGroupsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_asset_group_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_asset_group_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -264,7 +264,7 @@ func (x *MutateAssetGroupsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetGroupsResponse.ProtoReflect.Descriptor instead. func (*MutateAssetGroupsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_asset_group_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_asset_group_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAssetGroupsResponse) GetResults() []*MutateAssetGroupResult { @@ -294,7 +294,7 @@ type MutateAssetGroupResult struct { func (x *MutateAssetGroupResult) Reset() { *x = MutateAssetGroupResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_asset_group_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_asset_group_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -307,7 +307,7 @@ func (x *MutateAssetGroupResult) String() string { func (*MutateAssetGroupResult) ProtoMessage() {} func (x *MutateAssetGroupResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_asset_group_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_asset_group_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -320,7 +320,7 @@ func (x *MutateAssetGroupResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetGroupResult.ProtoReflect.Descriptor instead. func (*MutateAssetGroupResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_asset_group_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_asset_group_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAssetGroupResult) GetResourceName() string { @@ -330,17 +330,17 @@ func (x *MutateAssetGroupResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_asset_group_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_asset_group_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_asset_group_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_asset_group_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 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, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, @@ -360,7 +360,7 @@ var file_google_ads_googleads_v16_services_asset_group_service_proto_rawDesc = [ 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5b, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, @@ -373,12 +373,12 @@ var file_google_ads_googleads_v16_services_asset_group_service_proto_rawDesc = [ 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x48, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 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, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x48, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x02, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x42, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x28, 0xfa, 0x41, 0x25, 0x0a, 0x23, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, @@ -389,7 +389,7 @@ var file_google_ads_googleads_v16_services_asset_group_service_proto_rawDesc = [ 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x53, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x46, 0x0a, 0x15, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, @@ -407,16 +407,16 @@ var file_google_ads_googleads_v16_services_asset_group_service_proto_rawDesc = [ 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xe5, 0x01, 0x0a, 0x11, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x12, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x55, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x36, 0x3a, - 0x01, 0x2a, 0x22, 0x31, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x01, 0x2a, 0x22, 0x31, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, @@ -425,55 +425,55 @@ var file_google_ads_googleads_v16_services_asset_group_service_proto_rawDesc = [ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x82, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x16, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_asset_group_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_asset_group_service_proto_rawDescData = file_google_ads_googleads_v16_services_asset_group_service_proto_rawDesc + file_google_ads_googleads_v17_services_asset_group_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_asset_group_service_proto_rawDescData = file_google_ads_googleads_v17_services_asset_group_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_asset_group_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_asset_group_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_asset_group_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_asset_group_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_asset_group_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_asset_group_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_asset_group_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_asset_group_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_asset_group_service_proto_rawDescData + return file_google_ads_googleads_v17_services_asset_group_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_asset_group_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_asset_group_service_proto_goTypes = []interface{}{ - (*MutateAssetGroupsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateAssetGroupsRequest - (*AssetGroupOperation)(nil), // 1: google.ads.googleads.v16.services.AssetGroupOperation - (*MutateAssetGroupsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateAssetGroupsResponse - (*MutateAssetGroupResult)(nil), // 3: google.ads.googleads.v16.services.MutateAssetGroupResult +var file_google_ads_googleads_v17_services_asset_group_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_asset_group_service_proto_goTypes = []interface{}{ + (*MutateAssetGroupsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateAssetGroupsRequest + (*AssetGroupOperation)(nil), // 1: google.ads.googleads.v17.services.AssetGroupOperation + (*MutateAssetGroupsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateAssetGroupsResponse + (*MutateAssetGroupResult)(nil), // 3: google.ads.googleads.v17.services.MutateAssetGroupResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.AssetGroup)(nil), // 5: google.ads.googleads.v16.resources.AssetGroup + (*resources.AssetGroup)(nil), // 5: google.ads.googleads.v17.resources.AssetGroup (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v16_services_asset_group_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateAssetGroupsRequest.operations:type_name -> google.ads.googleads.v16.services.AssetGroupOperation - 4, // 1: google.ads.googleads.v16.services.AssetGroupOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v16.services.AssetGroupOperation.create:type_name -> google.ads.googleads.v16.resources.AssetGroup - 5, // 3: google.ads.googleads.v16.services.AssetGroupOperation.update:type_name -> google.ads.googleads.v16.resources.AssetGroup - 3, // 4: google.ads.googleads.v16.services.MutateAssetGroupsResponse.results:type_name -> google.ads.googleads.v16.services.MutateAssetGroupResult - 6, // 5: google.ads.googleads.v16.services.MutateAssetGroupsResponse.partial_failure_error:type_name -> google.rpc.Status - 0, // 6: google.ads.googleads.v16.services.AssetGroupService.MutateAssetGroups:input_type -> google.ads.googleads.v16.services.MutateAssetGroupsRequest - 2, // 7: google.ads.googleads.v16.services.AssetGroupService.MutateAssetGroups:output_type -> google.ads.googleads.v16.services.MutateAssetGroupsResponse +var file_google_ads_googleads_v17_services_asset_group_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateAssetGroupsRequest.operations:type_name -> google.ads.googleads.v17.services.AssetGroupOperation + 4, // 1: google.ads.googleads.v17.services.AssetGroupOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v17.services.AssetGroupOperation.create:type_name -> google.ads.googleads.v17.resources.AssetGroup + 5, // 3: google.ads.googleads.v17.services.AssetGroupOperation.update:type_name -> google.ads.googleads.v17.resources.AssetGroup + 3, // 4: google.ads.googleads.v17.services.MutateAssetGroupsResponse.results:type_name -> google.ads.googleads.v17.services.MutateAssetGroupResult + 6, // 5: google.ads.googleads.v17.services.MutateAssetGroupsResponse.partial_failure_error:type_name -> google.rpc.Status + 0, // 6: google.ads.googleads.v17.services.AssetGroupService.MutateAssetGroups:input_type -> google.ads.googleads.v17.services.MutateAssetGroupsRequest + 2, // 7: google.ads.googleads.v17.services.AssetGroupService.MutateAssetGroups:output_type -> google.ads.googleads.v17.services.MutateAssetGroupsResponse 7, // [7:8] is the sub-list for method output_type 6, // [6:7] is the sub-list for method input_type 6, // [6:6] is the sub-list for extension type_name @@ -481,13 +481,13 @@ var file_google_ads_googleads_v16_services_asset_group_service_proto_depIdxs = [ 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_asset_group_service_proto_init() } -func file_google_ads_googleads_v16_services_asset_group_service_proto_init() { - if File_google_ads_googleads_v16_services_asset_group_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_asset_group_service_proto_init() } +func file_google_ads_googleads_v17_services_asset_group_service_proto_init() { + if File_google_ads_googleads_v17_services_asset_group_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_asset_group_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_asset_group_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAssetGroupsRequest); i { case 0: return &v.state @@ -499,7 +499,7 @@ func file_google_ads_googleads_v16_services_asset_group_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_asset_group_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_asset_group_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AssetGroupOperation); i { case 0: return &v.state @@ -511,7 +511,7 @@ func file_google_ads_googleads_v16_services_asset_group_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_asset_group_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_asset_group_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAssetGroupsResponse); i { case 0: return &v.state @@ -523,7 +523,7 @@ func file_google_ads_googleads_v16_services_asset_group_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_asset_group_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_asset_group_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAssetGroupResult); i { case 0: return &v.state @@ -536,7 +536,7 @@ func file_google_ads_googleads_v16_services_asset_group_service_proto_init() { } } } - file_google_ads_googleads_v16_services_asset_group_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_asset_group_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*AssetGroupOperation_Create)(nil), (*AssetGroupOperation_Update)(nil), (*AssetGroupOperation_Remove)(nil), @@ -545,18 +545,18 @@ func file_google_ads_googleads_v16_services_asset_group_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_asset_group_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_asset_group_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_asset_group_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_asset_group_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_asset_group_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_asset_group_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_asset_group_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_asset_group_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_asset_group_service_proto = out.File - file_google_ads_googleads_v16_services_asset_group_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_asset_group_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_asset_group_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_asset_group_service_proto = out.File + file_google_ads_googleads_v17_services_asset_group_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_asset_group_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_asset_group_service_proto_depIdxs = nil } diff --git a/services/asset_group_service_grpc.pb.go b/services/asset_group_service_grpc.pb.go index 95846b2b..eab3b69f 100644 --- a/services/asset_group_service_grpc.pb.go +++ b/services/asset_group_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/asset_group_service.proto +// source: google/ads/googleads/v17/services/asset_group_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - AssetGroupService_MutateAssetGroups_FullMethodName = "/google.ads.googleads.v16.services.AssetGroupService/MutateAssetGroups" + AssetGroupService_MutateAssetGroups_FullMethodName = "/google.ads.googleads.v17.services.AssetGroupService/MutateAssetGroups" ) // AssetGroupServiceClient is the client API for AssetGroupService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage asset group type AssetGroupServiceClient interface { // Creates, updates or removes asset groups. Operation statuses are // returned. @@ -54,8 +56,9 @@ func NewAssetGroupServiceClient(cc grpc.ClientConnInterface) AssetGroupServiceCl } func (c *assetGroupServiceClient) MutateAssetGroups(ctx context.Context, in *MutateAssetGroupsRequest, opts ...grpc.CallOption) (*MutateAssetGroupsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateAssetGroupsResponse) - err := c.cc.Invoke(ctx, AssetGroupService_MutateAssetGroups_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AssetGroupService_MutateAssetGroups_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -65,6 +68,8 @@ func (c *assetGroupServiceClient) MutateAssetGroups(ctx context.Context, in *Mut // AssetGroupServiceServer is the server API for AssetGroupService service. // All implementations must embed UnimplementedAssetGroupServiceServer // for forward compatibility +// +// Service to manage asset group type AssetGroupServiceServer interface { // Creates, updates or removes asset groups. Operation statuses are // returned. @@ -114,7 +119,7 @@ func _AssetGroupService_MutateAssetGroups_Handler(srv interface{}, ctx context.C // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var AssetGroupService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.AssetGroupService", + ServiceName: "google.ads.googleads.v17.services.AssetGroupService", HandlerType: (*AssetGroupServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -123,5 +128,5 @@ var AssetGroupService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/asset_group_service.proto", + Metadata: "google/ads/googleads/v17/services/asset_group_service.proto", } diff --git a/services/asset_group_signal_service.pb.go b/services/asset_group_signal_service.pb.go index 82e695c6..f25745a6 100644 --- a/services/asset_group_signal_service.pb.go +++ b/services/asset_group_signal_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/asset_group_signal_service.proto +// source: google/ads/googleads/v17/services/asset_group_signal_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [AssetGroupSignalService.MutateAssetGroupSignals][google.ads.googleads.v16.services.AssetGroupSignalService.MutateAssetGroupSignals]. +// [AssetGroupSignalService.MutateAssetGroupSignals][google.ads.googleads.v17.services.AssetGroupSignalService.MutateAssetGroupSignals]. type MutateAssetGroupSignalsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -61,13 +61,13 @@ type MutateAssetGroupSignalsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateAssetGroupSignalsRequest) Reset() { *x = MutateAssetGroupSignalsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_asset_group_signal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_asset_group_signal_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80,7 +80,7 @@ func (x *MutateAssetGroupSignalsRequest) String() string { func (*MutateAssetGroupSignalsRequest) ProtoMessage() {} func (x *MutateAssetGroupSignalsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_asset_group_signal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_asset_group_signal_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93,7 +93,7 @@ func (x *MutateAssetGroupSignalsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetGroupSignalsRequest.ProtoReflect.Descriptor instead. func (*MutateAssetGroupSignalsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_asset_group_signal_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_asset_group_signal_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAssetGroupSignalsRequest) GetCustomerId() string { @@ -159,7 +159,7 @@ type AssetGroupSignalOperation struct { func (x *AssetGroupSignalOperation) Reset() { *x = AssetGroupSignalOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_asset_group_signal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_asset_group_signal_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -172,7 +172,7 @@ func (x *AssetGroupSignalOperation) String() string { func (*AssetGroupSignalOperation) ProtoMessage() {} func (x *AssetGroupSignalOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_asset_group_signal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_asset_group_signal_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -185,7 +185,7 @@ func (x *AssetGroupSignalOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetGroupSignalOperation.ProtoReflect.Descriptor instead. func (*AssetGroupSignalOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_asset_group_signal_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_asset_group_signal_service_proto_rawDescGZIP(), []int{1} } func (x *AssetGroupSignalOperation) GetExemptPolicyViolationKeys() []*common.PolicyViolationKey { @@ -255,7 +255,7 @@ type MutateAssetGroupSignalsResponse struct { func (x *MutateAssetGroupSignalsResponse) Reset() { *x = MutateAssetGroupSignalsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_asset_group_signal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_asset_group_signal_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -268,7 +268,7 @@ func (x *MutateAssetGroupSignalsResponse) String() string { func (*MutateAssetGroupSignalsResponse) ProtoMessage() {} func (x *MutateAssetGroupSignalsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_asset_group_signal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_asset_group_signal_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -281,7 +281,7 @@ func (x *MutateAssetGroupSignalsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetGroupSignalsResponse.ProtoReflect.Descriptor instead. func (*MutateAssetGroupSignalsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_asset_group_signal_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_asset_group_signal_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAssetGroupSignalsResponse) GetResults() []*MutateAssetGroupSignalResult { @@ -315,7 +315,7 @@ type MutateAssetGroupSignalResult struct { func (x *MutateAssetGroupSignalResult) Reset() { *x = MutateAssetGroupSignalResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_asset_group_signal_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_asset_group_signal_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -328,7 +328,7 @@ func (x *MutateAssetGroupSignalResult) String() string { func (*MutateAssetGroupSignalResult) ProtoMessage() {} func (x *MutateAssetGroupSignalResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_asset_group_signal_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_asset_group_signal_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -341,7 +341,7 @@ func (x *MutateAssetGroupSignalResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetGroupSignalResult.ProtoReflect.Descriptor instead. func (*MutateAssetGroupSignalResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_asset_group_signal_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_asset_group_signal_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAssetGroupSignalResult) GetResourceName() string { @@ -358,24 +358,24 @@ func (x *MutateAssetGroupSignalResult) GetAssetGroupSignal() *resources.AssetGro return nil } -var File_google_ads_googleads_v16_services_asset_group_signal_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_asset_group_signal_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_asset_group_signal_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_asset_group_signal_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 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, 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, 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, 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, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, @@ -394,7 +394,7 @@ var file_google_ads_googleads_v16_services_asset_group_signal_service_proto_rawD 0x72, 0x49, 0x64, 0x12, 0x61, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, @@ -405,7 +405,7 @@ var file_google_ads_googleads_v16_services_asset_group_signal_service_proto_rawD 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, @@ -416,13 +416,13 @@ var file_google_ads_googleads_v16_services_asset_group_signal_service_proto_rawD 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x76, 0x69, 0x6f, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6b, 0x65, 0x79, 0x73, 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, 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, 0x56, 0x69, 0x6f, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4b, 0x65, 0x79, 0x42, 0x03, 0xe0, 0x41, 0x01, 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, 0x12, 0x4e, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 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, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x48, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2e, @@ -435,7 +435,7 @@ var file_google_ads_googleads_v16_services_asset_group_signal_service_proto_rawD 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x59, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x46, 0x0a, 0x15, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, @@ -453,7 +453,7 @@ var file_google_ads_googleads_v16_services_asset_group_signal_service_proto_rawD 0x6d, 0x65, 0x12, 0x62, 0x0a, 0x12, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 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, 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, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x52, 0x10, 0x61, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x32, 0xe0, 0x02, 0x0a, 0x17, 0x41, 0x73, 0x73, 0x65, 0x74, @@ -461,16 +461,16 @@ var file_google_ads_googleads_v16_services_asset_group_signal_service_proto_rawD 0x63, 0x65, 0x12, 0xfd, 0x01, 0x0a, 0x17, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5b, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, - 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3c, 0x3a, 0x01, 0x2a, 0x22, 0x37, 0x2f, 0x76, 0x31, 0x36, 0x2f, + 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3c, 0x3a, 0x01, 0x2a, 0x22, 0x37, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, @@ -480,57 +480,57 @@ var file_google_ads_googleads_v16_services_asset_group_signal_service_proto_rawD 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x88, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1c, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, + 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_asset_group_signal_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_asset_group_signal_service_proto_rawDescData = file_google_ads_googleads_v16_services_asset_group_signal_service_proto_rawDesc + file_google_ads_googleads_v17_services_asset_group_signal_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_asset_group_signal_service_proto_rawDescData = file_google_ads_googleads_v17_services_asset_group_signal_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_asset_group_signal_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_asset_group_signal_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_asset_group_signal_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_asset_group_signal_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_asset_group_signal_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_asset_group_signal_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_asset_group_signal_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_asset_group_signal_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_asset_group_signal_service_proto_rawDescData -} - -var file_google_ads_googleads_v16_services_asset_group_signal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_asset_group_signal_service_proto_goTypes = []interface{}{ - (*MutateAssetGroupSignalsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateAssetGroupSignalsRequest - (*AssetGroupSignalOperation)(nil), // 1: google.ads.googleads.v16.services.AssetGroupSignalOperation - (*MutateAssetGroupSignalsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateAssetGroupSignalsResponse - (*MutateAssetGroupSignalResult)(nil), // 3: google.ads.googleads.v16.services.MutateAssetGroupSignalResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - (*common.PolicyViolationKey)(nil), // 5: google.ads.googleads.v16.common.PolicyViolationKey - (*resources.AssetGroupSignal)(nil), // 6: google.ads.googleads.v16.resources.AssetGroupSignal + return file_google_ads_googleads_v17_services_asset_group_signal_service_proto_rawDescData +} + +var file_google_ads_googleads_v17_services_asset_group_signal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_asset_group_signal_service_proto_goTypes = []interface{}{ + (*MutateAssetGroupSignalsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateAssetGroupSignalsRequest + (*AssetGroupSignalOperation)(nil), // 1: google.ads.googleads.v17.services.AssetGroupSignalOperation + (*MutateAssetGroupSignalsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateAssetGroupSignalsResponse + (*MutateAssetGroupSignalResult)(nil), // 3: google.ads.googleads.v17.services.MutateAssetGroupSignalResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + (*common.PolicyViolationKey)(nil), // 5: google.ads.googleads.v17.common.PolicyViolationKey + (*resources.AssetGroupSignal)(nil), // 6: google.ads.googleads.v17.resources.AssetGroupSignal (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_asset_group_signal_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateAssetGroupSignalsRequest.operations:type_name -> google.ads.googleads.v16.services.AssetGroupSignalOperation - 4, // 1: google.ads.googleads.v16.services.MutateAssetGroupSignalsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.AssetGroupSignalOperation.exempt_policy_violation_keys:type_name -> google.ads.googleads.v16.common.PolicyViolationKey - 6, // 3: google.ads.googleads.v16.services.AssetGroupSignalOperation.create:type_name -> google.ads.googleads.v16.resources.AssetGroupSignal - 3, // 4: google.ads.googleads.v16.services.MutateAssetGroupSignalsResponse.results:type_name -> google.ads.googleads.v16.services.MutateAssetGroupSignalResult - 7, // 5: google.ads.googleads.v16.services.MutateAssetGroupSignalsResponse.partial_failure_error:type_name -> google.rpc.Status - 6, // 6: google.ads.googleads.v16.services.MutateAssetGroupSignalResult.asset_group_signal:type_name -> google.ads.googleads.v16.resources.AssetGroupSignal - 0, // 7: google.ads.googleads.v16.services.AssetGroupSignalService.MutateAssetGroupSignals:input_type -> google.ads.googleads.v16.services.MutateAssetGroupSignalsRequest - 2, // 8: google.ads.googleads.v16.services.AssetGroupSignalService.MutateAssetGroupSignals:output_type -> google.ads.googleads.v16.services.MutateAssetGroupSignalsResponse +var file_google_ads_googleads_v17_services_asset_group_signal_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateAssetGroupSignalsRequest.operations:type_name -> google.ads.googleads.v17.services.AssetGroupSignalOperation + 4, // 1: google.ads.googleads.v17.services.MutateAssetGroupSignalsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.AssetGroupSignalOperation.exempt_policy_violation_keys:type_name -> google.ads.googleads.v17.common.PolicyViolationKey + 6, // 3: google.ads.googleads.v17.services.AssetGroupSignalOperation.create:type_name -> google.ads.googleads.v17.resources.AssetGroupSignal + 3, // 4: google.ads.googleads.v17.services.MutateAssetGroupSignalsResponse.results:type_name -> google.ads.googleads.v17.services.MutateAssetGroupSignalResult + 7, // 5: google.ads.googleads.v17.services.MutateAssetGroupSignalsResponse.partial_failure_error:type_name -> google.rpc.Status + 6, // 6: google.ads.googleads.v17.services.MutateAssetGroupSignalResult.asset_group_signal:type_name -> google.ads.googleads.v17.resources.AssetGroupSignal + 0, // 7: google.ads.googleads.v17.services.AssetGroupSignalService.MutateAssetGroupSignals:input_type -> google.ads.googleads.v17.services.MutateAssetGroupSignalsRequest + 2, // 8: google.ads.googleads.v17.services.AssetGroupSignalService.MutateAssetGroupSignals:output_type -> google.ads.googleads.v17.services.MutateAssetGroupSignalsResponse 8, // [8:9] is the sub-list for method output_type 7, // [7:8] is the sub-list for method input_type 7, // [7:7] is the sub-list for extension type_name @@ -538,13 +538,13 @@ var file_google_ads_googleads_v16_services_asset_group_signal_service_proto_depI 0, // [0:7] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_asset_group_signal_service_proto_init() } -func file_google_ads_googleads_v16_services_asset_group_signal_service_proto_init() { - if File_google_ads_googleads_v16_services_asset_group_signal_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_asset_group_signal_service_proto_init() } +func file_google_ads_googleads_v17_services_asset_group_signal_service_proto_init() { + if File_google_ads_googleads_v17_services_asset_group_signal_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_asset_group_signal_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_asset_group_signal_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAssetGroupSignalsRequest); i { case 0: return &v.state @@ -556,7 +556,7 @@ func file_google_ads_googleads_v16_services_asset_group_signal_service_proto_ini return nil } } - file_google_ads_googleads_v16_services_asset_group_signal_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_asset_group_signal_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AssetGroupSignalOperation); i { case 0: return &v.state @@ -568,7 +568,7 @@ func file_google_ads_googleads_v16_services_asset_group_signal_service_proto_ini return nil } } - file_google_ads_googleads_v16_services_asset_group_signal_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_asset_group_signal_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAssetGroupSignalsResponse); i { case 0: return &v.state @@ -580,7 +580,7 @@ func file_google_ads_googleads_v16_services_asset_group_signal_service_proto_ini return nil } } - file_google_ads_googleads_v16_services_asset_group_signal_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_asset_group_signal_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAssetGroupSignalResult); i { case 0: return &v.state @@ -593,7 +593,7 @@ func file_google_ads_googleads_v16_services_asset_group_signal_service_proto_ini } } } - file_google_ads_googleads_v16_services_asset_group_signal_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_asset_group_signal_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*AssetGroupSignalOperation_Create)(nil), (*AssetGroupSignalOperation_Remove)(nil), } @@ -601,18 +601,18 @@ func file_google_ads_googleads_v16_services_asset_group_signal_service_proto_ini out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_asset_group_signal_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_asset_group_signal_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_asset_group_signal_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_asset_group_signal_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_asset_group_signal_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_asset_group_signal_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_asset_group_signal_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_asset_group_signal_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_asset_group_signal_service_proto = out.File - file_google_ads_googleads_v16_services_asset_group_signal_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_asset_group_signal_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_asset_group_signal_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_asset_group_signal_service_proto = out.File + file_google_ads_googleads_v17_services_asset_group_signal_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_asset_group_signal_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_asset_group_signal_service_proto_depIdxs = nil } diff --git a/services/asset_group_signal_service_grpc.pb.go b/services/asset_group_signal_service_grpc.pb.go index a61257e4..15c650d2 100644 --- a/services/asset_group_signal_service_grpc.pb.go +++ b/services/asset_group_signal_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/asset_group_signal_service.proto +// source: google/ads/googleads/v17/services/asset_group_signal_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - AssetGroupSignalService_MutateAssetGroupSignals_FullMethodName = "/google.ads.googleads.v16.services.AssetGroupSignalService/MutateAssetGroupSignals" + AssetGroupSignalService_MutateAssetGroupSignals_FullMethodName = "/google.ads.googleads.v17.services.AssetGroupSignalService/MutateAssetGroupSignals" ) // AssetGroupSignalServiceClient is the client API for AssetGroupSignalService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage asset group signal. type AssetGroupSignalServiceClient interface { // Creates or removes asset group signals. Operation statuses are // returned. @@ -54,8 +56,9 @@ func NewAssetGroupSignalServiceClient(cc grpc.ClientConnInterface) AssetGroupSig } func (c *assetGroupSignalServiceClient) MutateAssetGroupSignals(ctx context.Context, in *MutateAssetGroupSignalsRequest, opts ...grpc.CallOption) (*MutateAssetGroupSignalsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateAssetGroupSignalsResponse) - err := c.cc.Invoke(ctx, AssetGroupSignalService_MutateAssetGroupSignals_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AssetGroupSignalService_MutateAssetGroupSignals_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -65,6 +68,8 @@ func (c *assetGroupSignalServiceClient) MutateAssetGroupSignals(ctx context.Cont // AssetGroupSignalServiceServer is the server API for AssetGroupSignalService service. // All implementations must embed UnimplementedAssetGroupSignalServiceServer // for forward compatibility +// +// Service to manage asset group signal. type AssetGroupSignalServiceServer interface { // Creates or removes asset group signals. Operation statuses are // returned. @@ -115,7 +120,7 @@ func _AssetGroupSignalService_MutateAssetGroupSignals_Handler(srv interface{}, c // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var AssetGroupSignalService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.AssetGroupSignalService", + ServiceName: "google.ads.googleads.v17.services.AssetGroupSignalService", HandlerType: (*AssetGroupSignalServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -124,5 +129,5 @@ var AssetGroupSignalService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/asset_group_signal_service.proto", + Metadata: "google/ads/googleads/v17/services/asset_group_signal_service.proto", } diff --git a/services/asset_service.pb.go b/services/asset_service.pb.go index e767a834..0a8cea23 100644 --- a/services/asset_service.pb.go +++ b/services/asset_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/asset_service.proto +// source: google/ads/googleads/v17/services/asset_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [AssetService.MutateAssets][google.ads.googleads.v16.services.AssetService.MutateAssets] +// [AssetService.MutateAssets][google.ads.googleads.v17.services.AssetService.MutateAssets] type MutateAssetsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -57,7 +57,7 @@ type MutateAssetsRequest struct { PartialFailure bool `protobuf:"varint,5,opt,name=partial_failure,json=partialFailure,proto3" json:"partial_failure,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,3,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,3,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` // If true, the request is validated but not executed. Only errors are // returned, not results. ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` @@ -66,7 +66,7 @@ type MutateAssetsRequest struct { func (x *MutateAssetsRequest) Reset() { *x = MutateAssetsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_asset_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_asset_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateAssetsRequest) String() string { func (*MutateAssetsRequest) ProtoMessage() {} func (x *MutateAssetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_asset_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_asset_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateAssetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetsRequest.ProtoReflect.Descriptor instead. func (*MutateAssetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_asset_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_asset_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAssetsRequest) GetCustomerId() string { @@ -153,7 +153,7 @@ type AssetOperation struct { func (x *AssetOperation) Reset() { *x = AssetOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_asset_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_asset_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -166,7 +166,7 @@ func (x *AssetOperation) String() string { func (*AssetOperation) ProtoMessage() {} func (x *AssetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_asset_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_asset_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -179,7 +179,7 @@ func (x *AssetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetOperation.ProtoReflect.Descriptor instead. func (*AssetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_asset_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_asset_service_proto_rawDescGZIP(), []int{1} } func (x *AssetOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -249,7 +249,7 @@ type MutateAssetsResponse struct { func (x *MutateAssetsResponse) Reset() { *x = MutateAssetsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_asset_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_asset_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -262,7 +262,7 @@ func (x *MutateAssetsResponse) String() string { func (*MutateAssetsResponse) ProtoMessage() {} func (x *MutateAssetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_asset_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_asset_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -275,7 +275,7 @@ func (x *MutateAssetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetsResponse.ProtoReflect.Descriptor instead. func (*MutateAssetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_asset_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_asset_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAssetsResponse) GetPartialFailureError() *status.Status { @@ -308,7 +308,7 @@ type MutateAssetResult struct { func (x *MutateAssetResult) Reset() { *x = MutateAssetResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_asset_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_asset_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -321,7 +321,7 @@ func (x *MutateAssetResult) String() string { func (*MutateAssetResult) ProtoMessage() {} func (x *MutateAssetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_asset_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_asset_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -334,7 +334,7 @@ func (x *MutateAssetResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetResult.ProtoReflect.Descriptor instead. func (*MutateAssetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_asset_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_asset_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAssetResult) GetResourceName() string { @@ -351,20 +351,20 @@ func (x *MutateAssetResult) GetAsset() *resources.Asset { return nil } -var File_google_ads_googleads_v16_services_asset_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_asset_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_asset_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_asset_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, 0x65, 0x73, 0x70, 0x6f, + 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, @@ -384,7 +384,7 @@ var file_google_ads_googleads_v16_services_asset_service_proto_rawDesc = []byte{ 0x49, 0x64, 0x12, 0x56, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x18, 0x05, 0x20, @@ -392,7 +392,7 @@ var file_google_ads_googleads_v16_services_asset_service_proto_rawDesc = []byte{ 0x75, 0x72, 0x65, 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, @@ -407,11 +407,11 @@ var file_google_ads_googleads_v16_services_asset_service_proto_rawDesc = []byte{ 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x43, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x43, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 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, 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, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xae, 0x01, 0x0a, 0x14, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, @@ -422,7 +422,7 @@ var file_google_ads_googleads_v16_services_asset_service_proto_rawDesc = []byte{ 0x72, 0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x4e, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x9e, 0x01, 0x0a, 0x11, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, @@ -433,20 +433,20 @@ var file_google_ads_googleads_v16_services_asset_service_proto_rawDesc = []byte{ 0x73, 0x65, 0x74, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x3f, 0x0a, 0x05, 0x61, 0x73, 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, 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, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, 0x32, 0xa9, 0x02, 0x0a, 0x0c, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xd1, 0x01, 0x0a, 0x0c, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x12, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x50, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, - 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x31, 0x3a, 0x01, 0x2a, 0x22, 0x2c, 0x2f, 0x76, 0x31, 0x36, 0x2f, + 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x31, 0x3a, 0x01, 0x2a, 0x22, 0x2c, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, @@ -455,58 +455,58 @@ var file_google_ads_googleads_v16_services_asset_service_proto_rawDesc = []byte{ 0x77, 0x77, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0xfd, 0x01, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x11, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, + 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_asset_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_asset_service_proto_rawDescData = file_google_ads_googleads_v16_services_asset_service_proto_rawDesc + file_google_ads_googleads_v17_services_asset_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_asset_service_proto_rawDescData = file_google_ads_googleads_v17_services_asset_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_asset_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_asset_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_asset_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_asset_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_asset_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_asset_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_asset_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_asset_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_asset_service_proto_rawDescData + return file_google_ads_googleads_v17_services_asset_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_asset_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_asset_service_proto_goTypes = []interface{}{ - (*MutateAssetsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateAssetsRequest - (*AssetOperation)(nil), // 1: google.ads.googleads.v16.services.AssetOperation - (*MutateAssetsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateAssetsResponse - (*MutateAssetResult)(nil), // 3: google.ads.googleads.v16.services.MutateAssetResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_asset_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_asset_service_proto_goTypes = []interface{}{ + (*MutateAssetsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateAssetsRequest + (*AssetOperation)(nil), // 1: google.ads.googleads.v17.services.AssetOperation + (*MutateAssetsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateAssetsResponse + (*MutateAssetResult)(nil), // 3: google.ads.googleads.v17.services.MutateAssetResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.Asset)(nil), // 6: google.ads.googleads.v16.resources.Asset + (*resources.Asset)(nil), // 6: google.ads.googleads.v17.resources.Asset (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_asset_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateAssetsRequest.operations:type_name -> google.ads.googleads.v16.services.AssetOperation - 4, // 1: google.ads.googleads.v16.services.MutateAssetsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.AssetOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.AssetOperation.create:type_name -> google.ads.googleads.v16.resources.Asset - 6, // 4: google.ads.googleads.v16.services.AssetOperation.update:type_name -> google.ads.googleads.v16.resources.Asset - 7, // 5: google.ads.googleads.v16.services.MutateAssetsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v16.services.MutateAssetsResponse.results:type_name -> google.ads.googleads.v16.services.MutateAssetResult - 6, // 7: google.ads.googleads.v16.services.MutateAssetResult.asset:type_name -> google.ads.googleads.v16.resources.Asset - 0, // 8: google.ads.googleads.v16.services.AssetService.MutateAssets:input_type -> google.ads.googleads.v16.services.MutateAssetsRequest - 2, // 9: google.ads.googleads.v16.services.AssetService.MutateAssets:output_type -> google.ads.googleads.v16.services.MutateAssetsResponse +var file_google_ads_googleads_v17_services_asset_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateAssetsRequest.operations:type_name -> google.ads.googleads.v17.services.AssetOperation + 4, // 1: google.ads.googleads.v17.services.MutateAssetsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.AssetOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.AssetOperation.create:type_name -> google.ads.googleads.v17.resources.Asset + 6, // 4: google.ads.googleads.v17.services.AssetOperation.update:type_name -> google.ads.googleads.v17.resources.Asset + 7, // 5: google.ads.googleads.v17.services.MutateAssetsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v17.services.MutateAssetsResponse.results:type_name -> google.ads.googleads.v17.services.MutateAssetResult + 6, // 7: google.ads.googleads.v17.services.MutateAssetResult.asset:type_name -> google.ads.googleads.v17.resources.Asset + 0, // 8: google.ads.googleads.v17.services.AssetService.MutateAssets:input_type -> google.ads.googleads.v17.services.MutateAssetsRequest + 2, // 9: google.ads.googleads.v17.services.AssetService.MutateAssets:output_type -> google.ads.googleads.v17.services.MutateAssetsResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -514,13 +514,13 @@ var file_google_ads_googleads_v16_services_asset_service_proto_depIdxs = []int32 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_asset_service_proto_init() } -func file_google_ads_googleads_v16_services_asset_service_proto_init() { - if File_google_ads_googleads_v16_services_asset_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_asset_service_proto_init() } +func file_google_ads_googleads_v17_services_asset_service_proto_init() { + if File_google_ads_googleads_v17_services_asset_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_asset_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_asset_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAssetsRequest); i { case 0: return &v.state @@ -532,7 +532,7 @@ func file_google_ads_googleads_v16_services_asset_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_asset_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_asset_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AssetOperation); i { case 0: return &v.state @@ -544,7 +544,7 @@ func file_google_ads_googleads_v16_services_asset_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_asset_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_asset_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAssetsResponse); i { case 0: return &v.state @@ -556,7 +556,7 @@ func file_google_ads_googleads_v16_services_asset_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_asset_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_asset_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAssetResult); i { case 0: return &v.state @@ -569,7 +569,7 @@ func file_google_ads_googleads_v16_services_asset_service_proto_init() { } } } - file_google_ads_googleads_v16_services_asset_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_asset_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*AssetOperation_Create)(nil), (*AssetOperation_Update)(nil), } @@ -577,18 +577,18 @@ func file_google_ads_googleads_v16_services_asset_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_asset_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_asset_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_asset_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_asset_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_asset_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_asset_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_asset_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_asset_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_asset_service_proto = out.File - file_google_ads_googleads_v16_services_asset_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_asset_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_asset_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_asset_service_proto = out.File + file_google_ads_googleads_v17_services_asset_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_asset_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_asset_service_proto_depIdxs = nil } diff --git a/services/asset_service_grpc.pb.go b/services/asset_service_grpc.pb.go index e7ae51c0..a34266c6 100644 --- a/services/asset_service_grpc.pb.go +++ b/services/asset_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/asset_service.proto +// source: google/ads/googleads/v17/services/asset_service.proto package services @@ -29,16 +29,20 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - AssetService_MutateAssets_FullMethodName = "/google.ads.googleads.v16.services.AssetService/MutateAssets" + AssetService_MutateAssets_FullMethodName = "/google.ads.googleads.v17.services.AssetService/MutateAssets" ) // AssetServiceClient is the client API for AssetService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage assets. Asset types can be created with AssetService are +// YoutubeVideoAsset, MediaBundleAsset and ImageAsset. TextAsset should be +// created with Ad inline. type AssetServiceClient interface { // Creates assets. Operation statuses are returned. // @@ -83,8 +87,9 @@ func NewAssetServiceClient(cc grpc.ClientConnInterface) AssetServiceClient { } func (c *assetServiceClient) MutateAssets(ctx context.Context, in *MutateAssetsRequest, opts ...grpc.CallOption) (*MutateAssetsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateAssetsResponse) - err := c.cc.Invoke(ctx, AssetService_MutateAssets_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AssetService_MutateAssets_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -94,6 +99,10 @@ func (c *assetServiceClient) MutateAssets(ctx context.Context, in *MutateAssetsR // AssetServiceServer is the server API for AssetService service. // All implementations must embed UnimplementedAssetServiceServer // for forward compatibility +// +// Service to manage assets. Asset types can be created with AssetService are +// YoutubeVideoAsset, MediaBundleAsset and ImageAsset. TextAsset should be +// created with Ad inline. type AssetServiceServer interface { // Creates assets. Operation statuses are returned. // @@ -172,7 +181,7 @@ func _AssetService_MutateAssets_Handler(srv interface{}, ctx context.Context, de // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var AssetService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.AssetService", + ServiceName: "google.ads.googleads.v17.services.AssetService", HandlerType: (*AssetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -181,5 +190,5 @@ var AssetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/asset_service.proto", + Metadata: "google/ads/googleads/v17/services/asset_service.proto", } diff --git a/services/asset_set_asset_service.pb.go b/services/asset_set_asset_service.pb.go index 2149ff72..e6d5a3f8 100644 --- a/services/asset_set_asset_service.pb.go +++ b/services/asset_set_asset_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/asset_set_asset_service.proto +// source: google/ads/googleads/v17/services/asset_set_asset_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [AssetSetAssetService.MutateAssetSetAssets][google.ads.googleads.v16.services.AssetSetAssetService.MutateAssetSetAssets]. +// [AssetSetAssetService.MutateAssetSetAssets][google.ads.googleads.v17.services.AssetSetAssetService.MutateAssetSetAssets]. type MutateAssetSetAssetsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -59,13 +59,13 @@ type MutateAssetSetAssetsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateAssetSetAssetsRequest) Reset() { *x = MutateAssetSetAssetsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_asset_set_asset_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_asset_set_asset_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *MutateAssetSetAssetsRequest) String() string { func (*MutateAssetSetAssetsRequest) ProtoMessage() {} func (x *MutateAssetSetAssetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_asset_set_asset_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_asset_set_asset_service_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 *MutateAssetSetAssetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetSetAssetsRequest.ProtoReflect.Descriptor instead. func (*MutateAssetSetAssetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_asset_set_asset_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_asset_set_asset_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAssetSetAssetsRequest) GetCustomerId() string { @@ -147,7 +147,7 @@ type AssetSetAssetOperation struct { func (x *AssetSetAssetOperation) Reset() { *x = AssetSetAssetOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_asset_set_asset_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_asset_set_asset_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160,7 +160,7 @@ func (x *AssetSetAssetOperation) String() string { func (*AssetSetAssetOperation) ProtoMessage() {} func (x *AssetSetAssetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_asset_set_asset_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_asset_set_asset_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -173,7 +173,7 @@ func (x *AssetSetAssetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetSetAssetOperation.ProtoReflect.Descriptor instead. func (*AssetSetAssetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_asset_set_asset_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_asset_set_asset_service_proto_rawDescGZIP(), []int{1} } func (m *AssetSetAssetOperation) GetOperation() isAssetSetAssetOperation_Operation { @@ -236,7 +236,7 @@ type MutateAssetSetAssetsResponse struct { func (x *MutateAssetSetAssetsResponse) Reset() { *x = MutateAssetSetAssetsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_asset_set_asset_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_asset_set_asset_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -249,7 +249,7 @@ func (x *MutateAssetSetAssetsResponse) String() string { func (*MutateAssetSetAssetsResponse) ProtoMessage() {} func (x *MutateAssetSetAssetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_asset_set_asset_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_asset_set_asset_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -262,7 +262,7 @@ func (x *MutateAssetSetAssetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetSetAssetsResponse.ProtoReflect.Descriptor instead. func (*MutateAssetSetAssetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_asset_set_asset_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_asset_set_asset_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAssetSetAssetsResponse) GetResults() []*MutateAssetSetAssetResult { @@ -296,7 +296,7 @@ type MutateAssetSetAssetResult struct { func (x *MutateAssetSetAssetResult) Reset() { *x = MutateAssetSetAssetResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_asset_set_asset_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_asset_set_asset_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -309,7 +309,7 @@ func (x *MutateAssetSetAssetResult) String() string { func (*MutateAssetSetAssetResult) ProtoMessage() {} func (x *MutateAssetSetAssetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_asset_set_asset_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_asset_set_asset_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -322,7 +322,7 @@ func (x *MutateAssetSetAssetResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetSetAssetResult.ProtoReflect.Descriptor instead. func (*MutateAssetSetAssetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_asset_set_asset_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_asset_set_asset_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAssetSetAssetResult) GetResourceName() string { @@ -339,21 +339,21 @@ func (x *MutateAssetSetAssetResult) GetAssetSetAsset() *resources.AssetSetAsset return nil } -var File_google_ads_googleads_v16_services_asset_set_asset_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_asset_set_asset_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_asset_set_asset_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_asset_set_asset_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 0x2f, 0x67, 0x6f, 0x6f, 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, 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, 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, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, @@ -371,7 +371,7 @@ var file_google_ads_googleads_v16_services_asset_set_asset_service_proto_rawDesc 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5e, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, @@ -383,7 +383,7 @@ var file_google_ads_googleads_v16_services_asset_set_asset_service_proto_rawDesc 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, @@ -392,7 +392,7 @@ var file_google_ads_googleads_v16_services_asset_set_asset_service_proto_rawDesc 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4b, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x45, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2b, 0xfa, 0x41, 0x28, 0x0a, 0x26, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, @@ -404,7 +404,7 @@ var file_google_ads_googleads_v16_services_asset_set_asset_service_proto_rawDesc 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x56, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x46, 0x0a, 0x15, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x66, 0x61, 0x69, 0x6c, @@ -421,23 +421,23 @@ var file_google_ads_googleads_v16_services_asset_set_asset_service_proto_rawDesc 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x59, 0x0a, 0x0f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x02, 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, 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, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0d, 0x61, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x32, 0xd1, 0x02, 0x0a, 0x14, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xf1, 0x01, 0x0a, 0x14, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x12, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x58, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x39, 0x3a, 0x01, 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x31, 0x36, + 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x39, 0x3a, 0x01, 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, @@ -447,55 +447,55 @@ var file_google_ads_googleads_v16_services_asset_set_asset_service_proto_rawDesc 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x85, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x19, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_asset_set_asset_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_asset_set_asset_service_proto_rawDescData = file_google_ads_googleads_v16_services_asset_set_asset_service_proto_rawDesc + file_google_ads_googleads_v17_services_asset_set_asset_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_asset_set_asset_service_proto_rawDescData = file_google_ads_googleads_v17_services_asset_set_asset_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_asset_set_asset_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_asset_set_asset_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_asset_set_asset_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_asset_set_asset_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_asset_set_asset_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_asset_set_asset_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_asset_set_asset_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_asset_set_asset_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_asset_set_asset_service_proto_rawDescData + return file_google_ads_googleads_v17_services_asset_set_asset_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_asset_set_asset_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_asset_set_asset_service_proto_goTypes = []interface{}{ - (*MutateAssetSetAssetsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateAssetSetAssetsRequest - (*AssetSetAssetOperation)(nil), // 1: google.ads.googleads.v16.services.AssetSetAssetOperation - (*MutateAssetSetAssetsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateAssetSetAssetsResponse - (*MutateAssetSetAssetResult)(nil), // 3: google.ads.googleads.v16.services.MutateAssetSetAssetResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - (*resources.AssetSetAsset)(nil), // 5: google.ads.googleads.v16.resources.AssetSetAsset +var file_google_ads_googleads_v17_services_asset_set_asset_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_asset_set_asset_service_proto_goTypes = []interface{}{ + (*MutateAssetSetAssetsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateAssetSetAssetsRequest + (*AssetSetAssetOperation)(nil), // 1: google.ads.googleads.v17.services.AssetSetAssetOperation + (*MutateAssetSetAssetsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateAssetSetAssetsResponse + (*MutateAssetSetAssetResult)(nil), // 3: google.ads.googleads.v17.services.MutateAssetSetAssetResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + (*resources.AssetSetAsset)(nil), // 5: google.ads.googleads.v17.resources.AssetSetAsset (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v16_services_asset_set_asset_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateAssetSetAssetsRequest.operations:type_name -> google.ads.googleads.v16.services.AssetSetAssetOperation - 4, // 1: google.ads.googleads.v16.services.MutateAssetSetAssetsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.AssetSetAssetOperation.create:type_name -> google.ads.googleads.v16.resources.AssetSetAsset - 3, // 3: google.ads.googleads.v16.services.MutateAssetSetAssetsResponse.results:type_name -> google.ads.googleads.v16.services.MutateAssetSetAssetResult - 6, // 4: google.ads.googleads.v16.services.MutateAssetSetAssetsResponse.partial_failure_error:type_name -> google.rpc.Status - 5, // 5: google.ads.googleads.v16.services.MutateAssetSetAssetResult.asset_set_asset:type_name -> google.ads.googleads.v16.resources.AssetSetAsset - 0, // 6: google.ads.googleads.v16.services.AssetSetAssetService.MutateAssetSetAssets:input_type -> google.ads.googleads.v16.services.MutateAssetSetAssetsRequest - 2, // 7: google.ads.googleads.v16.services.AssetSetAssetService.MutateAssetSetAssets:output_type -> google.ads.googleads.v16.services.MutateAssetSetAssetsResponse +var file_google_ads_googleads_v17_services_asset_set_asset_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateAssetSetAssetsRequest.operations:type_name -> google.ads.googleads.v17.services.AssetSetAssetOperation + 4, // 1: google.ads.googleads.v17.services.MutateAssetSetAssetsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.AssetSetAssetOperation.create:type_name -> google.ads.googleads.v17.resources.AssetSetAsset + 3, // 3: google.ads.googleads.v17.services.MutateAssetSetAssetsResponse.results:type_name -> google.ads.googleads.v17.services.MutateAssetSetAssetResult + 6, // 4: google.ads.googleads.v17.services.MutateAssetSetAssetsResponse.partial_failure_error:type_name -> google.rpc.Status + 5, // 5: google.ads.googleads.v17.services.MutateAssetSetAssetResult.asset_set_asset:type_name -> google.ads.googleads.v17.resources.AssetSetAsset + 0, // 6: google.ads.googleads.v17.services.AssetSetAssetService.MutateAssetSetAssets:input_type -> google.ads.googleads.v17.services.MutateAssetSetAssetsRequest + 2, // 7: google.ads.googleads.v17.services.AssetSetAssetService.MutateAssetSetAssets:output_type -> google.ads.googleads.v17.services.MutateAssetSetAssetsResponse 7, // [7:8] is the sub-list for method output_type 6, // [6:7] is the sub-list for method input_type 6, // [6:6] is the sub-list for extension type_name @@ -503,13 +503,13 @@ var file_google_ads_googleads_v16_services_asset_set_asset_service_proto_depIdxs 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_asset_set_asset_service_proto_init() } -func file_google_ads_googleads_v16_services_asset_set_asset_service_proto_init() { - if File_google_ads_googleads_v16_services_asset_set_asset_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_asset_set_asset_service_proto_init() } +func file_google_ads_googleads_v17_services_asset_set_asset_service_proto_init() { + if File_google_ads_googleads_v17_services_asset_set_asset_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_asset_set_asset_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_asset_set_asset_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAssetSetAssetsRequest); i { case 0: return &v.state @@ -521,7 +521,7 @@ func file_google_ads_googleads_v16_services_asset_set_asset_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_asset_set_asset_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_asset_set_asset_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AssetSetAssetOperation); i { case 0: return &v.state @@ -533,7 +533,7 @@ func file_google_ads_googleads_v16_services_asset_set_asset_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_asset_set_asset_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_asset_set_asset_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAssetSetAssetsResponse); i { case 0: return &v.state @@ -545,7 +545,7 @@ func file_google_ads_googleads_v16_services_asset_set_asset_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_asset_set_asset_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_asset_set_asset_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAssetSetAssetResult); i { case 0: return &v.state @@ -558,7 +558,7 @@ func file_google_ads_googleads_v16_services_asset_set_asset_service_proto_init() } } } - file_google_ads_googleads_v16_services_asset_set_asset_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_asset_set_asset_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*AssetSetAssetOperation_Create)(nil), (*AssetSetAssetOperation_Remove)(nil), } @@ -566,18 +566,18 @@ func file_google_ads_googleads_v16_services_asset_set_asset_service_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_asset_set_asset_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_asset_set_asset_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_asset_set_asset_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_asset_set_asset_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_asset_set_asset_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_asset_set_asset_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_asset_set_asset_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_asset_set_asset_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_asset_set_asset_service_proto = out.File - file_google_ads_googleads_v16_services_asset_set_asset_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_asset_set_asset_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_asset_set_asset_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_asset_set_asset_service_proto = out.File + file_google_ads_googleads_v17_services_asset_set_asset_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_asset_set_asset_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_asset_set_asset_service_proto_depIdxs = nil } diff --git a/services/asset_set_asset_service_grpc.pb.go b/services/asset_set_asset_service_grpc.pb.go index 23d62317..095b5298 100644 --- a/services/asset_set_asset_service_grpc.pb.go +++ b/services/asset_set_asset_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/asset_set_asset_service.proto +// source: google/ads/googleads/v17/services/asset_set_asset_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - AssetSetAssetService_MutateAssetSetAssets_FullMethodName = "/google.ads.googleads.v16.services.AssetSetAssetService/MutateAssetSetAssets" + AssetSetAssetService_MutateAssetSetAssets_FullMethodName = "/google.ads.googleads.v17.services.AssetSetAssetService/MutateAssetSetAssets" ) // AssetSetAssetServiceClient is the client API for AssetSetAssetService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage asset set asset. type AssetSetAssetServiceClient interface { // Creates, updates or removes asset set assets. Operation statuses are // returned. @@ -54,8 +56,9 @@ func NewAssetSetAssetServiceClient(cc grpc.ClientConnInterface) AssetSetAssetSer } func (c *assetSetAssetServiceClient) MutateAssetSetAssets(ctx context.Context, in *MutateAssetSetAssetsRequest, opts ...grpc.CallOption) (*MutateAssetSetAssetsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateAssetSetAssetsResponse) - err := c.cc.Invoke(ctx, AssetSetAssetService_MutateAssetSetAssets_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AssetSetAssetService_MutateAssetSetAssets_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -65,6 +68,8 @@ func (c *assetSetAssetServiceClient) MutateAssetSetAssets(ctx context.Context, i // AssetSetAssetServiceServer is the server API for AssetSetAssetService service. // All implementations must embed UnimplementedAssetSetAssetServiceServer // for forward compatibility +// +// Service to manage asset set asset. type AssetSetAssetServiceServer interface { // Creates, updates or removes asset set assets. Operation statuses are // returned. @@ -114,7 +119,7 @@ func _AssetSetAssetService_MutateAssetSetAssets_Handler(srv interface{}, ctx con // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var AssetSetAssetService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.AssetSetAssetService", + ServiceName: "google.ads.googleads.v17.services.AssetSetAssetService", HandlerType: (*AssetSetAssetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -123,5 +128,5 @@ var AssetSetAssetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/asset_set_asset_service.proto", + Metadata: "google/ads/googleads/v17/services/asset_set_asset_service.proto", } diff --git a/services/asset_set_service.pb.go b/services/asset_set_service.pb.go index fe4f3f53..9402f826 100644 --- a/services/asset_set_service.pb.go +++ b/services/asset_set_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/asset_set_service.proto +// source: google/ads/googleads/v17/services/asset_set_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [AssetSetService.MutateAssetSets][google.ads.googleads.v16.services.AssetSetService.MutateAssetSets]. +// [AssetSetService.MutateAssetSets][google.ads.googleads.v17.services.AssetSetService.MutateAssetSets]. type MutateAssetSetsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -60,13 +60,13 @@ type MutateAssetSetsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateAssetSetsRequest) Reset() { *x = MutateAssetSetsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_asset_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_asset_set_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateAssetSetsRequest) String() string { func (*MutateAssetSetsRequest) ProtoMessage() {} func (x *MutateAssetSetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_asset_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_asset_set_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateAssetSetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetSetsRequest.ProtoReflect.Descriptor instead. func (*MutateAssetSetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_asset_set_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_asset_set_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAssetSetsRequest) GetCustomerId() string { @@ -151,7 +151,7 @@ type AssetSetOperation struct { func (x *AssetSetOperation) Reset() { *x = AssetSetOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_asset_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_asset_set_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164,7 +164,7 @@ func (x *AssetSetOperation) String() string { func (*AssetSetOperation) ProtoMessage() {} func (x *AssetSetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_asset_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_asset_set_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177,7 +177,7 @@ func (x *AssetSetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetSetOperation.ProtoReflect.Descriptor instead. func (*AssetSetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_asset_set_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_asset_set_service_proto_rawDescGZIP(), []int{1} } func (x *AssetSetOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -261,7 +261,7 @@ type MutateAssetSetsResponse struct { func (x *MutateAssetSetsResponse) Reset() { *x = MutateAssetSetsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_asset_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_asset_set_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -274,7 +274,7 @@ func (x *MutateAssetSetsResponse) String() string { func (*MutateAssetSetsResponse) ProtoMessage() {} func (x *MutateAssetSetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_asset_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_asset_set_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -287,7 +287,7 @@ func (x *MutateAssetSetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetSetsResponse.ProtoReflect.Descriptor instead. func (*MutateAssetSetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_asset_set_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_asset_set_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAssetSetsResponse) GetResults() []*MutateAssetSetResult { @@ -320,7 +320,7 @@ type MutateAssetSetResult struct { func (x *MutateAssetSetResult) Reset() { *x = MutateAssetSetResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_asset_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_asset_set_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -333,7 +333,7 @@ func (x *MutateAssetSetResult) String() string { func (*MutateAssetSetResult) ProtoMessage() {} func (x *MutateAssetSetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_asset_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_asset_set_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -346,7 +346,7 @@ func (x *MutateAssetSetResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetSetResult.ProtoReflect.Descriptor instead. func (*MutateAssetSetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_asset_set_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_asset_set_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAssetSetResult) GetResourceName() string { @@ -363,21 +363,21 @@ func (x *MutateAssetSetResult) GetAssetSet() *resources.AssetSet { return nil } -var File_google_ads_googleads_v16_services_asset_set_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_asset_set_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_asset_set_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_asset_set_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3a, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, + 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, + 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x67, 0x6f, @@ -396,7 +396,7 @@ var file_google_ads_googleads_v16_services_asset_set_service_proto_rawDesc = []b 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x59, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, @@ -407,7 +407,7 @@ var file_google_ads_googleads_v16_services_asset_set_service_proto_rawDesc = []b 0x74, 0x65, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, + 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, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, @@ -420,11 +420,11 @@ var file_google_ads_googleads_v16_services_asset_set_service_proto_rawDesc = []b 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x46, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 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, 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, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x46, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 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, 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, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x40, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x26, 0xfa, 0x41, 0x23, 0x0a, @@ -436,7 +436,7 @@ var file_google_ads_googleads_v16_services_asset_set_service_proto_rawDesc = []b 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x51, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x46, 0x0a, 0x15, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, @@ -452,21 +452,21 @@ var file_google_ads_googleads_v16_services_asset_set_service_proto_rawDesc = []b 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x49, 0x0a, 0x09, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x52, 0x08, 0x61, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x32, 0xb8, 0x02, 0x0a, 0x0f, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xdd, 0x01, 0x0a, 0x0f, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x53, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, - 0x34, 0x3a, 0x01, 0x2a, 0x22, 0x2f, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x34, 0x3a, 0x01, 0x2a, 0x22, 0x2f, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, @@ -475,58 +475,58 @@ var file_google_ads_googleads_v16_services_asset_set_service_proto_rawDesc = []b 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x80, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x14, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_asset_set_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_asset_set_service_proto_rawDescData = file_google_ads_googleads_v16_services_asset_set_service_proto_rawDesc + file_google_ads_googleads_v17_services_asset_set_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_asset_set_service_proto_rawDescData = file_google_ads_googleads_v17_services_asset_set_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_asset_set_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_asset_set_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_asset_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_asset_set_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_asset_set_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_asset_set_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_asset_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_asset_set_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_asset_set_service_proto_rawDescData + return file_google_ads_googleads_v17_services_asset_set_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_asset_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_asset_set_service_proto_goTypes = []interface{}{ - (*MutateAssetSetsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateAssetSetsRequest - (*AssetSetOperation)(nil), // 1: google.ads.googleads.v16.services.AssetSetOperation - (*MutateAssetSetsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateAssetSetsResponse - (*MutateAssetSetResult)(nil), // 3: google.ads.googleads.v16.services.MutateAssetSetResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_asset_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_asset_set_service_proto_goTypes = []interface{}{ + (*MutateAssetSetsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateAssetSetsRequest + (*AssetSetOperation)(nil), // 1: google.ads.googleads.v17.services.AssetSetOperation + (*MutateAssetSetsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateAssetSetsResponse + (*MutateAssetSetResult)(nil), // 3: google.ads.googleads.v17.services.MutateAssetSetResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.AssetSet)(nil), // 6: google.ads.googleads.v16.resources.AssetSet + (*resources.AssetSet)(nil), // 6: google.ads.googleads.v17.resources.AssetSet (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_asset_set_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateAssetSetsRequest.operations:type_name -> google.ads.googleads.v16.services.AssetSetOperation - 4, // 1: google.ads.googleads.v16.services.MutateAssetSetsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.AssetSetOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.AssetSetOperation.create:type_name -> google.ads.googleads.v16.resources.AssetSet - 6, // 4: google.ads.googleads.v16.services.AssetSetOperation.update:type_name -> google.ads.googleads.v16.resources.AssetSet - 3, // 5: google.ads.googleads.v16.services.MutateAssetSetsResponse.results:type_name -> google.ads.googleads.v16.services.MutateAssetSetResult - 7, // 6: google.ads.googleads.v16.services.MutateAssetSetsResponse.partial_failure_error:type_name -> google.rpc.Status - 6, // 7: google.ads.googleads.v16.services.MutateAssetSetResult.asset_set:type_name -> google.ads.googleads.v16.resources.AssetSet - 0, // 8: google.ads.googleads.v16.services.AssetSetService.MutateAssetSets:input_type -> google.ads.googleads.v16.services.MutateAssetSetsRequest - 2, // 9: google.ads.googleads.v16.services.AssetSetService.MutateAssetSets:output_type -> google.ads.googleads.v16.services.MutateAssetSetsResponse +var file_google_ads_googleads_v17_services_asset_set_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateAssetSetsRequest.operations:type_name -> google.ads.googleads.v17.services.AssetSetOperation + 4, // 1: google.ads.googleads.v17.services.MutateAssetSetsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.AssetSetOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.AssetSetOperation.create:type_name -> google.ads.googleads.v17.resources.AssetSet + 6, // 4: google.ads.googleads.v17.services.AssetSetOperation.update:type_name -> google.ads.googleads.v17.resources.AssetSet + 3, // 5: google.ads.googleads.v17.services.MutateAssetSetsResponse.results:type_name -> google.ads.googleads.v17.services.MutateAssetSetResult + 7, // 6: google.ads.googleads.v17.services.MutateAssetSetsResponse.partial_failure_error:type_name -> google.rpc.Status + 6, // 7: google.ads.googleads.v17.services.MutateAssetSetResult.asset_set:type_name -> google.ads.googleads.v17.resources.AssetSet + 0, // 8: google.ads.googleads.v17.services.AssetSetService.MutateAssetSets:input_type -> google.ads.googleads.v17.services.MutateAssetSetsRequest + 2, // 9: google.ads.googleads.v17.services.AssetSetService.MutateAssetSets:output_type -> google.ads.googleads.v17.services.MutateAssetSetsResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -534,13 +534,13 @@ var file_google_ads_googleads_v16_services_asset_set_service_proto_depIdxs = []i 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_asset_set_service_proto_init() } -func file_google_ads_googleads_v16_services_asset_set_service_proto_init() { - if File_google_ads_googleads_v16_services_asset_set_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_asset_set_service_proto_init() } +func file_google_ads_googleads_v17_services_asset_set_service_proto_init() { + if File_google_ads_googleads_v17_services_asset_set_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_asset_set_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_asset_set_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAssetSetsRequest); i { case 0: return &v.state @@ -552,7 +552,7 @@ func file_google_ads_googleads_v16_services_asset_set_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_asset_set_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_asset_set_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AssetSetOperation); i { case 0: return &v.state @@ -564,7 +564,7 @@ func file_google_ads_googleads_v16_services_asset_set_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_asset_set_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_asset_set_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAssetSetsResponse); i { case 0: return &v.state @@ -576,7 +576,7 @@ func file_google_ads_googleads_v16_services_asset_set_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_asset_set_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_asset_set_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAssetSetResult); i { case 0: return &v.state @@ -589,7 +589,7 @@ func file_google_ads_googleads_v16_services_asset_set_service_proto_init() { } } } - file_google_ads_googleads_v16_services_asset_set_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_asset_set_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*AssetSetOperation_Create)(nil), (*AssetSetOperation_Update)(nil), (*AssetSetOperation_Remove)(nil), @@ -598,18 +598,18 @@ func file_google_ads_googleads_v16_services_asset_set_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_asset_set_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_asset_set_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_asset_set_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_asset_set_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_asset_set_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_asset_set_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_asset_set_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_asset_set_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_asset_set_service_proto = out.File - file_google_ads_googleads_v16_services_asset_set_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_asset_set_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_asset_set_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_asset_set_service_proto = out.File + file_google_ads_googleads_v17_services_asset_set_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_asset_set_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_asset_set_service_proto_depIdxs = nil } diff --git a/services/asset_set_service_grpc.pb.go b/services/asset_set_service_grpc.pb.go index dce6ac01..2c3235cc 100644 --- a/services/asset_set_service_grpc.pb.go +++ b/services/asset_set_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/asset_set_service.proto +// source: google/ads/googleads/v17/services/asset_set_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - AssetSetService_MutateAssetSets_FullMethodName = "/google.ads.googleads.v16.services.AssetSetService/MutateAssetSets" + AssetSetService_MutateAssetSets_FullMethodName = "/google.ads.googleads.v17.services.AssetSetService/MutateAssetSets" ) // AssetSetServiceClient is the client API for AssetSetService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage asset set type AssetSetServiceClient interface { // Creates, updates or removes asset sets. Operation statuses are // returned. @@ -54,8 +56,9 @@ func NewAssetSetServiceClient(cc grpc.ClientConnInterface) AssetSetServiceClient } func (c *assetSetServiceClient) MutateAssetSets(ctx context.Context, in *MutateAssetSetsRequest, opts ...grpc.CallOption) (*MutateAssetSetsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateAssetSetsResponse) - err := c.cc.Invoke(ctx, AssetSetService_MutateAssetSets_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AssetSetService_MutateAssetSets_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -65,6 +68,8 @@ func (c *assetSetServiceClient) MutateAssetSets(ctx context.Context, in *MutateA // AssetSetServiceServer is the server API for AssetSetService service. // All implementations must embed UnimplementedAssetSetServiceServer // for forward compatibility +// +// Service to manage asset set type AssetSetServiceServer interface { // Creates, updates or removes asset sets. Operation statuses are // returned. @@ -114,7 +119,7 @@ func _AssetSetService_MutateAssetSets_Handler(srv interface{}, ctx context.Conte // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var AssetSetService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.AssetSetService", + ServiceName: "google.ads.googleads.v17.services.AssetSetService", HandlerType: (*AssetSetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -123,5 +128,5 @@ var AssetSetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/asset_set_service.proto", + Metadata: "google/ads/googleads/v17/services/asset_set_service.proto", } diff --git a/services/audience_insights_service.pb.go b/services/audience_insights_service.pb.go index 61f4db18..31457d1d 100644 --- a/services/audience_insights_service.pb.go +++ b/services/audience_insights_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/audience_insights_service.proto +// source: google/ads/googleads/v17/services/audience_insights_service.proto package services @@ -38,7 +38,7 @@ const ( ) // Request message for -// [AudienceInsightsService.GenerateInsightsFinderReport][google.ads.googleads.v16.services.AudienceInsightsService.GenerateInsightsFinderReport]. +// [AudienceInsightsService.GenerateInsightsFinderReport][google.ads.googleads.v17.services.AudienceInsightsService.GenerateInsightsFinderReport]. type GenerateInsightsFinderReportRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -60,7 +60,7 @@ type GenerateInsightsFinderReportRequest struct { func (x *GenerateInsightsFinderReportRequest) Reset() { *x = GenerateInsightsFinderReportRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73,7 +73,7 @@ func (x *GenerateInsightsFinderReportRequest) String() string { func (*GenerateInsightsFinderReportRequest) ProtoMessage() {} func (x *GenerateInsightsFinderReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_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 *GenerateInsightsFinderReportRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use GenerateInsightsFinderReportRequest.ProtoReflect.Descriptor instead. func (*GenerateInsightsFinderReportRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescGZIP(), []int{0} } func (x *GenerateInsightsFinderReportRequest) GetCustomerId() string { @@ -118,7 +118,7 @@ func (x *GenerateInsightsFinderReportRequest) GetCustomerInsightsGroup() string } // The response message for -// [AudienceInsightsService.GenerateInsightsFinderReport][google.ads.googleads.v16.services.AudienceInsightsService.GenerateInsightsFinderReport], +// [AudienceInsightsService.GenerateInsightsFinderReport][google.ads.googleads.v17.services.AudienceInsightsService.GenerateInsightsFinderReport], // containing the shareable URL for the report. type GenerateInsightsFinderReportResponse struct { state protoimpl.MessageState @@ -133,7 +133,7 @@ type GenerateInsightsFinderReportResponse struct { func (x *GenerateInsightsFinderReportResponse) Reset() { *x = GenerateInsightsFinderReportResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -146,7 +146,7 @@ func (x *GenerateInsightsFinderReportResponse) String() string { func (*GenerateInsightsFinderReportResponse) ProtoMessage() {} func (x *GenerateInsightsFinderReportResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -159,7 +159,7 @@ func (x *GenerateInsightsFinderReportResponse) ProtoReflect() protoreflect.Messa // Deprecated: Use GenerateInsightsFinderReportResponse.ProtoReflect.Descriptor instead. func (*GenerateInsightsFinderReportResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescGZIP(), []int{1} } func (x *GenerateInsightsFinderReportResponse) GetSavedReportUrl() string { @@ -170,7 +170,7 @@ func (x *GenerateInsightsFinderReportResponse) GetSavedReportUrl() string { } // Request message for -// [AudienceInsightsService.GenerateAudienceCompositionInsights][google.ads.googleads.v16.services.AudienceInsightsService.GenerateAudienceCompositionInsights]. +// [AudienceInsightsService.GenerateAudienceCompositionInsights][google.ads.googleads.v17.services.AudienceInsightsService.GenerateAudienceCompositionInsights]. type GenerateAudienceCompositionInsightsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -189,7 +189,7 @@ type GenerateAudienceCompositionInsightsRequest struct { DataMonth string `protobuf:"bytes,3,opt,name=data_month,json=dataMonth,proto3" json:"data_month,omitempty"` // Required. The audience dimensions for which composition insights should be // returned. - Dimensions []enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension `protobuf:"varint,4,rep,packed,name=dimensions,proto3,enum=google.ads.googleads.v16.enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension" json:"dimensions,omitempty"` + Dimensions []enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension `protobuf:"varint,4,rep,packed,name=dimensions,proto3,enum=google.ads.googleads.v17.enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension" json:"dimensions,omitempty"` // The name of the customer being planned for. This is a user-defined value. CustomerInsightsGroup string `protobuf:"bytes,5,opt,name=customer_insights_group,json=customerInsightsGroup,proto3" json:"customer_insights_group,omitempty"` } @@ -197,7 +197,7 @@ type GenerateAudienceCompositionInsightsRequest struct { func (x *GenerateAudienceCompositionInsightsRequest) Reset() { *x = GenerateAudienceCompositionInsightsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -210,7 +210,7 @@ func (x *GenerateAudienceCompositionInsightsRequest) String() string { func (*GenerateAudienceCompositionInsightsRequest) ProtoMessage() {} func (x *GenerateAudienceCompositionInsightsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -223,7 +223,7 @@ func (x *GenerateAudienceCompositionInsightsRequest) ProtoReflect() protoreflect // Deprecated: Use GenerateAudienceCompositionInsightsRequest.ProtoReflect.Descriptor instead. func (*GenerateAudienceCompositionInsightsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescGZIP(), []int{2} } func (x *GenerateAudienceCompositionInsightsRequest) GetCustomerId() string { @@ -269,7 +269,7 @@ func (x *GenerateAudienceCompositionInsightsRequest) GetCustomerInsightsGroup() } // Response message for -// [AudienceInsightsService.GenerateAudienceCompositionInsights][google.ads.googleads.v16.services.AudienceInsightsService.GenerateAudienceCompositionInsights]. +// [AudienceInsightsService.GenerateAudienceCompositionInsights][google.ads.googleads.v17.services.AudienceInsightsService.GenerateAudienceCompositionInsights]. type GenerateAudienceCompositionInsightsResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -284,7 +284,7 @@ type GenerateAudienceCompositionInsightsResponse struct { func (x *GenerateAudienceCompositionInsightsResponse) Reset() { *x = GenerateAudienceCompositionInsightsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -297,7 +297,7 @@ func (x *GenerateAudienceCompositionInsightsResponse) String() string { func (*GenerateAudienceCompositionInsightsResponse) ProtoMessage() {} func (x *GenerateAudienceCompositionInsightsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -310,7 +310,7 @@ func (x *GenerateAudienceCompositionInsightsResponse) ProtoReflect() protoreflec // Deprecated: Use GenerateAudienceCompositionInsightsResponse.ProtoReflect.Descriptor instead. func (*GenerateAudienceCompositionInsightsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescGZIP(), []int{3} } func (x *GenerateAudienceCompositionInsightsResponse) GetSections() []*AudienceCompositionSection { @@ -321,7 +321,7 @@ func (x *GenerateAudienceCompositionInsightsResponse) GetSections() []*AudienceC } // Request message for -// [AudienceInsightsService.GenerateSuggestedTargetingInsights][google.ads.googleads.v16.services.AudienceInsightsService.GenerateSuggestedTargetingInsights]. +// [AudienceInsightsService.GenerateSuggestedTargetingInsights][google.ads.googleads.v17.services.AudienceInsightsService.GenerateSuggestedTargetingInsights]. type GenerateSuggestedTargetingInsightsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -346,7 +346,7 @@ type GenerateSuggestedTargetingInsightsRequest struct { func (x *GenerateSuggestedTargetingInsightsRequest) Reset() { *x = GenerateSuggestedTargetingInsightsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -359,7 +359,7 @@ func (x *GenerateSuggestedTargetingInsightsRequest) String() string { func (*GenerateSuggestedTargetingInsightsRequest) ProtoMessage() {} func (x *GenerateSuggestedTargetingInsightsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -372,7 +372,7 @@ func (x *GenerateSuggestedTargetingInsightsRequest) ProtoReflect() protoreflect. // Deprecated: Use GenerateSuggestedTargetingInsightsRequest.ProtoReflect.Descriptor instead. func (*GenerateSuggestedTargetingInsightsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescGZIP(), []int{4} } func (x *GenerateSuggestedTargetingInsightsRequest) GetCustomerId() string { @@ -411,7 +411,7 @@ func (x *GenerateSuggestedTargetingInsightsRequest) GetCustomerInsightsGroup() s } // Response message for -// [AudienceInsightsService.GenerateSuggestedTargetingInsights][google.ads.googleads.v16.services.AudienceInsightsService.GenerateSuggestedTargetingInsights]. +// [AudienceInsightsService.GenerateSuggestedTargetingInsights][google.ads.googleads.v17.services.AudienceInsightsService.GenerateSuggestedTargetingInsights]. type GenerateSuggestedTargetingInsightsResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -424,7 +424,7 @@ type GenerateSuggestedTargetingInsightsResponse struct { func (x *GenerateSuggestedTargetingInsightsResponse) Reset() { *x = GenerateSuggestedTargetingInsightsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -437,7 +437,7 @@ func (x *GenerateSuggestedTargetingInsightsResponse) String() string { func (*GenerateSuggestedTargetingInsightsResponse) ProtoMessage() {} func (x *GenerateSuggestedTargetingInsightsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -450,7 +450,7 @@ func (x *GenerateSuggestedTargetingInsightsResponse) ProtoReflect() protoreflect // Deprecated: Use GenerateSuggestedTargetingInsightsResponse.ProtoReflect.Descriptor instead. func (*GenerateSuggestedTargetingInsightsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescGZIP(), []int{5} } func (x *GenerateSuggestedTargetingInsightsResponse) GetSuggestions() []*TargetingSuggestionMetrics { @@ -491,7 +491,7 @@ type TargetingSuggestionMetrics struct { func (x *TargetingSuggestionMetrics) Reset() { *x = TargetingSuggestionMetrics{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -504,7 +504,7 @@ func (x *TargetingSuggestionMetrics) String() string { func (*TargetingSuggestionMetrics) ProtoMessage() {} func (x *TargetingSuggestionMetrics) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[6] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -517,7 +517,7 @@ func (x *TargetingSuggestionMetrics) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetingSuggestionMetrics.ProtoReflect.Descriptor instead. func (*TargetingSuggestionMetrics) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescGZIP(), []int{6} } func (x *TargetingSuggestionMetrics) GetLocations() []*AudienceInsightsAttributeMetadata { @@ -570,7 +570,7 @@ func (x *TargetingSuggestionMetrics) GetPotentialYoutubeReach() int64 { } // Request message for -// [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v16.services.AudienceInsightsService.ListAudienceInsightsAttributes]. +// [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v17.services.AudienceInsightsService.ListAudienceInsightsAttributes]. type ListAudienceInsightsAttributesRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -579,7 +579,7 @@ type ListAudienceInsightsAttributesRequest struct { // Required. The ID of the customer. CustomerId string `protobuf:"bytes,1,opt,name=customer_id,json=customerId,proto3" json:"customer_id,omitempty"` // Required. The types of attributes to be returned. - Dimensions []enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension `protobuf:"varint,2,rep,packed,name=dimensions,proto3,enum=google.ads.googleads.v16.enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension" json:"dimensions,omitempty"` + Dimensions []enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension `protobuf:"varint,2,rep,packed,name=dimensions,proto3,enum=google.ads.googleads.v17.enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension" json:"dimensions,omitempty"` // Required. A free text query. If the requested dimensions include // Attributes CATEGORY or KNOWLEDGE_GRAPH, then the attributes returned for // those dimensions will match or be related to this string. For other @@ -599,7 +599,7 @@ type ListAudienceInsightsAttributesRequest struct { func (x *ListAudienceInsightsAttributesRequest) Reset() { *x = ListAudienceInsightsAttributesRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -612,7 +612,7 @@ func (x *ListAudienceInsightsAttributesRequest) String() string { func (*ListAudienceInsightsAttributesRequest) ProtoMessage() {} func (x *ListAudienceInsightsAttributesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[7] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -625,7 +625,7 @@ func (x *ListAudienceInsightsAttributesRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use ListAudienceInsightsAttributesRequest.ProtoReflect.Descriptor instead. func (*ListAudienceInsightsAttributesRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescGZIP(), []int{7} } func (x *ListAudienceInsightsAttributesRequest) GetCustomerId() string { @@ -664,7 +664,7 @@ func (x *ListAudienceInsightsAttributesRequest) GetLocationCountryFilters() []*c } // Response message for -// [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v16.services.AudienceInsightsService.ListAudienceInsightsAttributes]. +// [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v17.services.AudienceInsightsService.ListAudienceInsightsAttributes]. type ListAudienceInsightsAttributesResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -677,7 +677,7 @@ type ListAudienceInsightsAttributesResponse struct { func (x *ListAudienceInsightsAttributesResponse) Reset() { *x = ListAudienceInsightsAttributesResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -690,7 +690,7 @@ func (x *ListAudienceInsightsAttributesResponse) String() string { func (*ListAudienceInsightsAttributesResponse) ProtoMessage() {} func (x *ListAudienceInsightsAttributesResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[8] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -703,7 +703,7 @@ func (x *ListAudienceInsightsAttributesResponse) ProtoReflect() protoreflect.Mes // Deprecated: Use ListAudienceInsightsAttributesResponse.ProtoReflect.Descriptor instead. func (*ListAudienceInsightsAttributesResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescGZIP(), []int{8} } func (x *ListAudienceInsightsAttributesResponse) GetAttributes() []*AudienceInsightsAttributeMetadata { @@ -714,7 +714,7 @@ func (x *ListAudienceInsightsAttributesResponse) GetAttributes() []*AudienceInsi } // Request message for -// [AudienceInsightsService.ListInsightsEligibleDates][google.ads.googleads.v16.services.AudienceInsightsService.ListInsightsEligibleDates]. +// [AudienceInsightsService.ListInsightsEligibleDates][google.ads.googleads.v17.services.AudienceInsightsService.ListInsightsEligibleDates]. type ListInsightsEligibleDatesRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -724,7 +724,7 @@ type ListInsightsEligibleDatesRequest struct { func (x *ListInsightsEligibleDatesRequest) Reset() { *x = ListInsightsEligibleDatesRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -737,7 +737,7 @@ func (x *ListInsightsEligibleDatesRequest) String() string { func (*ListInsightsEligibleDatesRequest) ProtoMessage() {} func (x *ListInsightsEligibleDatesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[9] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -750,11 +750,11 @@ func (x *ListInsightsEligibleDatesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListInsightsEligibleDatesRequest.ProtoReflect.Descriptor instead. func (*ListInsightsEligibleDatesRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescGZIP(), []int{9} + return file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescGZIP(), []int{9} } // Response message for -// [AudienceInsightsService.ListInsightsEligibleDates][google.ads.googleads.v16.services.AudienceInsightsService.ListInsightsEligibleDates]. +// [AudienceInsightsService.ListInsightsEligibleDates][google.ads.googleads.v17.services.AudienceInsightsService.ListInsightsEligibleDates]. type ListInsightsEligibleDatesResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -765,7 +765,7 @@ type ListInsightsEligibleDatesResponse struct { DataMonths []string `protobuf:"bytes,1,rep,name=data_months,json=dataMonths,proto3" json:"data_months,omitempty"` // The actual dates covered by the "last 30 days" date range that will be used // implicitly for - // [AudienceInsightsService.GenerateAudienceCompositionInsights][google.ads.googleads.v16.services.AudienceInsightsService.GenerateAudienceCompositionInsights] + // [AudienceInsightsService.GenerateAudienceCompositionInsights][google.ads.googleads.v17.services.AudienceInsightsService.GenerateAudienceCompositionInsights] // requests that have no data_month set. LastThirtyDays *common.DateRange `protobuf:"bytes,2,opt,name=last_thirty_days,json=lastThirtyDays,proto3" json:"last_thirty_days,omitempty"` } @@ -773,7 +773,7 @@ type ListInsightsEligibleDatesResponse struct { func (x *ListInsightsEligibleDatesResponse) Reset() { *x = ListInsightsEligibleDatesResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -786,7 +786,7 @@ func (x *ListInsightsEligibleDatesResponse) String() string { func (*ListInsightsEligibleDatesResponse) ProtoMessage() {} func (x *ListInsightsEligibleDatesResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[10] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -799,7 +799,7 @@ func (x *ListInsightsEligibleDatesResponse) ProtoReflect() protoreflect.Message // Deprecated: Use ListInsightsEligibleDatesResponse.ProtoReflect.Descriptor instead. func (*ListInsightsEligibleDatesResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescGZIP(), []int{10} + return file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescGZIP(), []int{10} } func (x *ListInsightsEligibleDatesResponse) GetDataMonths() []string { @@ -843,7 +843,7 @@ type AudienceInsightsAttribute struct { func (x *AudienceInsightsAttribute) Reset() { *x = AudienceInsightsAttribute{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -856,7 +856,7 @@ func (x *AudienceInsightsAttribute) String() string { func (*AudienceInsightsAttribute) ProtoMessage() {} func (x *AudienceInsightsAttribute) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[11] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -869,7 +869,7 @@ func (x *AudienceInsightsAttribute) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceInsightsAttribute.ProtoReflect.Descriptor instead. func (*AudienceInsightsAttribute) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescGZIP(), []int{11} + return file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescGZIP(), []int{11} } func (m *AudienceInsightsAttribute) GetAttribute() isAudienceInsightsAttribute_Attribute { @@ -1043,7 +1043,7 @@ type AudienceInsightsTopic struct { func (x *AudienceInsightsTopic) Reset() { *x = AudienceInsightsTopic{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[12] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1056,7 +1056,7 @@ func (x *AudienceInsightsTopic) String() string { func (*AudienceInsightsTopic) ProtoMessage() {} func (x *AudienceInsightsTopic) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[12] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[12] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1069,7 +1069,7 @@ func (x *AudienceInsightsTopic) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceInsightsTopic.ProtoReflect.Descriptor instead. func (*AudienceInsightsTopic) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescGZIP(), []int{12} + return file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescGZIP(), []int{12} } func (m *AudienceInsightsTopic) GetTopic() isAudienceInsightsTopic_Topic { @@ -1124,7 +1124,7 @@ type AudienceInsightsEntity struct { func (x *AudienceInsightsEntity) Reset() { *x = AudienceInsightsEntity{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[13] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1137,7 +1137,7 @@ func (x *AudienceInsightsEntity) String() string { func (*AudienceInsightsEntity) ProtoMessage() {} func (x *AudienceInsightsEntity) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[13] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[13] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1150,7 +1150,7 @@ func (x *AudienceInsightsEntity) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceInsightsEntity.ProtoReflect.Descriptor instead. func (*AudienceInsightsEntity) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescGZIP(), []int{13} + return file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescGZIP(), []int{13} } func (x *AudienceInsightsEntity) GetKnowledgeGraphMachineId() string { @@ -1173,7 +1173,7 @@ type AudienceInsightsCategory struct { func (x *AudienceInsightsCategory) Reset() { *x = AudienceInsightsCategory{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[14] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1186,7 +1186,7 @@ func (x *AudienceInsightsCategory) String() string { func (*AudienceInsightsCategory) ProtoMessage() {} func (x *AudienceInsightsCategory) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[14] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[14] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1199,7 +1199,7 @@ func (x *AudienceInsightsCategory) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceInsightsCategory.ProtoReflect.Descriptor instead. func (*AudienceInsightsCategory) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescGZIP(), []int{14} + return file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescGZIP(), []int{14} } func (x *AudienceInsightsCategory) GetCategoryId() string { @@ -1222,7 +1222,7 @@ type AudienceInsightsDynamicLineup struct { func (x *AudienceInsightsDynamicLineup) Reset() { *x = AudienceInsightsDynamicLineup{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[15] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1235,7 +1235,7 @@ func (x *AudienceInsightsDynamicLineup) String() string { func (*AudienceInsightsDynamicLineup) ProtoMessage() {} func (x *AudienceInsightsDynamicLineup) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[15] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[15] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1248,7 +1248,7 @@ func (x *AudienceInsightsDynamicLineup) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceInsightsDynamicLineup.ProtoReflect.Descriptor instead. func (*AudienceInsightsDynamicLineup) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescGZIP(), []int{15} + return file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescGZIP(), []int{15} } func (x *AudienceInsightsDynamicLineup) GetDynamicLineupId() string { @@ -1286,7 +1286,7 @@ type BasicInsightsAudience struct { func (x *BasicInsightsAudience) Reset() { *x = BasicInsightsAudience{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[16] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1299,7 +1299,7 @@ func (x *BasicInsightsAudience) String() string { func (*BasicInsightsAudience) ProtoMessage() {} func (x *BasicInsightsAudience) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[16] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[16] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1312,7 +1312,7 @@ func (x *BasicInsightsAudience) ProtoReflect() protoreflect.Message { // Deprecated: Use BasicInsightsAudience.ProtoReflect.Descriptor instead. func (*BasicInsightsAudience) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescGZIP(), []int{16} + return file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescGZIP(), []int{16} } func (x *BasicInsightsAudience) GetCountryLocation() []*common.LocationInfo { @@ -1365,7 +1365,7 @@ type AudienceInsightsAttributeMetadata struct { unknownFields protoimpl.UnknownFields // The type of the attribute. - Dimension enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension `protobuf:"varint,1,opt,name=dimension,proto3,enum=google.ads.googleads.v16.enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension" json:"dimension,omitempty"` + Dimension enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension `protobuf:"varint,1,opt,name=dimension,proto3,enum=google.ads.googleads.v17.enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension" json:"dimension,omitempty"` // The attribute itself. Attribute *AudienceInsightsAttribute `protobuf:"bytes,2,opt,name=attribute,proto3" json:"attribute,omitempty"` // The human-readable name of the attribute. @@ -1390,7 +1390,7 @@ type AudienceInsightsAttributeMetadata struct { func (x *AudienceInsightsAttributeMetadata) Reset() { *x = AudienceInsightsAttributeMetadata{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[17] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1403,7 +1403,7 @@ func (x *AudienceInsightsAttributeMetadata) String() string { func (*AudienceInsightsAttributeMetadata) ProtoMessage() {} func (x *AudienceInsightsAttributeMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[17] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[17] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1416,7 +1416,7 @@ func (x *AudienceInsightsAttributeMetadata) ProtoReflect() protoreflect.Message // Deprecated: Use AudienceInsightsAttributeMetadata.ProtoReflect.Descriptor instead. func (*AudienceInsightsAttributeMetadata) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescGZIP(), []int{17} + return file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescGZIP(), []int{17} } func (x *AudienceInsightsAttributeMetadata) GetDimension() enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension { @@ -1516,7 +1516,7 @@ type YouTubeChannelAttributeMetadata struct { func (x *YouTubeChannelAttributeMetadata) Reset() { *x = YouTubeChannelAttributeMetadata{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[18] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1529,7 +1529,7 @@ func (x *YouTubeChannelAttributeMetadata) String() string { func (*YouTubeChannelAttributeMetadata) ProtoMessage() {} func (x *YouTubeChannelAttributeMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[18] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[18] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1542,7 +1542,7 @@ func (x *YouTubeChannelAttributeMetadata) ProtoReflect() protoreflect.Message { // Deprecated: Use YouTubeChannelAttributeMetadata.ProtoReflect.Descriptor instead. func (*YouTubeChannelAttributeMetadata) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescGZIP(), []int{18} + return file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescGZIP(), []int{18} } func (x *YouTubeChannelAttributeMetadata) GetSubscriberCount() int64 { @@ -1573,7 +1573,7 @@ type DynamicLineupAttributeMetadata struct { func (x *DynamicLineupAttributeMetadata) Reset() { *x = DynamicLineupAttributeMetadata{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[19] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1586,7 +1586,7 @@ func (x *DynamicLineupAttributeMetadata) String() string { func (*DynamicLineupAttributeMetadata) ProtoMessage() {} func (x *DynamicLineupAttributeMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[19] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[19] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1599,7 +1599,7 @@ func (x *DynamicLineupAttributeMetadata) ProtoReflect() protoreflect.Message { // Deprecated: Use DynamicLineupAttributeMetadata.ProtoReflect.Descriptor instead. func (*DynamicLineupAttributeMetadata) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescGZIP(), []int{19} + return file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescGZIP(), []int{19} } func (x *DynamicLineupAttributeMetadata) GetInventoryCountry() *common.LocationInfo { @@ -1650,7 +1650,7 @@ type LocationAttributeMetadata struct { func (x *LocationAttributeMetadata) Reset() { *x = LocationAttributeMetadata{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[20] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[20] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1663,7 +1663,7 @@ func (x *LocationAttributeMetadata) String() string { func (*LocationAttributeMetadata) ProtoMessage() {} func (x *LocationAttributeMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[20] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[20] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1676,7 +1676,7 @@ func (x *LocationAttributeMetadata) ProtoReflect() protoreflect.Message { // Deprecated: Use LocationAttributeMetadata.ProtoReflect.Descriptor instead. func (*LocationAttributeMetadata) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescGZIP(), []int{20} + return file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescGZIP(), []int{20} } func (x *LocationAttributeMetadata) GetCountryLocation() *common.LocationInfo { @@ -1726,7 +1726,7 @@ type InsightsAudience struct { func (x *InsightsAudience) Reset() { *x = InsightsAudience{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[21] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[21] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1739,7 +1739,7 @@ func (x *InsightsAudience) String() string { func (*InsightsAudience) ProtoMessage() {} func (x *InsightsAudience) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[21] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[21] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1752,7 +1752,7 @@ func (x *InsightsAudience) ProtoReflect() protoreflect.Message { // Deprecated: Use InsightsAudience.ProtoReflect.Descriptor instead. func (*InsightsAudience) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescGZIP(), []int{21} + return file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescGZIP(), []int{21} } func (x *InsightsAudience) GetCountryLocations() []*common.LocationInfo { @@ -1827,7 +1827,7 @@ type InsightsAudienceAttributeGroup struct { func (x *InsightsAudienceAttributeGroup) Reset() { *x = InsightsAudienceAttributeGroup{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[22] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1840,7 +1840,7 @@ func (x *InsightsAudienceAttributeGroup) String() string { func (*InsightsAudienceAttributeGroup) ProtoMessage() {} func (x *InsightsAudienceAttributeGroup) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[22] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[22] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1853,7 +1853,7 @@ func (x *InsightsAudienceAttributeGroup) ProtoReflect() protoreflect.Message { // Deprecated: Use InsightsAudienceAttributeGroup.ProtoReflect.Descriptor instead. func (*InsightsAudienceAttributeGroup) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescGZIP(), []int{22} + return file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescGZIP(), []int{22} } func (x *InsightsAudienceAttributeGroup) GetAttributes() []*AudienceInsightsAttribute { @@ -1871,7 +1871,7 @@ type AudienceCompositionSection struct { unknownFields protoimpl.UnknownFields // The type of the attributes in this section. - Dimension enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension `protobuf:"varint,1,opt,name=dimension,proto3,enum=google.ads.googleads.v16.enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension" json:"dimension,omitempty"` + Dimension enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension `protobuf:"varint,1,opt,name=dimension,proto3,enum=google.ads.googleads.v17.enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension" json:"dimension,omitempty"` // The most relevant segments for this audience. If dimension is GENDER, // AGE_RANGE or PARENTAL_STATUS, then this list of attributes is exhaustive. TopAttributes []*AudienceCompositionAttribute `protobuf:"bytes,3,rep,name=top_attributes,json=topAttributes,proto3" json:"top_attributes,omitempty"` @@ -1883,7 +1883,7 @@ type AudienceCompositionSection struct { func (x *AudienceCompositionSection) Reset() { *x = AudienceCompositionSection{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[23] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[23] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1896,7 +1896,7 @@ func (x *AudienceCompositionSection) String() string { func (*AudienceCompositionSection) ProtoMessage() {} func (x *AudienceCompositionSection) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[23] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[23] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1909,7 +1909,7 @@ func (x *AudienceCompositionSection) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceCompositionSection.ProtoReflect.Descriptor instead. func (*AudienceCompositionSection) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescGZIP(), []int{23} + return file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescGZIP(), []int{23} } func (x *AudienceCompositionSection) GetDimension() enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension { @@ -1954,7 +1954,7 @@ type AudienceCompositionAttributeCluster struct { func (x *AudienceCompositionAttributeCluster) Reset() { *x = AudienceCompositionAttributeCluster{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[24] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[24] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1967,7 +1967,7 @@ func (x *AudienceCompositionAttributeCluster) String() string { func (*AudienceCompositionAttributeCluster) ProtoMessage() {} func (x *AudienceCompositionAttributeCluster) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[24] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[24] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1980,7 +1980,7 @@ func (x *AudienceCompositionAttributeCluster) ProtoReflect() protoreflect.Messag // Deprecated: Use AudienceCompositionAttributeCluster.ProtoReflect.Descriptor instead. func (*AudienceCompositionAttributeCluster) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescGZIP(), []int{24} + return file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescGZIP(), []int{24} } func (x *AudienceCompositionAttributeCluster) GetClusterDisplayName() string { @@ -2027,7 +2027,7 @@ type AudienceCompositionMetrics struct { func (x *AudienceCompositionMetrics) Reset() { *x = AudienceCompositionMetrics{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[25] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[25] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2040,7 +2040,7 @@ func (x *AudienceCompositionMetrics) String() string { func (*AudienceCompositionMetrics) ProtoMessage() {} func (x *AudienceCompositionMetrics) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[25] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[25] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2053,7 +2053,7 @@ func (x *AudienceCompositionMetrics) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceCompositionMetrics.ProtoReflect.Descriptor instead. func (*AudienceCompositionMetrics) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescGZIP(), []int{25} + return file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescGZIP(), []int{25} } func (x *AudienceCompositionMetrics) GetBaselineAudienceShare() float64 { @@ -2099,7 +2099,7 @@ type AudienceCompositionAttribute struct { func (x *AudienceCompositionAttribute) Reset() { *x = AudienceCompositionAttribute{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[26] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[26] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2112,7 +2112,7 @@ func (x *AudienceCompositionAttribute) String() string { func (*AudienceCompositionAttribute) ProtoMessage() {} func (x *AudienceCompositionAttribute) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[26] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[26] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2125,7 +2125,7 @@ func (x *AudienceCompositionAttribute) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceCompositionAttribute.ProtoReflect.Descriptor instead. func (*AudienceCompositionAttribute) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescGZIP(), []int{26} + return file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescGZIP(), []int{26} } func (x *AudienceCompositionAttribute) GetAttributeMetadata() *AudienceInsightsAttributeMetadata { @@ -2159,7 +2159,7 @@ type DynamicLineupAttributeMetadata_SampleChannel struct { func (x *DynamicLineupAttributeMetadata_SampleChannel) Reset() { *x = DynamicLineupAttributeMetadata_SampleChannel{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[27] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[27] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2172,7 +2172,7 @@ func (x *DynamicLineupAttributeMetadata_SampleChannel) String() string { func (*DynamicLineupAttributeMetadata_SampleChannel) ProtoMessage() {} func (x *DynamicLineupAttributeMetadata_SampleChannel) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[27] + mi := &file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[27] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2185,7 +2185,7 @@ func (x *DynamicLineupAttributeMetadata_SampleChannel) ProtoReflect() protorefle // Deprecated: Use DynamicLineupAttributeMetadata_SampleChannel.ProtoReflect.Descriptor instead. func (*DynamicLineupAttributeMetadata_SampleChannel) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescGZIP(), []int{19, 0} + return file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescGZIP(), []int{19, 0} } func (x *DynamicLineupAttributeMetadata_SampleChannel) GetYoutubeChannel() *common.YouTubeChannelInfo { @@ -2209,23 +2209,23 @@ func (x *DynamicLineupAttributeMetadata_SampleChannel) GetYoutubeChannelMetadata return nil } -var File_google_ads_googleads_v16_services_audience_insights_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_audience_insights_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_audience_insights_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 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, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 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, 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, 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, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, @@ -2242,13 +2242,13 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x61, 0x73, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x02, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x61, 0x73, 0x69, 0x63, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x61, 0x73, 0x69, 0x63, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x10, 0x62, 0x61, 0x73, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x6a, 0x0a, 0x11, 0x73, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x63, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x61, 0x73, 0x69, 0x63, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x10, 0x73, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x63, 0x41, 0x75, 0x64, 0x69, 0x65, @@ -2268,13 +2268,13 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x54, 0x0a, 0x08, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x08, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x60, 0x0a, 0x11, 0x62, 0x61, 0x73, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x06, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x52, 0x10, 0x62, 0x61, 0x73, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x64, 0x61, @@ -2282,7 +2282,7 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x64, 0x61, 0x74, 0x61, 0x4d, 0x6f, 0x6e, 0x74, 0x68, 0x12, 0x7c, 0x0a, 0x0a, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x04, 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, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x44, 0x69, 0x6d, @@ -2296,7 +2296,7 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x59, 0x0a, 0x08, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x08, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0xef, 0x02, 0x0a, 0x29, 0x47, @@ -2307,13 +2307,13 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x54, 0x0a, 0x08, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 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, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x08, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x65, 0x0a, 0x11, 0x62, 0x61, 0x73, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x03, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x10, 0x62, 0x61, 0x73, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x22, 0x0a, 0x0a, 0x64, @@ -2328,7 +2328,7 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x68, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5f, 0x0a, 0x0b, 0x73, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 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, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x52, 0x0b, 0x73, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0xea, 0x03, 0x0a, @@ -2336,23 +2336,23 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x12, 0x62, 0x0a, 0x09, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x09, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x4c, 0x0a, 0x0a, 0x61, 0x67, 0x65, 0x5f, 0x72, 0x61, 0x6e, 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, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x09, 0x61, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x12, 0x43, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x03, 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, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x6b, 0x0a, 0x0e, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x73, 0x18, 0x04, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x0d, 0x75, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x73, 0x12, @@ -2370,7 +2370,7 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x7c, 0x0a, 0x0a, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x44, 0x69, 0x6d, @@ -2384,7 +2384,7 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x6f, 0x75, 0x70, 0x12, 0x67, 0x0a, 0x18, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 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, + 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, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x16, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x22, 0x8e, 0x01, 0x0a, @@ -2393,7 +2393,7 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x64, 0x0a, 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x18, 0x01, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x22, 0x22, 0x0a, @@ -2406,63 +2406,63 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x74, 0x61, 0x4d, 0x6f, 0x6e, 0x74, 0x68, 0x73, 0x12, 0x54, 0x0a, 0x10, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x74, 0x68, 0x69, 0x72, 0x74, 0x79, 0x5f, 0x64, 0x61, 0x79, 0x73, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x61, 0x74, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x52, 0x0e, 0x6c, 0x61, 0x73, 0x74, 0x54, 0x68, 0x69, 0x72, 0x74, 0x79, 0x44, 0x61, 0x79, 0x73, 0x22, 0x96, 0x07, 0x0a, 0x19, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x12, 0x4c, 0x0a, 0x09, 0x61, 0x67, 0x65, 0x5f, 0x72, 0x61, 0x6e, 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, 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, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x08, 0x61, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x45, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x02, 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, 0x47, 0x65, 0x6e, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x4b, 0x0a, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x58, 0x0a, 0x0d, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 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, 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, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x0c, 0x75, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x12, 0x53, 0x0a, 0x06, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x48, 0x00, 0x52, 0x06, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x59, 0x0a, 0x08, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x18, 0x06, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x48, 0x00, 0x52, 0x08, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x12, 0x69, 0x0a, 0x0e, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x18, 0x07, 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, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x4c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x48, 0x00, 0x52, 0x0d, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x4c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x12, 0x5e, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 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, + 0x61, 0x64, 0x73, 0x2e, 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, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x0e, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x55, 0x0a, 0x0c, 0x69, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x18, 0x09, 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, 0x49, 0x6e, 0x63, 0x6f, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x0b, 0x69, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x5e, 0x0a, 0x0f, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x18, 0x0a, 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, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x0e, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x42, 0x0b, 0x0a, 0x09, 0x61, 0x74, @@ -2470,13 +2470,13 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x53, 0x0a, 0x06, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x18, 0x01, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x48, 0x00, 0x52, 0x06, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x59, 0x0a, 0x08, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x48, 0x00, 0x52, 0x08, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x42, 0x07, 0x0a, 0x05, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x22, 0x5a, 0x0a, 0x16, 0x41, 0x75, @@ -2499,33 +2499,33 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x65, 0x6e, 0x63, 0x65, 0x12, 0x5d, 0x0a, 0x10, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x61, 0x0a, 0x15, 0x73, 0x75, 0x62, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x13, 0x73, 0x75, 0x62, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x43, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x03, 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, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x49, + 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x4c, 0x0a, 0x0a, 0x61, 0x67, 0x65, 0x5f, 0x72, 0x61, 0x6e, 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, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x09, 0x61, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x12, 0x58, 0x0a, 0x0e, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x73, 0x18, 0x05, 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, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0d, 0x75, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x73, 0x12, 0x50, 0x0a, 0x06, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x73, 0x18, 0x06, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x06, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x73, 0x22, 0xd6, 0x05, 0x0a, 0x21, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, @@ -2533,14 +2533,14 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x75, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x75, 0x0a, 0x09, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 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, 0x52, 0x09, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x5a, 0x0a, 0x09, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x52, 0x09, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x12, 0x21, @@ -2552,7 +2552,7 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x06, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, 0x16, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x4d, 0x65, 0x74, 0x61, @@ -2560,7 +2560,7 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x07, 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, 0x36, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x44, 0x79, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x4c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, 0x18, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, @@ -2568,7 +2568,7 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x08, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, 0x19, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, @@ -2584,7 +2584,7 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x5a, 0x0a, 0x11, 0x69, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 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, 0x4c, 0x6f, 0x63, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x10, 0x69, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x3d, 0x0a, 0x18, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x6e, 0x5f, 0x6d, 0x6f, 0x6e, 0x74, 0x68, 0x6c, 0x79, 0x5f, 0x69, 0x6e, @@ -2601,7 +2601,7 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x65, 0x72, 0x42, 0x6f, 0x75, 0x6e, 0x64, 0x88, 0x01, 0x01, 0x12, 0x78, 0x0a, 0x0f, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x4c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x43, 0x68, 0x61, @@ -2610,7 +2610,7 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x12, 0x5c, 0x0a, 0x0f, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x18, 0x01, 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, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0e, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, @@ -2619,7 +2619,7 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x62, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x59, 0x6f, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x16, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x4d, 0x65, 0x74, @@ -2633,47 +2633,47 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x75, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x58, 0x0a, 0x10, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x8d, 0x06, 0x0a, 0x10, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x5f, 0x0a, 0x11, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, + 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, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x10, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x61, 0x0a, 0x15, 0x73, 0x75, 0x62, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x63, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x13, 0x73, 0x75, 0x62, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x43, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x03, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x4c, 0x0a, 0x0a, 0x61, 0x67, 0x65, 0x5f, 0x72, 0x61, 0x6e, 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, 0x67, 0x65, 0x52, 0x61, 0x6e, + 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x09, 0x61, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x12, 0x5c, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 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, 0x61, 0x72, + 0x73, 0x2e, 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, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0e, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x55, 0x0a, 0x0d, 0x69, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 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, 0x6e, 0x2e, 0x49, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x52, + 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0c, 0x69, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x12, 0x69, 0x0a, 0x0f, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x73, 0x18, 0x07, 0x20, 0x03, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x4c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x52, 0x0e, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x4c, 0x69, 0x6e, 0x65, 0x75, 0x70, @@ -2681,7 +2681,7 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x08, 0x20, 0x03, 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, 0x36, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x49, 0x6e, 0x73, 0x69, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x19, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x43, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x61, @@ -2690,7 +2690,7 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x75, 0x74, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x61, 0x0a, 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x18, 0x01, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x22, 0xf6, 0x02, 0x0a, 0x1a, @@ -2698,7 +2698,7 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x75, 0x0a, 0x09, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 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, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x44, 0x69, 0x6d, @@ -2706,14 +2706,14 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x6e, 0x12, 0x66, 0x0a, 0x0e, 0x74, 0x6f, 0x70, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x18, 0x03, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x52, 0x0d, 0x74, 0x6f, 0x70, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x12, 0x79, 0x0a, 0x14, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x52, 0x13, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x65, 0x64, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, @@ -2726,13 +2726,13 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x0a, 0x0f, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x52, 0x0e, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x12, 0x5f, 0x0a, 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x18, 0x04, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x52, 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x22, 0xa7, 0x01, 0x0a, 0x1a, 0x41, 0x75, 0x64, 0x69, @@ -2751,14 +2751,14 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x74, 0x65, 0x12, 0x73, 0x0a, 0x12, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x11, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x57, 0x0a, 0x07, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x52, 0x07, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x32, 0xfa, 0x0b, 0x0a, 0x17, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, @@ -2766,11 +2766,11 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x1c, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x46, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x46, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x46, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x78, @@ -2778,58 +2778,58 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x61, 0x73, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x2c, 0x73, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x63, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x40, 0x3a, 0x01, 0x2a, 0x22, 0x3b, 0x2f, 0x76, 0x31, - 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, + 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x3a, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x46, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x12, 0xa5, 0x02, 0x0a, 0x1e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x6e, 0xda, 0x41, 0x21, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2c, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f, 0x74, 0x65, 0x78, 0x74, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x44, 0x3a, 0x01, 0x2a, 0x22, - 0x3f, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, + 0x3f, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x3a, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x12, 0xe2, 0x01, 0x0a, 0x19, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x45, 0x6c, 0x69, 0x67, 0x69, 0x62, 0x6c, 0x65, 0x44, 0x61, 0x74, 0x65, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x45, 0x6c, 0x69, 0x67, 0x69, 0x62, 0x6c, 0x65, 0x44, 0x61, 0x74, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x45, 0x6c, 0x69, 0x67, 0x69, 0x62, 0x6c, 0x65, 0x44, 0x61, 0x74, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x3a, 0x82, 0xd3, 0xe4, 0x93, 0x02, - 0x34, 0x3a, 0x01, 0x2a, 0x22, 0x2f, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x65, + 0x34, 0x3a, 0x01, 0x2a, 0x22, 0x2f, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x3a, 0x6c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x45, 0x6c, 0x69, 0x67, 0x69, 0x62, 0x6c, 0x65, 0x44, 0x61, 0x74, 0x65, 0x73, 0x12, 0xb5, 0x02, 0x0a, 0x23, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x6f, 0xda, 0x41, 0x1f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x2c, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, - 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x47, 0x3a, 0x01, 0x2a, 0x22, 0x42, 0x2f, 0x76, 0x31, 0x36, 0x2f, + 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x47, 0x3a, 0x01, 0x2a, 0x22, 0x42, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x3a, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x73, @@ -2837,18 +2837,18 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x0a, 0x22, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x65, 0x64, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x65, 0x64, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x65, 0x64, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x63, 0xda, 0x41, 0x14, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x46, - 0x3a, 0x01, 0x2a, 0x22, 0x41, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x3a, 0x01, 0x2a, 0x22, 0x41, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x3a, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x65, 0x64, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x49, 0x6e, @@ -2858,148 +2858,148 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDe 0x77, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x88, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1c, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, + 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescData = file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDesc + file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescData = file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDescData -} - -var file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes = make([]protoimpl.MessageInfo, 28) -var file_google_ads_googleads_v16_services_audience_insights_service_proto_goTypes = []interface{}{ - (*GenerateInsightsFinderReportRequest)(nil), // 0: google.ads.googleads.v16.services.GenerateInsightsFinderReportRequest - (*GenerateInsightsFinderReportResponse)(nil), // 1: google.ads.googleads.v16.services.GenerateInsightsFinderReportResponse - (*GenerateAudienceCompositionInsightsRequest)(nil), // 2: google.ads.googleads.v16.services.GenerateAudienceCompositionInsightsRequest - (*GenerateAudienceCompositionInsightsResponse)(nil), // 3: google.ads.googleads.v16.services.GenerateAudienceCompositionInsightsResponse - (*GenerateSuggestedTargetingInsightsRequest)(nil), // 4: google.ads.googleads.v16.services.GenerateSuggestedTargetingInsightsRequest - (*GenerateSuggestedTargetingInsightsResponse)(nil), // 5: google.ads.googleads.v16.services.GenerateSuggestedTargetingInsightsResponse - (*TargetingSuggestionMetrics)(nil), // 6: google.ads.googleads.v16.services.TargetingSuggestionMetrics - (*ListAudienceInsightsAttributesRequest)(nil), // 7: google.ads.googleads.v16.services.ListAudienceInsightsAttributesRequest - (*ListAudienceInsightsAttributesResponse)(nil), // 8: google.ads.googleads.v16.services.ListAudienceInsightsAttributesResponse - (*ListInsightsEligibleDatesRequest)(nil), // 9: google.ads.googleads.v16.services.ListInsightsEligibleDatesRequest - (*ListInsightsEligibleDatesResponse)(nil), // 10: google.ads.googleads.v16.services.ListInsightsEligibleDatesResponse - (*AudienceInsightsAttribute)(nil), // 11: google.ads.googleads.v16.services.AudienceInsightsAttribute - (*AudienceInsightsTopic)(nil), // 12: google.ads.googleads.v16.services.AudienceInsightsTopic - (*AudienceInsightsEntity)(nil), // 13: google.ads.googleads.v16.services.AudienceInsightsEntity - (*AudienceInsightsCategory)(nil), // 14: google.ads.googleads.v16.services.AudienceInsightsCategory - (*AudienceInsightsDynamicLineup)(nil), // 15: google.ads.googleads.v16.services.AudienceInsightsDynamicLineup - (*BasicInsightsAudience)(nil), // 16: google.ads.googleads.v16.services.BasicInsightsAudience - (*AudienceInsightsAttributeMetadata)(nil), // 17: google.ads.googleads.v16.services.AudienceInsightsAttributeMetadata - (*YouTubeChannelAttributeMetadata)(nil), // 18: google.ads.googleads.v16.services.YouTubeChannelAttributeMetadata - (*DynamicLineupAttributeMetadata)(nil), // 19: google.ads.googleads.v16.services.DynamicLineupAttributeMetadata - (*LocationAttributeMetadata)(nil), // 20: google.ads.googleads.v16.services.LocationAttributeMetadata - (*InsightsAudience)(nil), // 21: google.ads.googleads.v16.services.InsightsAudience - (*InsightsAudienceAttributeGroup)(nil), // 22: google.ads.googleads.v16.services.InsightsAudienceAttributeGroup - (*AudienceCompositionSection)(nil), // 23: google.ads.googleads.v16.services.AudienceCompositionSection - (*AudienceCompositionAttributeCluster)(nil), // 24: google.ads.googleads.v16.services.AudienceCompositionAttributeCluster - (*AudienceCompositionMetrics)(nil), // 25: google.ads.googleads.v16.services.AudienceCompositionMetrics - (*AudienceCompositionAttribute)(nil), // 26: google.ads.googleads.v16.services.AudienceCompositionAttribute - (*DynamicLineupAttributeMetadata_SampleChannel)(nil), // 27: google.ads.googleads.v16.services.DynamicLineupAttributeMetadata.SampleChannel - (enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension)(0), // 28: google.ads.googleads.v16.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension - (*common.AgeRangeInfo)(nil), // 29: google.ads.googleads.v16.common.AgeRangeInfo - (*common.GenderInfo)(nil), // 30: google.ads.googleads.v16.common.GenderInfo - (*common.LocationInfo)(nil), // 31: google.ads.googleads.v16.common.LocationInfo - (*common.DateRange)(nil), // 32: google.ads.googleads.v16.common.DateRange - (*common.UserInterestInfo)(nil), // 33: google.ads.googleads.v16.common.UserInterestInfo - (*common.ParentalStatusInfo)(nil), // 34: google.ads.googleads.v16.common.ParentalStatusInfo - (*common.IncomeRangeInfo)(nil), // 35: google.ads.googleads.v16.common.IncomeRangeInfo - (*common.YouTubeChannelInfo)(nil), // 36: google.ads.googleads.v16.common.YouTubeChannelInfo -} -var file_google_ads_googleads_v16_services_audience_insights_service_proto_depIdxs = []int32{ - 16, // 0: google.ads.googleads.v16.services.GenerateInsightsFinderReportRequest.baseline_audience:type_name -> google.ads.googleads.v16.services.BasicInsightsAudience - 16, // 1: google.ads.googleads.v16.services.GenerateInsightsFinderReportRequest.specific_audience:type_name -> google.ads.googleads.v16.services.BasicInsightsAudience - 21, // 2: google.ads.googleads.v16.services.GenerateAudienceCompositionInsightsRequest.audience:type_name -> google.ads.googleads.v16.services.InsightsAudience - 21, // 3: google.ads.googleads.v16.services.GenerateAudienceCompositionInsightsRequest.baseline_audience:type_name -> google.ads.googleads.v16.services.InsightsAudience - 28, // 4: google.ads.googleads.v16.services.GenerateAudienceCompositionInsightsRequest.dimensions:type_name -> google.ads.googleads.v16.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension - 23, // 5: google.ads.googleads.v16.services.GenerateAudienceCompositionInsightsResponse.sections:type_name -> google.ads.googleads.v16.services.AudienceCompositionSection - 21, // 6: google.ads.googleads.v16.services.GenerateSuggestedTargetingInsightsRequest.audience:type_name -> google.ads.googleads.v16.services.InsightsAudience - 21, // 7: google.ads.googleads.v16.services.GenerateSuggestedTargetingInsightsRequest.baseline_audience:type_name -> google.ads.googleads.v16.services.InsightsAudience - 6, // 8: google.ads.googleads.v16.services.GenerateSuggestedTargetingInsightsResponse.suggestions:type_name -> google.ads.googleads.v16.services.TargetingSuggestionMetrics - 17, // 9: google.ads.googleads.v16.services.TargetingSuggestionMetrics.locations:type_name -> google.ads.googleads.v16.services.AudienceInsightsAttributeMetadata - 29, // 10: google.ads.googleads.v16.services.TargetingSuggestionMetrics.age_ranges:type_name -> google.ads.googleads.v16.common.AgeRangeInfo - 30, // 11: google.ads.googleads.v16.services.TargetingSuggestionMetrics.gender:type_name -> google.ads.googleads.v16.common.GenderInfo - 17, // 12: google.ads.googleads.v16.services.TargetingSuggestionMetrics.user_interests:type_name -> google.ads.googleads.v16.services.AudienceInsightsAttributeMetadata - 28, // 13: google.ads.googleads.v16.services.ListAudienceInsightsAttributesRequest.dimensions:type_name -> google.ads.googleads.v16.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension - 31, // 14: google.ads.googleads.v16.services.ListAudienceInsightsAttributesRequest.location_country_filters:type_name -> google.ads.googleads.v16.common.LocationInfo - 17, // 15: google.ads.googleads.v16.services.ListAudienceInsightsAttributesResponse.attributes:type_name -> google.ads.googleads.v16.services.AudienceInsightsAttributeMetadata - 32, // 16: google.ads.googleads.v16.services.ListInsightsEligibleDatesResponse.last_thirty_days:type_name -> google.ads.googleads.v16.common.DateRange - 29, // 17: google.ads.googleads.v16.services.AudienceInsightsAttribute.age_range:type_name -> google.ads.googleads.v16.common.AgeRangeInfo - 30, // 18: google.ads.googleads.v16.services.AudienceInsightsAttribute.gender:type_name -> google.ads.googleads.v16.common.GenderInfo - 31, // 19: google.ads.googleads.v16.services.AudienceInsightsAttribute.location:type_name -> google.ads.googleads.v16.common.LocationInfo - 33, // 20: google.ads.googleads.v16.services.AudienceInsightsAttribute.user_interest:type_name -> google.ads.googleads.v16.common.UserInterestInfo - 13, // 21: google.ads.googleads.v16.services.AudienceInsightsAttribute.entity:type_name -> google.ads.googleads.v16.services.AudienceInsightsEntity - 14, // 22: google.ads.googleads.v16.services.AudienceInsightsAttribute.category:type_name -> google.ads.googleads.v16.services.AudienceInsightsCategory - 15, // 23: google.ads.googleads.v16.services.AudienceInsightsAttribute.dynamic_lineup:type_name -> google.ads.googleads.v16.services.AudienceInsightsDynamicLineup - 34, // 24: google.ads.googleads.v16.services.AudienceInsightsAttribute.parental_status:type_name -> google.ads.googleads.v16.common.ParentalStatusInfo - 35, // 25: google.ads.googleads.v16.services.AudienceInsightsAttribute.income_range:type_name -> google.ads.googleads.v16.common.IncomeRangeInfo - 36, // 26: google.ads.googleads.v16.services.AudienceInsightsAttribute.youtube_channel:type_name -> google.ads.googleads.v16.common.YouTubeChannelInfo - 13, // 27: google.ads.googleads.v16.services.AudienceInsightsTopic.entity:type_name -> google.ads.googleads.v16.services.AudienceInsightsEntity - 14, // 28: google.ads.googleads.v16.services.AudienceInsightsTopic.category:type_name -> google.ads.googleads.v16.services.AudienceInsightsCategory - 31, // 29: google.ads.googleads.v16.services.BasicInsightsAudience.country_location:type_name -> google.ads.googleads.v16.common.LocationInfo - 31, // 30: google.ads.googleads.v16.services.BasicInsightsAudience.sub_country_locations:type_name -> google.ads.googleads.v16.common.LocationInfo - 30, // 31: google.ads.googleads.v16.services.BasicInsightsAudience.gender:type_name -> google.ads.googleads.v16.common.GenderInfo - 29, // 32: google.ads.googleads.v16.services.BasicInsightsAudience.age_ranges:type_name -> google.ads.googleads.v16.common.AgeRangeInfo - 33, // 33: google.ads.googleads.v16.services.BasicInsightsAudience.user_interests:type_name -> google.ads.googleads.v16.common.UserInterestInfo - 12, // 34: google.ads.googleads.v16.services.BasicInsightsAudience.topics:type_name -> google.ads.googleads.v16.services.AudienceInsightsTopic - 28, // 35: google.ads.googleads.v16.services.AudienceInsightsAttributeMetadata.dimension:type_name -> google.ads.googleads.v16.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension - 11, // 36: google.ads.googleads.v16.services.AudienceInsightsAttributeMetadata.attribute:type_name -> google.ads.googleads.v16.services.AudienceInsightsAttribute - 18, // 37: google.ads.googleads.v16.services.AudienceInsightsAttributeMetadata.youtube_channel_metadata:type_name -> google.ads.googleads.v16.services.YouTubeChannelAttributeMetadata - 19, // 38: google.ads.googleads.v16.services.AudienceInsightsAttributeMetadata.dynamic_attribute_metadata:type_name -> google.ads.googleads.v16.services.DynamicLineupAttributeMetadata - 20, // 39: google.ads.googleads.v16.services.AudienceInsightsAttributeMetadata.location_attribute_metadata:type_name -> google.ads.googleads.v16.services.LocationAttributeMetadata - 31, // 40: google.ads.googleads.v16.services.DynamicLineupAttributeMetadata.inventory_country:type_name -> google.ads.googleads.v16.common.LocationInfo - 27, // 41: google.ads.googleads.v16.services.DynamicLineupAttributeMetadata.sample_channels:type_name -> google.ads.googleads.v16.services.DynamicLineupAttributeMetadata.SampleChannel - 31, // 42: google.ads.googleads.v16.services.LocationAttributeMetadata.country_location:type_name -> google.ads.googleads.v16.common.LocationInfo - 31, // 43: google.ads.googleads.v16.services.InsightsAudience.country_locations:type_name -> google.ads.googleads.v16.common.LocationInfo - 31, // 44: google.ads.googleads.v16.services.InsightsAudience.sub_country_locations:type_name -> google.ads.googleads.v16.common.LocationInfo - 30, // 45: google.ads.googleads.v16.services.InsightsAudience.gender:type_name -> google.ads.googleads.v16.common.GenderInfo - 29, // 46: google.ads.googleads.v16.services.InsightsAudience.age_ranges:type_name -> google.ads.googleads.v16.common.AgeRangeInfo - 34, // 47: google.ads.googleads.v16.services.InsightsAudience.parental_status:type_name -> google.ads.googleads.v16.common.ParentalStatusInfo - 35, // 48: google.ads.googleads.v16.services.InsightsAudience.income_ranges:type_name -> google.ads.googleads.v16.common.IncomeRangeInfo - 15, // 49: google.ads.googleads.v16.services.InsightsAudience.dynamic_lineups:type_name -> google.ads.googleads.v16.services.AudienceInsightsDynamicLineup - 22, // 50: google.ads.googleads.v16.services.InsightsAudience.topic_audience_combinations:type_name -> google.ads.googleads.v16.services.InsightsAudienceAttributeGroup - 11, // 51: google.ads.googleads.v16.services.InsightsAudienceAttributeGroup.attributes:type_name -> google.ads.googleads.v16.services.AudienceInsightsAttribute - 28, // 52: google.ads.googleads.v16.services.AudienceCompositionSection.dimension:type_name -> google.ads.googleads.v16.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension - 26, // 53: google.ads.googleads.v16.services.AudienceCompositionSection.top_attributes:type_name -> google.ads.googleads.v16.services.AudienceCompositionAttribute - 24, // 54: google.ads.googleads.v16.services.AudienceCompositionSection.clustered_attributes:type_name -> google.ads.googleads.v16.services.AudienceCompositionAttributeCluster - 25, // 55: google.ads.googleads.v16.services.AudienceCompositionAttributeCluster.cluster_metrics:type_name -> google.ads.googleads.v16.services.AudienceCompositionMetrics - 26, // 56: google.ads.googleads.v16.services.AudienceCompositionAttributeCluster.attributes:type_name -> google.ads.googleads.v16.services.AudienceCompositionAttribute - 17, // 57: google.ads.googleads.v16.services.AudienceCompositionAttribute.attribute_metadata:type_name -> google.ads.googleads.v16.services.AudienceInsightsAttributeMetadata - 25, // 58: google.ads.googleads.v16.services.AudienceCompositionAttribute.metrics:type_name -> google.ads.googleads.v16.services.AudienceCompositionMetrics - 36, // 59: google.ads.googleads.v16.services.DynamicLineupAttributeMetadata.SampleChannel.youtube_channel:type_name -> google.ads.googleads.v16.common.YouTubeChannelInfo - 18, // 60: google.ads.googleads.v16.services.DynamicLineupAttributeMetadata.SampleChannel.youtube_channel_metadata:type_name -> google.ads.googleads.v16.services.YouTubeChannelAttributeMetadata - 0, // 61: google.ads.googleads.v16.services.AudienceInsightsService.GenerateInsightsFinderReport:input_type -> google.ads.googleads.v16.services.GenerateInsightsFinderReportRequest - 7, // 62: google.ads.googleads.v16.services.AudienceInsightsService.ListAudienceInsightsAttributes:input_type -> google.ads.googleads.v16.services.ListAudienceInsightsAttributesRequest - 9, // 63: google.ads.googleads.v16.services.AudienceInsightsService.ListInsightsEligibleDates:input_type -> google.ads.googleads.v16.services.ListInsightsEligibleDatesRequest - 2, // 64: google.ads.googleads.v16.services.AudienceInsightsService.GenerateAudienceCompositionInsights:input_type -> google.ads.googleads.v16.services.GenerateAudienceCompositionInsightsRequest - 4, // 65: google.ads.googleads.v16.services.AudienceInsightsService.GenerateSuggestedTargetingInsights:input_type -> google.ads.googleads.v16.services.GenerateSuggestedTargetingInsightsRequest - 1, // 66: google.ads.googleads.v16.services.AudienceInsightsService.GenerateInsightsFinderReport:output_type -> google.ads.googleads.v16.services.GenerateInsightsFinderReportResponse - 8, // 67: google.ads.googleads.v16.services.AudienceInsightsService.ListAudienceInsightsAttributes:output_type -> google.ads.googleads.v16.services.ListAudienceInsightsAttributesResponse - 10, // 68: google.ads.googleads.v16.services.AudienceInsightsService.ListInsightsEligibleDates:output_type -> google.ads.googleads.v16.services.ListInsightsEligibleDatesResponse - 3, // 69: google.ads.googleads.v16.services.AudienceInsightsService.GenerateAudienceCompositionInsights:output_type -> google.ads.googleads.v16.services.GenerateAudienceCompositionInsightsResponse - 5, // 70: google.ads.googleads.v16.services.AudienceInsightsService.GenerateSuggestedTargetingInsights:output_type -> google.ads.googleads.v16.services.GenerateSuggestedTargetingInsightsResponse + return file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDescData +} + +var file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes = make([]protoimpl.MessageInfo, 28) +var file_google_ads_googleads_v17_services_audience_insights_service_proto_goTypes = []interface{}{ + (*GenerateInsightsFinderReportRequest)(nil), // 0: google.ads.googleads.v17.services.GenerateInsightsFinderReportRequest + (*GenerateInsightsFinderReportResponse)(nil), // 1: google.ads.googleads.v17.services.GenerateInsightsFinderReportResponse + (*GenerateAudienceCompositionInsightsRequest)(nil), // 2: google.ads.googleads.v17.services.GenerateAudienceCompositionInsightsRequest + (*GenerateAudienceCompositionInsightsResponse)(nil), // 3: google.ads.googleads.v17.services.GenerateAudienceCompositionInsightsResponse + (*GenerateSuggestedTargetingInsightsRequest)(nil), // 4: google.ads.googleads.v17.services.GenerateSuggestedTargetingInsightsRequest + (*GenerateSuggestedTargetingInsightsResponse)(nil), // 5: google.ads.googleads.v17.services.GenerateSuggestedTargetingInsightsResponse + (*TargetingSuggestionMetrics)(nil), // 6: google.ads.googleads.v17.services.TargetingSuggestionMetrics + (*ListAudienceInsightsAttributesRequest)(nil), // 7: google.ads.googleads.v17.services.ListAudienceInsightsAttributesRequest + (*ListAudienceInsightsAttributesResponse)(nil), // 8: google.ads.googleads.v17.services.ListAudienceInsightsAttributesResponse + (*ListInsightsEligibleDatesRequest)(nil), // 9: google.ads.googleads.v17.services.ListInsightsEligibleDatesRequest + (*ListInsightsEligibleDatesResponse)(nil), // 10: google.ads.googleads.v17.services.ListInsightsEligibleDatesResponse + (*AudienceInsightsAttribute)(nil), // 11: google.ads.googleads.v17.services.AudienceInsightsAttribute + (*AudienceInsightsTopic)(nil), // 12: google.ads.googleads.v17.services.AudienceInsightsTopic + (*AudienceInsightsEntity)(nil), // 13: google.ads.googleads.v17.services.AudienceInsightsEntity + (*AudienceInsightsCategory)(nil), // 14: google.ads.googleads.v17.services.AudienceInsightsCategory + (*AudienceInsightsDynamicLineup)(nil), // 15: google.ads.googleads.v17.services.AudienceInsightsDynamicLineup + (*BasicInsightsAudience)(nil), // 16: google.ads.googleads.v17.services.BasicInsightsAudience + (*AudienceInsightsAttributeMetadata)(nil), // 17: google.ads.googleads.v17.services.AudienceInsightsAttributeMetadata + (*YouTubeChannelAttributeMetadata)(nil), // 18: google.ads.googleads.v17.services.YouTubeChannelAttributeMetadata + (*DynamicLineupAttributeMetadata)(nil), // 19: google.ads.googleads.v17.services.DynamicLineupAttributeMetadata + (*LocationAttributeMetadata)(nil), // 20: google.ads.googleads.v17.services.LocationAttributeMetadata + (*InsightsAudience)(nil), // 21: google.ads.googleads.v17.services.InsightsAudience + (*InsightsAudienceAttributeGroup)(nil), // 22: google.ads.googleads.v17.services.InsightsAudienceAttributeGroup + (*AudienceCompositionSection)(nil), // 23: google.ads.googleads.v17.services.AudienceCompositionSection + (*AudienceCompositionAttributeCluster)(nil), // 24: google.ads.googleads.v17.services.AudienceCompositionAttributeCluster + (*AudienceCompositionMetrics)(nil), // 25: google.ads.googleads.v17.services.AudienceCompositionMetrics + (*AudienceCompositionAttribute)(nil), // 26: google.ads.googleads.v17.services.AudienceCompositionAttribute + (*DynamicLineupAttributeMetadata_SampleChannel)(nil), // 27: google.ads.googleads.v17.services.DynamicLineupAttributeMetadata.SampleChannel + (enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension)(0), // 28: google.ads.googleads.v17.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension + (*common.AgeRangeInfo)(nil), // 29: google.ads.googleads.v17.common.AgeRangeInfo + (*common.GenderInfo)(nil), // 30: google.ads.googleads.v17.common.GenderInfo + (*common.LocationInfo)(nil), // 31: google.ads.googleads.v17.common.LocationInfo + (*common.DateRange)(nil), // 32: google.ads.googleads.v17.common.DateRange + (*common.UserInterestInfo)(nil), // 33: google.ads.googleads.v17.common.UserInterestInfo + (*common.ParentalStatusInfo)(nil), // 34: google.ads.googleads.v17.common.ParentalStatusInfo + (*common.IncomeRangeInfo)(nil), // 35: google.ads.googleads.v17.common.IncomeRangeInfo + (*common.YouTubeChannelInfo)(nil), // 36: google.ads.googleads.v17.common.YouTubeChannelInfo +} +var file_google_ads_googleads_v17_services_audience_insights_service_proto_depIdxs = []int32{ + 16, // 0: google.ads.googleads.v17.services.GenerateInsightsFinderReportRequest.baseline_audience:type_name -> google.ads.googleads.v17.services.BasicInsightsAudience + 16, // 1: google.ads.googleads.v17.services.GenerateInsightsFinderReportRequest.specific_audience:type_name -> google.ads.googleads.v17.services.BasicInsightsAudience + 21, // 2: google.ads.googleads.v17.services.GenerateAudienceCompositionInsightsRequest.audience:type_name -> google.ads.googleads.v17.services.InsightsAudience + 21, // 3: google.ads.googleads.v17.services.GenerateAudienceCompositionInsightsRequest.baseline_audience:type_name -> google.ads.googleads.v17.services.InsightsAudience + 28, // 4: google.ads.googleads.v17.services.GenerateAudienceCompositionInsightsRequest.dimensions:type_name -> google.ads.googleads.v17.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension + 23, // 5: google.ads.googleads.v17.services.GenerateAudienceCompositionInsightsResponse.sections:type_name -> google.ads.googleads.v17.services.AudienceCompositionSection + 21, // 6: google.ads.googleads.v17.services.GenerateSuggestedTargetingInsightsRequest.audience:type_name -> google.ads.googleads.v17.services.InsightsAudience + 21, // 7: google.ads.googleads.v17.services.GenerateSuggestedTargetingInsightsRequest.baseline_audience:type_name -> google.ads.googleads.v17.services.InsightsAudience + 6, // 8: google.ads.googleads.v17.services.GenerateSuggestedTargetingInsightsResponse.suggestions:type_name -> google.ads.googleads.v17.services.TargetingSuggestionMetrics + 17, // 9: google.ads.googleads.v17.services.TargetingSuggestionMetrics.locations:type_name -> google.ads.googleads.v17.services.AudienceInsightsAttributeMetadata + 29, // 10: google.ads.googleads.v17.services.TargetingSuggestionMetrics.age_ranges:type_name -> google.ads.googleads.v17.common.AgeRangeInfo + 30, // 11: google.ads.googleads.v17.services.TargetingSuggestionMetrics.gender:type_name -> google.ads.googleads.v17.common.GenderInfo + 17, // 12: google.ads.googleads.v17.services.TargetingSuggestionMetrics.user_interests:type_name -> google.ads.googleads.v17.services.AudienceInsightsAttributeMetadata + 28, // 13: google.ads.googleads.v17.services.ListAudienceInsightsAttributesRequest.dimensions:type_name -> google.ads.googleads.v17.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension + 31, // 14: google.ads.googleads.v17.services.ListAudienceInsightsAttributesRequest.location_country_filters:type_name -> google.ads.googleads.v17.common.LocationInfo + 17, // 15: google.ads.googleads.v17.services.ListAudienceInsightsAttributesResponse.attributes:type_name -> google.ads.googleads.v17.services.AudienceInsightsAttributeMetadata + 32, // 16: google.ads.googleads.v17.services.ListInsightsEligibleDatesResponse.last_thirty_days:type_name -> google.ads.googleads.v17.common.DateRange + 29, // 17: google.ads.googleads.v17.services.AudienceInsightsAttribute.age_range:type_name -> google.ads.googleads.v17.common.AgeRangeInfo + 30, // 18: google.ads.googleads.v17.services.AudienceInsightsAttribute.gender:type_name -> google.ads.googleads.v17.common.GenderInfo + 31, // 19: google.ads.googleads.v17.services.AudienceInsightsAttribute.location:type_name -> google.ads.googleads.v17.common.LocationInfo + 33, // 20: google.ads.googleads.v17.services.AudienceInsightsAttribute.user_interest:type_name -> google.ads.googleads.v17.common.UserInterestInfo + 13, // 21: google.ads.googleads.v17.services.AudienceInsightsAttribute.entity:type_name -> google.ads.googleads.v17.services.AudienceInsightsEntity + 14, // 22: google.ads.googleads.v17.services.AudienceInsightsAttribute.category:type_name -> google.ads.googleads.v17.services.AudienceInsightsCategory + 15, // 23: google.ads.googleads.v17.services.AudienceInsightsAttribute.dynamic_lineup:type_name -> google.ads.googleads.v17.services.AudienceInsightsDynamicLineup + 34, // 24: google.ads.googleads.v17.services.AudienceInsightsAttribute.parental_status:type_name -> google.ads.googleads.v17.common.ParentalStatusInfo + 35, // 25: google.ads.googleads.v17.services.AudienceInsightsAttribute.income_range:type_name -> google.ads.googleads.v17.common.IncomeRangeInfo + 36, // 26: google.ads.googleads.v17.services.AudienceInsightsAttribute.youtube_channel:type_name -> google.ads.googleads.v17.common.YouTubeChannelInfo + 13, // 27: google.ads.googleads.v17.services.AudienceInsightsTopic.entity:type_name -> google.ads.googleads.v17.services.AudienceInsightsEntity + 14, // 28: google.ads.googleads.v17.services.AudienceInsightsTopic.category:type_name -> google.ads.googleads.v17.services.AudienceInsightsCategory + 31, // 29: google.ads.googleads.v17.services.BasicInsightsAudience.country_location:type_name -> google.ads.googleads.v17.common.LocationInfo + 31, // 30: google.ads.googleads.v17.services.BasicInsightsAudience.sub_country_locations:type_name -> google.ads.googleads.v17.common.LocationInfo + 30, // 31: google.ads.googleads.v17.services.BasicInsightsAudience.gender:type_name -> google.ads.googleads.v17.common.GenderInfo + 29, // 32: google.ads.googleads.v17.services.BasicInsightsAudience.age_ranges:type_name -> google.ads.googleads.v17.common.AgeRangeInfo + 33, // 33: google.ads.googleads.v17.services.BasicInsightsAudience.user_interests:type_name -> google.ads.googleads.v17.common.UserInterestInfo + 12, // 34: google.ads.googleads.v17.services.BasicInsightsAudience.topics:type_name -> google.ads.googleads.v17.services.AudienceInsightsTopic + 28, // 35: google.ads.googleads.v17.services.AudienceInsightsAttributeMetadata.dimension:type_name -> google.ads.googleads.v17.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension + 11, // 36: google.ads.googleads.v17.services.AudienceInsightsAttributeMetadata.attribute:type_name -> google.ads.googleads.v17.services.AudienceInsightsAttribute + 18, // 37: google.ads.googleads.v17.services.AudienceInsightsAttributeMetadata.youtube_channel_metadata:type_name -> google.ads.googleads.v17.services.YouTubeChannelAttributeMetadata + 19, // 38: google.ads.googleads.v17.services.AudienceInsightsAttributeMetadata.dynamic_attribute_metadata:type_name -> google.ads.googleads.v17.services.DynamicLineupAttributeMetadata + 20, // 39: google.ads.googleads.v17.services.AudienceInsightsAttributeMetadata.location_attribute_metadata:type_name -> google.ads.googleads.v17.services.LocationAttributeMetadata + 31, // 40: google.ads.googleads.v17.services.DynamicLineupAttributeMetadata.inventory_country:type_name -> google.ads.googleads.v17.common.LocationInfo + 27, // 41: google.ads.googleads.v17.services.DynamicLineupAttributeMetadata.sample_channels:type_name -> google.ads.googleads.v17.services.DynamicLineupAttributeMetadata.SampleChannel + 31, // 42: google.ads.googleads.v17.services.LocationAttributeMetadata.country_location:type_name -> google.ads.googleads.v17.common.LocationInfo + 31, // 43: google.ads.googleads.v17.services.InsightsAudience.country_locations:type_name -> google.ads.googleads.v17.common.LocationInfo + 31, // 44: google.ads.googleads.v17.services.InsightsAudience.sub_country_locations:type_name -> google.ads.googleads.v17.common.LocationInfo + 30, // 45: google.ads.googleads.v17.services.InsightsAudience.gender:type_name -> google.ads.googleads.v17.common.GenderInfo + 29, // 46: google.ads.googleads.v17.services.InsightsAudience.age_ranges:type_name -> google.ads.googleads.v17.common.AgeRangeInfo + 34, // 47: google.ads.googleads.v17.services.InsightsAudience.parental_status:type_name -> google.ads.googleads.v17.common.ParentalStatusInfo + 35, // 48: google.ads.googleads.v17.services.InsightsAudience.income_ranges:type_name -> google.ads.googleads.v17.common.IncomeRangeInfo + 15, // 49: google.ads.googleads.v17.services.InsightsAudience.dynamic_lineups:type_name -> google.ads.googleads.v17.services.AudienceInsightsDynamicLineup + 22, // 50: google.ads.googleads.v17.services.InsightsAudience.topic_audience_combinations:type_name -> google.ads.googleads.v17.services.InsightsAudienceAttributeGroup + 11, // 51: google.ads.googleads.v17.services.InsightsAudienceAttributeGroup.attributes:type_name -> google.ads.googleads.v17.services.AudienceInsightsAttribute + 28, // 52: google.ads.googleads.v17.services.AudienceCompositionSection.dimension:type_name -> google.ads.googleads.v17.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension + 26, // 53: google.ads.googleads.v17.services.AudienceCompositionSection.top_attributes:type_name -> google.ads.googleads.v17.services.AudienceCompositionAttribute + 24, // 54: google.ads.googleads.v17.services.AudienceCompositionSection.clustered_attributes:type_name -> google.ads.googleads.v17.services.AudienceCompositionAttributeCluster + 25, // 55: google.ads.googleads.v17.services.AudienceCompositionAttributeCluster.cluster_metrics:type_name -> google.ads.googleads.v17.services.AudienceCompositionMetrics + 26, // 56: google.ads.googleads.v17.services.AudienceCompositionAttributeCluster.attributes:type_name -> google.ads.googleads.v17.services.AudienceCompositionAttribute + 17, // 57: google.ads.googleads.v17.services.AudienceCompositionAttribute.attribute_metadata:type_name -> google.ads.googleads.v17.services.AudienceInsightsAttributeMetadata + 25, // 58: google.ads.googleads.v17.services.AudienceCompositionAttribute.metrics:type_name -> google.ads.googleads.v17.services.AudienceCompositionMetrics + 36, // 59: google.ads.googleads.v17.services.DynamicLineupAttributeMetadata.SampleChannel.youtube_channel:type_name -> google.ads.googleads.v17.common.YouTubeChannelInfo + 18, // 60: google.ads.googleads.v17.services.DynamicLineupAttributeMetadata.SampleChannel.youtube_channel_metadata:type_name -> google.ads.googleads.v17.services.YouTubeChannelAttributeMetadata + 0, // 61: google.ads.googleads.v17.services.AudienceInsightsService.GenerateInsightsFinderReport:input_type -> google.ads.googleads.v17.services.GenerateInsightsFinderReportRequest + 7, // 62: google.ads.googleads.v17.services.AudienceInsightsService.ListAudienceInsightsAttributes:input_type -> google.ads.googleads.v17.services.ListAudienceInsightsAttributesRequest + 9, // 63: google.ads.googleads.v17.services.AudienceInsightsService.ListInsightsEligibleDates:input_type -> google.ads.googleads.v17.services.ListInsightsEligibleDatesRequest + 2, // 64: google.ads.googleads.v17.services.AudienceInsightsService.GenerateAudienceCompositionInsights:input_type -> google.ads.googleads.v17.services.GenerateAudienceCompositionInsightsRequest + 4, // 65: google.ads.googleads.v17.services.AudienceInsightsService.GenerateSuggestedTargetingInsights:input_type -> google.ads.googleads.v17.services.GenerateSuggestedTargetingInsightsRequest + 1, // 66: google.ads.googleads.v17.services.AudienceInsightsService.GenerateInsightsFinderReport:output_type -> google.ads.googleads.v17.services.GenerateInsightsFinderReportResponse + 8, // 67: google.ads.googleads.v17.services.AudienceInsightsService.ListAudienceInsightsAttributes:output_type -> google.ads.googleads.v17.services.ListAudienceInsightsAttributesResponse + 10, // 68: google.ads.googleads.v17.services.AudienceInsightsService.ListInsightsEligibleDates:output_type -> google.ads.googleads.v17.services.ListInsightsEligibleDatesResponse + 3, // 69: google.ads.googleads.v17.services.AudienceInsightsService.GenerateAudienceCompositionInsights:output_type -> google.ads.googleads.v17.services.GenerateAudienceCompositionInsightsResponse + 5, // 70: google.ads.googleads.v17.services.AudienceInsightsService.GenerateSuggestedTargetingInsights:output_type -> google.ads.googleads.v17.services.GenerateSuggestedTargetingInsightsResponse 66, // [66:71] is the sub-list for method output_type 61, // [61:66] is the sub-list for method input_type 61, // [61:61] is the sub-list for extension type_name @@ -3007,13 +3007,13 @@ var file_google_ads_googleads_v16_services_audience_insights_service_proto_depId 0, // [0:61] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_audience_insights_service_proto_init() } -func file_google_ads_googleads_v16_services_audience_insights_service_proto_init() { - if File_google_ads_googleads_v16_services_audience_insights_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_audience_insights_service_proto_init() } +func file_google_ads_googleads_v17_services_audience_insights_service_proto_init() { + if File_google_ads_googleads_v17_services_audience_insights_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GenerateInsightsFinderReportRequest); i { case 0: return &v.state @@ -3025,7 +3025,7 @@ func file_google_ads_googleads_v16_services_audience_insights_service_proto_init return nil } } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GenerateInsightsFinderReportResponse); i { case 0: return &v.state @@ -3037,7 +3037,7 @@ func file_google_ads_googleads_v16_services_audience_insights_service_proto_init return nil } } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GenerateAudienceCompositionInsightsRequest); i { case 0: return &v.state @@ -3049,7 +3049,7 @@ func file_google_ads_googleads_v16_services_audience_insights_service_proto_init return nil } } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GenerateAudienceCompositionInsightsResponse); i { case 0: return &v.state @@ -3061,7 +3061,7 @@ func file_google_ads_googleads_v16_services_audience_insights_service_proto_init return nil } } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GenerateSuggestedTargetingInsightsRequest); i { case 0: return &v.state @@ -3073,7 +3073,7 @@ func file_google_ads_googleads_v16_services_audience_insights_service_proto_init return nil } } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GenerateSuggestedTargetingInsightsResponse); i { case 0: return &v.state @@ -3085,7 +3085,7 @@ func file_google_ads_googleads_v16_services_audience_insights_service_proto_init return nil } } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TargetingSuggestionMetrics); i { case 0: return &v.state @@ -3097,7 +3097,7 @@ func file_google_ads_googleads_v16_services_audience_insights_service_proto_init return nil } } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListAudienceInsightsAttributesRequest); i { case 0: return &v.state @@ -3109,7 +3109,7 @@ func file_google_ads_googleads_v16_services_audience_insights_service_proto_init return nil } } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListAudienceInsightsAttributesResponse); i { case 0: return &v.state @@ -3121,7 +3121,7 @@ func file_google_ads_googleads_v16_services_audience_insights_service_proto_init return nil } } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListInsightsEligibleDatesRequest); i { case 0: return &v.state @@ -3133,7 +3133,7 @@ func file_google_ads_googleads_v16_services_audience_insights_service_proto_init return nil } } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListInsightsEligibleDatesResponse); i { case 0: return &v.state @@ -3145,7 +3145,7 @@ func file_google_ads_googleads_v16_services_audience_insights_service_proto_init return nil } } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AudienceInsightsAttribute); i { case 0: return &v.state @@ -3157,7 +3157,7 @@ func file_google_ads_googleads_v16_services_audience_insights_service_proto_init return nil } } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AudienceInsightsTopic); i { case 0: return &v.state @@ -3169,7 +3169,7 @@ func file_google_ads_googleads_v16_services_audience_insights_service_proto_init return nil } } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AudienceInsightsEntity); i { case 0: return &v.state @@ -3181,7 +3181,7 @@ func file_google_ads_googleads_v16_services_audience_insights_service_proto_init return nil } } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AudienceInsightsCategory); i { case 0: return &v.state @@ -3193,7 +3193,7 @@ func file_google_ads_googleads_v16_services_audience_insights_service_proto_init return nil } } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AudienceInsightsDynamicLineup); i { case 0: return &v.state @@ -3205,7 +3205,7 @@ func file_google_ads_googleads_v16_services_audience_insights_service_proto_init return nil } } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BasicInsightsAudience); i { case 0: return &v.state @@ -3217,7 +3217,7 @@ func file_google_ads_googleads_v16_services_audience_insights_service_proto_init return nil } } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AudienceInsightsAttributeMetadata); i { case 0: return &v.state @@ -3229,7 +3229,7 @@ func file_google_ads_googleads_v16_services_audience_insights_service_proto_init return nil } } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*YouTubeChannelAttributeMetadata); i { case 0: return &v.state @@ -3241,7 +3241,7 @@ func file_google_ads_googleads_v16_services_audience_insights_service_proto_init return nil } } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DynamicLineupAttributeMetadata); i { case 0: return &v.state @@ -3253,7 +3253,7 @@ func file_google_ads_googleads_v16_services_audience_insights_service_proto_init return nil } } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*LocationAttributeMetadata); i { case 0: return &v.state @@ -3265,7 +3265,7 @@ func file_google_ads_googleads_v16_services_audience_insights_service_proto_init return nil } } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*InsightsAudience); i { case 0: return &v.state @@ -3277,7 +3277,7 @@ func file_google_ads_googleads_v16_services_audience_insights_service_proto_init return nil } } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*InsightsAudienceAttributeGroup); i { case 0: return &v.state @@ -3289,7 +3289,7 @@ func file_google_ads_googleads_v16_services_audience_insights_service_proto_init return nil } } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AudienceCompositionSection); i { case 0: return &v.state @@ -3301,7 +3301,7 @@ func file_google_ads_googleads_v16_services_audience_insights_service_proto_init return nil } } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AudienceCompositionAttributeCluster); i { case 0: return &v.state @@ -3313,7 +3313,7 @@ func file_google_ads_googleads_v16_services_audience_insights_service_proto_init return nil } } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AudienceCompositionMetrics); i { case 0: return &v.state @@ -3325,7 +3325,7 @@ func file_google_ads_googleads_v16_services_audience_insights_service_proto_init return nil } } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AudienceCompositionAttribute); i { case 0: return &v.state @@ -3337,7 +3337,7 @@ func file_google_ads_googleads_v16_services_audience_insights_service_proto_init return nil } } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DynamicLineupAttributeMetadata_SampleChannel); i { case 0: return &v.state @@ -3350,7 +3350,7 @@ func file_google_ads_googleads_v16_services_audience_insights_service_proto_init } } } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[11].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[11].OneofWrappers = []interface{}{ (*AudienceInsightsAttribute_AgeRange)(nil), (*AudienceInsightsAttribute_Gender)(nil), (*AudienceInsightsAttribute_Location)(nil), @@ -3362,32 +3362,32 @@ func file_google_ads_googleads_v16_services_audience_insights_service_proto_init (*AudienceInsightsAttribute_IncomeRange)(nil), (*AudienceInsightsAttribute_YoutubeChannel)(nil), } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[12].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[12].OneofWrappers = []interface{}{ (*AudienceInsightsTopic_Entity)(nil), (*AudienceInsightsTopic_Category)(nil), } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[17].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[17].OneofWrappers = []interface{}{ (*AudienceInsightsAttributeMetadata_YoutubeChannelMetadata)(nil), (*AudienceInsightsAttributeMetadata_DynamicAttributeMetadata)(nil), (*AudienceInsightsAttributeMetadata_LocationAttributeMetadata)(nil), } - file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes[19].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes[19].OneofWrappers = []interface{}{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDesc, NumEnums: 0, NumMessages: 28, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_audience_insights_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_audience_insights_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_audience_insights_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_audience_insights_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_audience_insights_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_audience_insights_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_audience_insights_service_proto = out.File - file_google_ads_googleads_v16_services_audience_insights_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_audience_insights_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_audience_insights_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_audience_insights_service_proto = out.File + file_google_ads_googleads_v17_services_audience_insights_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_audience_insights_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_audience_insights_service_proto_depIdxs = nil } diff --git a/services/audience_insights_service_grpc.pb.go b/services/audience_insights_service_grpc.pb.go index 94443285..41db8733 100644 --- a/services/audience_insights_service_grpc.pb.go +++ b/services/audience_insights_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/audience_insights_service.proto +// source: google/ads/googleads/v17/services/audience_insights_service.proto package services @@ -29,20 +29,24 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - AudienceInsightsService_GenerateInsightsFinderReport_FullMethodName = "/google.ads.googleads.v16.services.AudienceInsightsService/GenerateInsightsFinderReport" - AudienceInsightsService_ListAudienceInsightsAttributes_FullMethodName = "/google.ads.googleads.v16.services.AudienceInsightsService/ListAudienceInsightsAttributes" - AudienceInsightsService_ListInsightsEligibleDates_FullMethodName = "/google.ads.googleads.v16.services.AudienceInsightsService/ListInsightsEligibleDates" - AudienceInsightsService_GenerateAudienceCompositionInsights_FullMethodName = "/google.ads.googleads.v16.services.AudienceInsightsService/GenerateAudienceCompositionInsights" - AudienceInsightsService_GenerateSuggestedTargetingInsights_FullMethodName = "/google.ads.googleads.v16.services.AudienceInsightsService/GenerateSuggestedTargetingInsights" + AudienceInsightsService_GenerateInsightsFinderReport_FullMethodName = "/google.ads.googleads.v17.services.AudienceInsightsService/GenerateInsightsFinderReport" + AudienceInsightsService_ListAudienceInsightsAttributes_FullMethodName = "/google.ads.googleads.v17.services.AudienceInsightsService/ListAudienceInsightsAttributes" + AudienceInsightsService_ListInsightsEligibleDates_FullMethodName = "/google.ads.googleads.v17.services.AudienceInsightsService/ListInsightsEligibleDates" + AudienceInsightsService_GenerateAudienceCompositionInsights_FullMethodName = "/google.ads.googleads.v17.services.AudienceInsightsService/GenerateAudienceCompositionInsights" + AudienceInsightsService_GenerateSuggestedTargetingInsights_FullMethodName = "/google.ads.googleads.v17.services.AudienceInsightsService/GenerateSuggestedTargetingInsights" ) // AudienceInsightsServiceClient is the client API for AudienceInsightsService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Audience Insights Service helps users find information about groups of +// people and how they can be reached with Google Ads. Accessible to +// allowlisted customers only. type AudienceInsightsServiceClient interface { // Creates a saved report that can be viewed in the Insights Finder tool. // @@ -125,8 +129,9 @@ func NewAudienceInsightsServiceClient(cc grpc.ClientConnInterface) AudienceInsig } func (c *audienceInsightsServiceClient) GenerateInsightsFinderReport(ctx context.Context, in *GenerateInsightsFinderReportRequest, opts ...grpc.CallOption) (*GenerateInsightsFinderReportResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(GenerateInsightsFinderReportResponse) - err := c.cc.Invoke(ctx, AudienceInsightsService_GenerateInsightsFinderReport_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AudienceInsightsService_GenerateInsightsFinderReport_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -134,8 +139,9 @@ func (c *audienceInsightsServiceClient) GenerateInsightsFinderReport(ctx context } func (c *audienceInsightsServiceClient) ListAudienceInsightsAttributes(ctx context.Context, in *ListAudienceInsightsAttributesRequest, opts ...grpc.CallOption) (*ListAudienceInsightsAttributesResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(ListAudienceInsightsAttributesResponse) - err := c.cc.Invoke(ctx, AudienceInsightsService_ListAudienceInsightsAttributes_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AudienceInsightsService_ListAudienceInsightsAttributes_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -143,8 +149,9 @@ func (c *audienceInsightsServiceClient) ListAudienceInsightsAttributes(ctx conte } func (c *audienceInsightsServiceClient) ListInsightsEligibleDates(ctx context.Context, in *ListInsightsEligibleDatesRequest, opts ...grpc.CallOption) (*ListInsightsEligibleDatesResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(ListInsightsEligibleDatesResponse) - err := c.cc.Invoke(ctx, AudienceInsightsService_ListInsightsEligibleDates_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AudienceInsightsService_ListInsightsEligibleDates_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -152,8 +159,9 @@ func (c *audienceInsightsServiceClient) ListInsightsEligibleDates(ctx context.Co } func (c *audienceInsightsServiceClient) GenerateAudienceCompositionInsights(ctx context.Context, in *GenerateAudienceCompositionInsightsRequest, opts ...grpc.CallOption) (*GenerateAudienceCompositionInsightsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(GenerateAudienceCompositionInsightsResponse) - err := c.cc.Invoke(ctx, AudienceInsightsService_GenerateAudienceCompositionInsights_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AudienceInsightsService_GenerateAudienceCompositionInsights_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -161,8 +169,9 @@ func (c *audienceInsightsServiceClient) GenerateAudienceCompositionInsights(ctx } func (c *audienceInsightsServiceClient) GenerateSuggestedTargetingInsights(ctx context.Context, in *GenerateSuggestedTargetingInsightsRequest, opts ...grpc.CallOption) (*GenerateSuggestedTargetingInsightsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(GenerateSuggestedTargetingInsightsResponse) - err := c.cc.Invoke(ctx, AudienceInsightsService_GenerateSuggestedTargetingInsights_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AudienceInsightsService_GenerateSuggestedTargetingInsights_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -172,6 +181,10 @@ func (c *audienceInsightsServiceClient) GenerateSuggestedTargetingInsights(ctx c // AudienceInsightsServiceServer is the server API for AudienceInsightsService service. // All implementations must embed UnimplementedAudienceInsightsServiceServer // for forward compatibility +// +// Audience Insights Service helps users find information about groups of +// people and how they can be reached with Google Ads. Accessible to +// allowlisted customers only. type AudienceInsightsServiceServer interface { // Creates a saved report that can be viewed in the Insights Finder tool. // @@ -373,7 +386,7 @@ func _AudienceInsightsService_GenerateSuggestedTargetingInsights_Handler(srv int // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var AudienceInsightsService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.AudienceInsightsService", + ServiceName: "google.ads.googleads.v17.services.AudienceInsightsService", HandlerType: (*AudienceInsightsServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -398,5 +411,5 @@ var AudienceInsightsService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/audience_insights_service.proto", + Metadata: "google/ads/googleads/v17/services/audience_insights_service.proto", } diff --git a/services/audience_service.pb.go b/services/audience_service.pb.go index 6d5da1e9..3095805a 100644 --- a/services/audience_service.pb.go +++ b/services/audience_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/audience_service.proto +// source: google/ads/googleads/v17/services/audience_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [AudienceService.MutateAudiences][google.ads.googleads.v16.services.AudienceService.MutateAudiences]. +// [AudienceService.MutateAudiences][google.ads.googleads.v17.services.AudienceService.MutateAudiences]. type MutateAudiencesRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -59,13 +59,13 @@ type MutateAudiencesRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateAudiencesRequest) Reset() { *x = MutateAudiencesRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_audience_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *MutateAudiencesRequest) String() string { func (*MutateAudiencesRequest) ProtoMessage() {} func (x *MutateAudiencesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_audience_service_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 *MutateAudiencesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAudiencesRequest.ProtoReflect.Descriptor instead. func (*MutateAudiencesRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_audience_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAudiencesRequest) GetCustomerId() string { @@ -147,7 +147,7 @@ type MutateAudiencesResponse struct { func (x *MutateAudiencesResponse) Reset() { *x = MutateAudiencesResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_audience_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160,7 +160,7 @@ func (x *MutateAudiencesResponse) String() string { func (*MutateAudiencesResponse) ProtoMessage() {} func (x *MutateAudiencesResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_audience_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -173,7 +173,7 @@ func (x *MutateAudiencesResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAudiencesResponse.ProtoReflect.Descriptor instead. func (*MutateAudiencesResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_audience_service_proto_rawDescGZIP(), []int{1} } func (x *MutateAudiencesResponse) GetResults() []*MutateAudienceResult { @@ -210,7 +210,7 @@ type AudienceOperation struct { func (x *AudienceOperation) Reset() { *x = AudienceOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_audience_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -223,7 +223,7 @@ func (x *AudienceOperation) String() string { func (*AudienceOperation) ProtoMessage() {} func (x *AudienceOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_audience_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -236,7 +236,7 @@ func (x *AudienceOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceOperation.ProtoReflect.Descriptor instead. func (*AudienceOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_audience_service_proto_rawDescGZIP(), []int{2} } func (x *AudienceOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -303,7 +303,7 @@ type MutateAudienceResult struct { func (x *MutateAudienceResult) Reset() { *x = MutateAudienceResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_audience_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_audience_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -316,7 +316,7 @@ func (x *MutateAudienceResult) String() string { func (*MutateAudienceResult) ProtoMessage() {} func (x *MutateAudienceResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_audience_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_audience_service_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 *MutateAudienceResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAudienceResult.ProtoReflect.Descriptor instead. func (*MutateAudienceResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_audience_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_audience_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAudienceResult) GetResourceName() string { @@ -346,21 +346,21 @@ func (x *MutateAudienceResult) GetAudience() *resources.Audience { return nil } -var File_google_ads_googleads_v16_services_audience_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_audience_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_audience_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_audience_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3a, 0x67, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x75, + 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x67, 0x6f, 0x6f, 0x67, @@ -379,7 +379,7 @@ var file_google_ads_googleads_v16_services_audience_service_proto_rawDesc = []by 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x59, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, @@ -390,7 +390,7 @@ var file_google_ads_googleads_v16_services_audience_service_proto_rawDesc = []by 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, @@ -399,7 +399,7 @@ var file_google_ads_googleads_v16_services_audience_service_proto_rawDesc = []by 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x51, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x46, 0x0a, 0x15, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, @@ -414,12 +414,12 @@ var file_google_ads_googleads_v16_services_audience_service_proto_rawDesc = []by 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x46, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 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, 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, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x46, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xad, 0x01, 0x0a, 0x14, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x52, @@ -430,22 +430,22 @@ var file_google_ads_googleads_v16_services_audience_service_proto_rawDesc = []by 0x65, 0x6e, 0x63, 0x65, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x48, 0x0a, 0x08, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 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, + 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, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x52, 0x08, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x32, 0xb8, 0x02, 0x0a, 0x0f, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xdd, 0x01, 0x0a, 0x0f, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x73, 0x12, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x53, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x34, 0x3a, 0x01, 0x2a, 0x22, - 0x2f, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, + 0x2f, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x67, @@ -454,58 +454,58 @@ var file_google_ads_googleads_v16_services_audience_service_proto_rawDesc = []by 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x80, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x14, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, + 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, + 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_audience_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_audience_service_proto_rawDescData = file_google_ads_googleads_v16_services_audience_service_proto_rawDesc + file_google_ads_googleads_v17_services_audience_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_audience_service_proto_rawDescData = file_google_ads_googleads_v17_services_audience_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_audience_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_audience_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_audience_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_audience_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_audience_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_audience_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_audience_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_audience_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_audience_service_proto_rawDescData + return file_google_ads_googleads_v17_services_audience_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_audience_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_audience_service_proto_goTypes = []interface{}{ - (*MutateAudiencesRequest)(nil), // 0: google.ads.googleads.v16.services.MutateAudiencesRequest - (*MutateAudiencesResponse)(nil), // 1: google.ads.googleads.v16.services.MutateAudiencesResponse - (*AudienceOperation)(nil), // 2: google.ads.googleads.v16.services.AudienceOperation - (*MutateAudienceResult)(nil), // 3: google.ads.googleads.v16.services.MutateAudienceResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_audience_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_audience_service_proto_goTypes = []interface{}{ + (*MutateAudiencesRequest)(nil), // 0: google.ads.googleads.v17.services.MutateAudiencesRequest + (*MutateAudiencesResponse)(nil), // 1: google.ads.googleads.v17.services.MutateAudiencesResponse + (*AudienceOperation)(nil), // 2: google.ads.googleads.v17.services.AudienceOperation + (*MutateAudienceResult)(nil), // 3: google.ads.googleads.v17.services.MutateAudienceResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*status.Status)(nil), // 5: google.rpc.Status (*fieldmaskpb.FieldMask)(nil), // 6: google.protobuf.FieldMask - (*resources.Audience)(nil), // 7: google.ads.googleads.v16.resources.Audience -} -var file_google_ads_googleads_v16_services_audience_service_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v16.services.MutateAudiencesRequest.operations:type_name -> google.ads.googleads.v16.services.AudienceOperation - 4, // 1: google.ads.googleads.v16.services.MutateAudiencesRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 3, // 2: google.ads.googleads.v16.services.MutateAudiencesResponse.results:type_name -> google.ads.googleads.v16.services.MutateAudienceResult - 5, // 3: google.ads.googleads.v16.services.MutateAudiencesResponse.partial_failure_error:type_name -> google.rpc.Status - 6, // 4: google.ads.googleads.v16.services.AudienceOperation.update_mask:type_name -> google.protobuf.FieldMask - 7, // 5: google.ads.googleads.v16.services.AudienceOperation.create:type_name -> google.ads.googleads.v16.resources.Audience - 7, // 6: google.ads.googleads.v16.services.AudienceOperation.update:type_name -> google.ads.googleads.v16.resources.Audience - 7, // 7: google.ads.googleads.v16.services.MutateAudienceResult.audience:type_name -> google.ads.googleads.v16.resources.Audience - 0, // 8: google.ads.googleads.v16.services.AudienceService.MutateAudiences:input_type -> google.ads.googleads.v16.services.MutateAudiencesRequest - 1, // 9: google.ads.googleads.v16.services.AudienceService.MutateAudiences:output_type -> google.ads.googleads.v16.services.MutateAudiencesResponse + (*resources.Audience)(nil), // 7: google.ads.googleads.v17.resources.Audience +} +var file_google_ads_googleads_v17_services_audience_service_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v17.services.MutateAudiencesRequest.operations:type_name -> google.ads.googleads.v17.services.AudienceOperation + 4, // 1: google.ads.googleads.v17.services.MutateAudiencesRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 3, // 2: google.ads.googleads.v17.services.MutateAudiencesResponse.results:type_name -> google.ads.googleads.v17.services.MutateAudienceResult + 5, // 3: google.ads.googleads.v17.services.MutateAudiencesResponse.partial_failure_error:type_name -> google.rpc.Status + 6, // 4: google.ads.googleads.v17.services.AudienceOperation.update_mask:type_name -> google.protobuf.FieldMask + 7, // 5: google.ads.googleads.v17.services.AudienceOperation.create:type_name -> google.ads.googleads.v17.resources.Audience + 7, // 6: google.ads.googleads.v17.services.AudienceOperation.update:type_name -> google.ads.googleads.v17.resources.Audience + 7, // 7: google.ads.googleads.v17.services.MutateAudienceResult.audience:type_name -> google.ads.googleads.v17.resources.Audience + 0, // 8: google.ads.googleads.v17.services.AudienceService.MutateAudiences:input_type -> google.ads.googleads.v17.services.MutateAudiencesRequest + 1, // 9: google.ads.googleads.v17.services.AudienceService.MutateAudiences:output_type -> google.ads.googleads.v17.services.MutateAudiencesResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -513,13 +513,13 @@ var file_google_ads_googleads_v16_services_audience_service_proto_depIdxs = []in 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_audience_service_proto_init() } -func file_google_ads_googleads_v16_services_audience_service_proto_init() { - if File_google_ads_googleads_v16_services_audience_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_audience_service_proto_init() } +func file_google_ads_googleads_v17_services_audience_service_proto_init() { + if File_google_ads_googleads_v17_services_audience_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_audience_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAudiencesRequest); i { case 0: return &v.state @@ -531,7 +531,7 @@ func file_google_ads_googleads_v16_services_audience_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_audience_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAudiencesResponse); i { case 0: return &v.state @@ -543,7 +543,7 @@ func file_google_ads_googleads_v16_services_audience_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_audience_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AudienceOperation); i { case 0: return &v.state @@ -555,7 +555,7 @@ func file_google_ads_googleads_v16_services_audience_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_audience_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_audience_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateAudienceResult); i { case 0: return &v.state @@ -568,7 +568,7 @@ func file_google_ads_googleads_v16_services_audience_service_proto_init() { } } } - file_google_ads_googleads_v16_services_audience_service_proto_msgTypes[2].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_audience_service_proto_msgTypes[2].OneofWrappers = []interface{}{ (*AudienceOperation_Create)(nil), (*AudienceOperation_Update)(nil), } @@ -576,18 +576,18 @@ func file_google_ads_googleads_v16_services_audience_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_audience_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_audience_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_audience_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_audience_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_audience_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_audience_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_audience_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_audience_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_audience_service_proto = out.File - file_google_ads_googleads_v16_services_audience_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_audience_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_audience_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_audience_service_proto = out.File + file_google_ads_googleads_v17_services_audience_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_audience_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_audience_service_proto_depIdxs = nil } diff --git a/services/audience_service_grpc.pb.go b/services/audience_service_grpc.pb.go index ac0f1f49..64acf008 100644 --- a/services/audience_service_grpc.pb.go +++ b/services/audience_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/audience_service.proto +// source: google/ads/googleads/v17/services/audience_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - AudienceService_MutateAudiences_FullMethodName = "/google.ads.googleads.v16.services.AudienceService/MutateAudiences" + AudienceService_MutateAudiences_FullMethodName = "/google.ads.googleads.v17.services.AudienceService/MutateAudiences" ) // AudienceServiceClient is the client API for AudienceService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage audiences. type AudienceServiceClient interface { // Creates audiences. Operation statuses are returned. // @@ -57,8 +59,9 @@ func NewAudienceServiceClient(cc grpc.ClientConnInterface) AudienceServiceClient } func (c *audienceServiceClient) MutateAudiences(ctx context.Context, in *MutateAudiencesRequest, opts ...grpc.CallOption) (*MutateAudiencesResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateAudiencesResponse) - err := c.cc.Invoke(ctx, AudienceService_MutateAudiences_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, AudienceService_MutateAudiences_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -68,6 +71,8 @@ func (c *audienceServiceClient) MutateAudiences(ctx context.Context, in *MutateA // AudienceServiceServer is the server API for AudienceService service. // All implementations must embed UnimplementedAudienceServiceServer // for forward compatibility +// +// Service to manage audiences. type AudienceServiceServer interface { // Creates audiences. Operation statuses are returned. // @@ -120,7 +125,7 @@ func _AudienceService_MutateAudiences_Handler(srv interface{}, ctx context.Conte // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var AudienceService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.AudienceService", + ServiceName: "google.ads.googleads.v17.services.AudienceService", HandlerType: (*AudienceServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -129,5 +134,5 @@ var AudienceService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/audience_service.proto", + Metadata: "google/ads/googleads/v17/services/audience_service.proto", } diff --git a/services/batch_job_service.pb.go b/services/batch_job_service.pb.go index 2c061ec9..00584f1b 100644 --- a/services/batch_job_service.pb.go +++ b/services/batch_job_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/batch_job_service.proto +// source: google/ads/googleads/v17/services/batch_job_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [BatchJobService.MutateBatchJob][google.ads.googleads.v16.services.BatchJobService.MutateBatchJob]. +// [BatchJobService.MutateBatchJob][google.ads.googleads.v17.services.BatchJobService.MutateBatchJob]. type MutateBatchJobRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -56,7 +56,7 @@ type MutateBatchJobRequest struct { func (x *MutateBatchJobRequest) Reset() { *x = MutateBatchJobRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -69,7 +69,7 @@ func (x *MutateBatchJobRequest) String() string { func (*MutateBatchJobRequest) ProtoMessage() {} func (x *MutateBatchJobRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_batch_job_service_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 *MutateBatchJobRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateBatchJobRequest.ProtoReflect.Descriptor instead. func (*MutateBatchJobRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_batch_job_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_batch_job_service_proto_rawDescGZIP(), []int{0} } func (x *MutateBatchJobRequest) GetCustomerId() string { @@ -117,7 +117,7 @@ type BatchJobOperation struct { func (x *BatchJobOperation) Reset() { *x = BatchJobOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -130,7 +130,7 @@ func (x *BatchJobOperation) String() string { func (*BatchJobOperation) ProtoMessage() {} func (x *BatchJobOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -143,7 +143,7 @@ func (x *BatchJobOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use BatchJobOperation.ProtoReflect.Descriptor instead. func (*BatchJobOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_batch_job_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_batch_job_service_proto_rawDescGZIP(), []int{1} } func (m *BatchJobOperation) GetOperation() isBatchJobOperation_Operation { @@ -189,7 +189,7 @@ func (*BatchJobOperation_Create) isBatchJobOperation_Operation() {} func (*BatchJobOperation_Remove) isBatchJobOperation_Operation() {} // Response message for -// [BatchJobService.MutateBatchJob][google.ads.googleads.v16.services.BatchJobService.MutateBatchJob]. +// [BatchJobService.MutateBatchJob][google.ads.googleads.v17.services.BatchJobService.MutateBatchJob]. type MutateBatchJobResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -202,7 +202,7 @@ type MutateBatchJobResponse struct { func (x *MutateBatchJobResponse) Reset() { *x = MutateBatchJobResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -215,7 +215,7 @@ func (x *MutateBatchJobResponse) String() string { func (*MutateBatchJobResponse) ProtoMessage() {} func (x *MutateBatchJobResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_batch_job_service_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 *MutateBatchJobResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateBatchJobResponse.ProtoReflect.Descriptor instead. func (*MutateBatchJobResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_batch_job_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_batch_job_service_proto_rawDescGZIP(), []int{2} } func (x *MutateBatchJobResponse) GetResult() *MutateBatchJobResult { @@ -251,7 +251,7 @@ type MutateBatchJobResult struct { func (x *MutateBatchJobResult) Reset() { *x = MutateBatchJobResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -264,7 +264,7 @@ func (x *MutateBatchJobResult) String() string { func (*MutateBatchJobResult) ProtoMessage() {} func (x *MutateBatchJobResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -277,7 +277,7 @@ func (x *MutateBatchJobResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateBatchJobResult.ProtoReflect.Descriptor instead. func (*MutateBatchJobResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_batch_job_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_batch_job_service_proto_rawDescGZIP(), []int{3} } func (x *MutateBatchJobResult) GetResourceName() string { @@ -288,7 +288,7 @@ func (x *MutateBatchJobResult) GetResourceName() string { } // Request message for -// [BatchJobService.RunBatchJob][google.ads.googleads.v16.services.BatchJobService.RunBatchJob]. +// [BatchJobService.RunBatchJob][google.ads.googleads.v17.services.BatchJobService.RunBatchJob]. type RunBatchJobRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -301,7 +301,7 @@ type RunBatchJobRequest struct { func (x *RunBatchJobRequest) Reset() { *x = RunBatchJobRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -314,7 +314,7 @@ func (x *RunBatchJobRequest) String() string { func (*RunBatchJobRequest) ProtoMessage() {} func (x *RunBatchJobRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -327,7 +327,7 @@ func (x *RunBatchJobRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RunBatchJobRequest.ProtoReflect.Descriptor instead. func (*RunBatchJobRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_batch_job_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v17_services_batch_job_service_proto_rawDescGZIP(), []int{4} } func (x *RunBatchJobRequest) GetResourceName() string { @@ -338,7 +338,7 @@ func (x *RunBatchJobRequest) GetResourceName() string { } // Request message for -// [BatchJobService.AddBatchJobOperations][google.ads.googleads.v16.services.BatchJobService.AddBatchJobOperations]. +// [BatchJobService.AddBatchJobOperations][google.ads.googleads.v17.services.BatchJobService.AddBatchJobOperations]. type AddBatchJobOperationsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -368,7 +368,7 @@ type AddBatchJobOperationsRequest struct { func (x *AddBatchJobOperationsRequest) Reset() { *x = AddBatchJobOperationsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -381,7 +381,7 @@ func (x *AddBatchJobOperationsRequest) String() string { func (*AddBatchJobOperationsRequest) ProtoMessage() {} func (x *AddBatchJobOperationsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -394,7 +394,7 @@ func (x *AddBatchJobOperationsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AddBatchJobOperationsRequest.ProtoReflect.Descriptor instead. func (*AddBatchJobOperationsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_batch_job_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v17_services_batch_job_service_proto_rawDescGZIP(), []int{5} } func (x *AddBatchJobOperationsRequest) GetResourceName() string { @@ -419,7 +419,7 @@ func (x *AddBatchJobOperationsRequest) GetMutateOperations() []*MutateOperation } // Response message for -// [BatchJobService.AddBatchJobOperations][google.ads.googleads.v16.services.BatchJobService.AddBatchJobOperations]. +// [BatchJobService.AddBatchJobOperations][google.ads.googleads.v17.services.BatchJobService.AddBatchJobOperations]. type AddBatchJobOperationsResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -436,7 +436,7 @@ type AddBatchJobOperationsResponse struct { func (x *AddBatchJobOperationsResponse) Reset() { *x = AddBatchJobOperationsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -449,7 +449,7 @@ func (x *AddBatchJobOperationsResponse) String() string { func (*AddBatchJobOperationsResponse) ProtoMessage() {} func (x *AddBatchJobOperationsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes[6] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -462,7 +462,7 @@ func (x *AddBatchJobOperationsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use AddBatchJobOperationsResponse.ProtoReflect.Descriptor instead. func (*AddBatchJobOperationsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_batch_job_service_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v17_services_batch_job_service_proto_rawDescGZIP(), []int{6} } func (x *AddBatchJobOperationsResponse) GetTotalOperations() int64 { @@ -480,7 +480,7 @@ func (x *AddBatchJobOperationsResponse) GetNextSequenceToken() string { } // Request message for -// [BatchJobService.ListBatchJobResults][google.ads.googleads.v16.services.BatchJobService.ListBatchJobResults]. +// [BatchJobService.ListBatchJobResults][google.ads.googleads.v17.services.BatchJobService.ListBatchJobResults]. type ListBatchJobResultsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -500,13 +500,13 @@ type ListBatchJobResultsRequest struct { PageSize int32 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,4,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,4,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *ListBatchJobResultsRequest) Reset() { *x = ListBatchJobResultsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -519,7 +519,7 @@ func (x *ListBatchJobResultsRequest) String() string { func (*ListBatchJobResultsRequest) ProtoMessage() {} func (x *ListBatchJobResultsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes[7] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -532,7 +532,7 @@ func (x *ListBatchJobResultsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListBatchJobResultsRequest.ProtoReflect.Descriptor instead. func (*ListBatchJobResultsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_batch_job_service_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v17_services_batch_job_service_proto_rawDescGZIP(), []int{7} } func (x *ListBatchJobResultsRequest) GetResourceName() string { @@ -564,7 +564,7 @@ func (x *ListBatchJobResultsRequest) GetResponseContentType() enums.ResponseCont } // Response message for -// [BatchJobService.ListBatchJobResults][google.ads.googleads.v16.services.BatchJobService.ListBatchJobResults]. +// [BatchJobService.ListBatchJobResults][google.ads.googleads.v17.services.BatchJobService.ListBatchJobResults]. type ListBatchJobResultsResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -582,7 +582,7 @@ type ListBatchJobResultsResponse struct { func (x *ListBatchJobResultsResponse) Reset() { *x = ListBatchJobResultsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -595,7 +595,7 @@ func (x *ListBatchJobResultsResponse) String() string { func (*ListBatchJobResultsResponse) ProtoMessage() {} func (x *ListBatchJobResultsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes[8] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -608,7 +608,7 @@ func (x *ListBatchJobResultsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListBatchJobResultsResponse.ProtoReflect.Descriptor instead. func (*ListBatchJobResultsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_batch_job_service_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v17_services_batch_job_service_proto_rawDescGZIP(), []int{8} } func (x *ListBatchJobResultsResponse) GetResults() []*BatchJobResult { @@ -643,7 +643,7 @@ type BatchJobResult struct { func (x *BatchJobResult) Reset() { *x = BatchJobResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -656,7 +656,7 @@ func (x *BatchJobResult) String() string { func (*BatchJobResult) ProtoMessage() {} func (x *BatchJobResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes[9] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -669,7 +669,7 @@ func (x *BatchJobResult) ProtoReflect() protoreflect.Message { // Deprecated: Use BatchJobResult.ProtoReflect.Descriptor instead. func (*BatchJobResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_batch_job_service_proto_rawDescGZIP(), []int{9} + return file_google_ads_googleads_v17_services_batch_job_service_proto_rawDescGZIP(), []int{9} } func (x *BatchJobResult) GetOperationIndex() int64 { @@ -693,24 +693,24 @@ func (x *BatchJobResult) GetStatus() *status.Status { return nil } -var File_google_ads_googleads_v16_services_batch_job_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_batch_job_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_batch_job_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_batch_job_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x62, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x6a, 0x6f, 0x62, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3a, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, + 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x62, + 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x62, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x6a, 0x6f, 0x62, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5f, 0x61, 0x64, 0x73, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, @@ -732,14 +732,14 @@ var file_google_ads_googleads_v16_services_batch_job_service_proto_rawDesc = []b 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x57, 0x0a, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xaa, 0x01, 0x0a, 0x11, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x46, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x61, 0x74, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x40, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x26, 0xfa, 0x41, 0x23, 0x0a, 0x21, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, @@ -750,7 +750,7 @@ var file_google_ads_googleads_v16_services_batch_job_service_proto_rawDesc = []b 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4f, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x63, 0x0a, 0x14, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x75, 0x6c, @@ -778,7 +778,7 @@ var file_google_ads_googleads_v16_services_batch_job_service_proto_rawDesc = []b 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x03, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x10, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x7a, 0x0a, 0x1d, 0x41, 0x64, 0x64, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, @@ -803,7 +803,7 @@ var file_google_ads_googleads_v16_services_batch_job_service_proto_rawDesc = []b 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 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, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, @@ -812,7 +812,7 @@ var file_google_ads_googleads_v16_services_batch_job_service_proto_rawDesc = []b 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4b, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x26, 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, @@ -824,7 +824,7 @@ var file_google_ads_googleads_v16_services_batch_job_service_proto_rawDesc = []b 0x75, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x17, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, @@ -835,56 +835,56 @@ var file_google_ads_googleads_v16_services_batch_job_service_proto_rawDesc = []b 0x69, 0x63, 0x65, 0x12, 0xd9, 0x01, 0x0a, 0x0e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x52, 0xda, 0x41, 0x15, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x34, 0x3a, 0x01, 0x2a, 0x22, 0x2f, - 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, + 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x62, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x12, 0xe6, 0x01, 0x0a, 0x13, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x42, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x50, 0xda, 0x41, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3a, 0x12, 0x38, - 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, + 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x2a, 0x2f, 0x62, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x73, 0x2f, 0x2a, 0x7d, 0x3a, 0x6c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x89, 0x02, 0x0a, 0x0b, 0x52, 0x75, 0x6e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x75, 0x6e, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x75, 0x6e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x6e, 0x67, 0x72, 0x75, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xa3, 0x01, 0xca, 0x41, 0x55, 0x0a, 0x15, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x3c, 0x67, 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, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xda, 0x41, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x35, 0x3a, - 0x01, 0x2a, 0x22, 0x30, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x01, 0x2a, 0x22, 0x30, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x2a, 0x2f, 0x62, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x73, 0x2f, 0x2a, 0x7d, 0x3a, 0x72, 0x75, 0x6e, 0x12, 0xb5, 0x02, 0x0a, 0x15, 0x41, 0x64, 0x64, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x64, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x64, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x98, 0x01, 0xda, 0x41, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, @@ -893,7 +893,7 @@ var file_google_ads_googleads_v16_services_batch_job_service_proto_rawDesc = []b 0x74, 0x69, 0x6f, 0x6e, 0x73, 0xda, 0x41, 0x1f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3f, 0x3a, 0x01, 0x2a, - 0x22, 0x3a, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x22, 0x3a, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x2a, 0x2f, 0x62, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x73, 0x2f, 0x2a, 0x7d, 0x3a, 0x61, 0x64, 0x64, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x1a, 0x45, 0xca, 0x41, @@ -903,71 +903,71 @@ var file_google_ads_googleads_v16_services_batch_job_service_proto_rawDesc = []b 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x80, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x14, 0x42, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x14, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, - 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, + 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_batch_job_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_batch_job_service_proto_rawDescData = file_google_ads_googleads_v16_services_batch_job_service_proto_rawDesc + file_google_ads_googleads_v17_services_batch_job_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_batch_job_service_proto_rawDescData = file_google_ads_googleads_v17_services_batch_job_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_batch_job_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_batch_job_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_batch_job_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_batch_job_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_batch_job_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_batch_job_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_batch_job_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_batch_job_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_batch_job_service_proto_rawDescData -} - -var file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes = make([]protoimpl.MessageInfo, 10) -var file_google_ads_googleads_v16_services_batch_job_service_proto_goTypes = []interface{}{ - (*MutateBatchJobRequest)(nil), // 0: google.ads.googleads.v16.services.MutateBatchJobRequest - (*BatchJobOperation)(nil), // 1: google.ads.googleads.v16.services.BatchJobOperation - (*MutateBatchJobResponse)(nil), // 2: google.ads.googleads.v16.services.MutateBatchJobResponse - (*MutateBatchJobResult)(nil), // 3: google.ads.googleads.v16.services.MutateBatchJobResult - (*RunBatchJobRequest)(nil), // 4: google.ads.googleads.v16.services.RunBatchJobRequest - (*AddBatchJobOperationsRequest)(nil), // 5: google.ads.googleads.v16.services.AddBatchJobOperationsRequest - (*AddBatchJobOperationsResponse)(nil), // 6: google.ads.googleads.v16.services.AddBatchJobOperationsResponse - (*ListBatchJobResultsRequest)(nil), // 7: google.ads.googleads.v16.services.ListBatchJobResultsRequest - (*ListBatchJobResultsResponse)(nil), // 8: google.ads.googleads.v16.services.ListBatchJobResultsResponse - (*BatchJobResult)(nil), // 9: google.ads.googleads.v16.services.BatchJobResult - (*resources.BatchJob)(nil), // 10: google.ads.googleads.v16.resources.BatchJob - (*MutateOperation)(nil), // 11: google.ads.googleads.v16.services.MutateOperation - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 12: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - (*MutateOperationResponse)(nil), // 13: google.ads.googleads.v16.services.MutateOperationResponse + return file_google_ads_googleads_v17_services_batch_job_service_proto_rawDescData +} + +var file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes = make([]protoimpl.MessageInfo, 10) +var file_google_ads_googleads_v17_services_batch_job_service_proto_goTypes = []interface{}{ + (*MutateBatchJobRequest)(nil), // 0: google.ads.googleads.v17.services.MutateBatchJobRequest + (*BatchJobOperation)(nil), // 1: google.ads.googleads.v17.services.BatchJobOperation + (*MutateBatchJobResponse)(nil), // 2: google.ads.googleads.v17.services.MutateBatchJobResponse + (*MutateBatchJobResult)(nil), // 3: google.ads.googleads.v17.services.MutateBatchJobResult + (*RunBatchJobRequest)(nil), // 4: google.ads.googleads.v17.services.RunBatchJobRequest + (*AddBatchJobOperationsRequest)(nil), // 5: google.ads.googleads.v17.services.AddBatchJobOperationsRequest + (*AddBatchJobOperationsResponse)(nil), // 6: google.ads.googleads.v17.services.AddBatchJobOperationsResponse + (*ListBatchJobResultsRequest)(nil), // 7: google.ads.googleads.v17.services.ListBatchJobResultsRequest + (*ListBatchJobResultsResponse)(nil), // 8: google.ads.googleads.v17.services.ListBatchJobResultsResponse + (*BatchJobResult)(nil), // 9: google.ads.googleads.v17.services.BatchJobResult + (*resources.BatchJob)(nil), // 10: google.ads.googleads.v17.resources.BatchJob + (*MutateOperation)(nil), // 11: google.ads.googleads.v17.services.MutateOperation + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 12: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + (*MutateOperationResponse)(nil), // 13: google.ads.googleads.v17.services.MutateOperationResponse (*status.Status)(nil), // 14: google.rpc.Status (*longrunningpb.Operation)(nil), // 15: google.longrunning.Operation } -var file_google_ads_googleads_v16_services_batch_job_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateBatchJobRequest.operation:type_name -> google.ads.googleads.v16.services.BatchJobOperation - 10, // 1: google.ads.googleads.v16.services.BatchJobOperation.create:type_name -> google.ads.googleads.v16.resources.BatchJob - 3, // 2: google.ads.googleads.v16.services.MutateBatchJobResponse.result:type_name -> google.ads.googleads.v16.services.MutateBatchJobResult - 11, // 3: google.ads.googleads.v16.services.AddBatchJobOperationsRequest.mutate_operations:type_name -> google.ads.googleads.v16.services.MutateOperation - 12, // 4: google.ads.googleads.v16.services.ListBatchJobResultsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 9, // 5: google.ads.googleads.v16.services.ListBatchJobResultsResponse.results:type_name -> google.ads.googleads.v16.services.BatchJobResult - 13, // 6: google.ads.googleads.v16.services.BatchJobResult.mutate_operation_response:type_name -> google.ads.googleads.v16.services.MutateOperationResponse - 14, // 7: google.ads.googleads.v16.services.BatchJobResult.status:type_name -> google.rpc.Status - 0, // 8: google.ads.googleads.v16.services.BatchJobService.MutateBatchJob:input_type -> google.ads.googleads.v16.services.MutateBatchJobRequest - 7, // 9: google.ads.googleads.v16.services.BatchJobService.ListBatchJobResults:input_type -> google.ads.googleads.v16.services.ListBatchJobResultsRequest - 4, // 10: google.ads.googleads.v16.services.BatchJobService.RunBatchJob:input_type -> google.ads.googleads.v16.services.RunBatchJobRequest - 5, // 11: google.ads.googleads.v16.services.BatchJobService.AddBatchJobOperations:input_type -> google.ads.googleads.v16.services.AddBatchJobOperationsRequest - 2, // 12: google.ads.googleads.v16.services.BatchJobService.MutateBatchJob:output_type -> google.ads.googleads.v16.services.MutateBatchJobResponse - 8, // 13: google.ads.googleads.v16.services.BatchJobService.ListBatchJobResults:output_type -> google.ads.googleads.v16.services.ListBatchJobResultsResponse - 15, // 14: google.ads.googleads.v16.services.BatchJobService.RunBatchJob:output_type -> google.longrunning.Operation - 6, // 15: google.ads.googleads.v16.services.BatchJobService.AddBatchJobOperations:output_type -> google.ads.googleads.v16.services.AddBatchJobOperationsResponse +var file_google_ads_googleads_v17_services_batch_job_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateBatchJobRequest.operation:type_name -> google.ads.googleads.v17.services.BatchJobOperation + 10, // 1: google.ads.googleads.v17.services.BatchJobOperation.create:type_name -> google.ads.googleads.v17.resources.BatchJob + 3, // 2: google.ads.googleads.v17.services.MutateBatchJobResponse.result:type_name -> google.ads.googleads.v17.services.MutateBatchJobResult + 11, // 3: google.ads.googleads.v17.services.AddBatchJobOperationsRequest.mutate_operations:type_name -> google.ads.googleads.v17.services.MutateOperation + 12, // 4: google.ads.googleads.v17.services.ListBatchJobResultsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 9, // 5: google.ads.googleads.v17.services.ListBatchJobResultsResponse.results:type_name -> google.ads.googleads.v17.services.BatchJobResult + 13, // 6: google.ads.googleads.v17.services.BatchJobResult.mutate_operation_response:type_name -> google.ads.googleads.v17.services.MutateOperationResponse + 14, // 7: google.ads.googleads.v17.services.BatchJobResult.status:type_name -> google.rpc.Status + 0, // 8: google.ads.googleads.v17.services.BatchJobService.MutateBatchJob:input_type -> google.ads.googleads.v17.services.MutateBatchJobRequest + 7, // 9: google.ads.googleads.v17.services.BatchJobService.ListBatchJobResults:input_type -> google.ads.googleads.v17.services.ListBatchJobResultsRequest + 4, // 10: google.ads.googleads.v17.services.BatchJobService.RunBatchJob:input_type -> google.ads.googleads.v17.services.RunBatchJobRequest + 5, // 11: google.ads.googleads.v17.services.BatchJobService.AddBatchJobOperations:input_type -> google.ads.googleads.v17.services.AddBatchJobOperationsRequest + 2, // 12: google.ads.googleads.v17.services.BatchJobService.MutateBatchJob:output_type -> google.ads.googleads.v17.services.MutateBatchJobResponse + 8, // 13: google.ads.googleads.v17.services.BatchJobService.ListBatchJobResults:output_type -> google.ads.googleads.v17.services.ListBatchJobResultsResponse + 15, // 14: google.ads.googleads.v17.services.BatchJobService.RunBatchJob:output_type -> google.longrunning.Operation + 6, // 15: google.ads.googleads.v17.services.BatchJobService.AddBatchJobOperations:output_type -> google.ads.googleads.v17.services.AddBatchJobOperationsResponse 12, // [12:16] is the sub-list for method output_type 8, // [8:12] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -975,14 +975,14 @@ var file_google_ads_googleads_v16_services_batch_job_service_proto_depIdxs = []i 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_batch_job_service_proto_init() } -func file_google_ads_googleads_v16_services_batch_job_service_proto_init() { - if File_google_ads_googleads_v16_services_batch_job_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_batch_job_service_proto_init() } +func file_google_ads_googleads_v17_services_batch_job_service_proto_init() { + if File_google_ads_googleads_v17_services_batch_job_service_proto != nil { return } - file_google_ads_googleads_v16_services_google_ads_service_proto_init() + file_google_ads_googleads_v17_services_google_ads_service_proto_init() if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateBatchJobRequest); i { case 0: return &v.state @@ -994,7 +994,7 @@ func file_google_ads_googleads_v16_services_batch_job_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BatchJobOperation); i { case 0: return &v.state @@ -1006,7 +1006,7 @@ func file_google_ads_googleads_v16_services_batch_job_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateBatchJobResponse); i { case 0: return &v.state @@ -1018,7 +1018,7 @@ func file_google_ads_googleads_v16_services_batch_job_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateBatchJobResult); i { case 0: return &v.state @@ -1030,7 +1030,7 @@ func file_google_ads_googleads_v16_services_batch_job_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RunBatchJobRequest); i { case 0: return &v.state @@ -1042,7 +1042,7 @@ func file_google_ads_googleads_v16_services_batch_job_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AddBatchJobOperationsRequest); i { case 0: return &v.state @@ -1054,7 +1054,7 @@ func file_google_ads_googleads_v16_services_batch_job_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AddBatchJobOperationsResponse); i { case 0: return &v.state @@ -1066,7 +1066,7 @@ func file_google_ads_googleads_v16_services_batch_job_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListBatchJobResultsRequest); i { case 0: return &v.state @@ -1078,7 +1078,7 @@ func file_google_ads_googleads_v16_services_batch_job_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListBatchJobResultsResponse); i { case 0: return &v.state @@ -1090,7 +1090,7 @@ func file_google_ads_googleads_v16_services_batch_job_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BatchJobResult); i { case 0: return &v.state @@ -1103,7 +1103,7 @@ func file_google_ads_googleads_v16_services_batch_job_service_proto_init() { } } } - file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*BatchJobOperation_Create)(nil), (*BatchJobOperation_Remove)(nil), } @@ -1111,18 +1111,18 @@ func file_google_ads_googleads_v16_services_batch_job_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_batch_job_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_batch_job_service_proto_rawDesc, NumEnums: 0, NumMessages: 10, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_batch_job_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_batch_job_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_batch_job_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_batch_job_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_batch_job_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_batch_job_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_batch_job_service_proto = out.File - file_google_ads_googleads_v16_services_batch_job_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_batch_job_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_batch_job_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_batch_job_service_proto = out.File + file_google_ads_googleads_v17_services_batch_job_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_batch_job_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_batch_job_service_proto_depIdxs = nil } diff --git a/services/batch_job_service_grpc.pb.go b/services/batch_job_service_grpc.pb.go index 8628fd33..c33ef032 100644 --- a/services/batch_job_service_grpc.pb.go +++ b/services/batch_job_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/batch_job_service.proto +// source: google/ads/googleads/v17/services/batch_job_service.proto package services @@ -30,19 +30,21 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - BatchJobService_MutateBatchJob_FullMethodName = "/google.ads.googleads.v16.services.BatchJobService/MutateBatchJob" - BatchJobService_ListBatchJobResults_FullMethodName = "/google.ads.googleads.v16.services.BatchJobService/ListBatchJobResults" - BatchJobService_RunBatchJob_FullMethodName = "/google.ads.googleads.v16.services.BatchJobService/RunBatchJob" - BatchJobService_AddBatchJobOperations_FullMethodName = "/google.ads.googleads.v16.services.BatchJobService/AddBatchJobOperations" + BatchJobService_MutateBatchJob_FullMethodName = "/google.ads.googleads.v17.services.BatchJobService/MutateBatchJob" + BatchJobService_ListBatchJobResults_FullMethodName = "/google.ads.googleads.v17.services.BatchJobService/ListBatchJobResults" + BatchJobService_RunBatchJob_FullMethodName = "/google.ads.googleads.v17.services.BatchJobService/RunBatchJob" + BatchJobService_AddBatchJobOperations_FullMethodName = "/google.ads.googleads.v17.services.BatchJobService/AddBatchJobOperations" ) // BatchJobServiceClient is the client API for BatchJobService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage batch jobs. type BatchJobServiceClient interface { // Mutates a batch job. // @@ -109,8 +111,9 @@ func NewBatchJobServiceClient(cc grpc.ClientConnInterface) BatchJobServiceClient } func (c *batchJobServiceClient) MutateBatchJob(ctx context.Context, in *MutateBatchJobRequest, opts ...grpc.CallOption) (*MutateBatchJobResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateBatchJobResponse) - err := c.cc.Invoke(ctx, BatchJobService_MutateBatchJob_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, BatchJobService_MutateBatchJob_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -118,8 +121,9 @@ func (c *batchJobServiceClient) MutateBatchJob(ctx context.Context, in *MutateBa } func (c *batchJobServiceClient) ListBatchJobResults(ctx context.Context, in *ListBatchJobResultsRequest, opts ...grpc.CallOption) (*ListBatchJobResultsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(ListBatchJobResultsResponse) - err := c.cc.Invoke(ctx, BatchJobService_ListBatchJobResults_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, BatchJobService_ListBatchJobResults_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -127,8 +131,9 @@ func (c *batchJobServiceClient) ListBatchJobResults(ctx context.Context, in *Lis } func (c *batchJobServiceClient) RunBatchJob(ctx context.Context, in *RunBatchJobRequest, opts ...grpc.CallOption) (*longrunningpb.Operation, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(longrunningpb.Operation) - err := c.cc.Invoke(ctx, BatchJobService_RunBatchJob_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, BatchJobService_RunBatchJob_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -136,8 +141,9 @@ func (c *batchJobServiceClient) RunBatchJob(ctx context.Context, in *RunBatchJob } func (c *batchJobServiceClient) AddBatchJobOperations(ctx context.Context, in *AddBatchJobOperationsRequest, opts ...grpc.CallOption) (*AddBatchJobOperationsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(AddBatchJobOperationsResponse) - err := c.cc.Invoke(ctx, BatchJobService_AddBatchJobOperations_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, BatchJobService_AddBatchJobOperations_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -147,6 +153,8 @@ func (c *batchJobServiceClient) AddBatchJobOperations(ctx context.Context, in *A // BatchJobServiceServer is the server API for BatchJobService service. // All implementations must embed UnimplementedBatchJobServiceServer // for forward compatibility +// +// Service to manage batch jobs. type BatchJobServiceServer interface { // Mutates a batch job. // @@ -310,7 +318,7 @@ func _BatchJobService_AddBatchJobOperations_Handler(srv interface{}, ctx context // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var BatchJobService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.BatchJobService", + ServiceName: "google.ads.googleads.v17.services.BatchJobService", HandlerType: (*BatchJobServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -331,5 +339,5 @@ var BatchJobService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/batch_job_service.proto", + Metadata: "google/ads/googleads/v17/services/batch_job_service.proto", } diff --git a/services/bidding_data_exclusion_service.pb.go b/services/bidding_data_exclusion_service.pb.go index 11a71aae..681a7be2 100644 --- a/services/bidding_data_exclusion_service.pb.go +++ b/services/bidding_data_exclusion_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/bidding_data_exclusion_service.proto +// source: google/ads/googleads/v17/services/bidding_data_exclusion_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [BiddingDataExclusionService.MutateBiddingDataExclusions][google.ads.googleads.v16.services.BiddingDataExclusionService.MutateBiddingDataExclusions]. +// [BiddingDataExclusionService.MutateBiddingDataExclusions][google.ads.googleads.v17.services.BiddingDataExclusionService.MutateBiddingDataExclusions]. type MutateBiddingDataExclusionsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -60,13 +60,13 @@ type MutateBiddingDataExclusionsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateBiddingDataExclusionsRequest) Reset() { *x = MutateBiddingDataExclusionsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateBiddingDataExclusionsRequest) String() string { func (*MutateBiddingDataExclusionsRequest) ProtoMessage() {} func (x *MutateBiddingDataExclusionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateBiddingDataExclusionsRequest) ProtoReflect() protoreflect.Message // Deprecated: Use MutateBiddingDataExclusionsRequest.ProtoReflect.Descriptor instead. func (*MutateBiddingDataExclusionsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_rawDescGZIP(), []int{0} } func (x *MutateBiddingDataExclusionsRequest) GetCustomerId() string { @@ -151,7 +151,7 @@ type BiddingDataExclusionOperation struct { func (x *BiddingDataExclusionOperation) Reset() { *x = BiddingDataExclusionOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164,7 +164,7 @@ func (x *BiddingDataExclusionOperation) String() string { func (*BiddingDataExclusionOperation) ProtoMessage() {} func (x *BiddingDataExclusionOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177,7 +177,7 @@ func (x *BiddingDataExclusionOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use BiddingDataExclusionOperation.ProtoReflect.Descriptor instead. func (*BiddingDataExclusionOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_rawDescGZIP(), []int{1} } func (x *BiddingDataExclusionOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -263,7 +263,7 @@ type MutateBiddingDataExclusionsResponse struct { func (x *MutateBiddingDataExclusionsResponse) Reset() { *x = MutateBiddingDataExclusionsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -276,7 +276,7 @@ func (x *MutateBiddingDataExclusionsResponse) String() string { func (*MutateBiddingDataExclusionsResponse) ProtoMessage() {} func (x *MutateBiddingDataExclusionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -289,7 +289,7 @@ func (x *MutateBiddingDataExclusionsResponse) ProtoReflect() protoreflect.Messag // Deprecated: Use MutateBiddingDataExclusionsResponse.ProtoReflect.Descriptor instead. func (*MutateBiddingDataExclusionsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_rawDescGZIP(), []int{2} } func (x *MutateBiddingDataExclusionsResponse) GetPartialFailureError() *status.Status { @@ -323,7 +323,7 @@ type MutateBiddingDataExclusionsResult struct { func (x *MutateBiddingDataExclusionsResult) Reset() { *x = MutateBiddingDataExclusionsResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -336,7 +336,7 @@ func (x *MutateBiddingDataExclusionsResult) String() string { func (*MutateBiddingDataExclusionsResult) ProtoMessage() {} func (x *MutateBiddingDataExclusionsResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -349,7 +349,7 @@ func (x *MutateBiddingDataExclusionsResult) ProtoReflect() protoreflect.Message // Deprecated: Use MutateBiddingDataExclusionsResult.ProtoReflect.Descriptor instead. func (*MutateBiddingDataExclusionsResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_rawDescGZIP(), []int{3} } func (x *MutateBiddingDataExclusionsResult) GetResourceName() string { @@ -366,22 +366,22 @@ func (x *MutateBiddingDataExclusionsResult) GetBiddingDataExclusion() *resources return nil } -var File_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_bidding_data_exclusion_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3a, 0x67, 0x6f, 0x6f, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, 0x65, 0x73, 0x70, + 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x62, 0x69, 0x64, 0x64, + 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, @@ -402,7 +402,7 @@ var file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_ 0x72, 0x49, 0x64, 0x12, 0x65, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, @@ -414,7 +414,7 @@ var file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_ 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, @@ -427,12 +427,12 @@ var file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_ 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x52, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x52, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x02, 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, 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, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x4c, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, @@ -450,7 +450,7 @@ var file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_ 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x5e, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xec, 0x01, 0x0a, 0x21, @@ -465,7 +465,7 @@ var file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_ 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 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, 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, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x14, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x32, 0xf4, 0x02, 0x0a, 0x1b, 0x42, @@ -474,17 +474,17 @@ var file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_ 0x75, 0x74, 0x61, 0x74, 0x65, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5f, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x40, 0x3a, 0x01, 0x2a, 0x22, 0x3b, 0x2f, - 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, + 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, @@ -494,58 +494,58 @@ var file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_ 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x8c, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x20, 0x42, 0x69, 0x64, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x20, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_rawDescData = file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_rawDesc + file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_rawDescData = file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_rawDescData + return file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_goTypes = []interface{}{ - (*MutateBiddingDataExclusionsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateBiddingDataExclusionsRequest - (*BiddingDataExclusionOperation)(nil), // 1: google.ads.googleads.v16.services.BiddingDataExclusionOperation - (*MutateBiddingDataExclusionsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateBiddingDataExclusionsResponse - (*MutateBiddingDataExclusionsResult)(nil), // 3: google.ads.googleads.v16.services.MutateBiddingDataExclusionsResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_goTypes = []interface{}{ + (*MutateBiddingDataExclusionsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateBiddingDataExclusionsRequest + (*BiddingDataExclusionOperation)(nil), // 1: google.ads.googleads.v17.services.BiddingDataExclusionOperation + (*MutateBiddingDataExclusionsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateBiddingDataExclusionsResponse + (*MutateBiddingDataExclusionsResult)(nil), // 3: google.ads.googleads.v17.services.MutateBiddingDataExclusionsResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.BiddingDataExclusion)(nil), // 6: google.ads.googleads.v16.resources.BiddingDataExclusion + (*resources.BiddingDataExclusion)(nil), // 6: google.ads.googleads.v17.resources.BiddingDataExclusion (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateBiddingDataExclusionsRequest.operations:type_name -> google.ads.googleads.v16.services.BiddingDataExclusionOperation - 4, // 1: google.ads.googleads.v16.services.MutateBiddingDataExclusionsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.BiddingDataExclusionOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.BiddingDataExclusionOperation.create:type_name -> google.ads.googleads.v16.resources.BiddingDataExclusion - 6, // 4: google.ads.googleads.v16.services.BiddingDataExclusionOperation.update:type_name -> google.ads.googleads.v16.resources.BiddingDataExclusion - 7, // 5: google.ads.googleads.v16.services.MutateBiddingDataExclusionsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v16.services.MutateBiddingDataExclusionsResponse.results:type_name -> google.ads.googleads.v16.services.MutateBiddingDataExclusionsResult - 6, // 7: google.ads.googleads.v16.services.MutateBiddingDataExclusionsResult.bidding_data_exclusion:type_name -> google.ads.googleads.v16.resources.BiddingDataExclusion - 0, // 8: google.ads.googleads.v16.services.BiddingDataExclusionService.MutateBiddingDataExclusions:input_type -> google.ads.googleads.v16.services.MutateBiddingDataExclusionsRequest - 2, // 9: google.ads.googleads.v16.services.BiddingDataExclusionService.MutateBiddingDataExclusions:output_type -> google.ads.googleads.v16.services.MutateBiddingDataExclusionsResponse +var file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateBiddingDataExclusionsRequest.operations:type_name -> google.ads.googleads.v17.services.BiddingDataExclusionOperation + 4, // 1: google.ads.googleads.v17.services.MutateBiddingDataExclusionsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.BiddingDataExclusionOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.BiddingDataExclusionOperation.create:type_name -> google.ads.googleads.v17.resources.BiddingDataExclusion + 6, // 4: google.ads.googleads.v17.services.BiddingDataExclusionOperation.update:type_name -> google.ads.googleads.v17.resources.BiddingDataExclusion + 7, // 5: google.ads.googleads.v17.services.MutateBiddingDataExclusionsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v17.services.MutateBiddingDataExclusionsResponse.results:type_name -> google.ads.googleads.v17.services.MutateBiddingDataExclusionsResult + 6, // 7: google.ads.googleads.v17.services.MutateBiddingDataExclusionsResult.bidding_data_exclusion:type_name -> google.ads.googleads.v17.resources.BiddingDataExclusion + 0, // 8: google.ads.googleads.v17.services.BiddingDataExclusionService.MutateBiddingDataExclusions:input_type -> google.ads.googleads.v17.services.MutateBiddingDataExclusionsRequest + 2, // 9: google.ads.googleads.v17.services.BiddingDataExclusionService.MutateBiddingDataExclusions:output_type -> google.ads.googleads.v17.services.MutateBiddingDataExclusionsResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -553,13 +553,13 @@ var file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_ 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_init() } -func file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_init() { - if File_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_init() } +func file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_init() { + if File_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateBiddingDataExclusionsRequest); i { case 0: return &v.state @@ -571,7 +571,7 @@ func file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto return nil } } - file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BiddingDataExclusionOperation); i { case 0: return &v.state @@ -583,7 +583,7 @@ func file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto return nil } } - file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateBiddingDataExclusionsResponse); i { case 0: return &v.state @@ -595,7 +595,7 @@ func file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto return nil } } - file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateBiddingDataExclusionsResult); i { case 0: return &v.state @@ -608,7 +608,7 @@ func file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto } } } - file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*BiddingDataExclusionOperation_Create)(nil), (*BiddingDataExclusionOperation_Update)(nil), (*BiddingDataExclusionOperation_Remove)(nil), @@ -617,18 +617,18 @@ func file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto = out.File - file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto = out.File + file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_depIdxs = nil } diff --git a/services/bidding_data_exclusion_service_grpc.pb.go b/services/bidding_data_exclusion_service_grpc.pb.go index d1a35577..903d6bc4 100644 --- a/services/bidding_data_exclusion_service_grpc.pb.go +++ b/services/bidding_data_exclusion_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/bidding_data_exclusion_service.proto +// source: google/ads/googleads/v17/services/bidding_data_exclusion_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - BiddingDataExclusionService_MutateBiddingDataExclusions_FullMethodName = "/google.ads.googleads.v16.services.BiddingDataExclusionService/MutateBiddingDataExclusions" + BiddingDataExclusionService_MutateBiddingDataExclusions_FullMethodName = "/google.ads.googleads.v17.services.BiddingDataExclusionService/MutateBiddingDataExclusions" ) // BiddingDataExclusionServiceClient is the client API for BiddingDataExclusionService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage bidding data exclusions. type BiddingDataExclusionServiceClient interface { // Creates, updates, or removes data exclusions. // Operation statuses are returned. @@ -54,8 +56,9 @@ func NewBiddingDataExclusionServiceClient(cc grpc.ClientConnInterface) BiddingDa } func (c *biddingDataExclusionServiceClient) MutateBiddingDataExclusions(ctx context.Context, in *MutateBiddingDataExclusionsRequest, opts ...grpc.CallOption) (*MutateBiddingDataExclusionsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateBiddingDataExclusionsResponse) - err := c.cc.Invoke(ctx, BiddingDataExclusionService_MutateBiddingDataExclusions_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, BiddingDataExclusionService_MutateBiddingDataExclusions_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -65,6 +68,8 @@ func (c *biddingDataExclusionServiceClient) MutateBiddingDataExclusions(ctx cont // BiddingDataExclusionServiceServer is the server API for BiddingDataExclusionService service. // All implementations must embed UnimplementedBiddingDataExclusionServiceServer // for forward compatibility +// +// Service to manage bidding data exclusions. type BiddingDataExclusionServiceServer interface { // Creates, updates, or removes data exclusions. // Operation statuses are returned. @@ -115,7 +120,7 @@ func _BiddingDataExclusionService_MutateBiddingDataExclusions_Handler(srv interf // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var BiddingDataExclusionService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.BiddingDataExclusionService", + ServiceName: "google.ads.googleads.v17.services.BiddingDataExclusionService", HandlerType: (*BiddingDataExclusionServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -124,5 +129,5 @@ var BiddingDataExclusionService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/bidding_data_exclusion_service.proto", + Metadata: "google/ads/googleads/v17/services/bidding_data_exclusion_service.proto", } diff --git a/services/bidding_seasonality_adjustment_service.pb.go b/services/bidding_seasonality_adjustment_service.pb.go index c855d21c..5ac7bef6 100644 --- a/services/bidding_seasonality_adjustment_service.pb.go +++ b/services/bidding_seasonality_adjustment_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/bidding_seasonality_adjustment_service.proto +// source: google/ads/googleads/v17/services/bidding_seasonality_adjustment_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [BiddingSeasonalityAdjustmentService.MutateBiddingSeasonalityAdjustments][google.ads.googleads.v16.services.BiddingSeasonalityAdjustmentService.MutateBiddingSeasonalityAdjustments]. +// [BiddingSeasonalityAdjustmentService.MutateBiddingSeasonalityAdjustments][google.ads.googleads.v17.services.BiddingSeasonalityAdjustmentService.MutateBiddingSeasonalityAdjustments]. type MutateBiddingSeasonalityAdjustmentsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -62,13 +62,13 @@ type MutateBiddingSeasonalityAdjustmentsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateBiddingSeasonalityAdjustmentsRequest) Reset() { *x = MutateBiddingSeasonalityAdjustmentsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81,7 +81,7 @@ func (x *MutateBiddingSeasonalityAdjustmentsRequest) String() string { func (*MutateBiddingSeasonalityAdjustmentsRequest) ProtoMessage() {} func (x *MutateBiddingSeasonalityAdjustmentsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_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 *MutateBiddingSeasonalityAdjustmentsRequest) ProtoReflect() protoreflect // Deprecated: Use MutateBiddingSeasonalityAdjustmentsRequest.ProtoReflect.Descriptor instead. func (*MutateBiddingSeasonalityAdjustmentsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_rawDescGZIP(), []int{0} } func (x *MutateBiddingSeasonalityAdjustmentsRequest) GetCustomerId() string { @@ -153,7 +153,7 @@ type BiddingSeasonalityAdjustmentOperation struct { func (x *BiddingSeasonalityAdjustmentOperation) Reset() { *x = BiddingSeasonalityAdjustmentOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -166,7 +166,7 @@ func (x *BiddingSeasonalityAdjustmentOperation) String() string { func (*BiddingSeasonalityAdjustmentOperation) ProtoMessage() {} func (x *BiddingSeasonalityAdjustmentOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -179,7 +179,7 @@ func (x *BiddingSeasonalityAdjustmentOperation) ProtoReflect() protoreflect.Mess // Deprecated: Use BiddingSeasonalityAdjustmentOperation.ProtoReflect.Descriptor instead. func (*BiddingSeasonalityAdjustmentOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_rawDescGZIP(), []int{1} } func (x *BiddingSeasonalityAdjustmentOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -268,7 +268,7 @@ type MutateBiddingSeasonalityAdjustmentsResponse struct { func (x *MutateBiddingSeasonalityAdjustmentsResponse) Reset() { *x = MutateBiddingSeasonalityAdjustmentsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -281,7 +281,7 @@ func (x *MutateBiddingSeasonalityAdjustmentsResponse) String() string { func (*MutateBiddingSeasonalityAdjustmentsResponse) ProtoMessage() {} func (x *MutateBiddingSeasonalityAdjustmentsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -294,7 +294,7 @@ func (x *MutateBiddingSeasonalityAdjustmentsResponse) ProtoReflect() protoreflec // Deprecated: Use MutateBiddingSeasonalityAdjustmentsResponse.ProtoReflect.Descriptor instead. func (*MutateBiddingSeasonalityAdjustmentsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_rawDescGZIP(), []int{2} } func (x *MutateBiddingSeasonalityAdjustmentsResponse) GetPartialFailureError() *status.Status { @@ -328,7 +328,7 @@ type MutateBiddingSeasonalityAdjustmentsResult struct { func (x *MutateBiddingSeasonalityAdjustmentsResult) Reset() { *x = MutateBiddingSeasonalityAdjustmentsResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -341,7 +341,7 @@ func (x *MutateBiddingSeasonalityAdjustmentsResult) String() string { func (*MutateBiddingSeasonalityAdjustmentsResult) ProtoMessage() {} func (x *MutateBiddingSeasonalityAdjustmentsResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -354,7 +354,7 @@ func (x *MutateBiddingSeasonalityAdjustmentsResult) ProtoReflect() protoreflect. // Deprecated: Use MutateBiddingSeasonalityAdjustmentsResult.ProtoReflect.Descriptor instead. func (*MutateBiddingSeasonalityAdjustmentsResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_rawDescGZIP(), []int{3} } func (x *MutateBiddingSeasonalityAdjustmentsResult) GetResourceName() string { @@ -371,22 +371,22 @@ func (x *MutateBiddingSeasonalityAdjustmentsResult) GetBiddingSeasonalityAdjustm return nil } -var File_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 0x67, 0x6f, 0x6f, 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, @@ -408,7 +408,7 @@ var file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_servic 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x6d, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, @@ -421,7 +421,7 @@ var file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_servic 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, @@ -434,13 +434,13 @@ var file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_servic 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x5a, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 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, 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, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x5a, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x02, 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, 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, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x54, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, @@ -459,7 +459,7 @@ var file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_servic 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x66, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x75, @@ -476,7 +476,7 @@ var file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_servic 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x02, 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, 0x72, + 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, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x1c, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x65, @@ -487,18 +487,18 @@ var file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_servic 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x67, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, - 0x93, 0x02, 0x48, 0x3a, 0x01, 0x2a, 0x22, 0x43, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, + 0x93, 0x02, 0x48, 0x3a, 0x01, 0x2a, 0x22, 0x43, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, @@ -509,59 +509,59 @@ var file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_servic 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x94, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x28, 0x42, 0x69, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x28, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, + 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_rawDescData = file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_rawDesc + file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_rawDescData = file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_rawDescData + return file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_goTypes = []interface{}{ - (*MutateBiddingSeasonalityAdjustmentsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateBiddingSeasonalityAdjustmentsRequest - (*BiddingSeasonalityAdjustmentOperation)(nil), // 1: google.ads.googleads.v16.services.BiddingSeasonalityAdjustmentOperation - (*MutateBiddingSeasonalityAdjustmentsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateBiddingSeasonalityAdjustmentsResponse - (*MutateBiddingSeasonalityAdjustmentsResult)(nil), // 3: google.ads.googleads.v16.services.MutateBiddingSeasonalityAdjustmentsResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_goTypes = []interface{}{ + (*MutateBiddingSeasonalityAdjustmentsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateBiddingSeasonalityAdjustmentsRequest + (*BiddingSeasonalityAdjustmentOperation)(nil), // 1: google.ads.googleads.v17.services.BiddingSeasonalityAdjustmentOperation + (*MutateBiddingSeasonalityAdjustmentsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateBiddingSeasonalityAdjustmentsResponse + (*MutateBiddingSeasonalityAdjustmentsResult)(nil), // 3: google.ads.googleads.v17.services.MutateBiddingSeasonalityAdjustmentsResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.BiddingSeasonalityAdjustment)(nil), // 6: google.ads.googleads.v16.resources.BiddingSeasonalityAdjustment + (*resources.BiddingSeasonalityAdjustment)(nil), // 6: google.ads.googleads.v17.resources.BiddingSeasonalityAdjustment (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateBiddingSeasonalityAdjustmentsRequest.operations:type_name -> google.ads.googleads.v16.services.BiddingSeasonalityAdjustmentOperation - 4, // 1: google.ads.googleads.v16.services.MutateBiddingSeasonalityAdjustmentsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.BiddingSeasonalityAdjustmentOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.BiddingSeasonalityAdjustmentOperation.create:type_name -> google.ads.googleads.v16.resources.BiddingSeasonalityAdjustment - 6, // 4: google.ads.googleads.v16.services.BiddingSeasonalityAdjustmentOperation.update:type_name -> google.ads.googleads.v16.resources.BiddingSeasonalityAdjustment - 7, // 5: google.ads.googleads.v16.services.MutateBiddingSeasonalityAdjustmentsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v16.services.MutateBiddingSeasonalityAdjustmentsResponse.results:type_name -> google.ads.googleads.v16.services.MutateBiddingSeasonalityAdjustmentsResult - 6, // 7: google.ads.googleads.v16.services.MutateBiddingSeasonalityAdjustmentsResult.bidding_seasonality_adjustment:type_name -> google.ads.googleads.v16.resources.BiddingSeasonalityAdjustment - 0, // 8: google.ads.googleads.v16.services.BiddingSeasonalityAdjustmentService.MutateBiddingSeasonalityAdjustments:input_type -> google.ads.googleads.v16.services.MutateBiddingSeasonalityAdjustmentsRequest - 2, // 9: google.ads.googleads.v16.services.BiddingSeasonalityAdjustmentService.MutateBiddingSeasonalityAdjustments:output_type -> google.ads.googleads.v16.services.MutateBiddingSeasonalityAdjustmentsResponse +var file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateBiddingSeasonalityAdjustmentsRequest.operations:type_name -> google.ads.googleads.v17.services.BiddingSeasonalityAdjustmentOperation + 4, // 1: google.ads.googleads.v17.services.MutateBiddingSeasonalityAdjustmentsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.BiddingSeasonalityAdjustmentOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.BiddingSeasonalityAdjustmentOperation.create:type_name -> google.ads.googleads.v17.resources.BiddingSeasonalityAdjustment + 6, // 4: google.ads.googleads.v17.services.BiddingSeasonalityAdjustmentOperation.update:type_name -> google.ads.googleads.v17.resources.BiddingSeasonalityAdjustment + 7, // 5: google.ads.googleads.v17.services.MutateBiddingSeasonalityAdjustmentsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v17.services.MutateBiddingSeasonalityAdjustmentsResponse.results:type_name -> google.ads.googleads.v17.services.MutateBiddingSeasonalityAdjustmentsResult + 6, // 7: google.ads.googleads.v17.services.MutateBiddingSeasonalityAdjustmentsResult.bidding_seasonality_adjustment:type_name -> google.ads.googleads.v17.resources.BiddingSeasonalityAdjustment + 0, // 8: google.ads.googleads.v17.services.BiddingSeasonalityAdjustmentService.MutateBiddingSeasonalityAdjustments:input_type -> google.ads.googleads.v17.services.MutateBiddingSeasonalityAdjustmentsRequest + 2, // 9: google.ads.googleads.v17.services.BiddingSeasonalityAdjustmentService.MutateBiddingSeasonalityAdjustments:output_type -> google.ads.googleads.v17.services.MutateBiddingSeasonalityAdjustmentsResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -570,14 +570,14 @@ var file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_servic } func init() { - file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_init() + file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_init() } -func file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_init() { - if File_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto != nil { +func file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_init() { + if File_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateBiddingSeasonalityAdjustmentsRequest); i { case 0: return &v.state @@ -589,7 +589,7 @@ func file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_servi return nil } } - file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BiddingSeasonalityAdjustmentOperation); i { case 0: return &v.state @@ -601,7 +601,7 @@ func file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_servi return nil } } - file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateBiddingSeasonalityAdjustmentsResponse); i { case 0: return &v.state @@ -613,7 +613,7 @@ func file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_servi return nil } } - file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateBiddingSeasonalityAdjustmentsResult); i { case 0: return &v.state @@ -626,7 +626,7 @@ func file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_servi } } } - file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*BiddingSeasonalityAdjustmentOperation_Create)(nil), (*BiddingSeasonalityAdjustmentOperation_Update)(nil), (*BiddingSeasonalityAdjustmentOperation_Remove)(nil), @@ -635,18 +635,18 @@ func file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_servi out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto = out.File - file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto = out.File + file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_depIdxs = nil } diff --git a/services/bidding_seasonality_adjustment_service_grpc.pb.go b/services/bidding_seasonality_adjustment_service_grpc.pb.go index 1a8979cb..3f28dee1 100644 --- a/services/bidding_seasonality_adjustment_service_grpc.pb.go +++ b/services/bidding_seasonality_adjustment_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/bidding_seasonality_adjustment_service.proto +// source: google/ads/googleads/v17/services/bidding_seasonality_adjustment_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - BiddingSeasonalityAdjustmentService_MutateBiddingSeasonalityAdjustments_FullMethodName = "/google.ads.googleads.v16.services.BiddingSeasonalityAdjustmentService/MutateBiddingSeasonalityAdjustments" + BiddingSeasonalityAdjustmentService_MutateBiddingSeasonalityAdjustments_FullMethodName = "/google.ads.googleads.v17.services.BiddingSeasonalityAdjustmentService/MutateBiddingSeasonalityAdjustments" ) // BiddingSeasonalityAdjustmentServiceClient is the client API for BiddingSeasonalityAdjustmentService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage bidding seasonality adjustments. type BiddingSeasonalityAdjustmentServiceClient interface { // Creates, updates, or removes seasonality adjustments. // Operation statuses are returned. @@ -54,8 +56,9 @@ func NewBiddingSeasonalityAdjustmentServiceClient(cc grpc.ClientConnInterface) B } func (c *biddingSeasonalityAdjustmentServiceClient) MutateBiddingSeasonalityAdjustments(ctx context.Context, in *MutateBiddingSeasonalityAdjustmentsRequest, opts ...grpc.CallOption) (*MutateBiddingSeasonalityAdjustmentsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateBiddingSeasonalityAdjustmentsResponse) - err := c.cc.Invoke(ctx, BiddingSeasonalityAdjustmentService_MutateBiddingSeasonalityAdjustments_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, BiddingSeasonalityAdjustmentService_MutateBiddingSeasonalityAdjustments_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -65,6 +68,8 @@ func (c *biddingSeasonalityAdjustmentServiceClient) MutateBiddingSeasonalityAdju // BiddingSeasonalityAdjustmentServiceServer is the server API for BiddingSeasonalityAdjustmentService service. // All implementations must embed UnimplementedBiddingSeasonalityAdjustmentServiceServer // for forward compatibility +// +// Service to manage bidding seasonality adjustments. type BiddingSeasonalityAdjustmentServiceServer interface { // Creates, updates, or removes seasonality adjustments. // Operation statuses are returned. @@ -115,7 +120,7 @@ func _BiddingSeasonalityAdjustmentService_MutateBiddingSeasonalityAdjustments_Ha // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var BiddingSeasonalityAdjustmentService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.BiddingSeasonalityAdjustmentService", + ServiceName: "google.ads.googleads.v17.services.BiddingSeasonalityAdjustmentService", HandlerType: (*BiddingSeasonalityAdjustmentServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -124,5 +129,5 @@ var BiddingSeasonalityAdjustmentService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/bidding_seasonality_adjustment_service.proto", + Metadata: "google/ads/googleads/v17/services/bidding_seasonality_adjustment_service.proto", } diff --git a/services/bidding_strategy_service.pb.go b/services/bidding_strategy_service.pb.go index 5f2ecf1b..d90ce21a 100644 --- a/services/bidding_strategy_service.pb.go +++ b/services/bidding_strategy_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/bidding_strategy_service.proto +// source: google/ads/googleads/v17/services/bidding_strategy_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [BiddingStrategyService.MutateBiddingStrategies][google.ads.googleads.v16.services.BiddingStrategyService.MutateBiddingStrategies]. +// [BiddingStrategyService.MutateBiddingStrategies][google.ads.googleads.v17.services.BiddingStrategyService.MutateBiddingStrategies]. type MutateBiddingStrategiesRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -62,13 +62,13 @@ type MutateBiddingStrategiesRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateBiddingStrategiesRequest) Reset() { *x = MutateBiddingStrategiesRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_bidding_strategy_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_bidding_strategy_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81,7 +81,7 @@ func (x *MutateBiddingStrategiesRequest) String() string { func (*MutateBiddingStrategiesRequest) ProtoMessage() {} func (x *MutateBiddingStrategiesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_bidding_strategy_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_bidding_strategy_service_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 *MutateBiddingStrategiesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateBiddingStrategiesRequest.ProtoReflect.Descriptor instead. func (*MutateBiddingStrategiesRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_bidding_strategy_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_bidding_strategy_service_proto_rawDescGZIP(), []int{0} } func (x *MutateBiddingStrategiesRequest) GetCustomerId() string { @@ -153,7 +153,7 @@ type BiddingStrategyOperation struct { func (x *BiddingStrategyOperation) Reset() { *x = BiddingStrategyOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_bidding_strategy_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_bidding_strategy_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -166,7 +166,7 @@ func (x *BiddingStrategyOperation) String() string { func (*BiddingStrategyOperation) ProtoMessage() {} func (x *BiddingStrategyOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_bidding_strategy_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_bidding_strategy_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -179,7 +179,7 @@ func (x *BiddingStrategyOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use BiddingStrategyOperation.ProtoReflect.Descriptor instead. func (*BiddingStrategyOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_bidding_strategy_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_bidding_strategy_service_proto_rawDescGZIP(), []int{1} } func (x *BiddingStrategyOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -265,7 +265,7 @@ type MutateBiddingStrategiesResponse struct { func (x *MutateBiddingStrategiesResponse) Reset() { *x = MutateBiddingStrategiesResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_bidding_strategy_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_bidding_strategy_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -278,7 +278,7 @@ func (x *MutateBiddingStrategiesResponse) String() string { func (*MutateBiddingStrategiesResponse) ProtoMessage() {} func (x *MutateBiddingStrategiesResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_bidding_strategy_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_bidding_strategy_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -291,7 +291,7 @@ func (x *MutateBiddingStrategiesResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateBiddingStrategiesResponse.ProtoReflect.Descriptor instead. func (*MutateBiddingStrategiesResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_bidding_strategy_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_bidding_strategy_service_proto_rawDescGZIP(), []int{2} } func (x *MutateBiddingStrategiesResponse) GetPartialFailureError() *status.Status { @@ -325,7 +325,7 @@ type MutateBiddingStrategyResult struct { func (x *MutateBiddingStrategyResult) Reset() { *x = MutateBiddingStrategyResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_bidding_strategy_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_bidding_strategy_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -338,7 +338,7 @@ func (x *MutateBiddingStrategyResult) String() string { func (*MutateBiddingStrategyResult) ProtoMessage() {} func (x *MutateBiddingStrategyResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_bidding_strategy_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_bidding_strategy_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -351,7 +351,7 @@ func (x *MutateBiddingStrategyResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateBiddingStrategyResult.ProtoReflect.Descriptor instead. func (*MutateBiddingStrategyResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_bidding_strategy_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_bidding_strategy_service_proto_rawDescGZIP(), []int{3} } func (x *MutateBiddingStrategyResult) GetResourceName() string { @@ -368,21 +368,21 @@ func (x *MutateBiddingStrategyResult) GetBiddingStrategy() *resources.BiddingStr return nil } -var File_google_ads_googleads_v16_services_bidding_strategy_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_bidding_strategy_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_bidding_strategy_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_bidding_strategy_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 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, 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, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, @@ -403,7 +403,7 @@ var file_google_ads_googleads_v16_services_bidding_strategy_service_proto_rawDes 0x72, 0x49, 0x64, 0x12, 0x60, 0x0a, 0x0a, 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, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, @@ -414,7 +414,7 @@ var file_google_ads_googleads_v16_services_bidding_strategy_service_proto_rawDes 0x6e, 0x6c, 0x79, 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, @@ -427,12 +427,12 @@ var file_google_ads_googleads_v16_services_bidding_strategy_service_proto_rawDes 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x4d, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 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, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x4d, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 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, 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, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x47, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2d, 0xfa, 0x41, @@ -449,7 +449,7 @@ var file_google_ads_googleads_v16_services_bidding_strategy_service_proto_rawDes 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x58, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xd1, 0x01, 0x0a, 0x1b, 0x4d, 0x75, 0x74, @@ -463,24 +463,24 @@ var file_google_ads_googleads_v16_services_bidding_strategy_service_proto_rawDes 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x52, 0x0f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x32, 0xdf, 0x02, 0x0a, 0x16, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xfd, 0x01, 0x0a, 0x17, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x69, 0x65, 0x73, 0x12, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x69, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x69, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5b, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3c, 0x3a, 0x01, 0x2a, 0x22, 0x37, - 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, + 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x69, 0x65, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, @@ -489,58 +489,58 @@ var file_google_ads_googleads_v16_services_bidding_strategy_service_proto_rawDes 0x77, 0x77, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x87, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1b, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, + 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_bidding_strategy_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_bidding_strategy_service_proto_rawDescData = file_google_ads_googleads_v16_services_bidding_strategy_service_proto_rawDesc + file_google_ads_googleads_v17_services_bidding_strategy_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_bidding_strategy_service_proto_rawDescData = file_google_ads_googleads_v17_services_bidding_strategy_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_bidding_strategy_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_bidding_strategy_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_bidding_strategy_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_bidding_strategy_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_bidding_strategy_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_bidding_strategy_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_bidding_strategy_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_bidding_strategy_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_bidding_strategy_service_proto_rawDescData + return file_google_ads_googleads_v17_services_bidding_strategy_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_bidding_strategy_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_bidding_strategy_service_proto_goTypes = []interface{}{ - (*MutateBiddingStrategiesRequest)(nil), // 0: google.ads.googleads.v16.services.MutateBiddingStrategiesRequest - (*BiddingStrategyOperation)(nil), // 1: google.ads.googleads.v16.services.BiddingStrategyOperation - (*MutateBiddingStrategiesResponse)(nil), // 2: google.ads.googleads.v16.services.MutateBiddingStrategiesResponse - (*MutateBiddingStrategyResult)(nil), // 3: google.ads.googleads.v16.services.MutateBiddingStrategyResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_bidding_strategy_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_bidding_strategy_service_proto_goTypes = []interface{}{ + (*MutateBiddingStrategiesRequest)(nil), // 0: google.ads.googleads.v17.services.MutateBiddingStrategiesRequest + (*BiddingStrategyOperation)(nil), // 1: google.ads.googleads.v17.services.BiddingStrategyOperation + (*MutateBiddingStrategiesResponse)(nil), // 2: google.ads.googleads.v17.services.MutateBiddingStrategiesResponse + (*MutateBiddingStrategyResult)(nil), // 3: google.ads.googleads.v17.services.MutateBiddingStrategyResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.BiddingStrategy)(nil), // 6: google.ads.googleads.v16.resources.BiddingStrategy + (*resources.BiddingStrategy)(nil), // 6: google.ads.googleads.v17.resources.BiddingStrategy (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_bidding_strategy_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateBiddingStrategiesRequest.operations:type_name -> google.ads.googleads.v16.services.BiddingStrategyOperation - 4, // 1: google.ads.googleads.v16.services.MutateBiddingStrategiesRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.BiddingStrategyOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.BiddingStrategyOperation.create:type_name -> google.ads.googleads.v16.resources.BiddingStrategy - 6, // 4: google.ads.googleads.v16.services.BiddingStrategyOperation.update:type_name -> google.ads.googleads.v16.resources.BiddingStrategy - 7, // 5: google.ads.googleads.v16.services.MutateBiddingStrategiesResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v16.services.MutateBiddingStrategiesResponse.results:type_name -> google.ads.googleads.v16.services.MutateBiddingStrategyResult - 6, // 7: google.ads.googleads.v16.services.MutateBiddingStrategyResult.bidding_strategy:type_name -> google.ads.googleads.v16.resources.BiddingStrategy - 0, // 8: google.ads.googleads.v16.services.BiddingStrategyService.MutateBiddingStrategies:input_type -> google.ads.googleads.v16.services.MutateBiddingStrategiesRequest - 2, // 9: google.ads.googleads.v16.services.BiddingStrategyService.MutateBiddingStrategies:output_type -> google.ads.googleads.v16.services.MutateBiddingStrategiesResponse +var file_google_ads_googleads_v17_services_bidding_strategy_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateBiddingStrategiesRequest.operations:type_name -> google.ads.googleads.v17.services.BiddingStrategyOperation + 4, // 1: google.ads.googleads.v17.services.MutateBiddingStrategiesRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.BiddingStrategyOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.BiddingStrategyOperation.create:type_name -> google.ads.googleads.v17.resources.BiddingStrategy + 6, // 4: google.ads.googleads.v17.services.BiddingStrategyOperation.update:type_name -> google.ads.googleads.v17.resources.BiddingStrategy + 7, // 5: google.ads.googleads.v17.services.MutateBiddingStrategiesResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v17.services.MutateBiddingStrategiesResponse.results:type_name -> google.ads.googleads.v17.services.MutateBiddingStrategyResult + 6, // 7: google.ads.googleads.v17.services.MutateBiddingStrategyResult.bidding_strategy:type_name -> google.ads.googleads.v17.resources.BiddingStrategy + 0, // 8: google.ads.googleads.v17.services.BiddingStrategyService.MutateBiddingStrategies:input_type -> google.ads.googleads.v17.services.MutateBiddingStrategiesRequest + 2, // 9: google.ads.googleads.v17.services.BiddingStrategyService.MutateBiddingStrategies:output_type -> google.ads.googleads.v17.services.MutateBiddingStrategiesResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -548,13 +548,13 @@ var file_google_ads_googleads_v16_services_bidding_strategy_service_proto_depIdx 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_bidding_strategy_service_proto_init() } -func file_google_ads_googleads_v16_services_bidding_strategy_service_proto_init() { - if File_google_ads_googleads_v16_services_bidding_strategy_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_bidding_strategy_service_proto_init() } +func file_google_ads_googleads_v17_services_bidding_strategy_service_proto_init() { + if File_google_ads_googleads_v17_services_bidding_strategy_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_bidding_strategy_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_bidding_strategy_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateBiddingStrategiesRequest); i { case 0: return &v.state @@ -566,7 +566,7 @@ func file_google_ads_googleads_v16_services_bidding_strategy_service_proto_init( return nil } } - file_google_ads_googleads_v16_services_bidding_strategy_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_bidding_strategy_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BiddingStrategyOperation); i { case 0: return &v.state @@ -578,7 +578,7 @@ func file_google_ads_googleads_v16_services_bidding_strategy_service_proto_init( return nil } } - file_google_ads_googleads_v16_services_bidding_strategy_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_bidding_strategy_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateBiddingStrategiesResponse); i { case 0: return &v.state @@ -590,7 +590,7 @@ func file_google_ads_googleads_v16_services_bidding_strategy_service_proto_init( return nil } } - file_google_ads_googleads_v16_services_bidding_strategy_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_bidding_strategy_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateBiddingStrategyResult); i { case 0: return &v.state @@ -603,7 +603,7 @@ func file_google_ads_googleads_v16_services_bidding_strategy_service_proto_init( } } } - file_google_ads_googleads_v16_services_bidding_strategy_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_bidding_strategy_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*BiddingStrategyOperation_Create)(nil), (*BiddingStrategyOperation_Update)(nil), (*BiddingStrategyOperation_Remove)(nil), @@ -612,18 +612,18 @@ func file_google_ads_googleads_v16_services_bidding_strategy_service_proto_init( out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_bidding_strategy_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_bidding_strategy_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_bidding_strategy_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_bidding_strategy_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_bidding_strategy_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_bidding_strategy_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_bidding_strategy_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_bidding_strategy_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_bidding_strategy_service_proto = out.File - file_google_ads_googleads_v16_services_bidding_strategy_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_bidding_strategy_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_bidding_strategy_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_bidding_strategy_service_proto = out.File + file_google_ads_googleads_v17_services_bidding_strategy_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_bidding_strategy_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_bidding_strategy_service_proto_depIdxs = nil } diff --git a/services/bidding_strategy_service_grpc.pb.go b/services/bidding_strategy_service_grpc.pb.go index a43413d9..04296444 100644 --- a/services/bidding_strategy_service_grpc.pb.go +++ b/services/bidding_strategy_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/bidding_strategy_service.proto +// source: google/ads/googleads/v17/services/bidding_strategy_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - BiddingStrategyService_MutateBiddingStrategies_FullMethodName = "/google.ads.googleads.v16.services.BiddingStrategyService/MutateBiddingStrategies" + BiddingStrategyService_MutateBiddingStrategies_FullMethodName = "/google.ads.googleads.v17.services.BiddingStrategyService/MutateBiddingStrategies" ) // BiddingStrategyServiceClient is the client API for BiddingStrategyService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage bidding strategies. type BiddingStrategyServiceClient interface { // Creates, updates, or removes bidding strategies. Operation statuses are // returned. @@ -83,8 +85,9 @@ func NewBiddingStrategyServiceClient(cc grpc.ClientConnInterface) BiddingStrateg } func (c *biddingStrategyServiceClient) MutateBiddingStrategies(ctx context.Context, in *MutateBiddingStrategiesRequest, opts ...grpc.CallOption) (*MutateBiddingStrategiesResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateBiddingStrategiesResponse) - err := c.cc.Invoke(ctx, BiddingStrategyService_MutateBiddingStrategies_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, BiddingStrategyService_MutateBiddingStrategies_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -94,6 +97,8 @@ func (c *biddingStrategyServiceClient) MutateBiddingStrategies(ctx context.Conte // BiddingStrategyServiceServer is the server API for BiddingStrategyService service. // All implementations must embed UnimplementedBiddingStrategyServiceServer // for forward compatibility +// +// Service to manage bidding strategies. type BiddingStrategyServiceServer interface { // Creates, updates, or removes bidding strategies. Operation statuses are // returned. @@ -173,7 +178,7 @@ func _BiddingStrategyService_MutateBiddingStrategies_Handler(srv interface{}, ct // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var BiddingStrategyService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.BiddingStrategyService", + ServiceName: "google.ads.googleads.v17.services.BiddingStrategyService", HandlerType: (*BiddingStrategyServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -182,5 +187,5 @@ var BiddingStrategyService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/bidding_strategy_service.proto", + Metadata: "google/ads/googleads/v17/services/bidding_strategy_service.proto", } diff --git a/services/billing_setup_service.pb.go b/services/billing_setup_service.pb.go index 63eb65c4..4b7690bd 100644 --- a/services/billing_setup_service.pb.go +++ b/services/billing_setup_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/billing_setup_service.proto +// source: google/ads/googleads/v17/services/billing_setup_service.proto package services @@ -52,7 +52,7 @@ type MutateBillingSetupRequest struct { func (x *MutateBillingSetupRequest) Reset() { *x = MutateBillingSetupRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_billing_setup_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_billing_setup_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65,7 +65,7 @@ func (x *MutateBillingSetupRequest) String() string { func (*MutateBillingSetupRequest) ProtoMessage() {} func (x *MutateBillingSetupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_billing_setup_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_billing_setup_service_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 *MutateBillingSetupRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateBillingSetupRequest.ProtoReflect.Descriptor instead. func (*MutateBillingSetupRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_billing_setup_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_billing_setup_service_proto_rawDescGZIP(), []int{0} } func (x *MutateBillingSetupRequest) GetCustomerId() string { @@ -115,7 +115,7 @@ type BillingSetupOperation struct { func (x *BillingSetupOperation) Reset() { *x = BillingSetupOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_billing_setup_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_billing_setup_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -128,7 +128,7 @@ func (x *BillingSetupOperation) String() string { func (*BillingSetupOperation) ProtoMessage() {} func (x *BillingSetupOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_billing_setup_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_billing_setup_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -141,7 +141,7 @@ func (x *BillingSetupOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use BillingSetupOperation.ProtoReflect.Descriptor instead. func (*BillingSetupOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_billing_setup_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_billing_setup_service_proto_rawDescGZIP(), []int{1} } func (m *BillingSetupOperation) GetOperation() isBillingSetupOperation_Operation { @@ -200,7 +200,7 @@ type MutateBillingSetupResponse struct { func (x *MutateBillingSetupResponse) Reset() { *x = MutateBillingSetupResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_billing_setup_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_billing_setup_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -213,7 +213,7 @@ func (x *MutateBillingSetupResponse) String() string { func (*MutateBillingSetupResponse) ProtoMessage() {} func (x *MutateBillingSetupResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_billing_setup_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_billing_setup_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -226,7 +226,7 @@ func (x *MutateBillingSetupResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateBillingSetupResponse.ProtoReflect.Descriptor instead. func (*MutateBillingSetupResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_billing_setup_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_billing_setup_service_proto_rawDescGZIP(), []int{2} } func (x *MutateBillingSetupResponse) GetResult() *MutateBillingSetupResult { @@ -249,7 +249,7 @@ type MutateBillingSetupResult struct { func (x *MutateBillingSetupResult) Reset() { *x = MutateBillingSetupResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_billing_setup_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_billing_setup_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -262,7 +262,7 @@ func (x *MutateBillingSetupResult) String() string { func (*MutateBillingSetupResult) ProtoMessage() {} func (x *MutateBillingSetupResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_billing_setup_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_billing_setup_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -275,7 +275,7 @@ func (x *MutateBillingSetupResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateBillingSetupResult.ProtoReflect.Descriptor instead. func (*MutateBillingSetupResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_billing_setup_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_billing_setup_service_proto_rawDescGZIP(), []int{3} } func (x *MutateBillingSetupResult) GetResourceName() string { @@ -285,17 +285,17 @@ func (x *MutateBillingSetupResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_billing_setup_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_billing_setup_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_billing_setup_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_billing_setup_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x74, 0x75, 0x70, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x74, 0x75, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, @@ -311,7 +311,7 @@ var file_google_ads_googleads_v16_services_billing_setup_service_proto_rawDesc = 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5b, 0x0a, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x75, 0x70, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xb6, @@ -319,7 +319,7 @@ var file_google_ads_googleads_v16_services_billing_setup_service_proto_rawDesc = 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4a, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x75, 0x70, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x44, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2a, 0xfa, 0x41, 0x27, 0x0a, 0x25, 0x67, 0x6f, 0x6f, 0x67, 0x6c, @@ -330,7 +330,7 @@ var file_google_ads_googleads_v16_services_billing_setup_service_proto_rawDesc = 0x65, 0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x53, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x75, 0x70, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x6b, 0x0a, 0x18, 0x4d, 0x75, @@ -345,15 +345,15 @@ var file_google_ads_googleads_v16_services_billing_setup_service_proto_rawDesc = 0xe9, 0x01, 0x0a, 0x12, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x75, 0x70, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x56, 0xda, 0x41, 0x15, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x82, 0xd3, 0xe4, - 0x93, 0x02, 0x38, 0x3a, 0x01, 0x2a, 0x22, 0x33, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, + 0x93, 0x02, 0x38, 0x3a, 0x01, 0x2a, 0x22, 0x33, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x75, 0x70, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, @@ -363,50 +363,50 @@ var file_google_ads_googleads_v16_services_billing_setup_service_proto_rawDesc = 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x84, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x18, 0x42, 0x69, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x18, 0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x75, 0x70, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, + 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_billing_setup_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_billing_setup_service_proto_rawDescData = file_google_ads_googleads_v16_services_billing_setup_service_proto_rawDesc + file_google_ads_googleads_v17_services_billing_setup_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_billing_setup_service_proto_rawDescData = file_google_ads_googleads_v17_services_billing_setup_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_billing_setup_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_billing_setup_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_billing_setup_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_billing_setup_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_billing_setup_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_billing_setup_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_billing_setup_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_billing_setup_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_billing_setup_service_proto_rawDescData -} - -var file_google_ads_googleads_v16_services_billing_setup_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_billing_setup_service_proto_goTypes = []interface{}{ - (*MutateBillingSetupRequest)(nil), // 0: google.ads.googleads.v16.services.MutateBillingSetupRequest - (*BillingSetupOperation)(nil), // 1: google.ads.googleads.v16.services.BillingSetupOperation - (*MutateBillingSetupResponse)(nil), // 2: google.ads.googleads.v16.services.MutateBillingSetupResponse - (*MutateBillingSetupResult)(nil), // 3: google.ads.googleads.v16.services.MutateBillingSetupResult - (*resources.BillingSetup)(nil), // 4: google.ads.googleads.v16.resources.BillingSetup -} -var file_google_ads_googleads_v16_services_billing_setup_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateBillingSetupRequest.operation:type_name -> google.ads.googleads.v16.services.BillingSetupOperation - 4, // 1: google.ads.googleads.v16.services.BillingSetupOperation.create:type_name -> google.ads.googleads.v16.resources.BillingSetup - 3, // 2: google.ads.googleads.v16.services.MutateBillingSetupResponse.result:type_name -> google.ads.googleads.v16.services.MutateBillingSetupResult - 0, // 3: google.ads.googleads.v16.services.BillingSetupService.MutateBillingSetup:input_type -> google.ads.googleads.v16.services.MutateBillingSetupRequest - 2, // 4: google.ads.googleads.v16.services.BillingSetupService.MutateBillingSetup:output_type -> google.ads.googleads.v16.services.MutateBillingSetupResponse + return file_google_ads_googleads_v17_services_billing_setup_service_proto_rawDescData +} + +var file_google_ads_googleads_v17_services_billing_setup_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_billing_setup_service_proto_goTypes = []interface{}{ + (*MutateBillingSetupRequest)(nil), // 0: google.ads.googleads.v17.services.MutateBillingSetupRequest + (*BillingSetupOperation)(nil), // 1: google.ads.googleads.v17.services.BillingSetupOperation + (*MutateBillingSetupResponse)(nil), // 2: google.ads.googleads.v17.services.MutateBillingSetupResponse + (*MutateBillingSetupResult)(nil), // 3: google.ads.googleads.v17.services.MutateBillingSetupResult + (*resources.BillingSetup)(nil), // 4: google.ads.googleads.v17.resources.BillingSetup +} +var file_google_ads_googleads_v17_services_billing_setup_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateBillingSetupRequest.operation:type_name -> google.ads.googleads.v17.services.BillingSetupOperation + 4, // 1: google.ads.googleads.v17.services.BillingSetupOperation.create:type_name -> google.ads.googleads.v17.resources.BillingSetup + 3, // 2: google.ads.googleads.v17.services.MutateBillingSetupResponse.result:type_name -> google.ads.googleads.v17.services.MutateBillingSetupResult + 0, // 3: google.ads.googleads.v17.services.BillingSetupService.MutateBillingSetup:input_type -> google.ads.googleads.v17.services.MutateBillingSetupRequest + 2, // 4: google.ads.googleads.v17.services.BillingSetupService.MutateBillingSetup:output_type -> google.ads.googleads.v17.services.MutateBillingSetupResponse 4, // [4:5] is the sub-list for method output_type 3, // [3:4] is the sub-list for method input_type 3, // [3:3] is the sub-list for extension type_name @@ -414,13 +414,13 @@ var file_google_ads_googleads_v16_services_billing_setup_service_proto_depIdxs = 0, // [0:3] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_billing_setup_service_proto_init() } -func file_google_ads_googleads_v16_services_billing_setup_service_proto_init() { - if File_google_ads_googleads_v16_services_billing_setup_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_billing_setup_service_proto_init() } +func file_google_ads_googleads_v17_services_billing_setup_service_proto_init() { + if File_google_ads_googleads_v17_services_billing_setup_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_billing_setup_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_billing_setup_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateBillingSetupRequest); i { case 0: return &v.state @@ -432,7 +432,7 @@ func file_google_ads_googleads_v16_services_billing_setup_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_billing_setup_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_billing_setup_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BillingSetupOperation); i { case 0: return &v.state @@ -444,7 +444,7 @@ func file_google_ads_googleads_v16_services_billing_setup_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_billing_setup_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_billing_setup_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateBillingSetupResponse); i { case 0: return &v.state @@ -456,7 +456,7 @@ func file_google_ads_googleads_v16_services_billing_setup_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_billing_setup_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_billing_setup_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateBillingSetupResult); i { case 0: return &v.state @@ -469,7 +469,7 @@ func file_google_ads_googleads_v16_services_billing_setup_service_proto_init() { } } } - file_google_ads_googleads_v16_services_billing_setup_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_billing_setup_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*BillingSetupOperation_Create)(nil), (*BillingSetupOperation_Remove)(nil), } @@ -477,18 +477,18 @@ func file_google_ads_googleads_v16_services_billing_setup_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_billing_setup_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_billing_setup_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_billing_setup_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_billing_setup_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_billing_setup_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_billing_setup_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_billing_setup_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_billing_setup_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_billing_setup_service_proto = out.File - file_google_ads_googleads_v16_services_billing_setup_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_billing_setup_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_billing_setup_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_billing_setup_service_proto = out.File + file_google_ads_googleads_v17_services_billing_setup_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_billing_setup_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_billing_setup_service_proto_depIdxs = nil } diff --git a/services/billing_setup_service_grpc.pb.go b/services/billing_setup_service_grpc.pb.go index 30f37b57..326345a9 100644 --- a/services/billing_setup_service_grpc.pb.go +++ b/services/billing_setup_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/billing_setup_service.proto +// source: google/ads/googleads/v17/services/billing_setup_service.proto package services @@ -29,16 +29,26 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - BillingSetupService_MutateBillingSetup_FullMethodName = "/google.ads.googleads.v16.services.BillingSetupService/MutateBillingSetup" + BillingSetupService_MutateBillingSetup_FullMethodName = "/google.ads.googleads.v17.services.BillingSetupService/MutateBillingSetup" ) // BillingSetupServiceClient is the client API for BillingSetupService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// A service for designating the business entity responsible for accrued costs. +// +// A billing setup is associated with a payments account. Billing-related +// activity for all billing setups associated with a particular payments account +// will appear on a single invoice generated monthly. +// +// Mutates: +// The REMOVE operation cancels a pending billing setup. +// The CREATE operation creates a new billing setup. type BillingSetupServiceClient interface { // Creates a billing setup, or cancels an existing billing setup. // @@ -66,8 +76,9 @@ func NewBillingSetupServiceClient(cc grpc.ClientConnInterface) BillingSetupServi } func (c *billingSetupServiceClient) MutateBillingSetup(ctx context.Context, in *MutateBillingSetupRequest, opts ...grpc.CallOption) (*MutateBillingSetupResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateBillingSetupResponse) - err := c.cc.Invoke(ctx, BillingSetupService_MutateBillingSetup_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, BillingSetupService_MutateBillingSetup_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -77,6 +88,16 @@ func (c *billingSetupServiceClient) MutateBillingSetup(ctx context.Context, in * // BillingSetupServiceServer is the server API for BillingSetupService service. // All implementations must embed UnimplementedBillingSetupServiceServer // for forward compatibility +// +// A service for designating the business entity responsible for accrued costs. +// +// A billing setup is associated with a payments account. Billing-related +// activity for all billing setups associated with a particular payments account +// will appear on a single invoice generated monthly. +// +// Mutates: +// The REMOVE operation cancels a pending billing setup. +// The CREATE operation creates a new billing setup. type BillingSetupServiceServer interface { // Creates a billing setup, or cancels an existing billing setup. // @@ -138,7 +159,7 @@ func _BillingSetupService_MutateBillingSetup_Handler(srv interface{}, ctx contex // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var BillingSetupService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.BillingSetupService", + ServiceName: "google.ads.googleads.v17.services.BillingSetupService", HandlerType: (*BillingSetupServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -147,5 +168,5 @@ var BillingSetupService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/billing_setup_service.proto", + Metadata: "google/ads/googleads/v17/services/billing_setup_service.proto", } diff --git a/services/brand_suggestion_service.pb.go b/services/brand_suggestion_service.pb.go index ddabc208..2d3cdfb5 100644 --- a/services/brand_suggestion_service.pb.go +++ b/services/brand_suggestion_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/brand_suggestion_service.proto +// source: google/ads/googleads/v17/services/brand_suggestion_service.proto package services @@ -37,7 +37,7 @@ const ( ) // Request message for -// [BrandSuggestionService.SuggestBrands][google.ads.googleads.v16.services.BrandSuggestionService.SuggestBrands]. +// [BrandSuggestionService.SuggestBrands][google.ads.googleads.v17.services.BrandSuggestionService.SuggestBrands]. type SuggestBrandsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -56,7 +56,7 @@ type SuggestBrandsRequest struct { func (x *SuggestBrandsRequest) Reset() { *x = SuggestBrandsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_brand_suggestion_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_brand_suggestion_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -69,7 +69,7 @@ func (x *SuggestBrandsRequest) String() string { func (*SuggestBrandsRequest) ProtoMessage() {} func (x *SuggestBrandsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_brand_suggestion_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_brand_suggestion_service_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 *SuggestBrandsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SuggestBrandsRequest.ProtoReflect.Descriptor instead. func (*SuggestBrandsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_brand_suggestion_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_brand_suggestion_service_proto_rawDescGZIP(), []int{0} } func (x *SuggestBrandsRequest) GetCustomerId() string { @@ -107,7 +107,7 @@ func (x *SuggestBrandsRequest) GetSelectedBrands() []string { } // Response message for -// [BrandSuggestionService.SuggestBrands][google.ads.googleads.v16.services.BrandSuggestionService.SuggestBrands]. +// [BrandSuggestionService.SuggestBrands][google.ads.googleads.v17.services.BrandSuggestionService.SuggestBrands]. type SuggestBrandsResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -120,7 +120,7 @@ type SuggestBrandsResponse struct { func (x *SuggestBrandsResponse) Reset() { *x = SuggestBrandsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_brand_suggestion_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_brand_suggestion_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -133,7 +133,7 @@ func (x *SuggestBrandsResponse) String() string { func (*SuggestBrandsResponse) ProtoMessage() {} func (x *SuggestBrandsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_brand_suggestion_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_brand_suggestion_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -146,7 +146,7 @@ func (x *SuggestBrandsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use SuggestBrandsResponse.ProtoReflect.Descriptor instead. func (*SuggestBrandsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_brand_suggestion_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_brand_suggestion_service_proto_rawDescGZIP(), []int{1} } func (x *SuggestBrandsResponse) GetBrands() []*BrandSuggestion { @@ -169,13 +169,13 @@ type BrandSuggestion struct { // Urls which uniquely identify the brand. Urls []string `protobuf:"bytes,3,rep,name=urls,proto3" json:"urls,omitempty"` // Current state of the brand. - State enums.BrandStateEnum_BrandState `protobuf:"varint,4,opt,name=state,proto3,enum=google.ads.googleads.v16.enums.BrandStateEnum_BrandState" json:"state,omitempty"` + State enums.BrandStateEnum_BrandState `protobuf:"varint,4,opt,name=state,proto3,enum=google.ads.googleads.v17.enums.BrandStateEnum_BrandState" json:"state,omitempty"` } func (x *BrandSuggestion) Reset() { *x = BrandSuggestion{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_brand_suggestion_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_brand_suggestion_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -188,7 +188,7 @@ func (x *BrandSuggestion) String() string { func (*BrandSuggestion) ProtoMessage() {} func (x *BrandSuggestion) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_brand_suggestion_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_brand_suggestion_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -201,7 +201,7 @@ func (x *BrandSuggestion) ProtoReflect() protoreflect.Message { // Deprecated: Use BrandSuggestion.ProtoReflect.Descriptor instead. func (*BrandSuggestion) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_brand_suggestion_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_brand_suggestion_service_proto_rawDescGZIP(), []int{2} } func (x *BrandSuggestion) GetId() string { @@ -232,17 +232,17 @@ func (x *BrandSuggestion) GetState() enums.BrandStateEnum_BrandState { return enums.BrandStateEnum_BrandState(0) } -var File_google_ads_googleads_v16_services_brand_suggestion_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_brand_suggestion_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_brand_suggestion_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_brand_suggestion_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x73, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, + 0x73, 0x2f, 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, 0x73, 0x74, 0x61, 0x74, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, @@ -264,7 +264,7 @@ var file_google_ads_googleads_v16_services_brand_suggestion_service_proto_rawDes 0x67, 0x67, 0x65, 0x73, 0x74, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4a, 0x0a, 0x06, 0x62, 0x72, 0x61, 0x6e, 0x64, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x06, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x73, 0x22, 0x9a, 0x01, 0x0a, 0x0f, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, @@ -274,22 +274,22 @@ var file_google_ads_googleads_v16_services_brand_suggestion_service_proto_rawDes 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x75, 0x72, 0x6c, 0x73, 0x12, 0x4f, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x04, 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, 0x6e, + 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, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x32, 0xb8, 0x02, 0x0a, 0x16, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xd6, 0x01, 0x0a, 0x0d, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x52, 0xda, 0x41, 0x18, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x66, 0x69, 0x78, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x31, 0x3a, - 0x01, 0x2a, 0x22, 0x2c, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x01, 0x2a, 0x22, 0x2c, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x3a, 0x73, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x73, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x67, @@ -298,48 +298,48 @@ var file_google_ads_googleads_v16_services_brand_suggestion_service_proto_rawDes 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x87, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1b, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_brand_suggestion_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_brand_suggestion_service_proto_rawDescData = file_google_ads_googleads_v16_services_brand_suggestion_service_proto_rawDesc + file_google_ads_googleads_v17_services_brand_suggestion_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_brand_suggestion_service_proto_rawDescData = file_google_ads_googleads_v17_services_brand_suggestion_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_brand_suggestion_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_brand_suggestion_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_brand_suggestion_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_brand_suggestion_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_brand_suggestion_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_brand_suggestion_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_brand_suggestion_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_brand_suggestion_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_brand_suggestion_service_proto_rawDescData + return file_google_ads_googleads_v17_services_brand_suggestion_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_brand_suggestion_service_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_google_ads_googleads_v16_services_brand_suggestion_service_proto_goTypes = []interface{}{ - (*SuggestBrandsRequest)(nil), // 0: google.ads.googleads.v16.services.SuggestBrandsRequest - (*SuggestBrandsResponse)(nil), // 1: google.ads.googleads.v16.services.SuggestBrandsResponse - (*BrandSuggestion)(nil), // 2: google.ads.googleads.v16.services.BrandSuggestion - (enums.BrandStateEnum_BrandState)(0), // 3: google.ads.googleads.v16.enums.BrandStateEnum.BrandState +var file_google_ads_googleads_v17_services_brand_suggestion_service_proto_msgTypes = make([]protoimpl.MessageInfo, 3) +var file_google_ads_googleads_v17_services_brand_suggestion_service_proto_goTypes = []interface{}{ + (*SuggestBrandsRequest)(nil), // 0: google.ads.googleads.v17.services.SuggestBrandsRequest + (*SuggestBrandsResponse)(nil), // 1: google.ads.googleads.v17.services.SuggestBrandsResponse + (*BrandSuggestion)(nil), // 2: google.ads.googleads.v17.services.BrandSuggestion + (enums.BrandStateEnum_BrandState)(0), // 3: google.ads.googleads.v17.enums.BrandStateEnum.BrandState } -var file_google_ads_googleads_v16_services_brand_suggestion_service_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v16.services.SuggestBrandsResponse.brands:type_name -> google.ads.googleads.v16.services.BrandSuggestion - 3, // 1: google.ads.googleads.v16.services.BrandSuggestion.state:type_name -> google.ads.googleads.v16.enums.BrandStateEnum.BrandState - 0, // 2: google.ads.googleads.v16.services.BrandSuggestionService.SuggestBrands:input_type -> google.ads.googleads.v16.services.SuggestBrandsRequest - 1, // 3: google.ads.googleads.v16.services.BrandSuggestionService.SuggestBrands:output_type -> google.ads.googleads.v16.services.SuggestBrandsResponse +var file_google_ads_googleads_v17_services_brand_suggestion_service_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v17.services.SuggestBrandsResponse.brands:type_name -> google.ads.googleads.v17.services.BrandSuggestion + 3, // 1: google.ads.googleads.v17.services.BrandSuggestion.state:type_name -> google.ads.googleads.v17.enums.BrandStateEnum.BrandState + 0, // 2: google.ads.googleads.v17.services.BrandSuggestionService.SuggestBrands:input_type -> google.ads.googleads.v17.services.SuggestBrandsRequest + 1, // 3: google.ads.googleads.v17.services.BrandSuggestionService.SuggestBrands:output_type -> google.ads.googleads.v17.services.SuggestBrandsResponse 3, // [3:4] is the sub-list for method output_type 2, // [2:3] is the sub-list for method input_type 2, // [2:2] is the sub-list for extension type_name @@ -347,13 +347,13 @@ var file_google_ads_googleads_v16_services_brand_suggestion_service_proto_depIdx 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_brand_suggestion_service_proto_init() } -func file_google_ads_googleads_v16_services_brand_suggestion_service_proto_init() { - if File_google_ads_googleads_v16_services_brand_suggestion_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_brand_suggestion_service_proto_init() } +func file_google_ads_googleads_v17_services_brand_suggestion_service_proto_init() { + if File_google_ads_googleads_v17_services_brand_suggestion_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_brand_suggestion_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_brand_suggestion_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SuggestBrandsRequest); i { case 0: return &v.state @@ -365,7 +365,7 @@ func file_google_ads_googleads_v16_services_brand_suggestion_service_proto_init( return nil } } - file_google_ads_googleads_v16_services_brand_suggestion_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_brand_suggestion_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SuggestBrandsResponse); i { case 0: return &v.state @@ -377,7 +377,7 @@ func file_google_ads_googleads_v16_services_brand_suggestion_service_proto_init( return nil } } - file_google_ads_googleads_v16_services_brand_suggestion_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_brand_suggestion_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BrandSuggestion); i { case 0: return &v.state @@ -390,23 +390,23 @@ func file_google_ads_googleads_v16_services_brand_suggestion_service_proto_init( } } } - file_google_ads_googleads_v16_services_brand_suggestion_service_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_brand_suggestion_service_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_services_brand_suggestion_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_brand_suggestion_service_proto_rawDesc, NumEnums: 0, NumMessages: 3, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_brand_suggestion_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_brand_suggestion_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_brand_suggestion_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_brand_suggestion_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_brand_suggestion_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_brand_suggestion_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_brand_suggestion_service_proto = out.File - file_google_ads_googleads_v16_services_brand_suggestion_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_brand_suggestion_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_brand_suggestion_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_brand_suggestion_service_proto = out.File + file_google_ads_googleads_v17_services_brand_suggestion_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_brand_suggestion_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_brand_suggestion_service_proto_depIdxs = nil } diff --git a/services/brand_suggestion_service_grpc.pb.go b/services/brand_suggestion_service_grpc.pb.go index d33d1fc6..06eaed1c 100644 --- a/services/brand_suggestion_service_grpc.pb.go +++ b/services/brand_suggestion_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/brand_suggestion_service.proto +// source: google/ads/googleads/v17/services/brand_suggestion_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - BrandSuggestionService_SuggestBrands_FullMethodName = "/google.ads.googleads.v16.services.BrandSuggestionService/SuggestBrands" + BrandSuggestionService_SuggestBrands_FullMethodName = "/google.ads.googleads.v17.services.BrandSuggestionService/SuggestBrands" ) // BrandSuggestionServiceClient is the client API for BrandSuggestionService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// This service will suggest brands based on a prefix. type BrandSuggestionServiceClient interface { // Rpc to return a list of matching brands based on a prefix for this // customer. @@ -54,8 +56,9 @@ func NewBrandSuggestionServiceClient(cc grpc.ClientConnInterface) BrandSuggestio } func (c *brandSuggestionServiceClient) SuggestBrands(ctx context.Context, in *SuggestBrandsRequest, opts ...grpc.CallOption) (*SuggestBrandsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(SuggestBrandsResponse) - err := c.cc.Invoke(ctx, BrandSuggestionService_SuggestBrands_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, BrandSuggestionService_SuggestBrands_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -65,6 +68,8 @@ func (c *brandSuggestionServiceClient) SuggestBrands(ctx context.Context, in *Su // BrandSuggestionServiceServer is the server API for BrandSuggestionService service. // All implementations must embed UnimplementedBrandSuggestionServiceServer // for forward compatibility +// +// This service will suggest brands based on a prefix. type BrandSuggestionServiceServer interface { // Rpc to return a list of matching brands based on a prefix for this // customer. @@ -115,7 +120,7 @@ func _BrandSuggestionService_SuggestBrands_Handler(srv interface{}, ctx context. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var BrandSuggestionService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.BrandSuggestionService", + ServiceName: "google.ads.googleads.v17.services.BrandSuggestionService", HandlerType: (*BrandSuggestionServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -124,5 +129,5 @@ var BrandSuggestionService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/brand_suggestion_service.proto", + Metadata: "google/ads/googleads/v17/services/brand_suggestion_service.proto", } diff --git a/services/campaign_asset_service.pb.go b/services/campaign_asset_service.pb.go index d59d0557..7e685514 100644 --- a/services/campaign_asset_service.pb.go +++ b/services/campaign_asset_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_asset_service.proto +// source: google/ads/googleads/v17/services/campaign_asset_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [CampaignAssetService.MutateCampaignAssets][google.ads.googleads.v16.services.CampaignAssetService.MutateCampaignAssets]. +// [CampaignAssetService.MutateCampaignAssets][google.ads.googleads.v17.services.CampaignAssetService.MutateCampaignAssets]. type MutateCampaignAssetsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -60,13 +60,13 @@ type MutateCampaignAssetsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateCampaignAssetsRequest) Reset() { *x = MutateCampaignAssetsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_asset_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_asset_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateCampaignAssetsRequest) String() string { func (*MutateCampaignAssetsRequest) ProtoMessage() {} func (x *MutateCampaignAssetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_asset_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_asset_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateCampaignAssetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignAssetsRequest.ProtoReflect.Descriptor instead. func (*MutateCampaignAssetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_asset_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_campaign_asset_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCampaignAssetsRequest) GetCustomerId() string { @@ -151,7 +151,7 @@ type CampaignAssetOperation struct { func (x *CampaignAssetOperation) Reset() { *x = CampaignAssetOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_asset_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_asset_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164,7 +164,7 @@ func (x *CampaignAssetOperation) String() string { func (*CampaignAssetOperation) ProtoMessage() {} func (x *CampaignAssetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_asset_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_asset_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177,7 +177,7 @@ func (x *CampaignAssetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignAssetOperation.ProtoReflect.Descriptor instead. func (*CampaignAssetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_asset_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_campaign_asset_service_proto_rawDescGZIP(), []int{1} } func (x *CampaignAssetOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -263,7 +263,7 @@ type MutateCampaignAssetsResponse struct { func (x *MutateCampaignAssetsResponse) Reset() { *x = MutateCampaignAssetsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_asset_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_asset_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -276,7 +276,7 @@ func (x *MutateCampaignAssetsResponse) String() string { func (*MutateCampaignAssetsResponse) ProtoMessage() {} func (x *MutateCampaignAssetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_asset_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_asset_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -289,7 +289,7 @@ func (x *MutateCampaignAssetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignAssetsResponse.ProtoReflect.Descriptor instead. func (*MutateCampaignAssetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_asset_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_campaign_asset_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCampaignAssetsResponse) GetPartialFailureError() *status.Status { @@ -323,7 +323,7 @@ type MutateCampaignAssetResult struct { func (x *MutateCampaignAssetResult) Reset() { *x = MutateCampaignAssetResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_asset_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_asset_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -336,7 +336,7 @@ func (x *MutateCampaignAssetResult) String() string { func (*MutateCampaignAssetResult) ProtoMessage() {} func (x *MutateCampaignAssetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_asset_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_asset_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -349,7 +349,7 @@ func (x *MutateCampaignAssetResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignAssetResult.ProtoReflect.Descriptor instead. func (*MutateCampaignAssetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_asset_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_campaign_asset_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCampaignAssetResult) GetResourceName() string { @@ -366,21 +366,21 @@ func (x *MutateCampaignAssetResult) GetCampaignAsset() *resources.CampaignAsset return nil } -var File_google_ads_googleads_v16_services_campaign_asset_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_campaign_asset_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_campaign_asset_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_campaign_asset_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 0x67, 0x6f, 0x6f, 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, @@ -400,7 +400,7 @@ var file_google_ads_googleads_v16_services_campaign_asset_service_proto_rawDesc 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5e, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, @@ -412,7 +412,7 @@ var file_google_ads_googleads_v16_services_campaign_asset_service_proto_rawDesc 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, @@ -424,12 +424,12 @@ var file_google_ads_googleads_v16_services_campaign_asset_service_proto_rawDesc 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x4b, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 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, 0x72, + 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x4b, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 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, 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, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x45, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2b, 0xfa, @@ -446,7 +446,7 @@ var file_google_ads_googleads_v16_services_campaign_asset_service_proto_rawDesc 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x56, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xc7, 0x01, 0x0a, 0x19, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, @@ -459,23 +459,23 @@ var file_google_ads_googleads_v16_services_campaign_asset_service_proto_rawDesc 0x6d, 0x65, 0x12, 0x58, 0x0a, 0x0e, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x02, 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, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0d, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x32, 0xd1, 0x02, 0x0a, 0x14, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xf1, 0x01, 0x0a, 0x14, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x58, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x39, - 0x3a, 0x01, 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x3a, 0x01, 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, @@ -485,57 +485,57 @@ var file_google_ads_googleads_v16_services_campaign_asset_service_proto_rawDesc 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x85, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x19, 0x43, 0x61, 0x6d, 0x70, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x19, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, + 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_campaign_asset_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_campaign_asset_service_proto_rawDescData = file_google_ads_googleads_v16_services_campaign_asset_service_proto_rawDesc + file_google_ads_googleads_v17_services_campaign_asset_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_campaign_asset_service_proto_rawDescData = file_google_ads_googleads_v17_services_campaign_asset_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_campaign_asset_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_campaign_asset_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_campaign_asset_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_campaign_asset_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_campaign_asset_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_campaign_asset_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_campaign_asset_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_campaign_asset_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_campaign_asset_service_proto_rawDescData + return file_google_ads_googleads_v17_services_campaign_asset_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_campaign_asset_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_campaign_asset_service_proto_goTypes = []interface{}{ - (*MutateCampaignAssetsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCampaignAssetsRequest - (*CampaignAssetOperation)(nil), // 1: google.ads.googleads.v16.services.CampaignAssetOperation - (*MutateCampaignAssetsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateCampaignAssetsResponse - (*MutateCampaignAssetResult)(nil), // 3: google.ads.googleads.v16.services.MutateCampaignAssetResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_campaign_asset_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_campaign_asset_service_proto_goTypes = []interface{}{ + (*MutateCampaignAssetsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCampaignAssetsRequest + (*CampaignAssetOperation)(nil), // 1: google.ads.googleads.v17.services.CampaignAssetOperation + (*MutateCampaignAssetsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateCampaignAssetsResponse + (*MutateCampaignAssetResult)(nil), // 3: google.ads.googleads.v17.services.MutateCampaignAssetResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.CampaignAsset)(nil), // 6: google.ads.googleads.v16.resources.CampaignAsset + (*resources.CampaignAsset)(nil), // 6: google.ads.googleads.v17.resources.CampaignAsset (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_campaign_asset_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateCampaignAssetsRequest.operations:type_name -> google.ads.googleads.v16.services.CampaignAssetOperation - 4, // 1: google.ads.googleads.v16.services.MutateCampaignAssetsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.CampaignAssetOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.CampaignAssetOperation.create:type_name -> google.ads.googleads.v16.resources.CampaignAsset - 6, // 4: google.ads.googleads.v16.services.CampaignAssetOperation.update:type_name -> google.ads.googleads.v16.resources.CampaignAsset - 7, // 5: google.ads.googleads.v16.services.MutateCampaignAssetsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v16.services.MutateCampaignAssetsResponse.results:type_name -> google.ads.googleads.v16.services.MutateCampaignAssetResult - 6, // 7: google.ads.googleads.v16.services.MutateCampaignAssetResult.campaign_asset:type_name -> google.ads.googleads.v16.resources.CampaignAsset - 0, // 8: google.ads.googleads.v16.services.CampaignAssetService.MutateCampaignAssets:input_type -> google.ads.googleads.v16.services.MutateCampaignAssetsRequest - 2, // 9: google.ads.googleads.v16.services.CampaignAssetService.MutateCampaignAssets:output_type -> google.ads.googleads.v16.services.MutateCampaignAssetsResponse +var file_google_ads_googleads_v17_services_campaign_asset_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateCampaignAssetsRequest.operations:type_name -> google.ads.googleads.v17.services.CampaignAssetOperation + 4, // 1: google.ads.googleads.v17.services.MutateCampaignAssetsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.CampaignAssetOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.CampaignAssetOperation.create:type_name -> google.ads.googleads.v17.resources.CampaignAsset + 6, // 4: google.ads.googleads.v17.services.CampaignAssetOperation.update:type_name -> google.ads.googleads.v17.resources.CampaignAsset + 7, // 5: google.ads.googleads.v17.services.MutateCampaignAssetsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v17.services.MutateCampaignAssetsResponse.results:type_name -> google.ads.googleads.v17.services.MutateCampaignAssetResult + 6, // 7: google.ads.googleads.v17.services.MutateCampaignAssetResult.campaign_asset:type_name -> google.ads.googleads.v17.resources.CampaignAsset + 0, // 8: google.ads.googleads.v17.services.CampaignAssetService.MutateCampaignAssets:input_type -> google.ads.googleads.v17.services.MutateCampaignAssetsRequest + 2, // 9: google.ads.googleads.v17.services.CampaignAssetService.MutateCampaignAssets:output_type -> google.ads.googleads.v17.services.MutateCampaignAssetsResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -543,13 +543,13 @@ var file_google_ads_googleads_v16_services_campaign_asset_service_proto_depIdxs 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_campaign_asset_service_proto_init() } -func file_google_ads_googleads_v16_services_campaign_asset_service_proto_init() { - if File_google_ads_googleads_v16_services_campaign_asset_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_campaign_asset_service_proto_init() } +func file_google_ads_googleads_v17_services_campaign_asset_service_proto_init() { + if File_google_ads_googleads_v17_services_campaign_asset_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_campaign_asset_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_asset_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignAssetsRequest); i { case 0: return &v.state @@ -561,7 +561,7 @@ func file_google_ads_googleads_v16_services_campaign_asset_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_campaign_asset_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_asset_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignAssetOperation); i { case 0: return &v.state @@ -573,7 +573,7 @@ func file_google_ads_googleads_v16_services_campaign_asset_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_campaign_asset_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_asset_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignAssetsResponse); i { case 0: return &v.state @@ -585,7 +585,7 @@ func file_google_ads_googleads_v16_services_campaign_asset_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_campaign_asset_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_asset_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignAssetResult); i { case 0: return &v.state @@ -598,7 +598,7 @@ func file_google_ads_googleads_v16_services_campaign_asset_service_proto_init() } } } - file_google_ads_googleads_v16_services_campaign_asset_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_campaign_asset_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CampaignAssetOperation_Create)(nil), (*CampaignAssetOperation_Update)(nil), (*CampaignAssetOperation_Remove)(nil), @@ -607,18 +607,18 @@ func file_google_ads_googleads_v16_services_campaign_asset_service_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_campaign_asset_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_campaign_asset_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_campaign_asset_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_campaign_asset_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_campaign_asset_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_campaign_asset_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_campaign_asset_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_campaign_asset_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_campaign_asset_service_proto = out.File - file_google_ads_googleads_v16_services_campaign_asset_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_campaign_asset_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_campaign_asset_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_campaign_asset_service_proto = out.File + file_google_ads_googleads_v17_services_campaign_asset_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_campaign_asset_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_campaign_asset_service_proto_depIdxs = nil } diff --git a/services/campaign_asset_service_grpc.pb.go b/services/campaign_asset_service_grpc.pb.go index 0860dfe4..f94a72b3 100644 --- a/services/campaign_asset_service_grpc.pb.go +++ b/services/campaign_asset_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_asset_service.proto +// source: google/ads/googleads/v17/services/campaign_asset_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CampaignAssetService_MutateCampaignAssets_FullMethodName = "/google.ads.googleads.v16.services.CampaignAssetService/MutateCampaignAssets" + CampaignAssetService_MutateCampaignAssets_FullMethodName = "/google.ads.googleads.v17.services.CampaignAssetService/MutateCampaignAssets" ) // CampaignAssetServiceClient is the client API for CampaignAssetService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage campaign assets. type CampaignAssetServiceClient interface { // Creates, updates, or removes campaign assets. Operation statuses are // returned. @@ -69,8 +71,9 @@ func NewCampaignAssetServiceClient(cc grpc.ClientConnInterface) CampaignAssetSer } func (c *campaignAssetServiceClient) MutateCampaignAssets(ctx context.Context, in *MutateCampaignAssetsRequest, opts ...grpc.CallOption) (*MutateCampaignAssetsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCampaignAssetsResponse) - err := c.cc.Invoke(ctx, CampaignAssetService_MutateCampaignAssets_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CampaignAssetService_MutateCampaignAssets_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -80,6 +83,8 @@ func (c *campaignAssetServiceClient) MutateCampaignAssets(ctx context.Context, i // CampaignAssetServiceServer is the server API for CampaignAssetService service. // All implementations must embed UnimplementedCampaignAssetServiceServer // for forward compatibility +// +// Service to manage campaign assets. type CampaignAssetServiceServer interface { // Creates, updates, or removes campaign assets. Operation statuses are // returned. @@ -144,7 +149,7 @@ func _CampaignAssetService_MutateCampaignAssets_Handler(srv interface{}, ctx con // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CampaignAssetService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CampaignAssetService", + ServiceName: "google.ads.googleads.v17.services.CampaignAssetService", HandlerType: (*CampaignAssetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -153,5 +158,5 @@ var CampaignAssetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/campaign_asset_service.proto", + Metadata: "google/ads/googleads/v17/services/campaign_asset_service.proto", } diff --git a/services/campaign_asset_set_service.pb.go b/services/campaign_asset_set_service.pb.go index b243447b..7dba10cd 100644 --- a/services/campaign_asset_set_service.pb.go +++ b/services/campaign_asset_set_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_asset_set_service.proto +// source: google/ads/googleads/v17/services/campaign_asset_set_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [CampaignAssetSetService.MutateCampaignAssetSets][google.ads.googleads.v16.services.CampaignAssetSetService.MutateCampaignAssetSets]. +// [CampaignAssetSetService.MutateCampaignAssetSets][google.ads.googleads.v17.services.CampaignAssetSetService.MutateCampaignAssetSets]. type MutateCampaignAssetSetsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -61,13 +61,13 @@ type MutateCampaignAssetSetsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateCampaignAssetSetsRequest) Reset() { *x = MutateCampaignAssetSetsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80,7 +80,7 @@ func (x *MutateCampaignAssetSetsRequest) String() string { func (*MutateCampaignAssetSetsRequest) ProtoMessage() {} func (x *MutateCampaignAssetSetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93,7 +93,7 @@ func (x *MutateCampaignAssetSetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignAssetSetsRequest.ProtoReflect.Descriptor instead. func (*MutateCampaignAssetSetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCampaignAssetSetsRequest) GetCustomerId() string { @@ -149,7 +149,7 @@ type CampaignAssetSetOperation struct { func (x *CampaignAssetSetOperation) Reset() { *x = CampaignAssetSetOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -162,7 +162,7 @@ func (x *CampaignAssetSetOperation) String() string { func (*CampaignAssetSetOperation) ProtoMessage() {} func (x *CampaignAssetSetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -175,7 +175,7 @@ func (x *CampaignAssetSetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignAssetSetOperation.ProtoReflect.Descriptor instead. func (*CampaignAssetSetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_rawDescGZIP(), []int{1} } func (m *CampaignAssetSetOperation) GetOperation() isCampaignAssetSetOperation_Operation { @@ -238,7 +238,7 @@ type MutateCampaignAssetSetsResponse struct { func (x *MutateCampaignAssetSetsResponse) Reset() { *x = MutateCampaignAssetSetsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -251,7 +251,7 @@ func (x *MutateCampaignAssetSetsResponse) String() string { func (*MutateCampaignAssetSetsResponse) ProtoMessage() {} func (x *MutateCampaignAssetSetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -264,7 +264,7 @@ func (x *MutateCampaignAssetSetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignAssetSetsResponse.ProtoReflect.Descriptor instead. func (*MutateCampaignAssetSetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCampaignAssetSetsResponse) GetResults() []*MutateCampaignAssetSetResult { @@ -298,7 +298,7 @@ type MutateCampaignAssetSetResult struct { func (x *MutateCampaignAssetSetResult) Reset() { *x = MutateCampaignAssetSetResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -311,7 +311,7 @@ func (x *MutateCampaignAssetSetResult) String() string { func (*MutateCampaignAssetSetResult) ProtoMessage() {} func (x *MutateCampaignAssetSetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -324,7 +324,7 @@ func (x *MutateCampaignAssetSetResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignAssetSetResult.ProtoReflect.Descriptor instead. func (*MutateCampaignAssetSetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCampaignAssetSetResult) GetResourceName() string { @@ -341,21 +341,21 @@ func (x *MutateCampaignAssetSetResult) GetCampaignAssetSet() *resources.Campaign return nil } -var File_google_ads_googleads_v16_services_campaign_asset_set_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_campaign_asset_set_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_campaign_asset_set_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 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, 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, 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, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, @@ -374,7 +374,7 @@ var file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_rawD 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x61, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, @@ -385,7 +385,7 @@ var file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_rawD 0x74, 0x65, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, + 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, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, @@ -394,7 +394,7 @@ var file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_rawD 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4e, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, + 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x48, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, @@ -407,7 +407,7 @@ var file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_rawD 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x59, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x46, 0x0a, 0x15, 0x70, @@ -425,7 +425,7 @@ var file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_rawD 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x62, 0x0a, 0x12, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 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, + 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x52, 0x10, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x32, 0xe0, 0x02, @@ -433,17 +433,17 @@ var file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_rawD 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xfd, 0x01, 0x0a, 0x17, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x73, 0x12, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5b, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3c, 0x3a, 0x01, 0x2a, - 0x22, 0x37, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, + 0x22, 0x37, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, @@ -453,55 +453,55 @@ var file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_rawD 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x88, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1c, 0x43, 0x61, 0x6d, 0x70, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1c, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, + 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, + 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, - 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_rawDescData = file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_rawDesc + file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_rawDescData = file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_rawDescData + return file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_goTypes = []interface{}{ - (*MutateCampaignAssetSetsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCampaignAssetSetsRequest - (*CampaignAssetSetOperation)(nil), // 1: google.ads.googleads.v16.services.CampaignAssetSetOperation - (*MutateCampaignAssetSetsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateCampaignAssetSetsResponse - (*MutateCampaignAssetSetResult)(nil), // 3: google.ads.googleads.v16.services.MutateCampaignAssetSetResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - (*resources.CampaignAssetSet)(nil), // 5: google.ads.googleads.v16.resources.CampaignAssetSet +var file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_goTypes = []interface{}{ + (*MutateCampaignAssetSetsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCampaignAssetSetsRequest + (*CampaignAssetSetOperation)(nil), // 1: google.ads.googleads.v17.services.CampaignAssetSetOperation + (*MutateCampaignAssetSetsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateCampaignAssetSetsResponse + (*MutateCampaignAssetSetResult)(nil), // 3: google.ads.googleads.v17.services.MutateCampaignAssetSetResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + (*resources.CampaignAssetSet)(nil), // 5: google.ads.googleads.v17.resources.CampaignAssetSet (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateCampaignAssetSetsRequest.operations:type_name -> google.ads.googleads.v16.services.CampaignAssetSetOperation - 4, // 1: google.ads.googleads.v16.services.MutateCampaignAssetSetsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.CampaignAssetSetOperation.create:type_name -> google.ads.googleads.v16.resources.CampaignAssetSet - 3, // 3: google.ads.googleads.v16.services.MutateCampaignAssetSetsResponse.results:type_name -> google.ads.googleads.v16.services.MutateCampaignAssetSetResult - 6, // 4: google.ads.googleads.v16.services.MutateCampaignAssetSetsResponse.partial_failure_error:type_name -> google.rpc.Status - 5, // 5: google.ads.googleads.v16.services.MutateCampaignAssetSetResult.campaign_asset_set:type_name -> google.ads.googleads.v16.resources.CampaignAssetSet - 0, // 6: google.ads.googleads.v16.services.CampaignAssetSetService.MutateCampaignAssetSets:input_type -> google.ads.googleads.v16.services.MutateCampaignAssetSetsRequest - 2, // 7: google.ads.googleads.v16.services.CampaignAssetSetService.MutateCampaignAssetSets:output_type -> google.ads.googleads.v16.services.MutateCampaignAssetSetsResponse +var file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateCampaignAssetSetsRequest.operations:type_name -> google.ads.googleads.v17.services.CampaignAssetSetOperation + 4, // 1: google.ads.googleads.v17.services.MutateCampaignAssetSetsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.CampaignAssetSetOperation.create:type_name -> google.ads.googleads.v17.resources.CampaignAssetSet + 3, // 3: google.ads.googleads.v17.services.MutateCampaignAssetSetsResponse.results:type_name -> google.ads.googleads.v17.services.MutateCampaignAssetSetResult + 6, // 4: google.ads.googleads.v17.services.MutateCampaignAssetSetsResponse.partial_failure_error:type_name -> google.rpc.Status + 5, // 5: google.ads.googleads.v17.services.MutateCampaignAssetSetResult.campaign_asset_set:type_name -> google.ads.googleads.v17.resources.CampaignAssetSet + 0, // 6: google.ads.googleads.v17.services.CampaignAssetSetService.MutateCampaignAssetSets:input_type -> google.ads.googleads.v17.services.MutateCampaignAssetSetsRequest + 2, // 7: google.ads.googleads.v17.services.CampaignAssetSetService.MutateCampaignAssetSets:output_type -> google.ads.googleads.v17.services.MutateCampaignAssetSetsResponse 7, // [7:8] is the sub-list for method output_type 6, // [6:7] is the sub-list for method input_type 6, // [6:6] is the sub-list for extension type_name @@ -509,13 +509,13 @@ var file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_depI 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_init() } -func file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_init() { - if File_google_ads_googleads_v16_services_campaign_asset_set_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_init() } +func file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_init() { + if File_google_ads_googleads_v17_services_campaign_asset_set_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignAssetSetsRequest); i { case 0: return &v.state @@ -527,7 +527,7 @@ func file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_ini return nil } } - file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignAssetSetOperation); i { case 0: return &v.state @@ -539,7 +539,7 @@ func file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_ini return nil } } - file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignAssetSetsResponse); i { case 0: return &v.state @@ -551,7 +551,7 @@ func file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_ini return nil } } - file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignAssetSetResult); i { case 0: return &v.state @@ -564,7 +564,7 @@ func file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_ini } } } - file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CampaignAssetSetOperation_Create)(nil), (*CampaignAssetSetOperation_Remove)(nil), } @@ -572,18 +572,18 @@ func file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_ini out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_campaign_asset_set_service_proto = out.File - file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_campaign_asset_set_service_proto = out.File + file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_depIdxs = nil } diff --git a/services/campaign_asset_set_service_grpc.pb.go b/services/campaign_asset_set_service_grpc.pb.go index bcee551b..450600c5 100644 --- a/services/campaign_asset_set_service_grpc.pb.go +++ b/services/campaign_asset_set_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_asset_set_service.proto +// source: google/ads/googleads/v17/services/campaign_asset_set_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CampaignAssetSetService_MutateCampaignAssetSets_FullMethodName = "/google.ads.googleads.v16.services.CampaignAssetSetService/MutateCampaignAssetSets" + CampaignAssetSetService_MutateCampaignAssetSets_FullMethodName = "/google.ads.googleads.v17.services.CampaignAssetSetService/MutateCampaignAssetSets" ) // CampaignAssetSetServiceClient is the client API for CampaignAssetSetService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage campaign asset set type CampaignAssetSetServiceClient interface { // Creates, updates or removes campaign asset sets. Operation statuses are // returned. @@ -54,8 +56,9 @@ func NewCampaignAssetSetServiceClient(cc grpc.ClientConnInterface) CampaignAsset } func (c *campaignAssetSetServiceClient) MutateCampaignAssetSets(ctx context.Context, in *MutateCampaignAssetSetsRequest, opts ...grpc.CallOption) (*MutateCampaignAssetSetsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCampaignAssetSetsResponse) - err := c.cc.Invoke(ctx, CampaignAssetSetService_MutateCampaignAssetSets_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CampaignAssetSetService_MutateCampaignAssetSets_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -65,6 +68,8 @@ func (c *campaignAssetSetServiceClient) MutateCampaignAssetSets(ctx context.Cont // CampaignAssetSetServiceServer is the server API for CampaignAssetSetService service. // All implementations must embed UnimplementedCampaignAssetSetServiceServer // for forward compatibility +// +// Service to manage campaign asset set type CampaignAssetSetServiceServer interface { // Creates, updates or removes campaign asset sets. Operation statuses are // returned. @@ -115,7 +120,7 @@ func _CampaignAssetSetService_MutateCampaignAssetSets_Handler(srv interface{}, c // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CampaignAssetSetService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CampaignAssetSetService", + ServiceName: "google.ads.googleads.v17.services.CampaignAssetSetService", HandlerType: (*CampaignAssetSetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -124,5 +129,5 @@ var CampaignAssetSetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/campaign_asset_set_service.proto", + Metadata: "google/ads/googleads/v17/services/campaign_asset_set_service.proto", } diff --git a/services/campaign_bid_modifier_service.pb.go b/services/campaign_bid_modifier_service.pb.go index f861c563..f202ff5d 100644 --- a/services/campaign_bid_modifier_service.pb.go +++ b/services/campaign_bid_modifier_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_bid_modifier_service.proto +// source: google/ads/googleads/v17/services/campaign_bid_modifier_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [CampaignBidModifierService.MutateCampaignBidModifiers][google.ads.googleads.v16.services.CampaignBidModifierService.MutateCampaignBidModifiers]. +// [CampaignBidModifierService.MutateCampaignBidModifiers][google.ads.googleads.v17.services.CampaignBidModifierService.MutateCampaignBidModifiers]. type MutateCampaignBidModifiersRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -62,13 +62,13 @@ type MutateCampaignBidModifiersRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateCampaignBidModifiersRequest) Reset() { *x = MutateCampaignBidModifiersRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81,7 +81,7 @@ func (x *MutateCampaignBidModifiersRequest) String() string { func (*MutateCampaignBidModifiersRequest) ProtoMessage() {} func (x *MutateCampaignBidModifiersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_bid_modifier_service_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 *MutateCampaignBidModifiersRequest) ProtoReflect() protoreflect.Message // Deprecated: Use MutateCampaignBidModifiersRequest.ProtoReflect.Descriptor instead. func (*MutateCampaignBidModifiersRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCampaignBidModifiersRequest) GetCustomerId() string { @@ -153,7 +153,7 @@ type CampaignBidModifierOperation struct { func (x *CampaignBidModifierOperation) Reset() { *x = CampaignBidModifierOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -166,7 +166,7 @@ func (x *CampaignBidModifierOperation) String() string { func (*CampaignBidModifierOperation) ProtoMessage() {} func (x *CampaignBidModifierOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -179,7 +179,7 @@ func (x *CampaignBidModifierOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignBidModifierOperation.ProtoReflect.Descriptor instead. func (*CampaignBidModifierOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_rawDescGZIP(), []int{1} } func (x *CampaignBidModifierOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -265,7 +265,7 @@ type MutateCampaignBidModifiersResponse struct { func (x *MutateCampaignBidModifiersResponse) Reset() { *x = MutateCampaignBidModifiersResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -278,7 +278,7 @@ func (x *MutateCampaignBidModifiersResponse) String() string { func (*MutateCampaignBidModifiersResponse) ProtoMessage() {} func (x *MutateCampaignBidModifiersResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -291,7 +291,7 @@ func (x *MutateCampaignBidModifiersResponse) ProtoReflect() protoreflect.Message // Deprecated: Use MutateCampaignBidModifiersResponse.ProtoReflect.Descriptor instead. func (*MutateCampaignBidModifiersResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCampaignBidModifiersResponse) GetPartialFailureError() *status.Status { @@ -325,7 +325,7 @@ type MutateCampaignBidModifierResult struct { func (x *MutateCampaignBidModifierResult) Reset() { *x = MutateCampaignBidModifierResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -338,7 +338,7 @@ func (x *MutateCampaignBidModifierResult) String() string { func (*MutateCampaignBidModifierResult) ProtoMessage() {} func (x *MutateCampaignBidModifierResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -351,7 +351,7 @@ func (x *MutateCampaignBidModifierResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignBidModifierResult.ProtoReflect.Descriptor instead. func (*MutateCampaignBidModifierResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCampaignBidModifierResult) GetResourceName() string { @@ -368,21 +368,21 @@ func (x *MutateCampaignBidModifierResult) GetCampaignBidModifier() *resources.Ca return nil } -var File_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_campaign_bid_modifier_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, 0x65, 0x73, 0x70, 0x6f, + 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, 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, + 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, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, @@ -403,7 +403,7 @@ var file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_r 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x64, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, @@ -415,7 +415,7 @@ var file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_r 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, @@ -428,13 +428,13 @@ var file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_r 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x51, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 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, 0x72, + 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x51, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x4b, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x31, 0xfa, 0x41, 0x2e, 0x0a, 0x2c, @@ -451,7 +451,7 @@ var file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_r 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x5c, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, @@ -466,7 +466,7 @@ var file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_r 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x13, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x32, 0xef, 0x02, 0x0a, 0x1a, 0x43, 0x61, @@ -475,16 +475,16 @@ var file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_r 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5e, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, - 0xd3, 0xe4, 0x93, 0x02, 0x3f, 0x3a, 0x01, 0x2a, 0x22, 0x3a, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, + 0xd3, 0xe4, 0x93, 0x02, 0x3f, 0x3a, 0x01, 0x2a, 0x22, 0x3a, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x73, 0x3a, 0x6d, 0x75, @@ -494,59 +494,59 @@ var file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_r 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x8b, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1f, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, + 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_rawDescData = file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_rawDesc + file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_rawDescData = file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_rawDescData + return file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_goTypes = []interface{}{ - (*MutateCampaignBidModifiersRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCampaignBidModifiersRequest - (*CampaignBidModifierOperation)(nil), // 1: google.ads.googleads.v16.services.CampaignBidModifierOperation - (*MutateCampaignBidModifiersResponse)(nil), // 2: google.ads.googleads.v16.services.MutateCampaignBidModifiersResponse - (*MutateCampaignBidModifierResult)(nil), // 3: google.ads.googleads.v16.services.MutateCampaignBidModifierResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_goTypes = []interface{}{ + (*MutateCampaignBidModifiersRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCampaignBidModifiersRequest + (*CampaignBidModifierOperation)(nil), // 1: google.ads.googleads.v17.services.CampaignBidModifierOperation + (*MutateCampaignBidModifiersResponse)(nil), // 2: google.ads.googleads.v17.services.MutateCampaignBidModifiersResponse + (*MutateCampaignBidModifierResult)(nil), // 3: google.ads.googleads.v17.services.MutateCampaignBidModifierResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.CampaignBidModifier)(nil), // 6: google.ads.googleads.v16.resources.CampaignBidModifier + (*resources.CampaignBidModifier)(nil), // 6: google.ads.googleads.v17.resources.CampaignBidModifier (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateCampaignBidModifiersRequest.operations:type_name -> google.ads.googleads.v16.services.CampaignBidModifierOperation - 4, // 1: google.ads.googleads.v16.services.MutateCampaignBidModifiersRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.CampaignBidModifierOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.CampaignBidModifierOperation.create:type_name -> google.ads.googleads.v16.resources.CampaignBidModifier - 6, // 4: google.ads.googleads.v16.services.CampaignBidModifierOperation.update:type_name -> google.ads.googleads.v16.resources.CampaignBidModifier - 7, // 5: google.ads.googleads.v16.services.MutateCampaignBidModifiersResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v16.services.MutateCampaignBidModifiersResponse.results:type_name -> google.ads.googleads.v16.services.MutateCampaignBidModifierResult - 6, // 7: google.ads.googleads.v16.services.MutateCampaignBidModifierResult.campaign_bid_modifier:type_name -> google.ads.googleads.v16.resources.CampaignBidModifier - 0, // 8: google.ads.googleads.v16.services.CampaignBidModifierService.MutateCampaignBidModifiers:input_type -> google.ads.googleads.v16.services.MutateCampaignBidModifiersRequest - 2, // 9: google.ads.googleads.v16.services.CampaignBidModifierService.MutateCampaignBidModifiers:output_type -> google.ads.googleads.v16.services.MutateCampaignBidModifiersResponse +var file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateCampaignBidModifiersRequest.operations:type_name -> google.ads.googleads.v17.services.CampaignBidModifierOperation + 4, // 1: google.ads.googleads.v17.services.MutateCampaignBidModifiersRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.CampaignBidModifierOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.CampaignBidModifierOperation.create:type_name -> google.ads.googleads.v17.resources.CampaignBidModifier + 6, // 4: google.ads.googleads.v17.services.CampaignBidModifierOperation.update:type_name -> google.ads.googleads.v17.resources.CampaignBidModifier + 7, // 5: google.ads.googleads.v17.services.MutateCampaignBidModifiersResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v17.services.MutateCampaignBidModifiersResponse.results:type_name -> google.ads.googleads.v17.services.MutateCampaignBidModifierResult + 6, // 7: google.ads.googleads.v17.services.MutateCampaignBidModifierResult.campaign_bid_modifier:type_name -> google.ads.googleads.v17.resources.CampaignBidModifier + 0, // 8: google.ads.googleads.v17.services.CampaignBidModifierService.MutateCampaignBidModifiers:input_type -> google.ads.googleads.v17.services.MutateCampaignBidModifiersRequest + 2, // 9: google.ads.googleads.v17.services.CampaignBidModifierService.MutateCampaignBidModifiers:output_type -> google.ads.googleads.v17.services.MutateCampaignBidModifiersResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -554,13 +554,13 @@ var file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_d 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_init() } -func file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_init() { - if File_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_init() } +func file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_init() { + if File_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignBidModifiersRequest); i { case 0: return &v.state @@ -572,7 +572,7 @@ func file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_ return nil } } - file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignBidModifierOperation); i { case 0: return &v.state @@ -584,7 +584,7 @@ func file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_ return nil } } - file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignBidModifiersResponse); i { case 0: return &v.state @@ -596,7 +596,7 @@ func file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_ return nil } } - file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignBidModifierResult); i { case 0: return &v.state @@ -609,7 +609,7 @@ func file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_ } } } - file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CampaignBidModifierOperation_Create)(nil), (*CampaignBidModifierOperation_Update)(nil), (*CampaignBidModifierOperation_Remove)(nil), @@ -618,18 +618,18 @@ func file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_ out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto = out.File - file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto = out.File + file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_depIdxs = nil } diff --git a/services/campaign_bid_modifier_service_grpc.pb.go b/services/campaign_bid_modifier_service_grpc.pb.go index 76988550..372c3772 100644 --- a/services/campaign_bid_modifier_service_grpc.pb.go +++ b/services/campaign_bid_modifier_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_bid_modifier_service.proto +// source: google/ads/googleads/v17/services/campaign_bid_modifier_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CampaignBidModifierService_MutateCampaignBidModifiers_FullMethodName = "/google.ads.googleads.v16.services.CampaignBidModifierService/MutateCampaignBidModifiers" + CampaignBidModifierService_MutateCampaignBidModifiers_FullMethodName = "/google.ads.googleads.v17.services.CampaignBidModifierService/MutateCampaignBidModifiers" ) // CampaignBidModifierServiceClient is the client API for CampaignBidModifierService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage campaign bid modifiers. type CampaignBidModifierServiceClient interface { // Creates, updates, or removes campaign bid modifiers. // Operation statuses are returned. @@ -79,8 +81,9 @@ func NewCampaignBidModifierServiceClient(cc grpc.ClientConnInterface) CampaignBi } func (c *campaignBidModifierServiceClient) MutateCampaignBidModifiers(ctx context.Context, in *MutateCampaignBidModifiersRequest, opts ...grpc.CallOption) (*MutateCampaignBidModifiersResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCampaignBidModifiersResponse) - err := c.cc.Invoke(ctx, CampaignBidModifierService_MutateCampaignBidModifiers_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CampaignBidModifierService_MutateCampaignBidModifiers_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -90,6 +93,8 @@ func (c *campaignBidModifierServiceClient) MutateCampaignBidModifiers(ctx contex // CampaignBidModifierServiceServer is the server API for CampaignBidModifierService service. // All implementations must embed UnimplementedCampaignBidModifierServiceServer // for forward compatibility +// +// Service to manage campaign bid modifiers. type CampaignBidModifierServiceServer interface { // Creates, updates, or removes campaign bid modifiers. // Operation statuses are returned. @@ -165,7 +170,7 @@ func _CampaignBidModifierService_MutateCampaignBidModifiers_Handler(srv interfac // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CampaignBidModifierService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CampaignBidModifierService", + ServiceName: "google.ads.googleads.v17.services.CampaignBidModifierService", HandlerType: (*CampaignBidModifierServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -174,5 +179,5 @@ var CampaignBidModifierService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/campaign_bid_modifier_service.proto", + Metadata: "google/ads/googleads/v17/services/campaign_bid_modifier_service.proto", } diff --git a/services/campaign_budget_service.pb.go b/services/campaign_budget_service.pb.go index 56c4f6c2..dfbb0ef1 100644 --- a/services/campaign_budget_service.pb.go +++ b/services/campaign_budget_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_budget_service.proto +// source: google/ads/googleads/v17/services/campaign_budget_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [CampaignBudgetService.MutateCampaignBudgets][google.ads.googleads.v16.services.CampaignBudgetService.MutateCampaignBudgets]. +// [CampaignBudgetService.MutateCampaignBudgets][google.ads.googleads.v17.services.CampaignBudgetService.MutateCampaignBudgets]. type MutateCampaignBudgetsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -60,13 +60,13 @@ type MutateCampaignBudgetsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateCampaignBudgetsRequest) Reset() { *x = MutateCampaignBudgetsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_budget_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_budget_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateCampaignBudgetsRequest) String() string { func (*MutateCampaignBudgetsRequest) ProtoMessage() {} func (x *MutateCampaignBudgetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_budget_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_budget_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateCampaignBudgetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignBudgetsRequest.ProtoReflect.Descriptor instead. func (*MutateCampaignBudgetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_budget_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_campaign_budget_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCampaignBudgetsRequest) GetCustomerId() string { @@ -151,7 +151,7 @@ type CampaignBudgetOperation struct { func (x *CampaignBudgetOperation) Reset() { *x = CampaignBudgetOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_budget_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_budget_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164,7 +164,7 @@ func (x *CampaignBudgetOperation) String() string { func (*CampaignBudgetOperation) ProtoMessage() {} func (x *CampaignBudgetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_budget_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_budget_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177,7 +177,7 @@ func (x *CampaignBudgetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignBudgetOperation.ProtoReflect.Descriptor instead. func (*CampaignBudgetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_budget_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_campaign_budget_service_proto_rawDescGZIP(), []int{1} } func (x *CampaignBudgetOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -262,7 +262,7 @@ type MutateCampaignBudgetsResponse struct { func (x *MutateCampaignBudgetsResponse) Reset() { *x = MutateCampaignBudgetsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_budget_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_budget_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -275,7 +275,7 @@ func (x *MutateCampaignBudgetsResponse) String() string { func (*MutateCampaignBudgetsResponse) ProtoMessage() {} func (x *MutateCampaignBudgetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_budget_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_budget_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -288,7 +288,7 @@ func (x *MutateCampaignBudgetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignBudgetsResponse.ProtoReflect.Descriptor instead. func (*MutateCampaignBudgetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_budget_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_campaign_budget_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCampaignBudgetsResponse) GetPartialFailureError() *status.Status { @@ -322,7 +322,7 @@ type MutateCampaignBudgetResult struct { func (x *MutateCampaignBudgetResult) Reset() { *x = MutateCampaignBudgetResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_budget_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_budget_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -335,7 +335,7 @@ func (x *MutateCampaignBudgetResult) String() string { func (*MutateCampaignBudgetResult) ProtoMessage() {} func (x *MutateCampaignBudgetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_budget_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_budget_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -348,7 +348,7 @@ func (x *MutateCampaignBudgetResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignBudgetResult.ProtoReflect.Descriptor instead. func (*MutateCampaignBudgetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_budget_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_campaign_budget_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCampaignBudgetResult) GetResourceName() string { @@ -365,21 +365,21 @@ func (x *MutateCampaignBudgetResult) GetCampaignBudget() *resources.CampaignBudg return nil } -var File_google_ads_googleads_v16_services_campaign_budget_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_campaign_budget_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_campaign_budget_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_campaign_budget_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 0x2f, 0x67, 0x6f, 0x6f, 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, 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, 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, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, @@ -399,7 +399,7 @@ var file_google_ads_googleads_v16_services_campaign_budget_service_proto_rawDesc 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5f, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, @@ -411,7 +411,7 @@ var file_google_ads_googleads_v16_services_campaign_budget_service_proto_rawDesc 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, @@ -424,12 +424,12 @@ var file_google_ads_googleads_v16_services_campaign_budget_service_proto_rawDesc 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x4c, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x4c, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x46, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2c, 0xfa, 0x41, 0x29, 0x0a, 0x27, 0x67, 0x6f, 0x6f, 0x67, 0x6c, @@ -445,7 +445,7 @@ var file_google_ads_googleads_v16_services_campaign_budget_service_proto_rawDesc 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x57, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xcc, 0x01, 0x0a, @@ -459,23 +459,23 @@ var file_google_ads_googleads_v16_services_campaign_budget_service_proto_rawDesc 0x0a, 0x0f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x52, 0x0e, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x32, 0xd6, 0x02, 0x0a, 0x15, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xf5, 0x01, 0x0a, 0x15, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x59, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, - 0x93, 0x02, 0x3a, 0x3a, 0x01, 0x2a, 0x22, 0x35, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, + 0x93, 0x02, 0x3a, 0x3a, 0x01, 0x2a, 0x22, 0x35, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, @@ -485,58 +485,58 @@ var file_google_ads_googleads_v16_services_campaign_budget_service_proto_rawDesc 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x86, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1a, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1a, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, + 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, + 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_campaign_budget_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_campaign_budget_service_proto_rawDescData = file_google_ads_googleads_v16_services_campaign_budget_service_proto_rawDesc + file_google_ads_googleads_v17_services_campaign_budget_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_campaign_budget_service_proto_rawDescData = file_google_ads_googleads_v17_services_campaign_budget_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_campaign_budget_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_campaign_budget_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_campaign_budget_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_campaign_budget_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_campaign_budget_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_campaign_budget_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_campaign_budget_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_campaign_budget_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_campaign_budget_service_proto_rawDescData + return file_google_ads_googleads_v17_services_campaign_budget_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_campaign_budget_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_campaign_budget_service_proto_goTypes = []interface{}{ - (*MutateCampaignBudgetsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCampaignBudgetsRequest - (*CampaignBudgetOperation)(nil), // 1: google.ads.googleads.v16.services.CampaignBudgetOperation - (*MutateCampaignBudgetsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateCampaignBudgetsResponse - (*MutateCampaignBudgetResult)(nil), // 3: google.ads.googleads.v16.services.MutateCampaignBudgetResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_campaign_budget_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_campaign_budget_service_proto_goTypes = []interface{}{ + (*MutateCampaignBudgetsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCampaignBudgetsRequest + (*CampaignBudgetOperation)(nil), // 1: google.ads.googleads.v17.services.CampaignBudgetOperation + (*MutateCampaignBudgetsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateCampaignBudgetsResponse + (*MutateCampaignBudgetResult)(nil), // 3: google.ads.googleads.v17.services.MutateCampaignBudgetResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.CampaignBudget)(nil), // 6: google.ads.googleads.v16.resources.CampaignBudget + (*resources.CampaignBudget)(nil), // 6: google.ads.googleads.v17.resources.CampaignBudget (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_campaign_budget_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateCampaignBudgetsRequest.operations:type_name -> google.ads.googleads.v16.services.CampaignBudgetOperation - 4, // 1: google.ads.googleads.v16.services.MutateCampaignBudgetsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.CampaignBudgetOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.CampaignBudgetOperation.create:type_name -> google.ads.googleads.v16.resources.CampaignBudget - 6, // 4: google.ads.googleads.v16.services.CampaignBudgetOperation.update:type_name -> google.ads.googleads.v16.resources.CampaignBudget - 7, // 5: google.ads.googleads.v16.services.MutateCampaignBudgetsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v16.services.MutateCampaignBudgetsResponse.results:type_name -> google.ads.googleads.v16.services.MutateCampaignBudgetResult - 6, // 7: google.ads.googleads.v16.services.MutateCampaignBudgetResult.campaign_budget:type_name -> google.ads.googleads.v16.resources.CampaignBudget - 0, // 8: google.ads.googleads.v16.services.CampaignBudgetService.MutateCampaignBudgets:input_type -> google.ads.googleads.v16.services.MutateCampaignBudgetsRequest - 2, // 9: google.ads.googleads.v16.services.CampaignBudgetService.MutateCampaignBudgets:output_type -> google.ads.googleads.v16.services.MutateCampaignBudgetsResponse +var file_google_ads_googleads_v17_services_campaign_budget_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateCampaignBudgetsRequest.operations:type_name -> google.ads.googleads.v17.services.CampaignBudgetOperation + 4, // 1: google.ads.googleads.v17.services.MutateCampaignBudgetsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.CampaignBudgetOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.CampaignBudgetOperation.create:type_name -> google.ads.googleads.v17.resources.CampaignBudget + 6, // 4: google.ads.googleads.v17.services.CampaignBudgetOperation.update:type_name -> google.ads.googleads.v17.resources.CampaignBudget + 7, // 5: google.ads.googleads.v17.services.MutateCampaignBudgetsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v17.services.MutateCampaignBudgetsResponse.results:type_name -> google.ads.googleads.v17.services.MutateCampaignBudgetResult + 6, // 7: google.ads.googleads.v17.services.MutateCampaignBudgetResult.campaign_budget:type_name -> google.ads.googleads.v17.resources.CampaignBudget + 0, // 8: google.ads.googleads.v17.services.CampaignBudgetService.MutateCampaignBudgets:input_type -> google.ads.googleads.v17.services.MutateCampaignBudgetsRequest + 2, // 9: google.ads.googleads.v17.services.CampaignBudgetService.MutateCampaignBudgets:output_type -> google.ads.googleads.v17.services.MutateCampaignBudgetsResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -544,13 +544,13 @@ var file_google_ads_googleads_v16_services_campaign_budget_service_proto_depIdxs 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_campaign_budget_service_proto_init() } -func file_google_ads_googleads_v16_services_campaign_budget_service_proto_init() { - if File_google_ads_googleads_v16_services_campaign_budget_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_campaign_budget_service_proto_init() } +func file_google_ads_googleads_v17_services_campaign_budget_service_proto_init() { + if File_google_ads_googleads_v17_services_campaign_budget_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_campaign_budget_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_budget_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignBudgetsRequest); i { case 0: return &v.state @@ -562,7 +562,7 @@ func file_google_ads_googleads_v16_services_campaign_budget_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_campaign_budget_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_budget_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignBudgetOperation); i { case 0: return &v.state @@ -574,7 +574,7 @@ func file_google_ads_googleads_v16_services_campaign_budget_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_campaign_budget_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_budget_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignBudgetsResponse); i { case 0: return &v.state @@ -586,7 +586,7 @@ func file_google_ads_googleads_v16_services_campaign_budget_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_campaign_budget_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_budget_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignBudgetResult); i { case 0: return &v.state @@ -599,7 +599,7 @@ func file_google_ads_googleads_v16_services_campaign_budget_service_proto_init() } } } - file_google_ads_googleads_v16_services_campaign_budget_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_campaign_budget_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CampaignBudgetOperation_Create)(nil), (*CampaignBudgetOperation_Update)(nil), (*CampaignBudgetOperation_Remove)(nil), @@ -608,18 +608,18 @@ func file_google_ads_googleads_v16_services_campaign_budget_service_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_campaign_budget_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_campaign_budget_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_campaign_budget_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_campaign_budget_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_campaign_budget_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_campaign_budget_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_campaign_budget_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_campaign_budget_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_campaign_budget_service_proto = out.File - file_google_ads_googleads_v16_services_campaign_budget_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_campaign_budget_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_campaign_budget_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_campaign_budget_service_proto = out.File + file_google_ads_googleads_v17_services_campaign_budget_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_campaign_budget_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_campaign_budget_service_proto_depIdxs = nil } diff --git a/services/campaign_budget_service_grpc.pb.go b/services/campaign_budget_service_grpc.pb.go index 029e3825..11bee890 100644 --- a/services/campaign_budget_service_grpc.pb.go +++ b/services/campaign_budget_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_budget_service.proto +// source: google/ads/googleads/v17/services/campaign_budget_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CampaignBudgetService_MutateCampaignBudgets_FullMethodName = "/google.ads.googleads.v16.services.CampaignBudgetService/MutateCampaignBudgets" + CampaignBudgetService_MutateCampaignBudgets_FullMethodName = "/google.ads.googleads.v17.services.CampaignBudgetService/MutateCampaignBudgets" ) // CampaignBudgetServiceClient is the client API for CampaignBudgetService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage campaign budgets. type CampaignBudgetServiceClient interface { // Creates, updates, or removes campaign budgets. Operation statuses are // returned. @@ -74,8 +76,9 @@ func NewCampaignBudgetServiceClient(cc grpc.ClientConnInterface) CampaignBudgetS } func (c *campaignBudgetServiceClient) MutateCampaignBudgets(ctx context.Context, in *MutateCampaignBudgetsRequest, opts ...grpc.CallOption) (*MutateCampaignBudgetsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCampaignBudgetsResponse) - err := c.cc.Invoke(ctx, CampaignBudgetService_MutateCampaignBudgets_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CampaignBudgetService_MutateCampaignBudgets_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -85,6 +88,8 @@ func (c *campaignBudgetServiceClient) MutateCampaignBudgets(ctx context.Context, // CampaignBudgetServiceServer is the server API for CampaignBudgetService service. // All implementations must embed UnimplementedCampaignBudgetServiceServer // for forward compatibility +// +// Service to manage campaign budgets. type CampaignBudgetServiceServer interface { // Creates, updates, or removes campaign budgets. Operation statuses are // returned. @@ -154,7 +159,7 @@ func _CampaignBudgetService_MutateCampaignBudgets_Handler(srv interface{}, ctx c // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CampaignBudgetService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CampaignBudgetService", + ServiceName: "google.ads.googleads.v17.services.CampaignBudgetService", HandlerType: (*CampaignBudgetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -163,5 +168,5 @@ var CampaignBudgetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/campaign_budget_service.proto", + Metadata: "google/ads/googleads/v17/services/campaign_budget_service.proto", } diff --git a/services/campaign_conversion_goal_service.pb.go b/services/campaign_conversion_goal_service.pb.go index 3fc2be29..7d26a666 100644 --- a/services/campaign_conversion_goal_service.pb.go +++ b/services/campaign_conversion_goal_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_conversion_goal_service.proto +// source: google/ads/googleads/v17/services/campaign_conversion_goal_service.proto package services @@ -38,7 +38,7 @@ const ( ) // Request message for -// [CampaignConversionGoalService.MutateCampaignConversionGoals][google.ads.googleads.v16.services.CampaignConversionGoalService.MutateCampaignConversionGoals]. +// [CampaignConversionGoalService.MutateCampaignConversionGoals][google.ads.googleads.v17.services.CampaignConversionGoalService.MutateCampaignConversionGoals]. type MutateCampaignConversionGoalsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -58,7 +58,7 @@ type MutateCampaignConversionGoalsRequest struct { func (x *MutateCampaignConversionGoalsRequest) Reset() { *x = MutateCampaignConversionGoalsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -71,7 +71,7 @@ func (x *MutateCampaignConversionGoalsRequest) String() string { func (*MutateCampaignConversionGoalsRequest) ProtoMessage() {} func (x *MutateCampaignConversionGoalsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84,7 +84,7 @@ func (x *MutateCampaignConversionGoalsRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use MutateCampaignConversionGoalsRequest.ProtoReflect.Descriptor instead. func (*MutateCampaignConversionGoalsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCampaignConversionGoalsRequest) GetCustomerId() string { @@ -127,7 +127,7 @@ type CampaignConversionGoalOperation struct { func (x *CampaignConversionGoalOperation) Reset() { *x = CampaignConversionGoalOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -140,7 +140,7 @@ func (x *CampaignConversionGoalOperation) String() string { func (*CampaignConversionGoalOperation) ProtoMessage() {} func (x *CampaignConversionGoalOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_conversion_goal_service_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 *CampaignConversionGoalOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignConversionGoalOperation.ProtoReflect.Descriptor instead. func (*CampaignConversionGoalOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_rawDescGZIP(), []int{1} } func (x *CampaignConversionGoalOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -202,7 +202,7 @@ type MutateCampaignConversionGoalsResponse struct { func (x *MutateCampaignConversionGoalsResponse) Reset() { *x = MutateCampaignConversionGoalsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -215,7 +215,7 @@ func (x *MutateCampaignConversionGoalsResponse) String() string { func (*MutateCampaignConversionGoalsResponse) ProtoMessage() {} func (x *MutateCampaignConversionGoalsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_conversion_goal_service_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 *MutateCampaignConversionGoalsResponse) ProtoReflect() protoreflect.Mess // Deprecated: Use MutateCampaignConversionGoalsResponse.ProtoReflect.Descriptor instead. func (*MutateCampaignConversionGoalsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCampaignConversionGoalsResponse) GetResults() []*MutateCampaignConversionGoalResult { @@ -251,7 +251,7 @@ type MutateCampaignConversionGoalResult struct { func (x *MutateCampaignConversionGoalResult) Reset() { *x = MutateCampaignConversionGoalResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -264,7 +264,7 @@ func (x *MutateCampaignConversionGoalResult) String() string { func (*MutateCampaignConversionGoalResult) ProtoMessage() {} func (x *MutateCampaignConversionGoalResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -277,7 +277,7 @@ func (x *MutateCampaignConversionGoalResult) ProtoReflect() protoreflect.Message // Deprecated: Use MutateCampaignConversionGoalResult.ProtoReflect.Descriptor instead. func (*MutateCampaignConversionGoalResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCampaignConversionGoalResult) GetResourceName() string { @@ -287,18 +287,18 @@ func (x *MutateCampaignConversionGoalResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_campaign_conversion_goal_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x41, 0x67, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, @@ -318,7 +318,7 @@ var file_google_ads_googleads_v16_services_campaign_conversion_goal_service_prot 0x65, 0x72, 0x49, 0x64, 0x12, 0x67, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x23, 0x0a, @@ -332,7 +332,7 @@ var file_google_ads_googleads_v16_services_campaign_conversion_goal_service_prot 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x54, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x01, 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, + 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x6f, 0x70, 0x65, @@ -341,7 +341,7 @@ var file_google_ads_googleads_v16_services_campaign_conversion_goal_service_prot 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5f, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, @@ -359,17 +359,17 @@ var file_google_ads_googleads_v16_services_campaign_conversion_goal_service_prot 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x61, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x42, 0x3a, 0x01, 0x2a, 0x22, 0x3d, 0x2f, - 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, + 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, @@ -379,52 +379,52 @@ var file_google_ads_googleads_v16_services_campaign_conversion_goal_service_prot 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x8e, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x22, 0x43, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x22, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, + 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_rawDescData = file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_rawDesc + file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_rawDescData = file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_rawDescData + return file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_goTypes = []interface{}{ - (*MutateCampaignConversionGoalsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCampaignConversionGoalsRequest - (*CampaignConversionGoalOperation)(nil), // 1: google.ads.googleads.v16.services.CampaignConversionGoalOperation - (*MutateCampaignConversionGoalsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateCampaignConversionGoalsResponse - (*MutateCampaignConversionGoalResult)(nil), // 3: google.ads.googleads.v16.services.MutateCampaignConversionGoalResult +var file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_goTypes = []interface{}{ + (*MutateCampaignConversionGoalsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCampaignConversionGoalsRequest + (*CampaignConversionGoalOperation)(nil), // 1: google.ads.googleads.v17.services.CampaignConversionGoalOperation + (*MutateCampaignConversionGoalsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateCampaignConversionGoalsResponse + (*MutateCampaignConversionGoalResult)(nil), // 3: google.ads.googleads.v17.services.MutateCampaignConversionGoalResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.CampaignConversionGoal)(nil), // 5: google.ads.googleads.v16.resources.CampaignConversionGoal -} -var file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateCampaignConversionGoalsRequest.operations:type_name -> google.ads.googleads.v16.services.CampaignConversionGoalOperation - 4, // 1: google.ads.googleads.v16.services.CampaignConversionGoalOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v16.services.CampaignConversionGoalOperation.update:type_name -> google.ads.googleads.v16.resources.CampaignConversionGoal - 3, // 3: google.ads.googleads.v16.services.MutateCampaignConversionGoalsResponse.results:type_name -> google.ads.googleads.v16.services.MutateCampaignConversionGoalResult - 0, // 4: google.ads.googleads.v16.services.CampaignConversionGoalService.MutateCampaignConversionGoals:input_type -> google.ads.googleads.v16.services.MutateCampaignConversionGoalsRequest - 2, // 5: google.ads.googleads.v16.services.CampaignConversionGoalService.MutateCampaignConversionGoals:output_type -> google.ads.googleads.v16.services.MutateCampaignConversionGoalsResponse + (*resources.CampaignConversionGoal)(nil), // 5: google.ads.googleads.v17.resources.CampaignConversionGoal +} +var file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateCampaignConversionGoalsRequest.operations:type_name -> google.ads.googleads.v17.services.CampaignConversionGoalOperation + 4, // 1: google.ads.googleads.v17.services.CampaignConversionGoalOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v17.services.CampaignConversionGoalOperation.update:type_name -> google.ads.googleads.v17.resources.CampaignConversionGoal + 3, // 3: google.ads.googleads.v17.services.MutateCampaignConversionGoalsResponse.results:type_name -> google.ads.googleads.v17.services.MutateCampaignConversionGoalResult + 0, // 4: google.ads.googleads.v17.services.CampaignConversionGoalService.MutateCampaignConversionGoals:input_type -> google.ads.googleads.v17.services.MutateCampaignConversionGoalsRequest + 2, // 5: google.ads.googleads.v17.services.CampaignConversionGoalService.MutateCampaignConversionGoals:output_type -> google.ads.googleads.v17.services.MutateCampaignConversionGoalsResponse 5, // [5:6] is the sub-list for method output_type 4, // [4:5] is the sub-list for method input_type 4, // [4:4] is the sub-list for extension type_name @@ -432,13 +432,13 @@ var file_google_ads_googleads_v16_services_campaign_conversion_goal_service_prot 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_init() } -func file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_init() { - if File_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_init() } +func file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_init() { + if File_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignConversionGoalsRequest); i { case 0: return &v.state @@ -450,7 +450,7 @@ func file_google_ads_googleads_v16_services_campaign_conversion_goal_service_pro return nil } } - file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignConversionGoalOperation); i { case 0: return &v.state @@ -462,7 +462,7 @@ func file_google_ads_googleads_v16_services_campaign_conversion_goal_service_pro return nil } } - file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignConversionGoalsResponse); i { case 0: return &v.state @@ -474,7 +474,7 @@ func file_google_ads_googleads_v16_services_campaign_conversion_goal_service_pro return nil } } - file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignConversionGoalResult); i { case 0: return &v.state @@ -487,25 +487,25 @@ func file_google_ads_googleads_v16_services_campaign_conversion_goal_service_pro } } } - file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CampaignConversionGoalOperation_Update)(nil), } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto = out.File - file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto = out.File + file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_depIdxs = nil } diff --git a/services/campaign_conversion_goal_service_grpc.pb.go b/services/campaign_conversion_goal_service_grpc.pb.go index 6a967c41..c0d3837d 100644 --- a/services/campaign_conversion_goal_service_grpc.pb.go +++ b/services/campaign_conversion_goal_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_conversion_goal_service.proto +// source: google/ads/googleads/v17/services/campaign_conversion_goal_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CampaignConversionGoalService_MutateCampaignConversionGoals_FullMethodName = "/google.ads.googleads.v16.services.CampaignConversionGoalService/MutateCampaignConversionGoals" + CampaignConversionGoalService_MutateCampaignConversionGoals_FullMethodName = "/google.ads.googleads.v17.services.CampaignConversionGoalService/MutateCampaignConversionGoals" ) // CampaignConversionGoalServiceClient is the client API for CampaignConversionGoalService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage campaign conversion goal. type CampaignConversionGoalServiceClient interface { // Creates, updates or removes campaign conversion goals. Operation statuses // are returned. @@ -54,8 +56,9 @@ func NewCampaignConversionGoalServiceClient(cc grpc.ClientConnInterface) Campaig } func (c *campaignConversionGoalServiceClient) MutateCampaignConversionGoals(ctx context.Context, in *MutateCampaignConversionGoalsRequest, opts ...grpc.CallOption) (*MutateCampaignConversionGoalsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCampaignConversionGoalsResponse) - err := c.cc.Invoke(ctx, CampaignConversionGoalService_MutateCampaignConversionGoals_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CampaignConversionGoalService_MutateCampaignConversionGoals_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -65,6 +68,8 @@ func (c *campaignConversionGoalServiceClient) MutateCampaignConversionGoals(ctx // CampaignConversionGoalServiceServer is the server API for CampaignConversionGoalService service. // All implementations must embed UnimplementedCampaignConversionGoalServiceServer // for forward compatibility +// +// Service to manage campaign conversion goal. type CampaignConversionGoalServiceServer interface { // Creates, updates or removes campaign conversion goals. Operation statuses // are returned. @@ -115,7 +120,7 @@ func _CampaignConversionGoalService_MutateCampaignConversionGoals_Handler(srv in // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CampaignConversionGoalService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CampaignConversionGoalService", + ServiceName: "google.ads.googleads.v17.services.CampaignConversionGoalService", HandlerType: (*CampaignConversionGoalServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -124,5 +129,5 @@ var CampaignConversionGoalService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/campaign_conversion_goal_service.proto", + Metadata: "google/ads/googleads/v17/services/campaign_conversion_goal_service.proto", } diff --git a/services/campaign_criterion_service.pb.go b/services/campaign_criterion_service.pb.go index d92a1b7b..fe485cc0 100644 --- a/services/campaign_criterion_service.pb.go +++ b/services/campaign_criterion_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_criterion_service.proto +// source: google/ads/googleads/v17/services/campaign_criterion_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [CampaignCriterionService.MutateCampaignCriteria][google.ads.googleads.v16.services.CampaignCriterionService.MutateCampaignCriteria]. +// [CampaignCriterionService.MutateCampaignCriteria][google.ads.googleads.v17.services.CampaignCriterionService.MutateCampaignCriteria]. type MutateCampaignCriteriaRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -60,13 +60,13 @@ type MutateCampaignCriteriaRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateCampaignCriteriaRequest) Reset() { *x = MutateCampaignCriteriaRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_criterion_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_criterion_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateCampaignCriteriaRequest) String() string { func (*MutateCampaignCriteriaRequest) ProtoMessage() {} func (x *MutateCampaignCriteriaRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_criterion_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_criterion_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateCampaignCriteriaRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignCriteriaRequest.ProtoReflect.Descriptor instead. func (*MutateCampaignCriteriaRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_criterion_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_campaign_criterion_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCampaignCriteriaRequest) GetCustomerId() string { @@ -151,7 +151,7 @@ type CampaignCriterionOperation struct { func (x *CampaignCriterionOperation) Reset() { *x = CampaignCriterionOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_criterion_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_criterion_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164,7 +164,7 @@ func (x *CampaignCriterionOperation) String() string { func (*CampaignCriterionOperation) ProtoMessage() {} func (x *CampaignCriterionOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_criterion_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_criterion_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177,7 +177,7 @@ func (x *CampaignCriterionOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignCriterionOperation.ProtoReflect.Descriptor instead. func (*CampaignCriterionOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_criterion_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_campaign_criterion_service_proto_rawDescGZIP(), []int{1} } func (x *CampaignCriterionOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -262,7 +262,7 @@ type MutateCampaignCriteriaResponse struct { func (x *MutateCampaignCriteriaResponse) Reset() { *x = MutateCampaignCriteriaResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_criterion_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_criterion_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -275,7 +275,7 @@ func (x *MutateCampaignCriteriaResponse) String() string { func (*MutateCampaignCriteriaResponse) ProtoMessage() {} func (x *MutateCampaignCriteriaResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_criterion_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_criterion_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -288,7 +288,7 @@ func (x *MutateCampaignCriteriaResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignCriteriaResponse.ProtoReflect.Descriptor instead. func (*MutateCampaignCriteriaResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_criterion_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_campaign_criterion_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCampaignCriteriaResponse) GetPartialFailureError() *status.Status { @@ -322,7 +322,7 @@ type MutateCampaignCriterionResult struct { func (x *MutateCampaignCriterionResult) Reset() { *x = MutateCampaignCriterionResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_criterion_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_criterion_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -335,7 +335,7 @@ func (x *MutateCampaignCriterionResult) String() string { func (*MutateCampaignCriterionResult) ProtoMessage() {} func (x *MutateCampaignCriterionResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_criterion_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_criterion_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -348,7 +348,7 @@ func (x *MutateCampaignCriterionResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignCriterionResult.ProtoReflect.Descriptor instead. func (*MutateCampaignCriterionResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_criterion_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_campaign_criterion_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCampaignCriterionResult) GetResourceName() string { @@ -365,21 +365,21 @@ func (x *MutateCampaignCriterionResult) GetCampaignCriterion() *resources.Campai return nil } -var File_google_ads_googleads_v16_services_campaign_criterion_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_campaign_criterion_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_campaign_criterion_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_campaign_criterion_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 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, 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, 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, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, @@ -400,7 +400,7 @@ var file_google_ads_googleads_v16_services_campaign_criterion_service_proto_rawD 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x62, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, @@ -412,7 +412,7 @@ var file_google_ads_googleads_v16_services_campaign_criterion_service_proto_rawD 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, @@ -424,13 +424,13 @@ var file_google_ads_googleads_v16_services_campaign_criterion_service_proto_rawD 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x4f, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 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, + 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x4f, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x49, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2f, 0xfa, 0x41, 0x2c, 0x0a, 0x2a, 0x67, 0x6f, @@ -447,7 +447,7 @@ var file_google_ads_googleads_v16_services_campaign_criterion_service_proto_rawD 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x5a, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xdb, 0x01, 0x0a, 0x1d, 0x4d, 0x75, 0x74, 0x61, 0x74, @@ -461,7 +461,7 @@ var file_google_ads_googleads_v16_services_campaign_criterion_service_proto_rawD 0x0a, 0x12, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 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, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x52, 0x11, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x32, 0xdd, 0x02, 0x0a, 0x18, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, @@ -469,16 +469,16 @@ var file_google_ads_googleads_v16_services_campaign_criterion_service_proto_rawD 0x65, 0x12, 0xf9, 0x01, 0x0a, 0x16, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5a, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, - 0x02, 0x3b, 0x3a, 0x01, 0x2a, 0x22, 0x36, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, + 0x02, 0x3b, 0x3a, 0x01, 0x2a, 0x22, 0x36, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, @@ -488,58 +488,58 @@ var file_google_ads_googleads_v16_services_campaign_criterion_service_proto_rawD 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x89, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1d, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1d, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_campaign_criterion_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_campaign_criterion_service_proto_rawDescData = file_google_ads_googleads_v16_services_campaign_criterion_service_proto_rawDesc + file_google_ads_googleads_v17_services_campaign_criterion_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_campaign_criterion_service_proto_rawDescData = file_google_ads_googleads_v17_services_campaign_criterion_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_campaign_criterion_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_campaign_criterion_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_campaign_criterion_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_campaign_criterion_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_campaign_criterion_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_campaign_criterion_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_campaign_criterion_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_campaign_criterion_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_campaign_criterion_service_proto_rawDescData + return file_google_ads_googleads_v17_services_campaign_criterion_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_campaign_criterion_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_campaign_criterion_service_proto_goTypes = []interface{}{ - (*MutateCampaignCriteriaRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCampaignCriteriaRequest - (*CampaignCriterionOperation)(nil), // 1: google.ads.googleads.v16.services.CampaignCriterionOperation - (*MutateCampaignCriteriaResponse)(nil), // 2: google.ads.googleads.v16.services.MutateCampaignCriteriaResponse - (*MutateCampaignCriterionResult)(nil), // 3: google.ads.googleads.v16.services.MutateCampaignCriterionResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_campaign_criterion_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_campaign_criterion_service_proto_goTypes = []interface{}{ + (*MutateCampaignCriteriaRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCampaignCriteriaRequest + (*CampaignCriterionOperation)(nil), // 1: google.ads.googleads.v17.services.CampaignCriterionOperation + (*MutateCampaignCriteriaResponse)(nil), // 2: google.ads.googleads.v17.services.MutateCampaignCriteriaResponse + (*MutateCampaignCriterionResult)(nil), // 3: google.ads.googleads.v17.services.MutateCampaignCriterionResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.CampaignCriterion)(nil), // 6: google.ads.googleads.v16.resources.CampaignCriterion + (*resources.CampaignCriterion)(nil), // 6: google.ads.googleads.v17.resources.CampaignCriterion (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_campaign_criterion_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateCampaignCriteriaRequest.operations:type_name -> google.ads.googleads.v16.services.CampaignCriterionOperation - 4, // 1: google.ads.googleads.v16.services.MutateCampaignCriteriaRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.CampaignCriterionOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.CampaignCriterionOperation.create:type_name -> google.ads.googleads.v16.resources.CampaignCriterion - 6, // 4: google.ads.googleads.v16.services.CampaignCriterionOperation.update:type_name -> google.ads.googleads.v16.resources.CampaignCriterion - 7, // 5: google.ads.googleads.v16.services.MutateCampaignCriteriaResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v16.services.MutateCampaignCriteriaResponse.results:type_name -> google.ads.googleads.v16.services.MutateCampaignCriterionResult - 6, // 7: google.ads.googleads.v16.services.MutateCampaignCriterionResult.campaign_criterion:type_name -> google.ads.googleads.v16.resources.CampaignCriterion - 0, // 8: google.ads.googleads.v16.services.CampaignCriterionService.MutateCampaignCriteria:input_type -> google.ads.googleads.v16.services.MutateCampaignCriteriaRequest - 2, // 9: google.ads.googleads.v16.services.CampaignCriterionService.MutateCampaignCriteria:output_type -> google.ads.googleads.v16.services.MutateCampaignCriteriaResponse +var file_google_ads_googleads_v17_services_campaign_criterion_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateCampaignCriteriaRequest.operations:type_name -> google.ads.googleads.v17.services.CampaignCriterionOperation + 4, // 1: google.ads.googleads.v17.services.MutateCampaignCriteriaRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.CampaignCriterionOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.CampaignCriterionOperation.create:type_name -> google.ads.googleads.v17.resources.CampaignCriterion + 6, // 4: google.ads.googleads.v17.services.CampaignCriterionOperation.update:type_name -> google.ads.googleads.v17.resources.CampaignCriterion + 7, // 5: google.ads.googleads.v17.services.MutateCampaignCriteriaResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v17.services.MutateCampaignCriteriaResponse.results:type_name -> google.ads.googleads.v17.services.MutateCampaignCriterionResult + 6, // 7: google.ads.googleads.v17.services.MutateCampaignCriterionResult.campaign_criterion:type_name -> google.ads.googleads.v17.resources.CampaignCriterion + 0, // 8: google.ads.googleads.v17.services.CampaignCriterionService.MutateCampaignCriteria:input_type -> google.ads.googleads.v17.services.MutateCampaignCriteriaRequest + 2, // 9: google.ads.googleads.v17.services.CampaignCriterionService.MutateCampaignCriteria:output_type -> google.ads.googleads.v17.services.MutateCampaignCriteriaResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -547,13 +547,13 @@ var file_google_ads_googleads_v16_services_campaign_criterion_service_proto_depI 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_campaign_criterion_service_proto_init() } -func file_google_ads_googleads_v16_services_campaign_criterion_service_proto_init() { - if File_google_ads_googleads_v16_services_campaign_criterion_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_campaign_criterion_service_proto_init() } +func file_google_ads_googleads_v17_services_campaign_criterion_service_proto_init() { + if File_google_ads_googleads_v17_services_campaign_criterion_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_campaign_criterion_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_criterion_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignCriteriaRequest); i { case 0: return &v.state @@ -565,7 +565,7 @@ func file_google_ads_googleads_v16_services_campaign_criterion_service_proto_ini return nil } } - file_google_ads_googleads_v16_services_campaign_criterion_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_criterion_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignCriterionOperation); i { case 0: return &v.state @@ -577,7 +577,7 @@ func file_google_ads_googleads_v16_services_campaign_criterion_service_proto_ini return nil } } - file_google_ads_googleads_v16_services_campaign_criterion_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_criterion_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignCriteriaResponse); i { case 0: return &v.state @@ -589,7 +589,7 @@ func file_google_ads_googleads_v16_services_campaign_criterion_service_proto_ini return nil } } - file_google_ads_googleads_v16_services_campaign_criterion_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_criterion_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignCriterionResult); i { case 0: return &v.state @@ -602,7 +602,7 @@ func file_google_ads_googleads_v16_services_campaign_criterion_service_proto_ini } } } - file_google_ads_googleads_v16_services_campaign_criterion_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_campaign_criterion_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CampaignCriterionOperation_Create)(nil), (*CampaignCriterionOperation_Update)(nil), (*CampaignCriterionOperation_Remove)(nil), @@ -611,18 +611,18 @@ func file_google_ads_googleads_v16_services_campaign_criterion_service_proto_ini out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_campaign_criterion_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_campaign_criterion_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_campaign_criterion_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_campaign_criterion_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_campaign_criterion_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_campaign_criterion_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_campaign_criterion_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_campaign_criterion_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_campaign_criterion_service_proto = out.File - file_google_ads_googleads_v16_services_campaign_criterion_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_campaign_criterion_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_campaign_criterion_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_campaign_criterion_service_proto = out.File + file_google_ads_googleads_v17_services_campaign_criterion_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_campaign_criterion_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_campaign_criterion_service_proto_depIdxs = nil } diff --git a/services/campaign_criterion_service_grpc.pb.go b/services/campaign_criterion_service_grpc.pb.go index 6473d16a..65de2297 100644 --- a/services/campaign_criterion_service_grpc.pb.go +++ b/services/campaign_criterion_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_criterion_service.proto +// source: google/ads/googleads/v17/services/campaign_criterion_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CampaignCriterionService_MutateCampaignCriteria_FullMethodName = "/google.ads.googleads.v16.services.CampaignCriterionService/MutateCampaignCriteria" + CampaignCriterionService_MutateCampaignCriteria_FullMethodName = "/google.ads.googleads.v17.services.CampaignCriterionService/MutateCampaignCriteria" ) // CampaignCriterionServiceClient is the client API for CampaignCriterionService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage campaign criteria. type CampaignCriterionServiceClient interface { // Creates, updates, or removes criteria. Operation statuses are returned. // @@ -85,8 +87,9 @@ func NewCampaignCriterionServiceClient(cc grpc.ClientConnInterface) CampaignCrit } func (c *campaignCriterionServiceClient) MutateCampaignCriteria(ctx context.Context, in *MutateCampaignCriteriaRequest, opts ...grpc.CallOption) (*MutateCampaignCriteriaResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCampaignCriteriaResponse) - err := c.cc.Invoke(ctx, CampaignCriterionService_MutateCampaignCriteria_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CampaignCriterionService_MutateCampaignCriteria_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -96,6 +99,8 @@ func (c *campaignCriterionServiceClient) MutateCampaignCriteria(ctx context.Cont // CampaignCriterionServiceServer is the server API for CampaignCriterionService service. // All implementations must embed UnimplementedCampaignCriterionServiceServer // for forward compatibility +// +// Service to manage campaign criteria. type CampaignCriterionServiceServer interface { // Creates, updates, or removes criteria. Operation statuses are returned. // @@ -177,7 +182,7 @@ func _CampaignCriterionService_MutateCampaignCriteria_Handler(srv interface{}, c // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CampaignCriterionService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CampaignCriterionService", + ServiceName: "google.ads.googleads.v17.services.CampaignCriterionService", HandlerType: (*CampaignCriterionServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -186,5 +191,5 @@ var CampaignCriterionService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/campaign_criterion_service.proto", + Metadata: "google/ads/googleads/v17/services/campaign_criterion_service.proto", } diff --git a/services/campaign_customizer_service.pb.go b/services/campaign_customizer_service.pb.go index 4ed6fa13..13dcb404 100644 --- a/services/campaign_customizer_service.pb.go +++ b/services/campaign_customizer_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_customizer_service.proto +// source: google/ads/googleads/v17/services/campaign_customizer_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [CampaignCustomizerService.MutateCampaignCustomizers][google.ads.googleads.v16.services.CampaignCustomizerService.MutateCampaignCustomizers]. +// [CampaignCustomizerService.MutateCampaignCustomizers][google.ads.googleads.v17.services.CampaignCustomizerService.MutateCampaignCustomizers]. type MutateCampaignCustomizersRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -61,13 +61,13 @@ type MutateCampaignCustomizersRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateCampaignCustomizersRequest) Reset() { *x = MutateCampaignCustomizersRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_customizer_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_customizer_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80,7 +80,7 @@ func (x *MutateCampaignCustomizersRequest) String() string { func (*MutateCampaignCustomizersRequest) ProtoMessage() {} func (x *MutateCampaignCustomizersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_customizer_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_customizer_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93,7 +93,7 @@ func (x *MutateCampaignCustomizersRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignCustomizersRequest.ProtoReflect.Descriptor instead. func (*MutateCampaignCustomizersRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_customizer_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_campaign_customizer_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCampaignCustomizersRequest) GetCustomerId() string { @@ -149,7 +149,7 @@ type CampaignCustomizerOperation struct { func (x *CampaignCustomizerOperation) Reset() { *x = CampaignCustomizerOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_customizer_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_customizer_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -162,7 +162,7 @@ func (x *CampaignCustomizerOperation) String() string { func (*CampaignCustomizerOperation) ProtoMessage() {} func (x *CampaignCustomizerOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_customizer_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_customizer_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -175,7 +175,7 @@ func (x *CampaignCustomizerOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignCustomizerOperation.ProtoReflect.Descriptor instead. func (*CampaignCustomizerOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_customizer_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_campaign_customizer_service_proto_rawDescGZIP(), []int{1} } func (m *CampaignCustomizerOperation) GetOperation() isCampaignCustomizerOperation_Operation { @@ -238,7 +238,7 @@ type MutateCampaignCustomizersResponse struct { func (x *MutateCampaignCustomizersResponse) Reset() { *x = MutateCampaignCustomizersResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_customizer_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_customizer_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -251,7 +251,7 @@ func (x *MutateCampaignCustomizersResponse) String() string { func (*MutateCampaignCustomizersResponse) ProtoMessage() {} func (x *MutateCampaignCustomizersResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_customizer_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_customizer_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -264,7 +264,7 @@ func (x *MutateCampaignCustomizersResponse) ProtoReflect() protoreflect.Message // Deprecated: Use MutateCampaignCustomizersResponse.ProtoReflect.Descriptor instead. func (*MutateCampaignCustomizersResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_customizer_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_campaign_customizer_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCampaignCustomizersResponse) GetResults() []*MutateCampaignCustomizerResult { @@ -298,7 +298,7 @@ type MutateCampaignCustomizerResult struct { func (x *MutateCampaignCustomizerResult) Reset() { *x = MutateCampaignCustomizerResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_customizer_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_customizer_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -311,7 +311,7 @@ func (x *MutateCampaignCustomizerResult) String() string { func (*MutateCampaignCustomizerResult) ProtoMessage() {} func (x *MutateCampaignCustomizerResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_customizer_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_customizer_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -324,7 +324,7 @@ func (x *MutateCampaignCustomizerResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignCustomizerResult.ProtoReflect.Descriptor instead. func (*MutateCampaignCustomizerResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_customizer_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_campaign_customizer_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCampaignCustomizerResult) GetResourceName() string { @@ -341,21 +341,21 @@ func (x *MutateCampaignCustomizerResult) GetCampaignCustomizer() *resources.Camp return nil } -var File_google_ads_googleads_v16_services_campaign_customizer_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_campaign_customizer_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_campaign_customizer_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_campaign_customizer_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 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, 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, 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, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, @@ -374,7 +374,7 @@ var file_google_ads_googleads_v16_services_campaign_customizer_service_proto_raw 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x63, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, @@ -386,7 +386,7 @@ var file_google_ads_googleads_v16_services_campaign_customizer_service_proto_raw 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, @@ -395,7 +395,7 @@ var file_google_ads_googleads_v16_services_campaign_customizer_service_proto_raw 0x69, 0x7a, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x50, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x4a, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, @@ -408,7 +408,7 @@ var file_google_ads_googleads_v16_services_campaign_customizer_service_proto_raw 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5b, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 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, 0x36, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x46, 0x0a, 0x15, 0x70, @@ -427,7 +427,7 @@ var file_google_ads_googleads_v16_services_campaign_customizer_service_proto_raw 0x13, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x18, 0x02, 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, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x52, 0x12, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x32, 0xea, 0x02, 0x0a, 0x19, 0x43, 0x61, 0x6d, 0x70, 0x61, @@ -435,17 +435,17 @@ var file_google_ads_googleads_v16_services_campaign_customizer_service_proto_raw 0x76, 0x69, 0x63, 0x65, 0x12, 0x85, 0x02, 0x0a, 0x19, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x73, 0x12, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5d, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3e, 0x3a, 0x01, - 0x2a, 0x22, 0x39, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x2a, 0x22, 0x39, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, @@ -455,55 +455,55 @@ var file_google_ads_googleads_v16_services_campaign_customizer_service_proto_raw 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x8a, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1e, 0x43, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_campaign_customizer_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_campaign_customizer_service_proto_rawDescData = file_google_ads_googleads_v16_services_campaign_customizer_service_proto_rawDesc + file_google_ads_googleads_v17_services_campaign_customizer_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_campaign_customizer_service_proto_rawDescData = file_google_ads_googleads_v17_services_campaign_customizer_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_campaign_customizer_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_campaign_customizer_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_campaign_customizer_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_campaign_customizer_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_campaign_customizer_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_campaign_customizer_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_campaign_customizer_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_campaign_customizer_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_campaign_customizer_service_proto_rawDescData + return file_google_ads_googleads_v17_services_campaign_customizer_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_campaign_customizer_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_campaign_customizer_service_proto_goTypes = []interface{}{ - (*MutateCampaignCustomizersRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCampaignCustomizersRequest - (*CampaignCustomizerOperation)(nil), // 1: google.ads.googleads.v16.services.CampaignCustomizerOperation - (*MutateCampaignCustomizersResponse)(nil), // 2: google.ads.googleads.v16.services.MutateCampaignCustomizersResponse - (*MutateCampaignCustomizerResult)(nil), // 3: google.ads.googleads.v16.services.MutateCampaignCustomizerResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - (*resources.CampaignCustomizer)(nil), // 5: google.ads.googleads.v16.resources.CampaignCustomizer +var file_google_ads_googleads_v17_services_campaign_customizer_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_campaign_customizer_service_proto_goTypes = []interface{}{ + (*MutateCampaignCustomizersRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCampaignCustomizersRequest + (*CampaignCustomizerOperation)(nil), // 1: google.ads.googleads.v17.services.CampaignCustomizerOperation + (*MutateCampaignCustomizersResponse)(nil), // 2: google.ads.googleads.v17.services.MutateCampaignCustomizersResponse + (*MutateCampaignCustomizerResult)(nil), // 3: google.ads.googleads.v17.services.MutateCampaignCustomizerResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + (*resources.CampaignCustomizer)(nil), // 5: google.ads.googleads.v17.resources.CampaignCustomizer (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v16_services_campaign_customizer_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateCampaignCustomizersRequest.operations:type_name -> google.ads.googleads.v16.services.CampaignCustomizerOperation - 4, // 1: google.ads.googleads.v16.services.MutateCampaignCustomizersRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.CampaignCustomizerOperation.create:type_name -> google.ads.googleads.v16.resources.CampaignCustomizer - 3, // 3: google.ads.googleads.v16.services.MutateCampaignCustomizersResponse.results:type_name -> google.ads.googleads.v16.services.MutateCampaignCustomizerResult - 6, // 4: google.ads.googleads.v16.services.MutateCampaignCustomizersResponse.partial_failure_error:type_name -> google.rpc.Status - 5, // 5: google.ads.googleads.v16.services.MutateCampaignCustomizerResult.campaign_customizer:type_name -> google.ads.googleads.v16.resources.CampaignCustomizer - 0, // 6: google.ads.googleads.v16.services.CampaignCustomizerService.MutateCampaignCustomizers:input_type -> google.ads.googleads.v16.services.MutateCampaignCustomizersRequest - 2, // 7: google.ads.googleads.v16.services.CampaignCustomizerService.MutateCampaignCustomizers:output_type -> google.ads.googleads.v16.services.MutateCampaignCustomizersResponse +var file_google_ads_googleads_v17_services_campaign_customizer_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateCampaignCustomizersRequest.operations:type_name -> google.ads.googleads.v17.services.CampaignCustomizerOperation + 4, // 1: google.ads.googleads.v17.services.MutateCampaignCustomizersRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.CampaignCustomizerOperation.create:type_name -> google.ads.googleads.v17.resources.CampaignCustomizer + 3, // 3: google.ads.googleads.v17.services.MutateCampaignCustomizersResponse.results:type_name -> google.ads.googleads.v17.services.MutateCampaignCustomizerResult + 6, // 4: google.ads.googleads.v17.services.MutateCampaignCustomizersResponse.partial_failure_error:type_name -> google.rpc.Status + 5, // 5: google.ads.googleads.v17.services.MutateCampaignCustomizerResult.campaign_customizer:type_name -> google.ads.googleads.v17.resources.CampaignCustomizer + 0, // 6: google.ads.googleads.v17.services.CampaignCustomizerService.MutateCampaignCustomizers:input_type -> google.ads.googleads.v17.services.MutateCampaignCustomizersRequest + 2, // 7: google.ads.googleads.v17.services.CampaignCustomizerService.MutateCampaignCustomizers:output_type -> google.ads.googleads.v17.services.MutateCampaignCustomizersResponse 7, // [7:8] is the sub-list for method output_type 6, // [6:7] is the sub-list for method input_type 6, // [6:6] is the sub-list for extension type_name @@ -511,13 +511,13 @@ var file_google_ads_googleads_v16_services_campaign_customizer_service_proto_dep 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_campaign_customizer_service_proto_init() } -func file_google_ads_googleads_v16_services_campaign_customizer_service_proto_init() { - if File_google_ads_googleads_v16_services_campaign_customizer_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_campaign_customizer_service_proto_init() } +func file_google_ads_googleads_v17_services_campaign_customizer_service_proto_init() { + if File_google_ads_googleads_v17_services_campaign_customizer_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_campaign_customizer_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_customizer_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignCustomizersRequest); i { case 0: return &v.state @@ -529,7 +529,7 @@ func file_google_ads_googleads_v16_services_campaign_customizer_service_proto_in return nil } } - file_google_ads_googleads_v16_services_campaign_customizer_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_customizer_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignCustomizerOperation); i { case 0: return &v.state @@ -541,7 +541,7 @@ func file_google_ads_googleads_v16_services_campaign_customizer_service_proto_in return nil } } - file_google_ads_googleads_v16_services_campaign_customizer_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_customizer_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignCustomizersResponse); i { case 0: return &v.state @@ -553,7 +553,7 @@ func file_google_ads_googleads_v16_services_campaign_customizer_service_proto_in return nil } } - file_google_ads_googleads_v16_services_campaign_customizer_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_customizer_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignCustomizerResult); i { case 0: return &v.state @@ -566,7 +566,7 @@ func file_google_ads_googleads_v16_services_campaign_customizer_service_proto_in } } } - file_google_ads_googleads_v16_services_campaign_customizer_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_campaign_customizer_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CampaignCustomizerOperation_Create)(nil), (*CampaignCustomizerOperation_Remove)(nil), } @@ -574,18 +574,18 @@ func file_google_ads_googleads_v16_services_campaign_customizer_service_proto_in out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_campaign_customizer_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_campaign_customizer_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_campaign_customizer_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_campaign_customizer_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_campaign_customizer_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_campaign_customizer_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_campaign_customizer_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_campaign_customizer_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_campaign_customizer_service_proto = out.File - file_google_ads_googleads_v16_services_campaign_customizer_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_campaign_customizer_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_campaign_customizer_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_campaign_customizer_service_proto = out.File + file_google_ads_googleads_v17_services_campaign_customizer_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_campaign_customizer_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_campaign_customizer_service_proto_depIdxs = nil } diff --git a/services/campaign_customizer_service_grpc.pb.go b/services/campaign_customizer_service_grpc.pb.go index ffafaf4b..aae4c414 100644 --- a/services/campaign_customizer_service_grpc.pb.go +++ b/services/campaign_customizer_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_customizer_service.proto +// source: google/ads/googleads/v17/services/campaign_customizer_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CampaignCustomizerService_MutateCampaignCustomizers_FullMethodName = "/google.ads.googleads.v16.services.CampaignCustomizerService/MutateCampaignCustomizers" + CampaignCustomizerService_MutateCampaignCustomizers_FullMethodName = "/google.ads.googleads.v17.services.CampaignCustomizerService/MutateCampaignCustomizers" ) // CampaignCustomizerServiceClient is the client API for CampaignCustomizerService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage campaign customizer type CampaignCustomizerServiceClient interface { // Creates, updates or removes campaign customizers. Operation statuses are // returned. @@ -54,8 +56,9 @@ func NewCampaignCustomizerServiceClient(cc grpc.ClientConnInterface) CampaignCus } func (c *campaignCustomizerServiceClient) MutateCampaignCustomizers(ctx context.Context, in *MutateCampaignCustomizersRequest, opts ...grpc.CallOption) (*MutateCampaignCustomizersResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCampaignCustomizersResponse) - err := c.cc.Invoke(ctx, CampaignCustomizerService_MutateCampaignCustomizers_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CampaignCustomizerService_MutateCampaignCustomizers_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -65,6 +68,8 @@ func (c *campaignCustomizerServiceClient) MutateCampaignCustomizers(ctx context. // CampaignCustomizerServiceServer is the server API for CampaignCustomizerService service. // All implementations must embed UnimplementedCampaignCustomizerServiceServer // for forward compatibility +// +// Service to manage campaign customizer type CampaignCustomizerServiceServer interface { // Creates, updates or removes campaign customizers. Operation statuses are // returned. @@ -115,7 +120,7 @@ func _CampaignCustomizerService_MutateCampaignCustomizers_Handler(srv interface{ // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CampaignCustomizerService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CampaignCustomizerService", + ServiceName: "google.ads.googleads.v17.services.CampaignCustomizerService", HandlerType: (*CampaignCustomizerServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -124,5 +129,5 @@ var CampaignCustomizerService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/campaign_customizer_service.proto", + Metadata: "google/ads/googleads/v17/services/campaign_customizer_service.proto", } diff --git a/services/campaign_draft_service.pb.go b/services/campaign_draft_service.pb.go index 3f90707a..4850c76f 100644 --- a/services/campaign_draft_service.pb.go +++ b/services/campaign_draft_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_draft_service.proto +// source: google/ads/googleads/v17/services/campaign_draft_service.proto package services @@ -42,7 +42,7 @@ const ( ) // Request message for -// [CampaignDraftService.MutateCampaignDrafts][google.ads.googleads.v16.services.CampaignDraftService.MutateCampaignDrafts]. +// [CampaignDraftService.MutateCampaignDrafts][google.ads.googleads.v17.services.CampaignDraftService.MutateCampaignDrafts]. type MutateCampaignDraftsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -62,13 +62,13 @@ type MutateCampaignDraftsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateCampaignDraftsRequest) Reset() { *x = MutateCampaignDraftsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_draft_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_draft_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81,7 +81,7 @@ func (x *MutateCampaignDraftsRequest) String() string { func (*MutateCampaignDraftsRequest) ProtoMessage() {} func (x *MutateCampaignDraftsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_draft_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_draft_service_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 *MutateCampaignDraftsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignDraftsRequest.ProtoReflect.Descriptor instead. func (*MutateCampaignDraftsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_draft_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_campaign_draft_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCampaignDraftsRequest) GetCustomerId() string { @@ -133,7 +133,7 @@ func (x *MutateCampaignDraftsRequest) GetResponseContentType() enums.ResponseCon } // Request message for -// [CampaignDraftService.PromoteCampaignDraft][google.ads.googleads.v16.services.CampaignDraftService.PromoteCampaignDraft]. +// [CampaignDraftService.PromoteCampaignDraft][google.ads.googleads.v17.services.CampaignDraftService.PromoteCampaignDraft]. type PromoteCampaignDraftRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -149,7 +149,7 @@ type PromoteCampaignDraftRequest struct { func (x *PromoteCampaignDraftRequest) Reset() { *x = PromoteCampaignDraftRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_draft_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_draft_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -162,7 +162,7 @@ func (x *PromoteCampaignDraftRequest) String() string { func (*PromoteCampaignDraftRequest) ProtoMessage() {} func (x *PromoteCampaignDraftRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_draft_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_draft_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -175,7 +175,7 @@ func (x *PromoteCampaignDraftRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PromoteCampaignDraftRequest.ProtoReflect.Descriptor instead. func (*PromoteCampaignDraftRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_draft_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_campaign_draft_service_proto_rawDescGZIP(), []int{1} } func (x *PromoteCampaignDraftRequest) GetCampaignDraft() string { @@ -213,7 +213,7 @@ type CampaignDraftOperation struct { func (x *CampaignDraftOperation) Reset() { *x = CampaignDraftOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_draft_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_draft_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -226,7 +226,7 @@ func (x *CampaignDraftOperation) String() string { func (*CampaignDraftOperation) ProtoMessage() {} func (x *CampaignDraftOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_draft_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_draft_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -239,7 +239,7 @@ func (x *CampaignDraftOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignDraftOperation.ProtoReflect.Descriptor instead. func (*CampaignDraftOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_draft_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_campaign_draft_service_proto_rawDescGZIP(), []int{2} } func (x *CampaignDraftOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -325,7 +325,7 @@ type MutateCampaignDraftsResponse struct { func (x *MutateCampaignDraftsResponse) Reset() { *x = MutateCampaignDraftsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_draft_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_draft_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -338,7 +338,7 @@ func (x *MutateCampaignDraftsResponse) String() string { func (*MutateCampaignDraftsResponse) ProtoMessage() {} func (x *MutateCampaignDraftsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_draft_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_draft_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -351,7 +351,7 @@ func (x *MutateCampaignDraftsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignDraftsResponse.ProtoReflect.Descriptor instead. func (*MutateCampaignDraftsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_draft_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_campaign_draft_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCampaignDraftsResponse) GetPartialFailureError() *status.Status { @@ -385,7 +385,7 @@ type MutateCampaignDraftResult struct { func (x *MutateCampaignDraftResult) Reset() { *x = MutateCampaignDraftResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_draft_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_campaign_draft_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -398,7 +398,7 @@ func (x *MutateCampaignDraftResult) String() string { func (*MutateCampaignDraftResult) ProtoMessage() {} func (x *MutateCampaignDraftResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_draft_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_campaign_draft_service_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -411,7 +411,7 @@ func (x *MutateCampaignDraftResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignDraftResult.ProtoReflect.Descriptor instead. func (*MutateCampaignDraftResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_draft_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v17_services_campaign_draft_service_proto_rawDescGZIP(), []int{4} } func (x *MutateCampaignDraftResult) GetResourceName() string { @@ -429,7 +429,7 @@ func (x *MutateCampaignDraftResult) GetCampaignDraft() *resources.CampaignDraft } // Request message for -// [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v16.services.CampaignDraftService.ListCampaignDraftAsyncErrors]. +// [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v17.services.CampaignDraftService.ListCampaignDraftAsyncErrors]. type ListCampaignDraftAsyncErrorsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -452,7 +452,7 @@ type ListCampaignDraftAsyncErrorsRequest struct { func (x *ListCampaignDraftAsyncErrorsRequest) Reset() { *x = ListCampaignDraftAsyncErrorsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_draft_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_campaign_draft_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -465,7 +465,7 @@ func (x *ListCampaignDraftAsyncErrorsRequest) String() string { func (*ListCampaignDraftAsyncErrorsRequest) ProtoMessage() {} func (x *ListCampaignDraftAsyncErrorsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_draft_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_campaign_draft_service_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -478,7 +478,7 @@ func (x *ListCampaignDraftAsyncErrorsRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use ListCampaignDraftAsyncErrorsRequest.ProtoReflect.Descriptor instead. func (*ListCampaignDraftAsyncErrorsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_draft_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v17_services_campaign_draft_service_proto_rawDescGZIP(), []int{5} } func (x *ListCampaignDraftAsyncErrorsRequest) GetResourceName() string { @@ -503,7 +503,7 @@ func (x *ListCampaignDraftAsyncErrorsRequest) GetPageSize() int32 { } // Response message for -// [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v16.services.CampaignDraftService.ListCampaignDraftAsyncErrors]. +// [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v17.services.CampaignDraftService.ListCampaignDraftAsyncErrors]. type ListCampaignDraftAsyncErrorsResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -521,7 +521,7 @@ type ListCampaignDraftAsyncErrorsResponse struct { func (x *ListCampaignDraftAsyncErrorsResponse) Reset() { *x = ListCampaignDraftAsyncErrorsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_draft_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_services_campaign_draft_service_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -534,7 +534,7 @@ func (x *ListCampaignDraftAsyncErrorsResponse) String() string { func (*ListCampaignDraftAsyncErrorsResponse) ProtoMessage() {} func (x *ListCampaignDraftAsyncErrorsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_draft_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_services_campaign_draft_service_proto_msgTypes[6] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -547,7 +547,7 @@ func (x *ListCampaignDraftAsyncErrorsResponse) ProtoReflect() protoreflect.Messa // Deprecated: Use ListCampaignDraftAsyncErrorsResponse.ProtoReflect.Descriptor instead. func (*ListCampaignDraftAsyncErrorsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_draft_service_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v17_services_campaign_draft_service_proto_rawDescGZIP(), []int{6} } func (x *ListCampaignDraftAsyncErrorsResponse) GetErrors() []*status.Status { @@ -564,21 +564,21 @@ func (x *ListCampaignDraftAsyncErrorsResponse) GetNextPageToken() string { return "" } -var File_google_ads_googleads_v16_services_campaign_draft_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_campaign_draft_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_campaign_draft_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_campaign_draft_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x64, 0x72, 0x61, 0x66, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 0x67, 0x6f, 0x6f, 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x64, 0x72, 0x61, 0x66, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, @@ -602,7 +602,7 @@ var file_google_ads_googleads_v16_services_campaign_draft_service_proto_rawDesc 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5e, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, @@ -614,7 +614,7 @@ var file_google_ads_googleads_v16_services_campaign_draft_service_proto_rawDesc 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, @@ -636,12 +636,12 @@ var file_google_ads_googleads_v16_services_campaign_draft_service_proto_rawDesc 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x4b, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 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, 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, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x4b, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x02, 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, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x45, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2b, 0xfa, 0x41, 0x28, @@ -658,7 +658,7 @@ var file_google_ads_googleads_v16_services_campaign_draft_service_proto_rawDesc 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x56, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xc7, 0x01, 0x0a, 0x19, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, @@ -671,7 +671,7 @@ var file_google_ads_googleads_v16_services_campaign_draft_service_proto_rawDesc 0x12, 0x58, 0x0a, 0x0e, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x64, 0x72, 0x61, 0x66, 0x74, 0x18, 0x02, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x52, 0x0d, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x22, 0xb6, 0x01, 0x0a, 0x23, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, @@ -697,22 +697,22 @@ var file_google_ads_googleads_v16_services_campaign_draft_service_proto_rawDesc 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xf1, 0x01, 0x0a, 0x14, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x73, 0x12, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x58, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, - 0x93, 0x02, 0x39, 0x3a, 0x01, 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, + 0x93, 0x02, 0x39, 0x3a, 0x01, 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x12, 0xff, 0x01, 0x0a, 0x14, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x12, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x6c, @@ -722,23 +722,23 @@ var file_google_ads_googleads_v16_services_campaign_draft_service_proto_rawDesc 0x79, 0x12, 0x15, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0xda, 0x41, 0x0e, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x64, 0x72, 0x61, 0x66, 0x74, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3f, 0x3a, - 0x01, 0x2a, 0x22, 0x3a, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x7b, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, + 0x01, 0x2a, 0x22, 0x3a, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x7b, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x64, 0x72, 0x61, 0x66, 0x74, 0x3d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x2a, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x73, 0x2f, 0x2a, 0x7d, 0x3a, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x12, 0x8a, 0x02, 0x0a, 0x1c, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x41, 0x73, 0x79, 0x6e, 0x63, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x41, 0x73, 0x79, 0x6e, 0x63, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x41, 0x73, 0x79, 0x6e, 0x63, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x59, 0xda, 0x41, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, - 0x6d, 0x65, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x43, 0x12, 0x41, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x7b, + 0x6d, 0x65, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x43, 0x12, 0x41, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x2a, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x73, 0x2f, 0x2a, 0x7d, 0x3a, 0x6c, 0x69, 0x73, 0x74, @@ -749,67 +749,67 @@ var file_google_ads_googleads_v16_services_campaign_draft_service_proto_rawDesc 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x85, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x19, 0x43, 0x61, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x19, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, + 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, + 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_campaign_draft_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_campaign_draft_service_proto_rawDescData = file_google_ads_googleads_v16_services_campaign_draft_service_proto_rawDesc + file_google_ads_googleads_v17_services_campaign_draft_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_campaign_draft_service_proto_rawDescData = file_google_ads_googleads_v17_services_campaign_draft_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_campaign_draft_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_campaign_draft_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_campaign_draft_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_campaign_draft_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_campaign_draft_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_campaign_draft_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_campaign_draft_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_campaign_draft_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_campaign_draft_service_proto_rawDescData -} - -var file_google_ads_googleads_v16_services_campaign_draft_service_proto_msgTypes = make([]protoimpl.MessageInfo, 7) -var file_google_ads_googleads_v16_services_campaign_draft_service_proto_goTypes = []interface{}{ - (*MutateCampaignDraftsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCampaignDraftsRequest - (*PromoteCampaignDraftRequest)(nil), // 1: google.ads.googleads.v16.services.PromoteCampaignDraftRequest - (*CampaignDraftOperation)(nil), // 2: google.ads.googleads.v16.services.CampaignDraftOperation - (*MutateCampaignDraftsResponse)(nil), // 3: google.ads.googleads.v16.services.MutateCampaignDraftsResponse - (*MutateCampaignDraftResult)(nil), // 4: google.ads.googleads.v16.services.MutateCampaignDraftResult - (*ListCampaignDraftAsyncErrorsRequest)(nil), // 5: google.ads.googleads.v16.services.ListCampaignDraftAsyncErrorsRequest - (*ListCampaignDraftAsyncErrorsResponse)(nil), // 6: google.ads.googleads.v16.services.ListCampaignDraftAsyncErrorsResponse - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 7: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType + return file_google_ads_googleads_v17_services_campaign_draft_service_proto_rawDescData +} + +var file_google_ads_googleads_v17_services_campaign_draft_service_proto_msgTypes = make([]protoimpl.MessageInfo, 7) +var file_google_ads_googleads_v17_services_campaign_draft_service_proto_goTypes = []interface{}{ + (*MutateCampaignDraftsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCampaignDraftsRequest + (*PromoteCampaignDraftRequest)(nil), // 1: google.ads.googleads.v17.services.PromoteCampaignDraftRequest + (*CampaignDraftOperation)(nil), // 2: google.ads.googleads.v17.services.CampaignDraftOperation + (*MutateCampaignDraftsResponse)(nil), // 3: google.ads.googleads.v17.services.MutateCampaignDraftsResponse + (*MutateCampaignDraftResult)(nil), // 4: google.ads.googleads.v17.services.MutateCampaignDraftResult + (*ListCampaignDraftAsyncErrorsRequest)(nil), // 5: google.ads.googleads.v17.services.ListCampaignDraftAsyncErrorsRequest + (*ListCampaignDraftAsyncErrorsResponse)(nil), // 6: google.ads.googleads.v17.services.ListCampaignDraftAsyncErrorsResponse + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 7: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 8: google.protobuf.FieldMask - (*resources.CampaignDraft)(nil), // 9: google.ads.googleads.v16.resources.CampaignDraft + (*resources.CampaignDraft)(nil), // 9: google.ads.googleads.v17.resources.CampaignDraft (*status.Status)(nil), // 10: google.rpc.Status (*longrunningpb.Operation)(nil), // 11: google.longrunning.Operation } -var file_google_ads_googleads_v16_services_campaign_draft_service_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v16.services.MutateCampaignDraftsRequest.operations:type_name -> google.ads.googleads.v16.services.CampaignDraftOperation - 7, // 1: google.ads.googleads.v16.services.MutateCampaignDraftsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 8, // 2: google.ads.googleads.v16.services.CampaignDraftOperation.update_mask:type_name -> google.protobuf.FieldMask - 9, // 3: google.ads.googleads.v16.services.CampaignDraftOperation.create:type_name -> google.ads.googleads.v16.resources.CampaignDraft - 9, // 4: google.ads.googleads.v16.services.CampaignDraftOperation.update:type_name -> google.ads.googleads.v16.resources.CampaignDraft - 10, // 5: google.ads.googleads.v16.services.MutateCampaignDraftsResponse.partial_failure_error:type_name -> google.rpc.Status - 4, // 6: google.ads.googleads.v16.services.MutateCampaignDraftsResponse.results:type_name -> google.ads.googleads.v16.services.MutateCampaignDraftResult - 9, // 7: google.ads.googleads.v16.services.MutateCampaignDraftResult.campaign_draft:type_name -> google.ads.googleads.v16.resources.CampaignDraft - 10, // 8: google.ads.googleads.v16.services.ListCampaignDraftAsyncErrorsResponse.errors:type_name -> google.rpc.Status - 0, // 9: google.ads.googleads.v16.services.CampaignDraftService.MutateCampaignDrafts:input_type -> google.ads.googleads.v16.services.MutateCampaignDraftsRequest - 1, // 10: google.ads.googleads.v16.services.CampaignDraftService.PromoteCampaignDraft:input_type -> google.ads.googleads.v16.services.PromoteCampaignDraftRequest - 5, // 11: google.ads.googleads.v16.services.CampaignDraftService.ListCampaignDraftAsyncErrors:input_type -> google.ads.googleads.v16.services.ListCampaignDraftAsyncErrorsRequest - 3, // 12: google.ads.googleads.v16.services.CampaignDraftService.MutateCampaignDrafts:output_type -> google.ads.googleads.v16.services.MutateCampaignDraftsResponse - 11, // 13: google.ads.googleads.v16.services.CampaignDraftService.PromoteCampaignDraft:output_type -> google.longrunning.Operation - 6, // 14: google.ads.googleads.v16.services.CampaignDraftService.ListCampaignDraftAsyncErrors:output_type -> google.ads.googleads.v16.services.ListCampaignDraftAsyncErrorsResponse +var file_google_ads_googleads_v17_services_campaign_draft_service_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v17.services.MutateCampaignDraftsRequest.operations:type_name -> google.ads.googleads.v17.services.CampaignDraftOperation + 7, // 1: google.ads.googleads.v17.services.MutateCampaignDraftsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 8, // 2: google.ads.googleads.v17.services.CampaignDraftOperation.update_mask:type_name -> google.protobuf.FieldMask + 9, // 3: google.ads.googleads.v17.services.CampaignDraftOperation.create:type_name -> google.ads.googleads.v17.resources.CampaignDraft + 9, // 4: google.ads.googleads.v17.services.CampaignDraftOperation.update:type_name -> google.ads.googleads.v17.resources.CampaignDraft + 10, // 5: google.ads.googleads.v17.services.MutateCampaignDraftsResponse.partial_failure_error:type_name -> google.rpc.Status + 4, // 6: google.ads.googleads.v17.services.MutateCampaignDraftsResponse.results:type_name -> google.ads.googleads.v17.services.MutateCampaignDraftResult + 9, // 7: google.ads.googleads.v17.services.MutateCampaignDraftResult.campaign_draft:type_name -> google.ads.googleads.v17.resources.CampaignDraft + 10, // 8: google.ads.googleads.v17.services.ListCampaignDraftAsyncErrorsResponse.errors:type_name -> google.rpc.Status + 0, // 9: google.ads.googleads.v17.services.CampaignDraftService.MutateCampaignDrafts:input_type -> google.ads.googleads.v17.services.MutateCampaignDraftsRequest + 1, // 10: google.ads.googleads.v17.services.CampaignDraftService.PromoteCampaignDraft:input_type -> google.ads.googleads.v17.services.PromoteCampaignDraftRequest + 5, // 11: google.ads.googleads.v17.services.CampaignDraftService.ListCampaignDraftAsyncErrors:input_type -> google.ads.googleads.v17.services.ListCampaignDraftAsyncErrorsRequest + 3, // 12: google.ads.googleads.v17.services.CampaignDraftService.MutateCampaignDrafts:output_type -> google.ads.googleads.v17.services.MutateCampaignDraftsResponse + 11, // 13: google.ads.googleads.v17.services.CampaignDraftService.PromoteCampaignDraft:output_type -> google.longrunning.Operation + 6, // 14: google.ads.googleads.v17.services.CampaignDraftService.ListCampaignDraftAsyncErrors:output_type -> google.ads.googleads.v17.services.ListCampaignDraftAsyncErrorsResponse 12, // [12:15] is the sub-list for method output_type 9, // [9:12] is the sub-list for method input_type 9, // [9:9] is the sub-list for extension type_name @@ -817,13 +817,13 @@ var file_google_ads_googleads_v16_services_campaign_draft_service_proto_depIdxs 0, // [0:9] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_campaign_draft_service_proto_init() } -func file_google_ads_googleads_v16_services_campaign_draft_service_proto_init() { - if File_google_ads_googleads_v16_services_campaign_draft_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_campaign_draft_service_proto_init() } +func file_google_ads_googleads_v17_services_campaign_draft_service_proto_init() { + if File_google_ads_googleads_v17_services_campaign_draft_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_campaign_draft_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_draft_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignDraftsRequest); i { case 0: return &v.state @@ -835,7 +835,7 @@ func file_google_ads_googleads_v16_services_campaign_draft_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_campaign_draft_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_draft_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*PromoteCampaignDraftRequest); i { case 0: return &v.state @@ -847,7 +847,7 @@ func file_google_ads_googleads_v16_services_campaign_draft_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_campaign_draft_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_draft_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignDraftOperation); i { case 0: return &v.state @@ -859,7 +859,7 @@ func file_google_ads_googleads_v16_services_campaign_draft_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_campaign_draft_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_draft_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignDraftsResponse); i { case 0: return &v.state @@ -871,7 +871,7 @@ func file_google_ads_googleads_v16_services_campaign_draft_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_campaign_draft_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_draft_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignDraftResult); i { case 0: return &v.state @@ -883,7 +883,7 @@ func file_google_ads_googleads_v16_services_campaign_draft_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_campaign_draft_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_draft_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListCampaignDraftAsyncErrorsRequest); i { case 0: return &v.state @@ -895,7 +895,7 @@ func file_google_ads_googleads_v16_services_campaign_draft_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_campaign_draft_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_draft_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListCampaignDraftAsyncErrorsResponse); i { case 0: return &v.state @@ -908,7 +908,7 @@ func file_google_ads_googleads_v16_services_campaign_draft_service_proto_init() } } } - file_google_ads_googleads_v16_services_campaign_draft_service_proto_msgTypes[2].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_campaign_draft_service_proto_msgTypes[2].OneofWrappers = []interface{}{ (*CampaignDraftOperation_Create)(nil), (*CampaignDraftOperation_Update)(nil), (*CampaignDraftOperation_Remove)(nil), @@ -917,18 +917,18 @@ func file_google_ads_googleads_v16_services_campaign_draft_service_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_campaign_draft_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_campaign_draft_service_proto_rawDesc, NumEnums: 0, NumMessages: 7, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_campaign_draft_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_campaign_draft_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_campaign_draft_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_campaign_draft_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_campaign_draft_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_campaign_draft_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_campaign_draft_service_proto = out.File - file_google_ads_googleads_v16_services_campaign_draft_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_campaign_draft_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_campaign_draft_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_campaign_draft_service_proto = out.File + file_google_ads_googleads_v17_services_campaign_draft_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_campaign_draft_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_campaign_draft_service_proto_depIdxs = nil } diff --git a/services/campaign_draft_service_grpc.pb.go b/services/campaign_draft_service_grpc.pb.go index f0fa4dad..0d2d0eb5 100644 --- a/services/campaign_draft_service_grpc.pb.go +++ b/services/campaign_draft_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_draft_service.proto +// source: google/ads/googleads/v17/services/campaign_draft_service.proto package services @@ -30,18 +30,20 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CampaignDraftService_MutateCampaignDrafts_FullMethodName = "/google.ads.googleads.v16.services.CampaignDraftService/MutateCampaignDrafts" - CampaignDraftService_PromoteCampaignDraft_FullMethodName = "/google.ads.googleads.v16.services.CampaignDraftService/PromoteCampaignDraft" - CampaignDraftService_ListCampaignDraftAsyncErrors_FullMethodName = "/google.ads.googleads.v16.services.CampaignDraftService/ListCampaignDraftAsyncErrors" + CampaignDraftService_MutateCampaignDrafts_FullMethodName = "/google.ads.googleads.v17.services.CampaignDraftService/MutateCampaignDrafts" + CampaignDraftService_PromoteCampaignDraft_FullMethodName = "/google.ads.googleads.v17.services.CampaignDraftService/PromoteCampaignDraft" + CampaignDraftService_ListCampaignDraftAsyncErrors_FullMethodName = "/google.ads.googleads.v17.services.CampaignDraftService/ListCampaignDraftAsyncErrors" ) // CampaignDraftServiceClient is the client API for CampaignDraftService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage campaign drafts. type CampaignDraftServiceClient interface { // Creates, updates, or removes campaign drafts. Operation statuses are // returned. @@ -66,7 +68,7 @@ type CampaignDraftServiceClient interface { // is done. Only a done status is returned in the response. See the status // in the Campaign Draft resource to determine if the promotion was // successful. If the LRO failed, use - // [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v16.services.CampaignDraftService.ListCampaignDraftAsyncErrors] + // [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v17.services.CampaignDraftService.ListCampaignDraftAsyncErrors] // to view the list of error reasons. // // List of thrown errors: @@ -103,8 +105,9 @@ func NewCampaignDraftServiceClient(cc grpc.ClientConnInterface) CampaignDraftSer } func (c *campaignDraftServiceClient) MutateCampaignDrafts(ctx context.Context, in *MutateCampaignDraftsRequest, opts ...grpc.CallOption) (*MutateCampaignDraftsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCampaignDraftsResponse) - err := c.cc.Invoke(ctx, CampaignDraftService_MutateCampaignDrafts_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CampaignDraftService_MutateCampaignDrafts_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -112,8 +115,9 @@ func (c *campaignDraftServiceClient) MutateCampaignDrafts(ctx context.Context, i } func (c *campaignDraftServiceClient) PromoteCampaignDraft(ctx context.Context, in *PromoteCampaignDraftRequest, opts ...grpc.CallOption) (*longrunningpb.Operation, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(longrunningpb.Operation) - err := c.cc.Invoke(ctx, CampaignDraftService_PromoteCampaignDraft_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CampaignDraftService_PromoteCampaignDraft_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -121,8 +125,9 @@ func (c *campaignDraftServiceClient) PromoteCampaignDraft(ctx context.Context, i } func (c *campaignDraftServiceClient) ListCampaignDraftAsyncErrors(ctx context.Context, in *ListCampaignDraftAsyncErrorsRequest, opts ...grpc.CallOption) (*ListCampaignDraftAsyncErrorsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(ListCampaignDraftAsyncErrorsResponse) - err := c.cc.Invoke(ctx, CampaignDraftService_ListCampaignDraftAsyncErrors_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CampaignDraftService_ListCampaignDraftAsyncErrors_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -132,6 +137,8 @@ func (c *campaignDraftServiceClient) ListCampaignDraftAsyncErrors(ctx context.Co // CampaignDraftServiceServer is the server API for CampaignDraftService service. // All implementations must embed UnimplementedCampaignDraftServiceServer // for forward compatibility +// +// Service to manage campaign drafts. type CampaignDraftServiceServer interface { // Creates, updates, or removes campaign drafts. Operation statuses are // returned. @@ -156,7 +163,7 @@ type CampaignDraftServiceServer interface { // is done. Only a done status is returned in the response. See the status // in the Campaign Draft resource to determine if the promotion was // successful. If the LRO failed, use - // [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v16.services.CampaignDraftService.ListCampaignDraftAsyncErrors] + // [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v17.services.CampaignDraftService.ListCampaignDraftAsyncErrors] // to view the list of error reasons. // // List of thrown errors: @@ -269,7 +276,7 @@ func _CampaignDraftService_ListCampaignDraftAsyncErrors_Handler(srv interface{}, // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CampaignDraftService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CampaignDraftService", + ServiceName: "google.ads.googleads.v17.services.CampaignDraftService", HandlerType: (*CampaignDraftServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -286,5 +293,5 @@ var CampaignDraftService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/campaign_draft_service.proto", + Metadata: "google/ads/googleads/v17/services/campaign_draft_service.proto", } diff --git a/services/campaign_extension_setting_service.pb.go b/services/campaign_extension_setting_service.pb.go index 9252f297..5ca11ed0 100644 --- a/services/campaign_extension_setting_service.pb.go +++ b/services/campaign_extension_setting_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_extension_setting_service.proto +// source: google/ads/googleads/v17/services/campaign_extension_setting_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [CampaignExtensionSettingService.MutateCampaignExtensionSettings][google.ads.googleads.v16.services.CampaignExtensionSettingService.MutateCampaignExtensionSettings]. +// [CampaignExtensionSettingService.MutateCampaignExtensionSettings][google.ads.googleads.v17.services.CampaignExtensionSettingService.MutateCampaignExtensionSettings]. type MutateCampaignExtensionSettingsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -62,13 +62,13 @@ type MutateCampaignExtensionSettingsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateCampaignExtensionSettingsRequest) Reset() { *x = MutateCampaignExtensionSettingsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81,7 +81,7 @@ func (x *MutateCampaignExtensionSettingsRequest) String() string { func (*MutateCampaignExtensionSettingsRequest) ProtoMessage() {} func (x *MutateCampaignExtensionSettingsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_extension_setting_service_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 *MutateCampaignExtensionSettingsRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use MutateCampaignExtensionSettingsRequest.ProtoReflect.Descriptor instead. func (*MutateCampaignExtensionSettingsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCampaignExtensionSettingsRequest) GetCustomerId() string { @@ -153,7 +153,7 @@ type CampaignExtensionSettingOperation struct { func (x *CampaignExtensionSettingOperation) Reset() { *x = CampaignExtensionSettingOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -166,7 +166,7 @@ func (x *CampaignExtensionSettingOperation) String() string { func (*CampaignExtensionSettingOperation) ProtoMessage() {} func (x *CampaignExtensionSettingOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -179,7 +179,7 @@ func (x *CampaignExtensionSettingOperation) ProtoReflect() protoreflect.Message // Deprecated: Use CampaignExtensionSettingOperation.ProtoReflect.Descriptor instead. func (*CampaignExtensionSettingOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_rawDescGZIP(), []int{1} } func (x *CampaignExtensionSettingOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -265,7 +265,7 @@ type MutateCampaignExtensionSettingsResponse struct { func (x *MutateCampaignExtensionSettingsResponse) Reset() { *x = MutateCampaignExtensionSettingsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -278,7 +278,7 @@ func (x *MutateCampaignExtensionSettingsResponse) String() string { func (*MutateCampaignExtensionSettingsResponse) ProtoMessage() {} func (x *MutateCampaignExtensionSettingsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -291,7 +291,7 @@ func (x *MutateCampaignExtensionSettingsResponse) ProtoReflect() protoreflect.Me // Deprecated: Use MutateCampaignExtensionSettingsResponse.ProtoReflect.Descriptor instead. func (*MutateCampaignExtensionSettingsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCampaignExtensionSettingsResponse) GetPartialFailureError() *status.Status { @@ -325,7 +325,7 @@ type MutateCampaignExtensionSettingResult struct { func (x *MutateCampaignExtensionSettingResult) Reset() { *x = MutateCampaignExtensionSettingResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -338,7 +338,7 @@ func (x *MutateCampaignExtensionSettingResult) String() string { func (*MutateCampaignExtensionSettingResult) ProtoMessage() {} func (x *MutateCampaignExtensionSettingResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -351,7 +351,7 @@ func (x *MutateCampaignExtensionSettingResult) ProtoReflect() protoreflect.Messa // Deprecated: Use MutateCampaignExtensionSettingResult.ProtoReflect.Descriptor instead. func (*MutateCampaignExtensionSettingResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCampaignExtensionSettingResult) GetResourceName() string { @@ -368,22 +368,22 @@ func (x *MutateCampaignExtensionSettingResult) GetCampaignExtensionSetting() *re return nil } -var File_google_ads_googleads_v16_services_campaign_extension_setting_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_campaign_extension_setting_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_campaign_extension_setting_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, + 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, @@ -404,7 +404,7 @@ var file_google_ads_googleads_v16_services_campaign_extension_setting_service_pr 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x69, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, @@ -417,7 +417,7 @@ var file_google_ads_googleads_v16_services_campaign_extension_setting_service_pr 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, @@ -430,12 +430,12 @@ var file_google_ads_googleads_v16_services_campaign_extension_setting_service_pr 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x56, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x56, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 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, + 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x50, 0x0a, 0x06, @@ -454,7 +454,7 @@ var file_google_ads_googleads_v16_services_campaign_extension_setting_service_pr 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x61, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, @@ -470,7 +470,7 @@ var file_google_ads_googleads_v16_services_campaign_extension_setting_service_pr 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 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, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x18, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, @@ -480,17 +480,17 @@ var file_google_ads_googleads_v16_services_campaign_extension_setting_service_pr 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x63, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, - 0xe4, 0x93, 0x02, 0x44, 0x3a, 0x01, 0x2a, 0x22, 0x3f, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, + 0xe4, 0x93, 0x02, 0x44, 0x3a, 0x01, 0x2a, 0x22, 0x3f, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, @@ -500,59 +500,59 @@ var file_google_ads_googleads_v16_services_campaign_extension_setting_service_pr 0x77, 0x77, 0x77, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x90, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x24, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, - 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, + 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_rawDescData = file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_rawDesc + file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_rawDescData = file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_rawDescData + return file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_goTypes = []interface{}{ - (*MutateCampaignExtensionSettingsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCampaignExtensionSettingsRequest - (*CampaignExtensionSettingOperation)(nil), // 1: google.ads.googleads.v16.services.CampaignExtensionSettingOperation - (*MutateCampaignExtensionSettingsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateCampaignExtensionSettingsResponse - (*MutateCampaignExtensionSettingResult)(nil), // 3: google.ads.googleads.v16.services.MutateCampaignExtensionSettingResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_goTypes = []interface{}{ + (*MutateCampaignExtensionSettingsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCampaignExtensionSettingsRequest + (*CampaignExtensionSettingOperation)(nil), // 1: google.ads.googleads.v17.services.CampaignExtensionSettingOperation + (*MutateCampaignExtensionSettingsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateCampaignExtensionSettingsResponse + (*MutateCampaignExtensionSettingResult)(nil), // 3: google.ads.googleads.v17.services.MutateCampaignExtensionSettingResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.CampaignExtensionSetting)(nil), // 6: google.ads.googleads.v16.resources.CampaignExtensionSetting + (*resources.CampaignExtensionSetting)(nil), // 6: google.ads.googleads.v17.resources.CampaignExtensionSetting (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateCampaignExtensionSettingsRequest.operations:type_name -> google.ads.googleads.v16.services.CampaignExtensionSettingOperation - 4, // 1: google.ads.googleads.v16.services.MutateCampaignExtensionSettingsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.CampaignExtensionSettingOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.CampaignExtensionSettingOperation.create:type_name -> google.ads.googleads.v16.resources.CampaignExtensionSetting - 6, // 4: google.ads.googleads.v16.services.CampaignExtensionSettingOperation.update:type_name -> google.ads.googleads.v16.resources.CampaignExtensionSetting - 7, // 5: google.ads.googleads.v16.services.MutateCampaignExtensionSettingsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v16.services.MutateCampaignExtensionSettingsResponse.results:type_name -> google.ads.googleads.v16.services.MutateCampaignExtensionSettingResult - 6, // 7: google.ads.googleads.v16.services.MutateCampaignExtensionSettingResult.campaign_extension_setting:type_name -> google.ads.googleads.v16.resources.CampaignExtensionSetting - 0, // 8: google.ads.googleads.v16.services.CampaignExtensionSettingService.MutateCampaignExtensionSettings:input_type -> google.ads.googleads.v16.services.MutateCampaignExtensionSettingsRequest - 2, // 9: google.ads.googleads.v16.services.CampaignExtensionSettingService.MutateCampaignExtensionSettings:output_type -> google.ads.googleads.v16.services.MutateCampaignExtensionSettingsResponse +var file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateCampaignExtensionSettingsRequest.operations:type_name -> google.ads.googleads.v17.services.CampaignExtensionSettingOperation + 4, // 1: google.ads.googleads.v17.services.MutateCampaignExtensionSettingsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.CampaignExtensionSettingOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.CampaignExtensionSettingOperation.create:type_name -> google.ads.googleads.v17.resources.CampaignExtensionSetting + 6, // 4: google.ads.googleads.v17.services.CampaignExtensionSettingOperation.update:type_name -> google.ads.googleads.v17.resources.CampaignExtensionSetting + 7, // 5: google.ads.googleads.v17.services.MutateCampaignExtensionSettingsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v17.services.MutateCampaignExtensionSettingsResponse.results:type_name -> google.ads.googleads.v17.services.MutateCampaignExtensionSettingResult + 6, // 7: google.ads.googleads.v17.services.MutateCampaignExtensionSettingResult.campaign_extension_setting:type_name -> google.ads.googleads.v17.resources.CampaignExtensionSetting + 0, // 8: google.ads.googleads.v17.services.CampaignExtensionSettingService.MutateCampaignExtensionSettings:input_type -> google.ads.googleads.v17.services.MutateCampaignExtensionSettingsRequest + 2, // 9: google.ads.googleads.v17.services.CampaignExtensionSettingService.MutateCampaignExtensionSettings:output_type -> google.ads.googleads.v17.services.MutateCampaignExtensionSettingsResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -560,13 +560,13 @@ var file_google_ads_googleads_v16_services_campaign_extension_setting_service_pr 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_init() } -func file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_init() { - if File_google_ads_googleads_v16_services_campaign_extension_setting_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_init() } +func file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_init() { + if File_google_ads_googleads_v17_services_campaign_extension_setting_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignExtensionSettingsRequest); i { case 0: return &v.state @@ -578,7 +578,7 @@ func file_google_ads_googleads_v16_services_campaign_extension_setting_service_p return nil } } - file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignExtensionSettingOperation); i { case 0: return &v.state @@ -590,7 +590,7 @@ func file_google_ads_googleads_v16_services_campaign_extension_setting_service_p return nil } } - file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignExtensionSettingsResponse); i { case 0: return &v.state @@ -602,7 +602,7 @@ func file_google_ads_googleads_v16_services_campaign_extension_setting_service_p return nil } } - file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignExtensionSettingResult); i { case 0: return &v.state @@ -615,7 +615,7 @@ func file_google_ads_googleads_v16_services_campaign_extension_setting_service_p } } } - file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CampaignExtensionSettingOperation_Create)(nil), (*CampaignExtensionSettingOperation_Update)(nil), (*CampaignExtensionSettingOperation_Remove)(nil), @@ -624,18 +624,18 @@ func file_google_ads_googleads_v16_services_campaign_extension_setting_service_p out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_campaign_extension_setting_service_proto = out.File - file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_campaign_extension_setting_service_proto = out.File + file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_depIdxs = nil } diff --git a/services/campaign_extension_setting_service_grpc.pb.go b/services/campaign_extension_setting_service_grpc.pb.go index afcd284d..0e9c10a3 100644 --- a/services/campaign_extension_setting_service_grpc.pb.go +++ b/services/campaign_extension_setting_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_extension_setting_service.proto +// source: google/ads/googleads/v17/services/campaign_extension_setting_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CampaignExtensionSettingService_MutateCampaignExtensionSettings_FullMethodName = "/google.ads.googleads.v16.services.CampaignExtensionSettingService/MutateCampaignExtensionSettings" + CampaignExtensionSettingService_MutateCampaignExtensionSettings_FullMethodName = "/google.ads.googleads.v17.services.CampaignExtensionSettingService/MutateCampaignExtensionSettings" ) // CampaignExtensionSettingServiceClient is the client API for CampaignExtensionSettingService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage campaign extension settings. type CampaignExtensionSettingServiceClient interface { // Creates, updates, or removes campaign extension settings. Operation // statuses are returned. @@ -84,8 +86,9 @@ func NewCampaignExtensionSettingServiceClient(cc grpc.ClientConnInterface) Campa } func (c *campaignExtensionSettingServiceClient) MutateCampaignExtensionSettings(ctx context.Context, in *MutateCampaignExtensionSettingsRequest, opts ...grpc.CallOption) (*MutateCampaignExtensionSettingsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCampaignExtensionSettingsResponse) - err := c.cc.Invoke(ctx, CampaignExtensionSettingService_MutateCampaignExtensionSettings_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CampaignExtensionSettingService_MutateCampaignExtensionSettings_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -95,6 +98,8 @@ func (c *campaignExtensionSettingServiceClient) MutateCampaignExtensionSettings( // CampaignExtensionSettingServiceServer is the server API for CampaignExtensionSettingService service. // All implementations must embed UnimplementedCampaignExtensionSettingServiceServer // for forward compatibility +// +// Service to manage campaign extension settings. type CampaignExtensionSettingServiceServer interface { // Creates, updates, or removes campaign extension settings. Operation // statuses are returned. @@ -175,7 +180,7 @@ func _CampaignExtensionSettingService_MutateCampaignExtensionSettings_Handler(sr // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CampaignExtensionSettingService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CampaignExtensionSettingService", + ServiceName: "google.ads.googleads.v17.services.CampaignExtensionSettingService", HandlerType: (*CampaignExtensionSettingServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -184,5 +189,5 @@ var CampaignExtensionSettingService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/campaign_extension_setting_service.proto", + Metadata: "google/ads/googleads/v17/services/campaign_extension_setting_service.proto", } diff --git a/services/campaign_feed_service.pb.go b/services/campaign_feed_service.pb.go index a08a5522..21526c8d 100644 --- a/services/campaign_feed_service.pb.go +++ b/services/campaign_feed_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_feed_service.proto +// source: google/ads/googleads/v17/services/campaign_feed_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [CampaignFeedService.MutateCampaignFeeds][google.ads.googleads.v16.services.CampaignFeedService.MutateCampaignFeeds]. +// [CampaignFeedService.MutateCampaignFeeds][google.ads.googleads.v17.services.CampaignFeedService.MutateCampaignFeeds]. type MutateCampaignFeedsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -60,13 +60,13 @@ type MutateCampaignFeedsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateCampaignFeedsRequest) Reset() { *x = MutateCampaignFeedsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_feed_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_feed_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateCampaignFeedsRequest) String() string { func (*MutateCampaignFeedsRequest) ProtoMessage() {} func (x *MutateCampaignFeedsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_feed_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_feed_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateCampaignFeedsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignFeedsRequest.ProtoReflect.Descriptor instead. func (*MutateCampaignFeedsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_feed_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_campaign_feed_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCampaignFeedsRequest) GetCustomerId() string { @@ -151,7 +151,7 @@ type CampaignFeedOperation struct { func (x *CampaignFeedOperation) Reset() { *x = CampaignFeedOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_feed_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_feed_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164,7 +164,7 @@ func (x *CampaignFeedOperation) String() string { func (*CampaignFeedOperation) ProtoMessage() {} func (x *CampaignFeedOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_feed_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_feed_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177,7 +177,7 @@ func (x *CampaignFeedOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignFeedOperation.ProtoReflect.Descriptor instead. func (*CampaignFeedOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_feed_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_campaign_feed_service_proto_rawDescGZIP(), []int{1} } func (x *CampaignFeedOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -262,7 +262,7 @@ type MutateCampaignFeedsResponse struct { func (x *MutateCampaignFeedsResponse) Reset() { *x = MutateCampaignFeedsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_feed_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_feed_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -275,7 +275,7 @@ func (x *MutateCampaignFeedsResponse) String() string { func (*MutateCampaignFeedsResponse) ProtoMessage() {} func (x *MutateCampaignFeedsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_feed_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_feed_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -288,7 +288,7 @@ func (x *MutateCampaignFeedsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignFeedsResponse.ProtoReflect.Descriptor instead. func (*MutateCampaignFeedsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_feed_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_campaign_feed_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCampaignFeedsResponse) GetPartialFailureError() *status.Status { @@ -322,7 +322,7 @@ type MutateCampaignFeedResult struct { func (x *MutateCampaignFeedResult) Reset() { *x = MutateCampaignFeedResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_feed_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_feed_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -335,7 +335,7 @@ func (x *MutateCampaignFeedResult) String() string { func (*MutateCampaignFeedResult) ProtoMessage() {} func (x *MutateCampaignFeedResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_feed_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_feed_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -348,7 +348,7 @@ func (x *MutateCampaignFeedResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignFeedResult.ProtoReflect.Descriptor instead. func (*MutateCampaignFeedResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_feed_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_campaign_feed_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCampaignFeedResult) GetResourceName() string { @@ -365,21 +365,21 @@ func (x *MutateCampaignFeedResult) GetCampaignFeed() *resources.CampaignFeed { return nil } -var File_google_ads_googleads_v16_services_campaign_feed_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_campaign_feed_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_campaign_feed_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_campaign_feed_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 0x6f, 0x6f, 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, @@ -399,7 +399,7 @@ var file_google_ads_googleads_v16_services_campaign_feed_service_proto_rawDesc = 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5d, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, @@ -410,7 +410,7 @@ var file_google_ads_googleads_v16_services_campaign_feed_service_proto_rawDesc = 0x74, 0x65, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, + 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, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, @@ -423,12 +423,12 @@ var file_google_ads_googleads_v16_services_campaign_feed_service_proto_rawDesc = 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x4a, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 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, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x4a, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 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, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x44, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2a, 0xfa, 0x41, 0x27, 0x0a, 0x25, 0x67, 0x6f, 0x6f, @@ -444,7 +444,7 @@ var file_google_ads_googleads_v16_services_campaign_feed_service_proto_rawDesc = 0x72, 0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x55, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xc2, 0x01, 0x0a, 0x18, 0x4d, 0x75, 0x74, @@ -457,23 +457,23 @@ var file_google_ads_googleads_v16_services_campaign_feed_service_proto_rawDesc = 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x55, 0x0a, 0x0d, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 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, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x52, 0x0c, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x32, 0xcc, 0x02, 0x0a, 0x13, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xed, 0x01, 0x0a, 0x13, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x57, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x38, 0x3a, 0x01, 0x2a, - 0x22, 0x33, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, + 0x22, 0x33, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, @@ -482,58 +482,58 @@ var file_google_ads_googleads_v16_services_campaign_feed_service_proto_rawDesc = 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x84, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x18, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, - 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, + 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_campaign_feed_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_campaign_feed_service_proto_rawDescData = file_google_ads_googleads_v16_services_campaign_feed_service_proto_rawDesc + file_google_ads_googleads_v17_services_campaign_feed_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_campaign_feed_service_proto_rawDescData = file_google_ads_googleads_v17_services_campaign_feed_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_campaign_feed_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_campaign_feed_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_campaign_feed_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_campaign_feed_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_campaign_feed_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_campaign_feed_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_campaign_feed_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_campaign_feed_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_campaign_feed_service_proto_rawDescData + return file_google_ads_googleads_v17_services_campaign_feed_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_campaign_feed_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_campaign_feed_service_proto_goTypes = []interface{}{ - (*MutateCampaignFeedsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCampaignFeedsRequest - (*CampaignFeedOperation)(nil), // 1: google.ads.googleads.v16.services.CampaignFeedOperation - (*MutateCampaignFeedsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateCampaignFeedsResponse - (*MutateCampaignFeedResult)(nil), // 3: google.ads.googleads.v16.services.MutateCampaignFeedResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_campaign_feed_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_campaign_feed_service_proto_goTypes = []interface{}{ + (*MutateCampaignFeedsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCampaignFeedsRequest + (*CampaignFeedOperation)(nil), // 1: google.ads.googleads.v17.services.CampaignFeedOperation + (*MutateCampaignFeedsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateCampaignFeedsResponse + (*MutateCampaignFeedResult)(nil), // 3: google.ads.googleads.v17.services.MutateCampaignFeedResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.CampaignFeed)(nil), // 6: google.ads.googleads.v16.resources.CampaignFeed + (*resources.CampaignFeed)(nil), // 6: google.ads.googleads.v17.resources.CampaignFeed (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_campaign_feed_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateCampaignFeedsRequest.operations:type_name -> google.ads.googleads.v16.services.CampaignFeedOperation - 4, // 1: google.ads.googleads.v16.services.MutateCampaignFeedsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.CampaignFeedOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.CampaignFeedOperation.create:type_name -> google.ads.googleads.v16.resources.CampaignFeed - 6, // 4: google.ads.googleads.v16.services.CampaignFeedOperation.update:type_name -> google.ads.googleads.v16.resources.CampaignFeed - 7, // 5: google.ads.googleads.v16.services.MutateCampaignFeedsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v16.services.MutateCampaignFeedsResponse.results:type_name -> google.ads.googleads.v16.services.MutateCampaignFeedResult - 6, // 7: google.ads.googleads.v16.services.MutateCampaignFeedResult.campaign_feed:type_name -> google.ads.googleads.v16.resources.CampaignFeed - 0, // 8: google.ads.googleads.v16.services.CampaignFeedService.MutateCampaignFeeds:input_type -> google.ads.googleads.v16.services.MutateCampaignFeedsRequest - 2, // 9: google.ads.googleads.v16.services.CampaignFeedService.MutateCampaignFeeds:output_type -> google.ads.googleads.v16.services.MutateCampaignFeedsResponse +var file_google_ads_googleads_v17_services_campaign_feed_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateCampaignFeedsRequest.operations:type_name -> google.ads.googleads.v17.services.CampaignFeedOperation + 4, // 1: google.ads.googleads.v17.services.MutateCampaignFeedsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.CampaignFeedOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.CampaignFeedOperation.create:type_name -> google.ads.googleads.v17.resources.CampaignFeed + 6, // 4: google.ads.googleads.v17.services.CampaignFeedOperation.update:type_name -> google.ads.googleads.v17.resources.CampaignFeed + 7, // 5: google.ads.googleads.v17.services.MutateCampaignFeedsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v17.services.MutateCampaignFeedsResponse.results:type_name -> google.ads.googleads.v17.services.MutateCampaignFeedResult + 6, // 7: google.ads.googleads.v17.services.MutateCampaignFeedResult.campaign_feed:type_name -> google.ads.googleads.v17.resources.CampaignFeed + 0, // 8: google.ads.googleads.v17.services.CampaignFeedService.MutateCampaignFeeds:input_type -> google.ads.googleads.v17.services.MutateCampaignFeedsRequest + 2, // 9: google.ads.googleads.v17.services.CampaignFeedService.MutateCampaignFeeds:output_type -> google.ads.googleads.v17.services.MutateCampaignFeedsResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -541,13 +541,13 @@ var file_google_ads_googleads_v16_services_campaign_feed_service_proto_depIdxs = 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_campaign_feed_service_proto_init() } -func file_google_ads_googleads_v16_services_campaign_feed_service_proto_init() { - if File_google_ads_googleads_v16_services_campaign_feed_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_campaign_feed_service_proto_init() } +func file_google_ads_googleads_v17_services_campaign_feed_service_proto_init() { + if File_google_ads_googleads_v17_services_campaign_feed_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_campaign_feed_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_feed_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignFeedsRequest); i { case 0: return &v.state @@ -559,7 +559,7 @@ func file_google_ads_googleads_v16_services_campaign_feed_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_campaign_feed_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_feed_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignFeedOperation); i { case 0: return &v.state @@ -571,7 +571,7 @@ func file_google_ads_googleads_v16_services_campaign_feed_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_campaign_feed_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_feed_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignFeedsResponse); i { case 0: return &v.state @@ -583,7 +583,7 @@ func file_google_ads_googleads_v16_services_campaign_feed_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_campaign_feed_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_feed_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignFeedResult); i { case 0: return &v.state @@ -596,7 +596,7 @@ func file_google_ads_googleads_v16_services_campaign_feed_service_proto_init() { } } } - file_google_ads_googleads_v16_services_campaign_feed_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_campaign_feed_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CampaignFeedOperation_Create)(nil), (*CampaignFeedOperation_Update)(nil), (*CampaignFeedOperation_Remove)(nil), @@ -605,18 +605,18 @@ func file_google_ads_googleads_v16_services_campaign_feed_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_campaign_feed_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_campaign_feed_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_campaign_feed_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_campaign_feed_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_campaign_feed_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_campaign_feed_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_campaign_feed_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_campaign_feed_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_campaign_feed_service_proto = out.File - file_google_ads_googleads_v16_services_campaign_feed_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_campaign_feed_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_campaign_feed_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_campaign_feed_service_proto = out.File + file_google_ads_googleads_v17_services_campaign_feed_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_campaign_feed_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_campaign_feed_service_proto_depIdxs = nil } diff --git a/services/campaign_feed_service_grpc.pb.go b/services/campaign_feed_service_grpc.pb.go index 02d60254..81ecab64 100644 --- a/services/campaign_feed_service_grpc.pb.go +++ b/services/campaign_feed_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_feed_service.proto +// source: google/ads/googleads/v17/services/campaign_feed_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CampaignFeedService_MutateCampaignFeeds_FullMethodName = "/google.ads.googleads.v16.services.CampaignFeedService/MutateCampaignFeeds" + CampaignFeedService_MutateCampaignFeeds_FullMethodName = "/google.ads.googleads.v17.services.CampaignFeedService/MutateCampaignFeeds" ) // CampaignFeedServiceClient is the client API for CampaignFeedService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage campaign feeds. type CampaignFeedServiceClient interface { // Creates, updates, or removes campaign feeds. Operation statuses are // returned. @@ -80,8 +82,9 @@ func NewCampaignFeedServiceClient(cc grpc.ClientConnInterface) CampaignFeedServi } func (c *campaignFeedServiceClient) MutateCampaignFeeds(ctx context.Context, in *MutateCampaignFeedsRequest, opts ...grpc.CallOption) (*MutateCampaignFeedsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCampaignFeedsResponse) - err := c.cc.Invoke(ctx, CampaignFeedService_MutateCampaignFeeds_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CampaignFeedService_MutateCampaignFeeds_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -91,6 +94,8 @@ func (c *campaignFeedServiceClient) MutateCampaignFeeds(ctx context.Context, in // CampaignFeedServiceServer is the server API for CampaignFeedService service. // All implementations must embed UnimplementedCampaignFeedServiceServer // for forward compatibility +// +// Service to manage campaign feeds. type CampaignFeedServiceServer interface { // Creates, updates, or removes campaign feeds. Operation statuses are // returned. @@ -166,7 +171,7 @@ func _CampaignFeedService_MutateCampaignFeeds_Handler(srv interface{}, ctx conte // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CampaignFeedService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CampaignFeedService", + ServiceName: "google.ads.googleads.v17.services.CampaignFeedService", HandlerType: (*CampaignFeedServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -175,5 +180,5 @@ var CampaignFeedService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/campaign_feed_service.proto", + Metadata: "google/ads/googleads/v17/services/campaign_feed_service.proto", } diff --git a/services/campaign_group_service.pb.go b/services/campaign_group_service.pb.go index c36b4ecf..856388b4 100644 --- a/services/campaign_group_service.pb.go +++ b/services/campaign_group_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_group_service.proto +// source: google/ads/googleads/v17/services/campaign_group_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [CampaignGroupService.MutateCampaignGroups][google.ads.googleads.v16.services.CampaignGroupService.MutateCampaignGroups]. +// [CampaignGroupService.MutateCampaignGroups][google.ads.googleads.v17.services.CampaignGroupService.MutateCampaignGroups]. type MutateCampaignGroupsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -60,13 +60,13 @@ type MutateCampaignGroupsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateCampaignGroupsRequest) Reset() { *x = MutateCampaignGroupsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_group_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_group_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateCampaignGroupsRequest) String() string { func (*MutateCampaignGroupsRequest) ProtoMessage() {} func (x *MutateCampaignGroupsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_group_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_group_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateCampaignGroupsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignGroupsRequest.ProtoReflect.Descriptor instead. func (*MutateCampaignGroupsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_group_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_campaign_group_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCampaignGroupsRequest) GetCustomerId() string { @@ -151,7 +151,7 @@ type CampaignGroupOperation struct { func (x *CampaignGroupOperation) Reset() { *x = CampaignGroupOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_group_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_group_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164,7 +164,7 @@ func (x *CampaignGroupOperation) String() string { func (*CampaignGroupOperation) ProtoMessage() {} func (x *CampaignGroupOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_group_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_group_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177,7 +177,7 @@ func (x *CampaignGroupOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignGroupOperation.ProtoReflect.Descriptor instead. func (*CampaignGroupOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_group_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_campaign_group_service_proto_rawDescGZIP(), []int{1} } func (x *CampaignGroupOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -263,7 +263,7 @@ type MutateCampaignGroupsResponse struct { func (x *MutateCampaignGroupsResponse) Reset() { *x = MutateCampaignGroupsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_group_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_group_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -276,7 +276,7 @@ func (x *MutateCampaignGroupsResponse) String() string { func (*MutateCampaignGroupsResponse) ProtoMessage() {} func (x *MutateCampaignGroupsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_group_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_group_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -289,7 +289,7 @@ func (x *MutateCampaignGroupsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignGroupsResponse.ProtoReflect.Descriptor instead. func (*MutateCampaignGroupsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_group_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_campaign_group_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCampaignGroupsResponse) GetResults() []*MutateCampaignGroupResult { @@ -323,7 +323,7 @@ type MutateCampaignGroupResult struct { func (x *MutateCampaignGroupResult) Reset() { *x = MutateCampaignGroupResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_group_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_group_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -336,7 +336,7 @@ func (x *MutateCampaignGroupResult) String() string { func (*MutateCampaignGroupResult) ProtoMessage() {} func (x *MutateCampaignGroupResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_group_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_group_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -349,7 +349,7 @@ func (x *MutateCampaignGroupResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignGroupResult.ProtoReflect.Descriptor instead. func (*MutateCampaignGroupResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_group_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_campaign_group_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCampaignGroupResult) GetResourceName() string { @@ -366,21 +366,21 @@ func (x *MutateCampaignGroupResult) GetCampaignGroup() *resources.CampaignGroup return nil } -var File_google_ads_googleads_v16_services_campaign_group_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_campaign_group_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_campaign_group_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_campaign_group_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 0x67, 0x6f, 0x6f, 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, @@ -400,7 +400,7 @@ var file_google_ads_googleads_v16_services_campaign_group_service_proto_rawDesc 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5e, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, @@ -412,7 +412,7 @@ var file_google_ads_googleads_v16_services_campaign_group_service_proto_rawDesc 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, @@ -424,12 +424,12 @@ var file_google_ads_googleads_v16_services_campaign_group_service_proto_rawDesc 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x4b, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 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, 0x72, + 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x4b, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x02, 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, 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, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x45, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2b, 0xfa, @@ -441,7 +441,7 @@ var file_google_ads_googleads_v16_services_campaign_group_service_proto_rawDesc 0x61, 0x69, 0x67, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x56, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x46, 0x0a, 0x15, 0x70, 0x61, @@ -459,23 +459,23 @@ var file_google_ads_googleads_v16_services_campaign_group_service_proto_rawDesc 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x58, 0x0a, 0x0e, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x02, 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, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x0d, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x32, 0xd1, 0x02, 0x0a, 0x14, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xf1, 0x01, 0x0a, 0x14, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x12, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x58, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, - 0x93, 0x02, 0x39, 0x3a, 0x01, 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, + 0x93, 0x02, 0x39, 0x3a, 0x01, 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, @@ -485,58 +485,58 @@ var file_google_ads_googleads_v16_services_campaign_group_service_proto_rawDesc 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x85, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x19, 0x43, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x19, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, + 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, + 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, - 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_campaign_group_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_campaign_group_service_proto_rawDescData = file_google_ads_googleads_v16_services_campaign_group_service_proto_rawDesc + file_google_ads_googleads_v17_services_campaign_group_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_campaign_group_service_proto_rawDescData = file_google_ads_googleads_v17_services_campaign_group_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_campaign_group_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_campaign_group_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_campaign_group_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_campaign_group_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_campaign_group_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_campaign_group_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_campaign_group_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_campaign_group_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_campaign_group_service_proto_rawDescData + return file_google_ads_googleads_v17_services_campaign_group_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_campaign_group_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_campaign_group_service_proto_goTypes = []interface{}{ - (*MutateCampaignGroupsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCampaignGroupsRequest - (*CampaignGroupOperation)(nil), // 1: google.ads.googleads.v16.services.CampaignGroupOperation - (*MutateCampaignGroupsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateCampaignGroupsResponse - (*MutateCampaignGroupResult)(nil), // 3: google.ads.googleads.v16.services.MutateCampaignGroupResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_campaign_group_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_campaign_group_service_proto_goTypes = []interface{}{ + (*MutateCampaignGroupsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCampaignGroupsRequest + (*CampaignGroupOperation)(nil), // 1: google.ads.googleads.v17.services.CampaignGroupOperation + (*MutateCampaignGroupsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateCampaignGroupsResponse + (*MutateCampaignGroupResult)(nil), // 3: google.ads.googleads.v17.services.MutateCampaignGroupResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.CampaignGroup)(nil), // 6: google.ads.googleads.v16.resources.CampaignGroup + (*resources.CampaignGroup)(nil), // 6: google.ads.googleads.v17.resources.CampaignGroup (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_campaign_group_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateCampaignGroupsRequest.operations:type_name -> google.ads.googleads.v16.services.CampaignGroupOperation - 4, // 1: google.ads.googleads.v16.services.MutateCampaignGroupsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.CampaignGroupOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.CampaignGroupOperation.create:type_name -> google.ads.googleads.v16.resources.CampaignGroup - 6, // 4: google.ads.googleads.v16.services.CampaignGroupOperation.update:type_name -> google.ads.googleads.v16.resources.CampaignGroup - 3, // 5: google.ads.googleads.v16.services.MutateCampaignGroupsResponse.results:type_name -> google.ads.googleads.v16.services.MutateCampaignGroupResult - 7, // 6: google.ads.googleads.v16.services.MutateCampaignGroupsResponse.partial_failure_error:type_name -> google.rpc.Status - 6, // 7: google.ads.googleads.v16.services.MutateCampaignGroupResult.campaign_group:type_name -> google.ads.googleads.v16.resources.CampaignGroup - 0, // 8: google.ads.googleads.v16.services.CampaignGroupService.MutateCampaignGroups:input_type -> google.ads.googleads.v16.services.MutateCampaignGroupsRequest - 2, // 9: google.ads.googleads.v16.services.CampaignGroupService.MutateCampaignGroups:output_type -> google.ads.googleads.v16.services.MutateCampaignGroupsResponse +var file_google_ads_googleads_v17_services_campaign_group_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateCampaignGroupsRequest.operations:type_name -> google.ads.googleads.v17.services.CampaignGroupOperation + 4, // 1: google.ads.googleads.v17.services.MutateCampaignGroupsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.CampaignGroupOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.CampaignGroupOperation.create:type_name -> google.ads.googleads.v17.resources.CampaignGroup + 6, // 4: google.ads.googleads.v17.services.CampaignGroupOperation.update:type_name -> google.ads.googleads.v17.resources.CampaignGroup + 3, // 5: google.ads.googleads.v17.services.MutateCampaignGroupsResponse.results:type_name -> google.ads.googleads.v17.services.MutateCampaignGroupResult + 7, // 6: google.ads.googleads.v17.services.MutateCampaignGroupsResponse.partial_failure_error:type_name -> google.rpc.Status + 6, // 7: google.ads.googleads.v17.services.MutateCampaignGroupResult.campaign_group:type_name -> google.ads.googleads.v17.resources.CampaignGroup + 0, // 8: google.ads.googleads.v17.services.CampaignGroupService.MutateCampaignGroups:input_type -> google.ads.googleads.v17.services.MutateCampaignGroupsRequest + 2, // 9: google.ads.googleads.v17.services.CampaignGroupService.MutateCampaignGroups:output_type -> google.ads.googleads.v17.services.MutateCampaignGroupsResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -544,13 +544,13 @@ var file_google_ads_googleads_v16_services_campaign_group_service_proto_depIdxs 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_campaign_group_service_proto_init() } -func file_google_ads_googleads_v16_services_campaign_group_service_proto_init() { - if File_google_ads_googleads_v16_services_campaign_group_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_campaign_group_service_proto_init() } +func file_google_ads_googleads_v17_services_campaign_group_service_proto_init() { + if File_google_ads_googleads_v17_services_campaign_group_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_campaign_group_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_group_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignGroupsRequest); i { case 0: return &v.state @@ -562,7 +562,7 @@ func file_google_ads_googleads_v16_services_campaign_group_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_campaign_group_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_group_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignGroupOperation); i { case 0: return &v.state @@ -574,7 +574,7 @@ func file_google_ads_googleads_v16_services_campaign_group_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_campaign_group_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_group_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignGroupsResponse); i { case 0: return &v.state @@ -586,7 +586,7 @@ func file_google_ads_googleads_v16_services_campaign_group_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_campaign_group_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_group_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignGroupResult); i { case 0: return &v.state @@ -599,7 +599,7 @@ func file_google_ads_googleads_v16_services_campaign_group_service_proto_init() } } } - file_google_ads_googleads_v16_services_campaign_group_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_campaign_group_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CampaignGroupOperation_Create)(nil), (*CampaignGroupOperation_Update)(nil), (*CampaignGroupOperation_Remove)(nil), @@ -608,18 +608,18 @@ func file_google_ads_googleads_v16_services_campaign_group_service_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_campaign_group_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_campaign_group_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_campaign_group_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_campaign_group_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_campaign_group_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_campaign_group_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_campaign_group_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_campaign_group_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_campaign_group_service_proto = out.File - file_google_ads_googleads_v16_services_campaign_group_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_campaign_group_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_campaign_group_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_campaign_group_service_proto = out.File + file_google_ads_googleads_v17_services_campaign_group_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_campaign_group_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_campaign_group_service_proto_depIdxs = nil } diff --git a/services/campaign_group_service_grpc.pb.go b/services/campaign_group_service_grpc.pb.go index a94e84ca..3ce69789 100644 --- a/services/campaign_group_service_grpc.pb.go +++ b/services/campaign_group_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_group_service.proto +// source: google/ads/googleads/v17/services/campaign_group_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CampaignGroupService_MutateCampaignGroups_FullMethodName = "/google.ads.googleads.v16.services.CampaignGroupService/MutateCampaignGroups" + CampaignGroupService_MutateCampaignGroups_FullMethodName = "/google.ads.googleads.v17.services.CampaignGroupService/MutateCampaignGroups" ) // CampaignGroupServiceClient is the client API for CampaignGroupService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage campaign groups. type CampaignGroupServiceClient interface { // Creates, updates, or removes campaign groups. Operation statuses are // returned. @@ -54,8 +56,9 @@ func NewCampaignGroupServiceClient(cc grpc.ClientConnInterface) CampaignGroupSer } func (c *campaignGroupServiceClient) MutateCampaignGroups(ctx context.Context, in *MutateCampaignGroupsRequest, opts ...grpc.CallOption) (*MutateCampaignGroupsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCampaignGroupsResponse) - err := c.cc.Invoke(ctx, CampaignGroupService_MutateCampaignGroups_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CampaignGroupService_MutateCampaignGroups_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -65,6 +68,8 @@ func (c *campaignGroupServiceClient) MutateCampaignGroups(ctx context.Context, i // CampaignGroupServiceServer is the server API for CampaignGroupService service. // All implementations must embed UnimplementedCampaignGroupServiceServer // for forward compatibility +// +// Service to manage campaign groups. type CampaignGroupServiceServer interface { // Creates, updates, or removes campaign groups. Operation statuses are // returned. @@ -114,7 +119,7 @@ func _CampaignGroupService_MutateCampaignGroups_Handler(srv interface{}, ctx con // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CampaignGroupService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CampaignGroupService", + ServiceName: "google.ads.googleads.v17.services.CampaignGroupService", HandlerType: (*CampaignGroupServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -123,5 +128,5 @@ var CampaignGroupService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/campaign_group_service.proto", + Metadata: "google/ads/googleads/v17/services/campaign_group_service.proto", } diff --git a/services/campaign_label_service.pb.go b/services/campaign_label_service.pb.go index 0458d5a5..999b29a9 100644 --- a/services/campaign_label_service.pb.go +++ b/services/campaign_label_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_label_service.proto +// source: google/ads/googleads/v17/services/campaign_label_service.proto package services @@ -38,7 +38,7 @@ const ( ) // Request message for -// [CampaignLabelService.MutateCampaignLabels][google.ads.googleads.v16.services.CampaignLabelService.MutateCampaignLabels]. +// [CampaignLabelService.MutateCampaignLabels][google.ads.googleads.v17.services.CampaignLabelService.MutateCampaignLabels]. type MutateCampaignLabelsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -63,7 +63,7 @@ type MutateCampaignLabelsRequest struct { func (x *MutateCampaignLabelsRequest) Reset() { *x = MutateCampaignLabelsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_label_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_label_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76,7 +76,7 @@ func (x *MutateCampaignLabelsRequest) String() string { func (*MutateCampaignLabelsRequest) ProtoMessage() {} func (x *MutateCampaignLabelsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_label_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_label_service_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 *MutateCampaignLabelsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignLabelsRequest.ProtoReflect.Descriptor instead. func (*MutateCampaignLabelsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_label_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_campaign_label_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCampaignLabelsRequest) GetCustomerId() string { @@ -138,7 +138,7 @@ type CampaignLabelOperation struct { func (x *CampaignLabelOperation) Reset() { *x = CampaignLabelOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_label_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_label_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -151,7 +151,7 @@ func (x *CampaignLabelOperation) String() string { func (*CampaignLabelOperation) ProtoMessage() {} func (x *CampaignLabelOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_label_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_label_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -164,7 +164,7 @@ func (x *CampaignLabelOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignLabelOperation.ProtoReflect.Descriptor instead. func (*CampaignLabelOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_label_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_campaign_label_service_proto_rawDescGZIP(), []int{1} } func (m *CampaignLabelOperation) GetOperation() isCampaignLabelOperation_Operation { @@ -228,7 +228,7 @@ type MutateCampaignLabelsResponse struct { func (x *MutateCampaignLabelsResponse) Reset() { *x = MutateCampaignLabelsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_label_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_label_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -241,7 +241,7 @@ func (x *MutateCampaignLabelsResponse) String() string { func (*MutateCampaignLabelsResponse) ProtoMessage() {} func (x *MutateCampaignLabelsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_label_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_label_service_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 *MutateCampaignLabelsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignLabelsResponse.ProtoReflect.Descriptor instead. func (*MutateCampaignLabelsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_label_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_campaign_label_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCampaignLabelsResponse) GetPartialFailureError() *status.Status { @@ -284,7 +284,7 @@ type MutateCampaignLabelResult struct { func (x *MutateCampaignLabelResult) Reset() { *x = MutateCampaignLabelResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_label_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_label_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -297,7 +297,7 @@ func (x *MutateCampaignLabelResult) String() string { func (*MutateCampaignLabelResult) ProtoMessage() {} func (x *MutateCampaignLabelResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_label_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_label_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -310,7 +310,7 @@ func (x *MutateCampaignLabelResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignLabelResult.ProtoReflect.Descriptor instead. func (*MutateCampaignLabelResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_label_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_campaign_label_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCampaignLabelResult) GetResourceName() string { @@ -320,17 +320,17 @@ func (x *MutateCampaignLabelResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_campaign_label_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_campaign_label_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_campaign_label_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_campaign_label_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 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, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, @@ -348,7 +348,7 @@ var file_google_ads_googleads_v16_services_campaign_label_service_proto_rawDesc 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5e, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, @@ -361,7 +361,7 @@ var file_google_ads_googleads_v16_services_campaign_label_service_proto_rawDesc 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4b, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x45, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2b, 0xfa, 0x41, 0x28, 0x0a, 0x26, 0x67, 0x6f, 0x6f, 0x67, 0x6c, @@ -377,7 +377,7 @@ var file_google_ads_googleads_v16_services_campaign_label_service_proto_rawDesc 0x72, 0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x56, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x6d, 0x0a, 0x19, 0x4d, 0x75, 0x74, @@ -392,16 +392,16 @@ var file_google_ads_googleads_v16_services_campaign_label_service_proto_rawDesc 0x65, 0x12, 0xf1, 0x01, 0x0a, 0x14, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x58, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x39, 0x3a, 0x01, 0x2a, 0x22, - 0x34, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, + 0x34, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, @@ -410,52 +410,52 @@ var file_google_ads_googleads_v16_services_campaign_label_service_proto_rawDesc 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x85, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x19, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, + 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_campaign_label_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_campaign_label_service_proto_rawDescData = file_google_ads_googleads_v16_services_campaign_label_service_proto_rawDesc + file_google_ads_googleads_v17_services_campaign_label_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_campaign_label_service_proto_rawDescData = file_google_ads_googleads_v17_services_campaign_label_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_campaign_label_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_campaign_label_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_campaign_label_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_campaign_label_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_campaign_label_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_campaign_label_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_campaign_label_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_campaign_label_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_campaign_label_service_proto_rawDescData + return file_google_ads_googleads_v17_services_campaign_label_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_campaign_label_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_campaign_label_service_proto_goTypes = []interface{}{ - (*MutateCampaignLabelsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCampaignLabelsRequest - (*CampaignLabelOperation)(nil), // 1: google.ads.googleads.v16.services.CampaignLabelOperation - (*MutateCampaignLabelsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateCampaignLabelsResponse - (*MutateCampaignLabelResult)(nil), // 3: google.ads.googleads.v16.services.MutateCampaignLabelResult - (*resources.CampaignLabel)(nil), // 4: google.ads.googleads.v16.resources.CampaignLabel +var file_google_ads_googleads_v17_services_campaign_label_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_campaign_label_service_proto_goTypes = []interface{}{ + (*MutateCampaignLabelsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCampaignLabelsRequest + (*CampaignLabelOperation)(nil), // 1: google.ads.googleads.v17.services.CampaignLabelOperation + (*MutateCampaignLabelsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateCampaignLabelsResponse + (*MutateCampaignLabelResult)(nil), // 3: google.ads.googleads.v17.services.MutateCampaignLabelResult + (*resources.CampaignLabel)(nil), // 4: google.ads.googleads.v17.resources.CampaignLabel (*status.Status)(nil), // 5: google.rpc.Status } -var file_google_ads_googleads_v16_services_campaign_label_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateCampaignLabelsRequest.operations:type_name -> google.ads.googleads.v16.services.CampaignLabelOperation - 4, // 1: google.ads.googleads.v16.services.CampaignLabelOperation.create:type_name -> google.ads.googleads.v16.resources.CampaignLabel - 5, // 2: google.ads.googleads.v16.services.MutateCampaignLabelsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 3: google.ads.googleads.v16.services.MutateCampaignLabelsResponse.results:type_name -> google.ads.googleads.v16.services.MutateCampaignLabelResult - 0, // 4: google.ads.googleads.v16.services.CampaignLabelService.MutateCampaignLabels:input_type -> google.ads.googleads.v16.services.MutateCampaignLabelsRequest - 2, // 5: google.ads.googleads.v16.services.CampaignLabelService.MutateCampaignLabels:output_type -> google.ads.googleads.v16.services.MutateCampaignLabelsResponse +var file_google_ads_googleads_v17_services_campaign_label_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateCampaignLabelsRequest.operations:type_name -> google.ads.googleads.v17.services.CampaignLabelOperation + 4, // 1: google.ads.googleads.v17.services.CampaignLabelOperation.create:type_name -> google.ads.googleads.v17.resources.CampaignLabel + 5, // 2: google.ads.googleads.v17.services.MutateCampaignLabelsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 3: google.ads.googleads.v17.services.MutateCampaignLabelsResponse.results:type_name -> google.ads.googleads.v17.services.MutateCampaignLabelResult + 0, // 4: google.ads.googleads.v17.services.CampaignLabelService.MutateCampaignLabels:input_type -> google.ads.googleads.v17.services.MutateCampaignLabelsRequest + 2, // 5: google.ads.googleads.v17.services.CampaignLabelService.MutateCampaignLabels:output_type -> google.ads.googleads.v17.services.MutateCampaignLabelsResponse 5, // [5:6] is the sub-list for method output_type 4, // [4:5] is the sub-list for method input_type 4, // [4:4] is the sub-list for extension type_name @@ -463,13 +463,13 @@ var file_google_ads_googleads_v16_services_campaign_label_service_proto_depIdxs 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_campaign_label_service_proto_init() } -func file_google_ads_googleads_v16_services_campaign_label_service_proto_init() { - if File_google_ads_googleads_v16_services_campaign_label_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_campaign_label_service_proto_init() } +func file_google_ads_googleads_v17_services_campaign_label_service_proto_init() { + if File_google_ads_googleads_v17_services_campaign_label_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_campaign_label_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_label_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignLabelsRequest); i { case 0: return &v.state @@ -481,7 +481,7 @@ func file_google_ads_googleads_v16_services_campaign_label_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_campaign_label_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_label_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignLabelOperation); i { case 0: return &v.state @@ -493,7 +493,7 @@ func file_google_ads_googleads_v16_services_campaign_label_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_campaign_label_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_label_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignLabelsResponse); i { case 0: return &v.state @@ -505,7 +505,7 @@ func file_google_ads_googleads_v16_services_campaign_label_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_campaign_label_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_label_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignLabelResult); i { case 0: return &v.state @@ -518,7 +518,7 @@ func file_google_ads_googleads_v16_services_campaign_label_service_proto_init() } } } - file_google_ads_googleads_v16_services_campaign_label_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_campaign_label_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CampaignLabelOperation_Create)(nil), (*CampaignLabelOperation_Remove)(nil), } @@ -526,18 +526,18 @@ func file_google_ads_googleads_v16_services_campaign_label_service_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_campaign_label_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_campaign_label_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_campaign_label_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_campaign_label_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_campaign_label_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_campaign_label_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_campaign_label_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_campaign_label_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_campaign_label_service_proto = out.File - file_google_ads_googleads_v16_services_campaign_label_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_campaign_label_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_campaign_label_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_campaign_label_service_proto = out.File + file_google_ads_googleads_v17_services_campaign_label_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_campaign_label_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_campaign_label_service_proto_depIdxs = nil } diff --git a/services/campaign_label_service_grpc.pb.go b/services/campaign_label_service_grpc.pb.go index 9cfc8c09..ee1b5978 100644 --- a/services/campaign_label_service_grpc.pb.go +++ b/services/campaign_label_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_label_service.proto +// source: google/ads/googleads/v17/services/campaign_label_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CampaignLabelService_MutateCampaignLabels_FullMethodName = "/google.ads.googleads.v16.services.CampaignLabelService/MutateCampaignLabels" + CampaignLabelService_MutateCampaignLabels_FullMethodName = "/google.ads.googleads.v17.services.CampaignLabelService/MutateCampaignLabels" ) // CampaignLabelServiceClient is the client API for CampaignLabelService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage labels on campaigns. type CampaignLabelServiceClient interface { // Creates and removes campaign-label relationships. // Operation statuses are returned. @@ -68,8 +70,9 @@ func NewCampaignLabelServiceClient(cc grpc.ClientConnInterface) CampaignLabelSer } func (c *campaignLabelServiceClient) MutateCampaignLabels(ctx context.Context, in *MutateCampaignLabelsRequest, opts ...grpc.CallOption) (*MutateCampaignLabelsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCampaignLabelsResponse) - err := c.cc.Invoke(ctx, CampaignLabelService_MutateCampaignLabels_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CampaignLabelService_MutateCampaignLabels_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -79,6 +82,8 @@ func (c *campaignLabelServiceClient) MutateCampaignLabels(ctx context.Context, i // CampaignLabelServiceServer is the server API for CampaignLabelService service. // All implementations must embed UnimplementedCampaignLabelServiceServer // for forward compatibility +// +// Service to manage labels on campaigns. type CampaignLabelServiceServer interface { // Creates and removes campaign-label relationships. // Operation statuses are returned. @@ -142,7 +147,7 @@ func _CampaignLabelService_MutateCampaignLabels_Handler(srv interface{}, ctx con // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CampaignLabelService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CampaignLabelService", + ServiceName: "google.ads.googleads.v17.services.CampaignLabelService", HandlerType: (*CampaignLabelServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -151,5 +156,5 @@ var CampaignLabelService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/campaign_label_service.proto", + Metadata: "google/ads/googleads/v17/services/campaign_label_service.proto", } diff --git a/services/campaign_lifecycle_goal_service.pb.go b/services/campaign_lifecycle_goal_service.pb.go index 94ca100e..eb45b0b9 100644 --- a/services/campaign_lifecycle_goal_service.pb.go +++ b/services/campaign_lifecycle_goal_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_lifecycle_goal_service.proto +// source: google/ads/googleads/v17/services/campaign_lifecycle_goal_service.proto package services @@ -56,7 +56,7 @@ type ConfigureCampaignLifecycleGoalsRequest struct { func (x *ConfigureCampaignLifecycleGoalsRequest) Reset() { *x = ConfigureCampaignLifecycleGoalsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -69,7 +69,7 @@ func (x *ConfigureCampaignLifecycleGoalsRequest) String() string { func (*ConfigureCampaignLifecycleGoalsRequest) ProtoMessage() {} func (x *ConfigureCampaignLifecycleGoalsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_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 *ConfigureCampaignLifecycleGoalsRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use ConfigureCampaignLifecycleGoalsRequest.ProtoReflect.Descriptor instead. func (*ConfigureCampaignLifecycleGoalsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_rawDescGZIP(), []int{0} } func (x *ConfigureCampaignLifecycleGoalsRequest) GetCustomerId() string { @@ -127,7 +127,7 @@ type CampaignLifecycleGoalOperation struct { func (x *CampaignLifecycleGoalOperation) Reset() { *x = CampaignLifecycleGoalOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -140,7 +140,7 @@ func (x *CampaignLifecycleGoalOperation) String() string { func (*CampaignLifecycleGoalOperation) ProtoMessage() {} func (x *CampaignLifecycleGoalOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_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 *CampaignLifecycleGoalOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignLifecycleGoalOperation.ProtoReflect.Descriptor instead. func (*CampaignLifecycleGoalOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_rawDescGZIP(), []int{1} } func (x *CampaignLifecycleGoalOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -218,7 +218,7 @@ type ConfigureCampaignLifecycleGoalsResponse struct { func (x *ConfigureCampaignLifecycleGoalsResponse) Reset() { *x = ConfigureCampaignLifecycleGoalsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -231,7 +231,7 @@ func (x *ConfigureCampaignLifecycleGoalsResponse) String() string { func (*ConfigureCampaignLifecycleGoalsResponse) ProtoMessage() {} func (x *ConfigureCampaignLifecycleGoalsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -244,7 +244,7 @@ func (x *ConfigureCampaignLifecycleGoalsResponse) ProtoReflect() protoreflect.Me // Deprecated: Use ConfigureCampaignLifecycleGoalsResponse.ProtoReflect.Descriptor instead. func (*ConfigureCampaignLifecycleGoalsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_rawDescGZIP(), []int{2} } func (x *ConfigureCampaignLifecycleGoalsResponse) GetResult() *ConfigureCampaignLifecycleGoalsResult { @@ -267,7 +267,7 @@ type ConfigureCampaignLifecycleGoalsResult struct { func (x *ConfigureCampaignLifecycleGoalsResult) Reset() { *x = ConfigureCampaignLifecycleGoalsResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -280,7 +280,7 @@ func (x *ConfigureCampaignLifecycleGoalsResult) String() string { func (*ConfigureCampaignLifecycleGoalsResult) ProtoMessage() {} func (x *ConfigureCampaignLifecycleGoalsResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -293,7 +293,7 @@ func (x *ConfigureCampaignLifecycleGoalsResult) ProtoReflect() protoreflect.Mess // Deprecated: Use ConfigureCampaignLifecycleGoalsResult.ProtoReflect.Descriptor instead. func (*ConfigureCampaignLifecycleGoalsResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_rawDescGZIP(), []int{3} } func (x *ConfigureCampaignLifecycleGoalsResult) GetResourceName() string { @@ -303,18 +303,18 @@ func (x *ConfigureCampaignLifecycleGoalsResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x40, 0x67, 0x6f, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 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, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, @@ -334,7 +334,7 @@ var file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto 0x65, 0x72, 0x49, 0x64, 0x12, 0x64, 0x0a, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 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, 0x36, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x0a, 0x0d, 0x76, 0x61, @@ -349,12 +349,12 @@ var file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x53, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x53, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 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, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, @@ -363,7 +363,7 @@ var file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto 0x6f, 0x61, 0x6c, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x60, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x73, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x81, @@ -381,17 +381,17 @@ var file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x66, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x77, 0xda, 0x41, 0x15, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x59, 0x3a, 0x01, - 0x2a, 0x22, 0x54, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x2a, 0x22, 0x54, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x3a, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, @@ -402,54 +402,54 @@ var file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto 0x77, 0x77, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x8d, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x21, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, + 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_rawDescData = file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_rawDesc + file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_rawDescData = file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_rawDescData + return file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_goTypes = []interface{}{ - (*ConfigureCampaignLifecycleGoalsRequest)(nil), // 0: google.ads.googleads.v16.services.ConfigureCampaignLifecycleGoalsRequest - (*CampaignLifecycleGoalOperation)(nil), // 1: google.ads.googleads.v16.services.CampaignLifecycleGoalOperation - (*ConfigureCampaignLifecycleGoalsResponse)(nil), // 2: google.ads.googleads.v16.services.ConfigureCampaignLifecycleGoalsResponse - (*ConfigureCampaignLifecycleGoalsResult)(nil), // 3: google.ads.googleads.v16.services.ConfigureCampaignLifecycleGoalsResult +var file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_goTypes = []interface{}{ + (*ConfigureCampaignLifecycleGoalsRequest)(nil), // 0: google.ads.googleads.v17.services.ConfigureCampaignLifecycleGoalsRequest + (*CampaignLifecycleGoalOperation)(nil), // 1: google.ads.googleads.v17.services.CampaignLifecycleGoalOperation + (*ConfigureCampaignLifecycleGoalsResponse)(nil), // 2: google.ads.googleads.v17.services.ConfigureCampaignLifecycleGoalsResponse + (*ConfigureCampaignLifecycleGoalsResult)(nil), // 3: google.ads.googleads.v17.services.ConfigureCampaignLifecycleGoalsResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.CampaignLifecycleGoal)(nil), // 5: google.ads.googleads.v16.resources.CampaignLifecycleGoal -} -var file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.ConfigureCampaignLifecycleGoalsRequest.operation:type_name -> google.ads.googleads.v16.services.CampaignLifecycleGoalOperation - 4, // 1: google.ads.googleads.v16.services.CampaignLifecycleGoalOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v16.services.CampaignLifecycleGoalOperation.create:type_name -> google.ads.googleads.v16.resources.CampaignLifecycleGoal - 5, // 3: google.ads.googleads.v16.services.CampaignLifecycleGoalOperation.update:type_name -> google.ads.googleads.v16.resources.CampaignLifecycleGoal - 3, // 4: google.ads.googleads.v16.services.ConfigureCampaignLifecycleGoalsResponse.result:type_name -> google.ads.googleads.v16.services.ConfigureCampaignLifecycleGoalsResult - 0, // 5: google.ads.googleads.v16.services.CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals:input_type -> google.ads.googleads.v16.services.ConfigureCampaignLifecycleGoalsRequest - 2, // 6: google.ads.googleads.v16.services.CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals:output_type -> google.ads.googleads.v16.services.ConfigureCampaignLifecycleGoalsResponse + (*resources.CampaignLifecycleGoal)(nil), // 5: google.ads.googleads.v17.resources.CampaignLifecycleGoal +} +var file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.ConfigureCampaignLifecycleGoalsRequest.operation:type_name -> google.ads.googleads.v17.services.CampaignLifecycleGoalOperation + 4, // 1: google.ads.googleads.v17.services.CampaignLifecycleGoalOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v17.services.CampaignLifecycleGoalOperation.create:type_name -> google.ads.googleads.v17.resources.CampaignLifecycleGoal + 5, // 3: google.ads.googleads.v17.services.CampaignLifecycleGoalOperation.update:type_name -> google.ads.googleads.v17.resources.CampaignLifecycleGoal + 3, // 4: google.ads.googleads.v17.services.ConfigureCampaignLifecycleGoalsResponse.result:type_name -> google.ads.googleads.v17.services.ConfigureCampaignLifecycleGoalsResult + 0, // 5: google.ads.googleads.v17.services.CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals:input_type -> google.ads.googleads.v17.services.ConfigureCampaignLifecycleGoalsRequest + 2, // 6: google.ads.googleads.v17.services.CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals:output_type -> google.ads.googleads.v17.services.ConfigureCampaignLifecycleGoalsResponse 6, // [6:7] is the sub-list for method output_type 5, // [5:6] is the sub-list for method input_type 5, // [5:5] is the sub-list for extension type_name @@ -457,13 +457,13 @@ var file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto 0, // [0:5] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_init() } -func file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_init() { - if File_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_init() } +func file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_init() { + if File_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConfigureCampaignLifecycleGoalsRequest); i { case 0: return &v.state @@ -475,7 +475,7 @@ func file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_prot return nil } } - file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignLifecycleGoalOperation); i { case 0: return &v.state @@ -487,7 +487,7 @@ func file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_prot return nil } } - file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConfigureCampaignLifecycleGoalsResponse); i { case 0: return &v.state @@ -499,7 +499,7 @@ func file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_prot return nil } } - file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConfigureCampaignLifecycleGoalsResult); i { case 0: return &v.state @@ -512,7 +512,7 @@ func file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_prot } } } - file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CampaignLifecycleGoalOperation_Create)(nil), (*CampaignLifecycleGoalOperation_Update)(nil), } @@ -520,18 +520,18 @@ func file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_prot out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto = out.File - file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_campaign_lifecycle_goal_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto = out.File + file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_campaign_lifecycle_goal_service_proto_depIdxs = nil } diff --git a/services/campaign_lifecycle_goal_service_grpc.pb.go b/services/campaign_lifecycle_goal_service_grpc.pb.go index 8a552de1..e1212f89 100644 --- a/services/campaign_lifecycle_goal_service_grpc.pb.go +++ b/services/campaign_lifecycle_goal_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_lifecycle_goal_service.proto +// source: google/ads/googleads/v17/services/campaign_lifecycle_goal_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CampaignLifecycleGoalService_ConfigureCampaignLifecycleGoals_FullMethodName = "/google.ads.googleads.v16.services.CampaignLifecycleGoalService/ConfigureCampaignLifecycleGoals" + CampaignLifecycleGoalService_ConfigureCampaignLifecycleGoals_FullMethodName = "/google.ads.googleads.v17.services.CampaignLifecycleGoalService/ConfigureCampaignLifecycleGoals" ) // CampaignLifecycleGoalServiceClient is the client API for CampaignLifecycleGoalService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to configure campaign lifecycle goals. type CampaignLifecycleGoalServiceClient interface { // Process the given campaign lifecycle configurations. // @@ -63,8 +65,9 @@ func NewCampaignLifecycleGoalServiceClient(cc grpc.ClientConnInterface) Campaign } func (c *campaignLifecycleGoalServiceClient) ConfigureCampaignLifecycleGoals(ctx context.Context, in *ConfigureCampaignLifecycleGoalsRequest, opts ...grpc.CallOption) (*ConfigureCampaignLifecycleGoalsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(ConfigureCampaignLifecycleGoalsResponse) - err := c.cc.Invoke(ctx, CampaignLifecycleGoalService_ConfigureCampaignLifecycleGoals_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CampaignLifecycleGoalService_ConfigureCampaignLifecycleGoals_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -74,6 +77,8 @@ func (c *campaignLifecycleGoalServiceClient) ConfigureCampaignLifecycleGoals(ctx // CampaignLifecycleGoalServiceServer is the server API for CampaignLifecycleGoalService service. // All implementations must embed UnimplementedCampaignLifecycleGoalServiceServer // for forward compatibility +// +// Service to configure campaign lifecycle goals. type CampaignLifecycleGoalServiceServer interface { // Process the given campaign lifecycle configurations. // @@ -133,7 +138,7 @@ func _CampaignLifecycleGoalService_ConfigureCampaignLifecycleGoals_Handler(srv i // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CampaignLifecycleGoalService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CampaignLifecycleGoalService", + ServiceName: "google.ads.googleads.v17.services.CampaignLifecycleGoalService", HandlerType: (*CampaignLifecycleGoalServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -142,5 +147,5 @@ var CampaignLifecycleGoalService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/campaign_lifecycle_goal_service.proto", + Metadata: "google/ads/googleads/v17/services/campaign_lifecycle_goal_service.proto", } diff --git a/services/campaign_service.pb.go b/services/campaign_service.pb.go index 5ed4a68e..9f47ed1b 100644 --- a/services/campaign_service.pb.go +++ b/services/campaign_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_service.proto +// source: google/ads/googleads/v17/services/campaign_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [CampaignService.MutateCampaigns][google.ads.googleads.v16.services.CampaignService.MutateCampaigns]. +// [CampaignService.MutateCampaigns][google.ads.googleads.v17.services.CampaignService.MutateCampaigns]. type MutateCampaignsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -60,13 +60,13 @@ type MutateCampaignsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateCampaignsRequest) Reset() { *x = MutateCampaignsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateCampaignsRequest) String() string { func (*MutateCampaignsRequest) ProtoMessage() {} func (x *MutateCampaignsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateCampaignsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignsRequest.ProtoReflect.Descriptor instead. func (*MutateCampaignsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_campaign_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCampaignsRequest) GetCustomerId() string { @@ -151,7 +151,7 @@ type CampaignOperation struct { func (x *CampaignOperation) Reset() { *x = CampaignOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164,7 +164,7 @@ func (x *CampaignOperation) String() string { func (*CampaignOperation) ProtoMessage() {} func (x *CampaignOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177,7 +177,7 @@ func (x *CampaignOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignOperation.ProtoReflect.Descriptor instead. func (*CampaignOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_campaign_service_proto_rawDescGZIP(), []int{1} } func (x *CampaignOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -262,7 +262,7 @@ type MutateCampaignsResponse struct { func (x *MutateCampaignsResponse) Reset() { *x = MutateCampaignsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -275,7 +275,7 @@ func (x *MutateCampaignsResponse) String() string { func (*MutateCampaignsResponse) ProtoMessage() {} func (x *MutateCampaignsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -288,7 +288,7 @@ func (x *MutateCampaignsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignsResponse.ProtoReflect.Descriptor instead. func (*MutateCampaignsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_campaign_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCampaignsResponse) GetPartialFailureError() *status.Status { @@ -321,7 +321,7 @@ type MutateCampaignResult struct { func (x *MutateCampaignResult) Reset() { *x = MutateCampaignResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -334,7 +334,7 @@ func (x *MutateCampaignResult) String() string { func (*MutateCampaignResult) ProtoMessage() {} func (x *MutateCampaignResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -347,7 +347,7 @@ func (x *MutateCampaignResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignResult.ProtoReflect.Descriptor instead. func (*MutateCampaignResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_campaign_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCampaignResult) GetResourceName() string { @@ -364,21 +364,21 @@ func (x *MutateCampaignResult) GetCampaign() *resources.Campaign { return nil } -var File_google_ads_googleads_v16_services_campaign_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_campaign_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_campaign_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_campaign_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3a, 0x67, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, + 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x67, 0x6f, 0x6f, 0x67, @@ -397,7 +397,7 @@ var file_google_ads_googleads_v16_services_campaign_service_proto_rawDesc = []by 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x59, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, @@ -408,7 +408,7 @@ var file_google_ads_googleads_v16_services_campaign_service_proto_rawDesc = []by 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, @@ -421,11 +421,11 @@ var file_google_ads_googleads_v16_services_campaign_service_proto_rawDesc = []by 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x46, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x46, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 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, 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, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x40, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x26, 0xfa, 0x41, 0x23, 0x0a, 0x21, 0x67, @@ -441,7 +441,7 @@ var file_google_ads_googleads_v16_services_campaign_service_proto_rawDesc = []by 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x51, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xad, 0x01, 0x0a, 0x14, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, @@ -453,21 +453,21 @@ var file_google_ads_googleads_v16_services_campaign_service_proto_rawDesc = []by 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x48, 0x0a, 0x08, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x52, 0x08, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x32, 0xb8, 0x02, 0x0a, 0x0f, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xdd, 0x01, 0x0a, 0x0f, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x53, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x34, 0x3a, 0x01, - 0x2a, 0x22, 0x2f, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x2a, 0x22, 0x2f, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, @@ -476,58 +476,58 @@ var file_google_ads_googleads_v16_services_campaign_service_proto_rawDesc = []by 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x80, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x14, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, + 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_campaign_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_campaign_service_proto_rawDescData = file_google_ads_googleads_v16_services_campaign_service_proto_rawDesc + file_google_ads_googleads_v17_services_campaign_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_campaign_service_proto_rawDescData = file_google_ads_googleads_v17_services_campaign_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_campaign_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_campaign_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_campaign_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_campaign_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_campaign_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_campaign_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_campaign_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_campaign_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_campaign_service_proto_rawDescData + return file_google_ads_googleads_v17_services_campaign_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_campaign_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_campaign_service_proto_goTypes = []interface{}{ - (*MutateCampaignsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCampaignsRequest - (*CampaignOperation)(nil), // 1: google.ads.googleads.v16.services.CampaignOperation - (*MutateCampaignsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateCampaignsResponse - (*MutateCampaignResult)(nil), // 3: google.ads.googleads.v16.services.MutateCampaignResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_campaign_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_campaign_service_proto_goTypes = []interface{}{ + (*MutateCampaignsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCampaignsRequest + (*CampaignOperation)(nil), // 1: google.ads.googleads.v17.services.CampaignOperation + (*MutateCampaignsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateCampaignsResponse + (*MutateCampaignResult)(nil), // 3: google.ads.googleads.v17.services.MutateCampaignResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.Campaign)(nil), // 6: google.ads.googleads.v16.resources.Campaign + (*resources.Campaign)(nil), // 6: google.ads.googleads.v17.resources.Campaign (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_campaign_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateCampaignsRequest.operations:type_name -> google.ads.googleads.v16.services.CampaignOperation - 4, // 1: google.ads.googleads.v16.services.MutateCampaignsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.CampaignOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.CampaignOperation.create:type_name -> google.ads.googleads.v16.resources.Campaign - 6, // 4: google.ads.googleads.v16.services.CampaignOperation.update:type_name -> google.ads.googleads.v16.resources.Campaign - 7, // 5: google.ads.googleads.v16.services.MutateCampaignsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v16.services.MutateCampaignsResponse.results:type_name -> google.ads.googleads.v16.services.MutateCampaignResult - 6, // 7: google.ads.googleads.v16.services.MutateCampaignResult.campaign:type_name -> google.ads.googleads.v16.resources.Campaign - 0, // 8: google.ads.googleads.v16.services.CampaignService.MutateCampaigns:input_type -> google.ads.googleads.v16.services.MutateCampaignsRequest - 2, // 9: google.ads.googleads.v16.services.CampaignService.MutateCampaigns:output_type -> google.ads.googleads.v16.services.MutateCampaignsResponse +var file_google_ads_googleads_v17_services_campaign_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateCampaignsRequest.operations:type_name -> google.ads.googleads.v17.services.CampaignOperation + 4, // 1: google.ads.googleads.v17.services.MutateCampaignsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.CampaignOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.CampaignOperation.create:type_name -> google.ads.googleads.v17.resources.Campaign + 6, // 4: google.ads.googleads.v17.services.CampaignOperation.update:type_name -> google.ads.googleads.v17.resources.Campaign + 7, // 5: google.ads.googleads.v17.services.MutateCampaignsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v17.services.MutateCampaignsResponse.results:type_name -> google.ads.googleads.v17.services.MutateCampaignResult + 6, // 7: google.ads.googleads.v17.services.MutateCampaignResult.campaign:type_name -> google.ads.googleads.v17.resources.Campaign + 0, // 8: google.ads.googleads.v17.services.CampaignService.MutateCampaigns:input_type -> google.ads.googleads.v17.services.MutateCampaignsRequest + 2, // 9: google.ads.googleads.v17.services.CampaignService.MutateCampaigns:output_type -> google.ads.googleads.v17.services.MutateCampaignsResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -535,13 +535,13 @@ var file_google_ads_googleads_v16_services_campaign_service_proto_depIdxs = []in 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_campaign_service_proto_init() } -func file_google_ads_googleads_v16_services_campaign_service_proto_init() { - if File_google_ads_googleads_v16_services_campaign_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_campaign_service_proto_init() } +func file_google_ads_googleads_v17_services_campaign_service_proto_init() { + if File_google_ads_googleads_v17_services_campaign_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_campaign_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignsRequest); i { case 0: return &v.state @@ -553,7 +553,7 @@ func file_google_ads_googleads_v16_services_campaign_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_campaign_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignOperation); i { case 0: return &v.state @@ -565,7 +565,7 @@ func file_google_ads_googleads_v16_services_campaign_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_campaign_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignsResponse); i { case 0: return &v.state @@ -577,7 +577,7 @@ func file_google_ads_googleads_v16_services_campaign_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_campaign_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignResult); i { case 0: return &v.state @@ -590,7 +590,7 @@ func file_google_ads_googleads_v16_services_campaign_service_proto_init() { } } } - file_google_ads_googleads_v16_services_campaign_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_campaign_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CampaignOperation_Create)(nil), (*CampaignOperation_Update)(nil), (*CampaignOperation_Remove)(nil), @@ -599,18 +599,18 @@ func file_google_ads_googleads_v16_services_campaign_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_campaign_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_campaign_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_campaign_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_campaign_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_campaign_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_campaign_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_campaign_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_campaign_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_campaign_service_proto = out.File - file_google_ads_googleads_v16_services_campaign_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_campaign_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_campaign_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_campaign_service_proto = out.File + file_google_ads_googleads_v17_services_campaign_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_campaign_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_campaign_service_proto_depIdxs = nil } diff --git a/services/campaign_service_grpc.pb.go b/services/campaign_service_grpc.pb.go index b6947bf2..e4fdf99b 100644 --- a/services/campaign_service_grpc.pb.go +++ b/services/campaign_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_service.proto +// source: google/ads/googleads/v17/services/campaign_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CampaignService_MutateCampaigns_FullMethodName = "/google.ads.googleads.v16.services.CampaignService/MutateCampaigns" + CampaignService_MutateCampaigns_FullMethodName = "/google.ads.googleads.v17.services.CampaignService/MutateCampaigns" ) // CampaignServiceClient is the client API for CampaignService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage campaigns. type CampaignServiceClient interface { // Creates, updates, or removes campaigns. Operation statuses are returned. // @@ -91,8 +93,9 @@ func NewCampaignServiceClient(cc grpc.ClientConnInterface) CampaignServiceClient } func (c *campaignServiceClient) MutateCampaigns(ctx context.Context, in *MutateCampaignsRequest, opts ...grpc.CallOption) (*MutateCampaignsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCampaignsResponse) - err := c.cc.Invoke(ctx, CampaignService_MutateCampaigns_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CampaignService_MutateCampaigns_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -102,6 +105,8 @@ func (c *campaignServiceClient) MutateCampaigns(ctx context.Context, in *MutateC // CampaignServiceServer is the server API for CampaignService service. // All implementations must embed UnimplementedCampaignServiceServer // for forward compatibility +// +// Service to manage campaigns. type CampaignServiceServer interface { // Creates, updates, or removes campaigns. Operation statuses are returned. // @@ -188,7 +193,7 @@ func _CampaignService_MutateCampaigns_Handler(srv interface{}, ctx context.Conte // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CampaignService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CampaignService", + ServiceName: "google.ads.googleads.v17.services.CampaignService", HandlerType: (*CampaignServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -197,5 +202,5 @@ var CampaignService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/campaign_service.proto", + Metadata: "google/ads/googleads/v17/services/campaign_service.proto", } diff --git a/services/campaign_shared_set_service.pb.go b/services/campaign_shared_set_service.pb.go index 315b4f57..a7102966 100644 --- a/services/campaign_shared_set_service.pb.go +++ b/services/campaign_shared_set_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_shared_set_service.proto +// source: google/ads/googleads/v17/services/campaign_shared_set_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [CampaignSharedSetService.MutateCampaignSharedSets][google.ads.googleads.v16.services.CampaignSharedSetService.MutateCampaignSharedSets]. +// [CampaignSharedSetService.MutateCampaignSharedSets][google.ads.googleads.v17.services.CampaignSharedSetService.MutateCampaignSharedSets]. type MutateCampaignSharedSetsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -61,13 +61,13 @@ type MutateCampaignSharedSetsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateCampaignSharedSetsRequest) Reset() { *x = MutateCampaignSharedSetsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80,7 +80,7 @@ func (x *MutateCampaignSharedSetsRequest) String() string { func (*MutateCampaignSharedSetsRequest) ProtoMessage() {} func (x *MutateCampaignSharedSetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93,7 +93,7 @@ func (x *MutateCampaignSharedSetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignSharedSetsRequest.ProtoReflect.Descriptor instead. func (*MutateCampaignSharedSetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCampaignSharedSetsRequest) GetCustomerId() string { @@ -149,7 +149,7 @@ type CampaignSharedSetOperation struct { func (x *CampaignSharedSetOperation) Reset() { *x = CampaignSharedSetOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -162,7 +162,7 @@ func (x *CampaignSharedSetOperation) String() string { func (*CampaignSharedSetOperation) ProtoMessage() {} func (x *CampaignSharedSetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -175,7 +175,7 @@ func (x *CampaignSharedSetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignSharedSetOperation.ProtoReflect.Descriptor instead. func (*CampaignSharedSetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_rawDescGZIP(), []int{1} } func (m *CampaignSharedSetOperation) GetOperation() isCampaignSharedSetOperation_Operation { @@ -239,7 +239,7 @@ type MutateCampaignSharedSetsResponse struct { func (x *MutateCampaignSharedSetsResponse) Reset() { *x = MutateCampaignSharedSetsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -252,7 +252,7 @@ func (x *MutateCampaignSharedSetsResponse) String() string { func (*MutateCampaignSharedSetsResponse) ProtoMessage() {} func (x *MutateCampaignSharedSetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -265,7 +265,7 @@ func (x *MutateCampaignSharedSetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignSharedSetsResponse.ProtoReflect.Descriptor instead. func (*MutateCampaignSharedSetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCampaignSharedSetsResponse) GetPartialFailureError() *status.Status { @@ -299,7 +299,7 @@ type MutateCampaignSharedSetResult struct { func (x *MutateCampaignSharedSetResult) Reset() { *x = MutateCampaignSharedSetResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -312,7 +312,7 @@ func (x *MutateCampaignSharedSetResult) String() string { func (*MutateCampaignSharedSetResult) ProtoMessage() {} func (x *MutateCampaignSharedSetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -325,7 +325,7 @@ func (x *MutateCampaignSharedSetResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignSharedSetResult.ProtoReflect.Descriptor instead. func (*MutateCampaignSharedSetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCampaignSharedSetResult) GetResourceName() string { @@ -342,21 +342,21 @@ func (x *MutateCampaignSharedSetResult) GetCampaignSharedSet() *resources.Campai return nil } -var File_google_ads_googleads_v16_services_campaign_shared_set_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_campaign_shared_set_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_campaign_shared_set_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 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, 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, 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, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, @@ -375,7 +375,7 @@ var file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_raw 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x62, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, @@ -387,7 +387,7 @@ var file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_raw 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, @@ -396,7 +396,7 @@ var file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_raw 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4f, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 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, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x49, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2f, 0xfa, 0x41, 0x2c, @@ -413,7 +413,7 @@ var file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_raw 0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x5a, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xdc, 0x01, 0x0a, @@ -427,7 +427,7 @@ var file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_raw 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x65, 0x0a, 0x13, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, 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, 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, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x52, 0x11, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x32, 0xe5, 0x02, 0x0a, 0x18, @@ -435,17 +435,17 @@ var file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_raw 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x81, 0x02, 0x0a, 0x18, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x73, 0x12, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5c, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3d, 0x3a, - 0x01, 0x2a, 0x22, 0x38, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x01, 0x2a, 0x22, 0x38, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, @@ -455,55 +455,55 @@ var file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_raw 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x89, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1d, 0x43, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1d, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_rawDescData = file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_rawDesc + file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_rawDescData = file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_rawDescData + return file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_goTypes = []interface{}{ - (*MutateCampaignSharedSetsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCampaignSharedSetsRequest - (*CampaignSharedSetOperation)(nil), // 1: google.ads.googleads.v16.services.CampaignSharedSetOperation - (*MutateCampaignSharedSetsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateCampaignSharedSetsResponse - (*MutateCampaignSharedSetResult)(nil), // 3: google.ads.googleads.v16.services.MutateCampaignSharedSetResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - (*resources.CampaignSharedSet)(nil), // 5: google.ads.googleads.v16.resources.CampaignSharedSet +var file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_goTypes = []interface{}{ + (*MutateCampaignSharedSetsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCampaignSharedSetsRequest + (*CampaignSharedSetOperation)(nil), // 1: google.ads.googleads.v17.services.CampaignSharedSetOperation + (*MutateCampaignSharedSetsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateCampaignSharedSetsResponse + (*MutateCampaignSharedSetResult)(nil), // 3: google.ads.googleads.v17.services.MutateCampaignSharedSetResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + (*resources.CampaignSharedSet)(nil), // 5: google.ads.googleads.v17.resources.CampaignSharedSet (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateCampaignSharedSetsRequest.operations:type_name -> google.ads.googleads.v16.services.CampaignSharedSetOperation - 4, // 1: google.ads.googleads.v16.services.MutateCampaignSharedSetsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.CampaignSharedSetOperation.create:type_name -> google.ads.googleads.v16.resources.CampaignSharedSet - 6, // 3: google.ads.googleads.v16.services.MutateCampaignSharedSetsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 4: google.ads.googleads.v16.services.MutateCampaignSharedSetsResponse.results:type_name -> google.ads.googleads.v16.services.MutateCampaignSharedSetResult - 5, // 5: google.ads.googleads.v16.services.MutateCampaignSharedSetResult.campaign_shared_set:type_name -> google.ads.googleads.v16.resources.CampaignSharedSet - 0, // 6: google.ads.googleads.v16.services.CampaignSharedSetService.MutateCampaignSharedSets:input_type -> google.ads.googleads.v16.services.MutateCampaignSharedSetsRequest - 2, // 7: google.ads.googleads.v16.services.CampaignSharedSetService.MutateCampaignSharedSets:output_type -> google.ads.googleads.v16.services.MutateCampaignSharedSetsResponse +var file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateCampaignSharedSetsRequest.operations:type_name -> google.ads.googleads.v17.services.CampaignSharedSetOperation + 4, // 1: google.ads.googleads.v17.services.MutateCampaignSharedSetsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.CampaignSharedSetOperation.create:type_name -> google.ads.googleads.v17.resources.CampaignSharedSet + 6, // 3: google.ads.googleads.v17.services.MutateCampaignSharedSetsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 4: google.ads.googleads.v17.services.MutateCampaignSharedSetsResponse.results:type_name -> google.ads.googleads.v17.services.MutateCampaignSharedSetResult + 5, // 5: google.ads.googleads.v17.services.MutateCampaignSharedSetResult.campaign_shared_set:type_name -> google.ads.googleads.v17.resources.CampaignSharedSet + 0, // 6: google.ads.googleads.v17.services.CampaignSharedSetService.MutateCampaignSharedSets:input_type -> google.ads.googleads.v17.services.MutateCampaignSharedSetsRequest + 2, // 7: google.ads.googleads.v17.services.CampaignSharedSetService.MutateCampaignSharedSets:output_type -> google.ads.googleads.v17.services.MutateCampaignSharedSetsResponse 7, // [7:8] is the sub-list for method output_type 6, // [6:7] is the sub-list for method input_type 6, // [6:6] is the sub-list for extension type_name @@ -511,13 +511,13 @@ var file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_dep 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_init() } -func file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_init() { - if File_google_ads_googleads_v16_services_campaign_shared_set_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_init() } +func file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_init() { + if File_google_ads_googleads_v17_services_campaign_shared_set_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignSharedSetsRequest); i { case 0: return &v.state @@ -529,7 +529,7 @@ func file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_in return nil } } - file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignSharedSetOperation); i { case 0: return &v.state @@ -541,7 +541,7 @@ func file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_in return nil } } - file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignSharedSetsResponse); i { case 0: return &v.state @@ -553,7 +553,7 @@ func file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_in return nil } } - file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCampaignSharedSetResult); i { case 0: return &v.state @@ -566,7 +566,7 @@ func file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_in } } } - file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CampaignSharedSetOperation_Create)(nil), (*CampaignSharedSetOperation_Remove)(nil), } @@ -574,18 +574,18 @@ func file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_in out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_campaign_shared_set_service_proto = out.File - file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_campaign_shared_set_service_proto = out.File + file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_depIdxs = nil } diff --git a/services/campaign_shared_set_service_grpc.pb.go b/services/campaign_shared_set_service_grpc.pb.go index 4d170144..cfdf5d00 100644 --- a/services/campaign_shared_set_service_grpc.pb.go +++ b/services/campaign_shared_set_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/campaign_shared_set_service.proto +// source: google/ads/googleads/v17/services/campaign_shared_set_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CampaignSharedSetService_MutateCampaignSharedSets_FullMethodName = "/google.ads.googleads.v16.services.CampaignSharedSetService/MutateCampaignSharedSets" + CampaignSharedSetService_MutateCampaignSharedSets_FullMethodName = "/google.ads.googleads.v17.services.CampaignSharedSetService/MutateCampaignSharedSets" ) // CampaignSharedSetServiceClient is the client API for CampaignSharedSetService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage campaign shared sets. type CampaignSharedSetServiceClient interface { // Creates or removes campaign shared sets. Operation statuses are returned. // @@ -78,8 +80,9 @@ func NewCampaignSharedSetServiceClient(cc grpc.ClientConnInterface) CampaignShar } func (c *campaignSharedSetServiceClient) MutateCampaignSharedSets(ctx context.Context, in *MutateCampaignSharedSetsRequest, opts ...grpc.CallOption) (*MutateCampaignSharedSetsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCampaignSharedSetsResponse) - err := c.cc.Invoke(ctx, CampaignSharedSetService_MutateCampaignSharedSets_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CampaignSharedSetService_MutateCampaignSharedSets_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -89,6 +92,8 @@ func (c *campaignSharedSetServiceClient) MutateCampaignSharedSets(ctx context.Co // CampaignSharedSetServiceServer is the server API for CampaignSharedSetService service. // All implementations must embed UnimplementedCampaignSharedSetServiceServer // for forward compatibility +// +// Service to manage campaign shared sets. type CampaignSharedSetServiceServer interface { // Creates or removes campaign shared sets. Operation statuses are returned. // @@ -163,7 +168,7 @@ func _CampaignSharedSetService_MutateCampaignSharedSets_Handler(srv interface{}, // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CampaignSharedSetService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CampaignSharedSetService", + ServiceName: "google.ads.googleads.v17.services.CampaignSharedSetService", HandlerType: (*CampaignSharedSetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -172,5 +177,5 @@ var CampaignSharedSetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/campaign_shared_set_service.proto", + Metadata: "google/ads/googleads/v17/services/campaign_shared_set_service.proto", } diff --git a/services/conversion_action_service.pb.go b/services/conversion_action_service.pb.go index 8194522b..830bbb0a 100644 --- a/services/conversion_action_service.pb.go +++ b/services/conversion_action_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/conversion_action_service.proto +// source: google/ads/googleads/v17/services/conversion_action_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [ConversionActionService.MutateConversionActions][google.ads.googleads.v16.services.ConversionActionService.MutateConversionActions]. +// [ConversionActionService.MutateConversionActions][google.ads.googleads.v17.services.ConversionActionService.MutateConversionActions]. type MutateConversionActionsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -62,13 +62,13 @@ type MutateConversionActionsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateConversionActionsRequest) Reset() { *x = MutateConversionActionsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_action_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_conversion_action_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81,7 +81,7 @@ func (x *MutateConversionActionsRequest) String() string { func (*MutateConversionActionsRequest) ProtoMessage() {} func (x *MutateConversionActionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_action_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_conversion_action_service_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 *MutateConversionActionsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateConversionActionsRequest.ProtoReflect.Descriptor instead. func (*MutateConversionActionsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_action_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_conversion_action_service_proto_rawDescGZIP(), []int{0} } func (x *MutateConversionActionsRequest) GetCustomerId() string { @@ -153,7 +153,7 @@ type ConversionActionOperation struct { func (x *ConversionActionOperation) Reset() { *x = ConversionActionOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_action_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_conversion_action_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -166,7 +166,7 @@ func (x *ConversionActionOperation) String() string { func (*ConversionActionOperation) ProtoMessage() {} func (x *ConversionActionOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_action_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_conversion_action_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -179,7 +179,7 @@ func (x *ConversionActionOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionActionOperation.ProtoReflect.Descriptor instead. func (*ConversionActionOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_action_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_conversion_action_service_proto_rawDescGZIP(), []int{1} } func (x *ConversionActionOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -248,7 +248,7 @@ func (*ConversionActionOperation_Update) isConversionActionOperation_Operation() func (*ConversionActionOperation_Remove) isConversionActionOperation_Operation() {} // Response message for -// [ConversionActionService.MutateConversionActions][google.ads.googleads.v16.services.ConversionActionService.MutateConversionActions]. +// [ConversionActionService.MutateConversionActions][google.ads.googleads.v17.services.ConversionActionService.MutateConversionActions]. type MutateConversionActionsResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -266,7 +266,7 @@ type MutateConversionActionsResponse struct { func (x *MutateConversionActionsResponse) Reset() { *x = MutateConversionActionsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_action_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_conversion_action_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -279,7 +279,7 @@ func (x *MutateConversionActionsResponse) String() string { func (*MutateConversionActionsResponse) ProtoMessage() {} func (x *MutateConversionActionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_action_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_conversion_action_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -292,7 +292,7 @@ func (x *MutateConversionActionsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateConversionActionsResponse.ProtoReflect.Descriptor instead. func (*MutateConversionActionsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_action_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_conversion_action_service_proto_rawDescGZIP(), []int{2} } func (x *MutateConversionActionsResponse) GetPartialFailureError() *status.Status { @@ -326,7 +326,7 @@ type MutateConversionActionResult struct { func (x *MutateConversionActionResult) Reset() { *x = MutateConversionActionResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_action_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_conversion_action_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -339,7 +339,7 @@ func (x *MutateConversionActionResult) String() string { func (*MutateConversionActionResult) ProtoMessage() {} func (x *MutateConversionActionResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_action_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_conversion_action_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -352,7 +352,7 @@ func (x *MutateConversionActionResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateConversionActionResult.ProtoReflect.Descriptor instead. func (*MutateConversionActionResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_action_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_conversion_action_service_proto_rawDescGZIP(), []int{3} } func (x *MutateConversionActionResult) GetResourceName() string { @@ -369,21 +369,21 @@ func (x *MutateConversionActionResult) GetConversionAction() *resources.Conversi return nil } -var File_google_ads_googleads_v16_services_conversion_action_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_conversion_action_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_conversion_action_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_conversion_action_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 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, 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, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, @@ -404,7 +404,7 @@ var file_google_ads_googleads_v16_services_conversion_action_service_proto_rawDe 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x61, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, @@ -415,7 +415,7 @@ var file_google_ads_googleads_v16_services_conversion_action_service_proto_rawDe 0x74, 0x65, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, + 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, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, @@ -428,12 +428,12 @@ var file_google_ads_googleads_v16_services_conversion_action_service_proto_rawDe 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x4e, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 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, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x4e, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 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, 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, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x48, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, @@ -451,7 +451,7 @@ var file_google_ads_googleads_v16_services_conversion_action_service_proto_rawDe 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x59, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xd6, 0x01, 0x0a, 0x1c, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, @@ -464,7 +464,7 @@ var file_google_ads_googleads_v16_services_conversion_action_service_proto_rawDe 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x61, 0x0a, 0x11, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 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, 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, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x10, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x32, 0xe0, 0x02, 0x0a, 0x17, 0x43, 0x6f, @@ -472,17 +472,17 @@ var file_google_ads_googleads_v16_services_conversion_action_service_proto_rawDe 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xfd, 0x01, 0x0a, 0x17, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5b, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3c, 0x3a, 0x01, 0x2a, 0x22, 0x37, 0x2f, 0x76, - 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, + 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, @@ -491,58 +491,58 @@ var file_google_ads_googleads_v16_services_conversion_action_service_proto_rawDe 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x88, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, + 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, + 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_conversion_action_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_conversion_action_service_proto_rawDescData = file_google_ads_googleads_v16_services_conversion_action_service_proto_rawDesc + file_google_ads_googleads_v17_services_conversion_action_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_conversion_action_service_proto_rawDescData = file_google_ads_googleads_v17_services_conversion_action_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_conversion_action_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_conversion_action_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_conversion_action_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_conversion_action_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_conversion_action_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_conversion_action_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_conversion_action_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_conversion_action_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_conversion_action_service_proto_rawDescData + return file_google_ads_googleads_v17_services_conversion_action_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_conversion_action_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_conversion_action_service_proto_goTypes = []interface{}{ - (*MutateConversionActionsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateConversionActionsRequest - (*ConversionActionOperation)(nil), // 1: google.ads.googleads.v16.services.ConversionActionOperation - (*MutateConversionActionsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateConversionActionsResponse - (*MutateConversionActionResult)(nil), // 3: google.ads.googleads.v16.services.MutateConversionActionResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_conversion_action_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_conversion_action_service_proto_goTypes = []interface{}{ + (*MutateConversionActionsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateConversionActionsRequest + (*ConversionActionOperation)(nil), // 1: google.ads.googleads.v17.services.ConversionActionOperation + (*MutateConversionActionsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateConversionActionsResponse + (*MutateConversionActionResult)(nil), // 3: google.ads.googleads.v17.services.MutateConversionActionResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.ConversionAction)(nil), // 6: google.ads.googleads.v16.resources.ConversionAction + (*resources.ConversionAction)(nil), // 6: google.ads.googleads.v17.resources.ConversionAction (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_conversion_action_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateConversionActionsRequest.operations:type_name -> google.ads.googleads.v16.services.ConversionActionOperation - 4, // 1: google.ads.googleads.v16.services.MutateConversionActionsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.ConversionActionOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.ConversionActionOperation.create:type_name -> google.ads.googleads.v16.resources.ConversionAction - 6, // 4: google.ads.googleads.v16.services.ConversionActionOperation.update:type_name -> google.ads.googleads.v16.resources.ConversionAction - 7, // 5: google.ads.googleads.v16.services.MutateConversionActionsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v16.services.MutateConversionActionsResponse.results:type_name -> google.ads.googleads.v16.services.MutateConversionActionResult - 6, // 7: google.ads.googleads.v16.services.MutateConversionActionResult.conversion_action:type_name -> google.ads.googleads.v16.resources.ConversionAction - 0, // 8: google.ads.googleads.v16.services.ConversionActionService.MutateConversionActions:input_type -> google.ads.googleads.v16.services.MutateConversionActionsRequest - 2, // 9: google.ads.googleads.v16.services.ConversionActionService.MutateConversionActions:output_type -> google.ads.googleads.v16.services.MutateConversionActionsResponse +var file_google_ads_googleads_v17_services_conversion_action_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateConversionActionsRequest.operations:type_name -> google.ads.googleads.v17.services.ConversionActionOperation + 4, // 1: google.ads.googleads.v17.services.MutateConversionActionsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.ConversionActionOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.ConversionActionOperation.create:type_name -> google.ads.googleads.v17.resources.ConversionAction + 6, // 4: google.ads.googleads.v17.services.ConversionActionOperation.update:type_name -> google.ads.googleads.v17.resources.ConversionAction + 7, // 5: google.ads.googleads.v17.services.MutateConversionActionsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v17.services.MutateConversionActionsResponse.results:type_name -> google.ads.googleads.v17.services.MutateConversionActionResult + 6, // 7: google.ads.googleads.v17.services.MutateConversionActionResult.conversion_action:type_name -> google.ads.googleads.v17.resources.ConversionAction + 0, // 8: google.ads.googleads.v17.services.ConversionActionService.MutateConversionActions:input_type -> google.ads.googleads.v17.services.MutateConversionActionsRequest + 2, // 9: google.ads.googleads.v17.services.ConversionActionService.MutateConversionActions:output_type -> google.ads.googleads.v17.services.MutateConversionActionsResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -550,13 +550,13 @@ var file_google_ads_googleads_v16_services_conversion_action_service_proto_depId 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_conversion_action_service_proto_init() } -func file_google_ads_googleads_v16_services_conversion_action_service_proto_init() { - if File_google_ads_googleads_v16_services_conversion_action_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_conversion_action_service_proto_init() } +func file_google_ads_googleads_v17_services_conversion_action_service_proto_init() { + if File_google_ads_googleads_v17_services_conversion_action_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_conversion_action_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_action_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateConversionActionsRequest); i { case 0: return &v.state @@ -568,7 +568,7 @@ func file_google_ads_googleads_v16_services_conversion_action_service_proto_init return nil } } - file_google_ads_googleads_v16_services_conversion_action_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_action_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConversionActionOperation); i { case 0: return &v.state @@ -580,7 +580,7 @@ func file_google_ads_googleads_v16_services_conversion_action_service_proto_init return nil } } - file_google_ads_googleads_v16_services_conversion_action_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_action_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateConversionActionsResponse); i { case 0: return &v.state @@ -592,7 +592,7 @@ func file_google_ads_googleads_v16_services_conversion_action_service_proto_init return nil } } - file_google_ads_googleads_v16_services_conversion_action_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_action_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateConversionActionResult); i { case 0: return &v.state @@ -605,7 +605,7 @@ func file_google_ads_googleads_v16_services_conversion_action_service_proto_init } } } - file_google_ads_googleads_v16_services_conversion_action_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_conversion_action_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*ConversionActionOperation_Create)(nil), (*ConversionActionOperation_Update)(nil), (*ConversionActionOperation_Remove)(nil), @@ -614,18 +614,18 @@ func file_google_ads_googleads_v16_services_conversion_action_service_proto_init out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_conversion_action_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_conversion_action_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_conversion_action_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_conversion_action_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_conversion_action_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_conversion_action_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_conversion_action_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_conversion_action_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_conversion_action_service_proto = out.File - file_google_ads_googleads_v16_services_conversion_action_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_conversion_action_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_conversion_action_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_conversion_action_service_proto = out.File + file_google_ads_googleads_v17_services_conversion_action_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_conversion_action_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_conversion_action_service_proto_depIdxs = nil } diff --git a/services/conversion_action_service_grpc.pb.go b/services/conversion_action_service_grpc.pb.go index 8c7e9814..20e803fd 100644 --- a/services/conversion_action_service_grpc.pb.go +++ b/services/conversion_action_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/conversion_action_service.proto +// source: google/ads/googleads/v17/services/conversion_action_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - ConversionActionService_MutateConversionActions_FullMethodName = "/google.ads.googleads.v16.services.ConversionActionService/MutateConversionActions" + ConversionActionService_MutateConversionActions_FullMethodName = "/google.ads.googleads.v17.services.ConversionActionService/MutateConversionActions" ) // ConversionActionServiceClient is the client API for ConversionActionService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage conversion actions. type ConversionActionServiceClient interface { // Creates, updates or removes conversion actions. Operation statuses are // returned. @@ -73,8 +75,9 @@ func NewConversionActionServiceClient(cc grpc.ClientConnInterface) ConversionAct } func (c *conversionActionServiceClient) MutateConversionActions(ctx context.Context, in *MutateConversionActionsRequest, opts ...grpc.CallOption) (*MutateConversionActionsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateConversionActionsResponse) - err := c.cc.Invoke(ctx, ConversionActionService_MutateConversionActions_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, ConversionActionService_MutateConversionActions_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -84,6 +87,8 @@ func (c *conversionActionServiceClient) MutateConversionActions(ctx context.Cont // ConversionActionServiceServer is the server API for ConversionActionService service. // All implementations must embed UnimplementedConversionActionServiceServer // for forward compatibility +// +// Service to manage conversion actions. type ConversionActionServiceServer interface { // Creates, updates or removes conversion actions. Operation statuses are // returned. @@ -153,7 +158,7 @@ func _ConversionActionService_MutateConversionActions_Handler(srv interface{}, c // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var ConversionActionService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.ConversionActionService", + ServiceName: "google.ads.googleads.v17.services.ConversionActionService", HandlerType: (*ConversionActionServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -162,5 +167,5 @@ var ConversionActionService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/conversion_action_service.proto", + Metadata: "google/ads/googleads/v17/services/conversion_action_service.proto", } diff --git a/services/conversion_adjustment_upload_service.pb.go b/services/conversion_adjustment_upload_service.pb.go index e8cd2152..58286532 100644 --- a/services/conversion_adjustment_upload_service.pb.go +++ b/services/conversion_adjustment_upload_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/conversion_adjustment_upload_service.proto +// source: google/ads/googleads/v17/services/conversion_adjustment_upload_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [ConversionAdjustmentUploadService.UploadConversionAdjustments][google.ads.googleads.v16.services.ConversionAdjustmentUploadService.UploadConversionAdjustments]. +// [ConversionAdjustmentUploadService.UploadConversionAdjustments][google.ads.googleads.v17.services.ConversionAdjustmentUploadService.UploadConversionAdjustments]. type UploadConversionAdjustmentsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -71,7 +71,7 @@ type UploadConversionAdjustmentsRequest struct { func (x *UploadConversionAdjustmentsRequest) Reset() { *x = UploadConversionAdjustmentsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -84,7 +84,7 @@ func (x *UploadConversionAdjustmentsRequest) String() string { func (*UploadConversionAdjustmentsRequest) ProtoMessage() {} func (x *UploadConversionAdjustmentsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -97,7 +97,7 @@ func (x *UploadConversionAdjustmentsRequest) ProtoReflect() protoreflect.Message // Deprecated: Use UploadConversionAdjustmentsRequest.ProtoReflect.Descriptor instead. func (*UploadConversionAdjustmentsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_rawDescGZIP(), []int{0} } func (x *UploadConversionAdjustmentsRequest) GetCustomerId() string { @@ -136,7 +136,7 @@ func (x *UploadConversionAdjustmentsRequest) GetJobId() int32 { } // Response message for -// [ConversionAdjustmentUploadService.UploadConversionAdjustments][google.ads.googleads.v16.services.ConversionAdjustmentUploadService.UploadConversionAdjustments]. +// [ConversionAdjustmentUploadService.UploadConversionAdjustments][google.ads.googleads.v17.services.ConversionAdjustmentUploadService.UploadConversionAdjustments]. type UploadConversionAdjustmentsResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -160,7 +160,7 @@ type UploadConversionAdjustmentsResponse struct { func (x *UploadConversionAdjustmentsResponse) Reset() { *x = UploadConversionAdjustmentsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -173,7 +173,7 @@ func (x *UploadConversionAdjustmentsResponse) String() string { func (*UploadConversionAdjustmentsResponse) ProtoMessage() {} func (x *UploadConversionAdjustmentsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -186,7 +186,7 @@ func (x *UploadConversionAdjustmentsResponse) ProtoReflect() protoreflect.Messag // Deprecated: Use UploadConversionAdjustmentsResponse.ProtoReflect.Descriptor instead. func (*UploadConversionAdjustmentsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_rawDescGZIP(), []int{1} } func (x *UploadConversionAdjustmentsResponse) GetPartialFailureError() *status.Status { @@ -234,7 +234,7 @@ type ConversionAdjustment struct { // "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00". AdjustmentDateTime *string `protobuf:"bytes,9,opt,name=adjustment_date_time,json=adjustmentDateTime,proto3,oneof" json:"adjustment_date_time,omitempty"` // The adjustment type. - AdjustmentType enums.ConversionAdjustmentTypeEnum_ConversionAdjustmentType `protobuf:"varint,5,opt,name=adjustment_type,json=adjustmentType,proto3,enum=google.ads.googleads.v16.enums.ConversionAdjustmentTypeEnum_ConversionAdjustmentType" json:"adjustment_type,omitempty"` + AdjustmentType enums.ConversionAdjustmentTypeEnum_ConversionAdjustmentType `protobuf:"varint,5,opt,name=adjustment_type,json=adjustmentType,proto3,enum=google.ads.googleads.v17.enums.ConversionAdjustmentTypeEnum_ConversionAdjustmentType" json:"adjustment_type,omitempty"` // Information needed to restate the conversion's value. // Required for restatements. Should not be supplied for retractions. An error // will be returned if provided for a retraction. @@ -261,7 +261,7 @@ type ConversionAdjustment struct { func (x *ConversionAdjustment) Reset() { *x = ConversionAdjustment{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -274,7 +274,7 @@ func (x *ConversionAdjustment) String() string { func (*ConversionAdjustment) ProtoMessage() {} func (x *ConversionAdjustment) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -287,7 +287,7 @@ func (x *ConversionAdjustment) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionAdjustment.ProtoReflect.Descriptor instead. func (*ConversionAdjustment) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_rawDescGZIP(), []int{2} } func (x *ConversionAdjustment) GetGclidDateTimePair() *GclidDateTimePair { @@ -370,7 +370,7 @@ type RestatementValue struct { func (x *RestatementValue) Reset() { *x = RestatementValue{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -383,7 +383,7 @@ func (x *RestatementValue) String() string { func (*RestatementValue) ProtoMessage() {} func (x *RestatementValue) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -396,7 +396,7 @@ func (x *RestatementValue) ProtoReflect() protoreflect.Message { // Deprecated: Use RestatementValue.ProtoReflect.Descriptor instead. func (*RestatementValue) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_rawDescGZIP(), []int{3} } func (x *RestatementValue) GetAdjustedValue() float64 { @@ -432,7 +432,7 @@ type GclidDateTimePair struct { func (x *GclidDateTimePair) Reset() { *x = GclidDateTimePair{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -445,7 +445,7 @@ func (x *GclidDateTimePair) String() string { func (*GclidDateTimePair) ProtoMessage() {} func (x *GclidDateTimePair) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_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 *GclidDateTimePair) ProtoReflect() protoreflect.Message { // Deprecated: Use GclidDateTimePair.ProtoReflect.Descriptor instead. func (*GclidDateTimePair) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_rawDescGZIP(), []int{4} } func (x *GclidDateTimePair) GetGclid() string { @@ -492,13 +492,13 @@ type ConversionAdjustmentResult struct { // "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00". AdjustmentDateTime *string `protobuf:"bytes,8,opt,name=adjustment_date_time,json=adjustmentDateTime,proto3,oneof" json:"adjustment_date_time,omitempty"` // The adjustment type. - AdjustmentType enums.ConversionAdjustmentTypeEnum_ConversionAdjustmentType `protobuf:"varint,5,opt,name=adjustment_type,json=adjustmentType,proto3,enum=google.ads.googleads.v16.enums.ConversionAdjustmentTypeEnum_ConversionAdjustmentType" json:"adjustment_type,omitempty"` + AdjustmentType enums.ConversionAdjustmentTypeEnum_ConversionAdjustmentType `protobuf:"varint,5,opt,name=adjustment_type,json=adjustmentType,proto3,enum=google.ads.googleads.v17.enums.ConversionAdjustmentTypeEnum_ConversionAdjustmentType" json:"adjustment_type,omitempty"` } func (x *ConversionAdjustmentResult) Reset() { *x = ConversionAdjustmentResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -511,7 +511,7 @@ func (x *ConversionAdjustmentResult) String() string { func (*ConversionAdjustmentResult) ProtoMessage() {} func (x *ConversionAdjustmentResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -524,7 +524,7 @@ func (x *ConversionAdjustmentResult) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionAdjustmentResult.ProtoReflect.Descriptor instead. func (*ConversionAdjustmentResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_rawDescGZIP(), []int{5} } func (x *ConversionAdjustmentResult) GetGclidDateTimePair() *GclidDateTimePair { @@ -562,22 +562,22 @@ func (x *ConversionAdjustmentResult) GetAdjustmentType() enums.ConversionAdjustm return enums.ConversionAdjustmentTypeEnum_ConversionAdjustmentType(0) } -var File_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 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, 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, 0x65, + 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, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, @@ -595,7 +595,7 @@ var file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_ 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x15, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x2c, @@ -616,7 +616,7 @@ var file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_ 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x57, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x15, 0x0a, 0x06, 0x6a, 0x6f, 0x62, 0x5f, 0x69, 0x64, @@ -625,7 +625,7 @@ var file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_ 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x65, 0x0a, 0x14, 0x67, 0x63, 0x6c, 0x69, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x70, 0x61, 0x69, 0x72, 0x18, 0x0c, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x63, 0x6c, 0x69, 0x64, 0x44, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x50, 0x61, 0x69, 0x72, 0x52, 0x11, 0x67, 0x63, 0x6c, 0x69, 0x64, 0x44, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x50, 0x61, 0x69, 0x72, 0x12, 0x1e, 0x0a, @@ -640,7 +640,7 @@ var file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_ 0x69, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x7e, 0x0a, 0x0f, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, @@ -648,13 +648,13 @@ var file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_ 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x60, 0x0a, 0x11, 0x72, 0x65, 0x73, 0x74, 0x61, 0x74, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x06, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x74, 0x61, 0x74, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x10, 0x72, 0x65, 0x73, 0x74, 0x61, 0x74, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x5a, 0x0a, 0x10, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x73, 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, 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, 0x22, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x61, 0x67, 0x65, @@ -687,7 +687,7 @@ var file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_ 0x14, 0x67, 0x63, 0x6c, 0x69, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x70, 0x61, 0x69, 0x72, 0x18, 0x09, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x63, 0x6c, 0x69, 0x64, 0x44, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x50, 0x61, 0x69, 0x72, 0x52, 0x11, 0x67, 0x63, 0x6c, 0x69, 0x64, 0x44, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x50, 0x61, 0x69, 0x72, 0x12, 0x19, 0x0a, 0x08, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x69, 0x64, @@ -701,7 +701,7 @@ var file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_ 0x65, 0x54, 0x69, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x7e, 0x0a, 0x0f, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, + 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, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, @@ -715,11 +715,11 @@ var file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_ 0x0a, 0x1b, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x7a, 0xda, 0x41, @@ -727,7 +727,7 @@ var file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_ 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x2c, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3f, 0x3a, 0x01, 0x2a, 0x22, 0x3a, 0x2f, 0x76, - 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, + 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x3a, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, @@ -736,61 +736,61 @@ var file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_ 0x77, 0x77, 0x77, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x92, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x26, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, + 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_rawDescData = file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_rawDesc + file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_rawDescData = file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_rawDescData + return file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) -var file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_goTypes = []interface{}{ - (*UploadConversionAdjustmentsRequest)(nil), // 0: google.ads.googleads.v16.services.UploadConversionAdjustmentsRequest - (*UploadConversionAdjustmentsResponse)(nil), // 1: google.ads.googleads.v16.services.UploadConversionAdjustmentsResponse - (*ConversionAdjustment)(nil), // 2: google.ads.googleads.v16.services.ConversionAdjustment - (*RestatementValue)(nil), // 3: google.ads.googleads.v16.services.RestatementValue - (*GclidDateTimePair)(nil), // 4: google.ads.googleads.v16.services.GclidDateTimePair - (*ConversionAdjustmentResult)(nil), // 5: google.ads.googleads.v16.services.ConversionAdjustmentResult +var file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) +var file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_goTypes = []interface{}{ + (*UploadConversionAdjustmentsRequest)(nil), // 0: google.ads.googleads.v17.services.UploadConversionAdjustmentsRequest + (*UploadConversionAdjustmentsResponse)(nil), // 1: google.ads.googleads.v17.services.UploadConversionAdjustmentsResponse + (*ConversionAdjustment)(nil), // 2: google.ads.googleads.v17.services.ConversionAdjustment + (*RestatementValue)(nil), // 3: google.ads.googleads.v17.services.RestatementValue + (*GclidDateTimePair)(nil), // 4: google.ads.googleads.v17.services.GclidDateTimePair + (*ConversionAdjustmentResult)(nil), // 5: google.ads.googleads.v17.services.ConversionAdjustmentResult (*status.Status)(nil), // 6: google.rpc.Status - (enums.ConversionAdjustmentTypeEnum_ConversionAdjustmentType)(0), // 7: google.ads.googleads.v16.enums.ConversionAdjustmentTypeEnum.ConversionAdjustmentType - (*common.UserIdentifier)(nil), // 8: google.ads.googleads.v16.common.UserIdentifier -} -var file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v16.services.UploadConversionAdjustmentsRequest.conversion_adjustments:type_name -> google.ads.googleads.v16.services.ConversionAdjustment - 6, // 1: google.ads.googleads.v16.services.UploadConversionAdjustmentsResponse.partial_failure_error:type_name -> google.rpc.Status - 5, // 2: google.ads.googleads.v16.services.UploadConversionAdjustmentsResponse.results:type_name -> google.ads.googleads.v16.services.ConversionAdjustmentResult - 4, // 3: google.ads.googleads.v16.services.ConversionAdjustment.gclid_date_time_pair:type_name -> google.ads.googleads.v16.services.GclidDateTimePair - 7, // 4: google.ads.googleads.v16.services.ConversionAdjustment.adjustment_type:type_name -> google.ads.googleads.v16.enums.ConversionAdjustmentTypeEnum.ConversionAdjustmentType - 3, // 5: google.ads.googleads.v16.services.ConversionAdjustment.restatement_value:type_name -> google.ads.googleads.v16.services.RestatementValue - 8, // 6: google.ads.googleads.v16.services.ConversionAdjustment.user_identifiers:type_name -> google.ads.googleads.v16.common.UserIdentifier - 4, // 7: google.ads.googleads.v16.services.ConversionAdjustmentResult.gclid_date_time_pair:type_name -> google.ads.googleads.v16.services.GclidDateTimePair - 7, // 8: google.ads.googleads.v16.services.ConversionAdjustmentResult.adjustment_type:type_name -> google.ads.googleads.v16.enums.ConversionAdjustmentTypeEnum.ConversionAdjustmentType - 0, // 9: google.ads.googleads.v16.services.ConversionAdjustmentUploadService.UploadConversionAdjustments:input_type -> google.ads.googleads.v16.services.UploadConversionAdjustmentsRequest - 1, // 10: google.ads.googleads.v16.services.ConversionAdjustmentUploadService.UploadConversionAdjustments:output_type -> google.ads.googleads.v16.services.UploadConversionAdjustmentsResponse + (enums.ConversionAdjustmentTypeEnum_ConversionAdjustmentType)(0), // 7: google.ads.googleads.v17.enums.ConversionAdjustmentTypeEnum.ConversionAdjustmentType + (*common.UserIdentifier)(nil), // 8: google.ads.googleads.v17.common.UserIdentifier +} +var file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v17.services.UploadConversionAdjustmentsRequest.conversion_adjustments:type_name -> google.ads.googleads.v17.services.ConversionAdjustment + 6, // 1: google.ads.googleads.v17.services.UploadConversionAdjustmentsResponse.partial_failure_error:type_name -> google.rpc.Status + 5, // 2: google.ads.googleads.v17.services.UploadConversionAdjustmentsResponse.results:type_name -> google.ads.googleads.v17.services.ConversionAdjustmentResult + 4, // 3: google.ads.googleads.v17.services.ConversionAdjustment.gclid_date_time_pair:type_name -> google.ads.googleads.v17.services.GclidDateTimePair + 7, // 4: google.ads.googleads.v17.services.ConversionAdjustment.adjustment_type:type_name -> google.ads.googleads.v17.enums.ConversionAdjustmentTypeEnum.ConversionAdjustmentType + 3, // 5: google.ads.googleads.v17.services.ConversionAdjustment.restatement_value:type_name -> google.ads.googleads.v17.services.RestatementValue + 8, // 6: google.ads.googleads.v17.services.ConversionAdjustment.user_identifiers:type_name -> google.ads.googleads.v17.common.UserIdentifier + 4, // 7: google.ads.googleads.v17.services.ConversionAdjustmentResult.gclid_date_time_pair:type_name -> google.ads.googleads.v17.services.GclidDateTimePair + 7, // 8: google.ads.googleads.v17.services.ConversionAdjustmentResult.adjustment_type:type_name -> google.ads.googleads.v17.enums.ConversionAdjustmentTypeEnum.ConversionAdjustmentType + 0, // 9: google.ads.googleads.v17.services.ConversionAdjustmentUploadService.UploadConversionAdjustments:input_type -> google.ads.googleads.v17.services.UploadConversionAdjustmentsRequest + 1, // 10: google.ads.googleads.v17.services.ConversionAdjustmentUploadService.UploadConversionAdjustments:output_type -> google.ads.googleads.v17.services.UploadConversionAdjustmentsResponse 10, // [10:11] is the sub-list for method output_type 9, // [9:10] is the sub-list for method input_type 9, // [9:9] is the sub-list for extension type_name @@ -798,13 +798,13 @@ var file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_ 0, // [0:9] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_init() } -func file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_init() { - if File_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_init() } +func file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_init() { + if File_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*UploadConversionAdjustmentsRequest); i { case 0: return &v.state @@ -816,7 +816,7 @@ func file_google_ads_googleads_v16_services_conversion_adjustment_upload_service return nil } } - file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*UploadConversionAdjustmentsResponse); i { case 0: return &v.state @@ -828,7 +828,7 @@ func file_google_ads_googleads_v16_services_conversion_adjustment_upload_service return nil } } - file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConversionAdjustment); i { case 0: return &v.state @@ -840,7 +840,7 @@ func file_google_ads_googleads_v16_services_conversion_adjustment_upload_service return nil } } - file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RestatementValue); i { case 0: return &v.state @@ -852,7 +852,7 @@ func file_google_ads_googleads_v16_services_conversion_adjustment_upload_service return nil } } - file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GclidDateTimePair); i { case 0: return &v.state @@ -864,7 +864,7 @@ func file_google_ads_googleads_v16_services_conversion_adjustment_upload_service return nil } } - file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConversionAdjustmentResult); i { case 0: return &v.state @@ -877,27 +877,27 @@ func file_google_ads_googleads_v16_services_conversion_adjustment_upload_service } } } - file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_msgTypes[0].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_msgTypes[2].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_msgTypes[3].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_msgTypes[4].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_msgTypes[5].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_msgTypes[2].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_msgTypes[3].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_msgTypes[4].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_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_services_conversion_adjustment_upload_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_rawDesc, NumEnums: 0, NumMessages: 6, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto = out.File - file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_conversion_adjustment_upload_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto = out.File + file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_conversion_adjustment_upload_service_proto_depIdxs = nil } diff --git a/services/conversion_adjustment_upload_service_grpc.pb.go b/services/conversion_adjustment_upload_service_grpc.pb.go index f8a92792..6321c1f7 100644 --- a/services/conversion_adjustment_upload_service_grpc.pb.go +++ b/services/conversion_adjustment_upload_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/conversion_adjustment_upload_service.proto +// source: google/ads/googleads/v17/services/conversion_adjustment_upload_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - ConversionAdjustmentUploadService_UploadConversionAdjustments_FullMethodName = "/google.ads.googleads.v16.services.ConversionAdjustmentUploadService/UploadConversionAdjustments" + ConversionAdjustmentUploadService_UploadConversionAdjustments_FullMethodName = "/google.ads.googleads.v17.services.ConversionAdjustmentUploadService/UploadConversionAdjustments" ) // ConversionAdjustmentUploadServiceClient is the client API for ConversionAdjustmentUploadService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to upload conversion adjustments. type ConversionAdjustmentUploadServiceClient interface { // Processes the given conversion adjustments. // @@ -63,8 +65,9 @@ func NewConversionAdjustmentUploadServiceClient(cc grpc.ClientConnInterface) Con } func (c *conversionAdjustmentUploadServiceClient) UploadConversionAdjustments(ctx context.Context, in *UploadConversionAdjustmentsRequest, opts ...grpc.CallOption) (*UploadConversionAdjustmentsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(UploadConversionAdjustmentsResponse) - err := c.cc.Invoke(ctx, ConversionAdjustmentUploadService_UploadConversionAdjustments_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, ConversionAdjustmentUploadService_UploadConversionAdjustments_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -74,6 +77,8 @@ func (c *conversionAdjustmentUploadServiceClient) UploadConversionAdjustments(ct // ConversionAdjustmentUploadServiceServer is the server API for ConversionAdjustmentUploadService service. // All implementations must embed UnimplementedConversionAdjustmentUploadServiceServer // for forward compatibility +// +// Service to upload conversion adjustments. type ConversionAdjustmentUploadServiceServer interface { // Processes the given conversion adjustments. // @@ -133,7 +138,7 @@ func _ConversionAdjustmentUploadService_UploadConversionAdjustments_Handler(srv // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var ConversionAdjustmentUploadService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.ConversionAdjustmentUploadService", + ServiceName: "google.ads.googleads.v17.services.ConversionAdjustmentUploadService", HandlerType: (*ConversionAdjustmentUploadServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -142,5 +147,5 @@ var ConversionAdjustmentUploadService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/conversion_adjustment_upload_service.proto", + Metadata: "google/ads/googleads/v17/services/conversion_adjustment_upload_service.proto", } diff --git a/services/conversion_custom_variable_service.pb.go b/services/conversion_custom_variable_service.pb.go index 8a9a127c..84c4f2a6 100644 --- a/services/conversion_custom_variable_service.pb.go +++ b/services/conversion_custom_variable_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/conversion_custom_variable_service.proto +// source: google/ads/googleads/v17/services/conversion_custom_variable_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [ConversionCustomVariableService.MutateConversionCustomVariables][google.ads.googleads.v16.services.ConversionCustomVariableService.MutateConversionCustomVariables]. +// [ConversionCustomVariableService.MutateConversionCustomVariables][google.ads.googleads.v17.services.ConversionCustomVariableService.MutateConversionCustomVariables]. type MutateConversionCustomVariablesRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -62,13 +62,13 @@ type MutateConversionCustomVariablesRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateConversionCustomVariablesRequest) Reset() { *x = MutateConversionCustomVariablesRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81,7 +81,7 @@ func (x *MutateConversionCustomVariablesRequest) String() string { func (*MutateConversionCustomVariablesRequest) ProtoMessage() {} func (x *MutateConversionCustomVariablesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_conversion_custom_variable_service_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 *MutateConversionCustomVariablesRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use MutateConversionCustomVariablesRequest.ProtoReflect.Descriptor instead. func (*MutateConversionCustomVariablesRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_rawDescGZIP(), []int{0} } func (x *MutateConversionCustomVariablesRequest) GetCustomerId() string { @@ -152,7 +152,7 @@ type ConversionCustomVariableOperation struct { func (x *ConversionCustomVariableOperation) Reset() { *x = ConversionCustomVariableOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -165,7 +165,7 @@ func (x *ConversionCustomVariableOperation) String() string { func (*ConversionCustomVariableOperation) ProtoMessage() {} func (x *ConversionCustomVariableOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -178,7 +178,7 @@ func (x *ConversionCustomVariableOperation) ProtoReflect() protoreflect.Message // Deprecated: Use ConversionCustomVariableOperation.ProtoReflect.Descriptor instead. func (*ConversionCustomVariableOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_rawDescGZIP(), []int{1} } func (x *ConversionCustomVariableOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -230,7 +230,7 @@ func (*ConversionCustomVariableOperation_Create) isConversionCustomVariableOpera func (*ConversionCustomVariableOperation_Update) isConversionCustomVariableOperation_Operation() {} // Response message for -// [ConversionCustomVariableService.MutateConversionCustomVariables][google.ads.googleads.v16.services.ConversionCustomVariableService.MutateConversionCustomVariables]. +// [ConversionCustomVariableService.MutateConversionCustomVariables][google.ads.googleads.v17.services.ConversionCustomVariableService.MutateConversionCustomVariables]. type MutateConversionCustomVariablesResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -248,7 +248,7 @@ type MutateConversionCustomVariablesResponse struct { func (x *MutateConversionCustomVariablesResponse) Reset() { *x = MutateConversionCustomVariablesResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -261,7 +261,7 @@ func (x *MutateConversionCustomVariablesResponse) String() string { func (*MutateConversionCustomVariablesResponse) ProtoMessage() {} func (x *MutateConversionCustomVariablesResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -274,7 +274,7 @@ func (x *MutateConversionCustomVariablesResponse) ProtoReflect() protoreflect.Me // Deprecated: Use MutateConversionCustomVariablesResponse.ProtoReflect.Descriptor instead. func (*MutateConversionCustomVariablesResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_rawDescGZIP(), []int{2} } func (x *MutateConversionCustomVariablesResponse) GetPartialFailureError() *status.Status { @@ -308,7 +308,7 @@ type MutateConversionCustomVariableResult struct { func (x *MutateConversionCustomVariableResult) Reset() { *x = MutateConversionCustomVariableResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -321,7 +321,7 @@ func (x *MutateConversionCustomVariableResult) String() string { func (*MutateConversionCustomVariableResult) ProtoMessage() {} func (x *MutateConversionCustomVariableResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -334,7 +334,7 @@ func (x *MutateConversionCustomVariableResult) ProtoReflect() protoreflect.Messa // Deprecated: Use MutateConversionCustomVariableResult.ProtoReflect.Descriptor instead. func (*MutateConversionCustomVariableResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_rawDescGZIP(), []int{3} } func (x *MutateConversionCustomVariableResult) GetResourceName() string { @@ -351,22 +351,22 @@ func (x *MutateConversionCustomVariableResult) GetConversionCustomVariable() *re return nil } -var File_google_ads_googleads_v16_services_conversion_custom_variable_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_conversion_custom_variable_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_conversion_custom_variable_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, + 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, @@ -387,7 +387,7 @@ var file_google_ads_googleads_v16_services_conversion_custom_variable_service_pr 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x69, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, @@ -400,7 +400,7 @@ var file_google_ads_googleads_v16_services_conversion_custom_variable_service_pr 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, @@ -413,12 +413,12 @@ var file_google_ads_googleads_v16_services_conversion_custom_variable_service_pr 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x56, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 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, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x56, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 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, + 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, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0b, 0x0a, 0x09, @@ -432,7 +432,7 @@ var file_google_ads_googleads_v16_services_conversion_custom_variable_service_pr 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x61, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, @@ -448,7 +448,7 @@ var file_google_ads_googleads_v16_services_conversion_custom_variable_service_pr 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 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, 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, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x18, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, @@ -458,17 +458,17 @@ var file_google_ads_googleads_v16_services_conversion_custom_variable_service_pr 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x63, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, - 0x02, 0x44, 0x3a, 0x01, 0x2a, 0x22, 0x3f, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, + 0x02, 0x44, 0x3a, 0x01, 0x2a, 0x22, 0x3f, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x3a, @@ -478,59 +478,59 @@ var file_google_ads_googleads_v16_services_conversion_custom_variable_service_pr 0x77, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x90, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x24, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_rawDescData = file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_rawDesc + file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_rawDescData = file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_rawDescData + return file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_goTypes = []interface{}{ - (*MutateConversionCustomVariablesRequest)(nil), // 0: google.ads.googleads.v16.services.MutateConversionCustomVariablesRequest - (*ConversionCustomVariableOperation)(nil), // 1: google.ads.googleads.v16.services.ConversionCustomVariableOperation - (*MutateConversionCustomVariablesResponse)(nil), // 2: google.ads.googleads.v16.services.MutateConversionCustomVariablesResponse - (*MutateConversionCustomVariableResult)(nil), // 3: google.ads.googleads.v16.services.MutateConversionCustomVariableResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_goTypes = []interface{}{ + (*MutateConversionCustomVariablesRequest)(nil), // 0: google.ads.googleads.v17.services.MutateConversionCustomVariablesRequest + (*ConversionCustomVariableOperation)(nil), // 1: google.ads.googleads.v17.services.ConversionCustomVariableOperation + (*MutateConversionCustomVariablesResponse)(nil), // 2: google.ads.googleads.v17.services.MutateConversionCustomVariablesResponse + (*MutateConversionCustomVariableResult)(nil), // 3: google.ads.googleads.v17.services.MutateConversionCustomVariableResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.ConversionCustomVariable)(nil), // 6: google.ads.googleads.v16.resources.ConversionCustomVariable + (*resources.ConversionCustomVariable)(nil), // 6: google.ads.googleads.v17.resources.ConversionCustomVariable (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateConversionCustomVariablesRequest.operations:type_name -> google.ads.googleads.v16.services.ConversionCustomVariableOperation - 4, // 1: google.ads.googleads.v16.services.MutateConversionCustomVariablesRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.ConversionCustomVariableOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.ConversionCustomVariableOperation.create:type_name -> google.ads.googleads.v16.resources.ConversionCustomVariable - 6, // 4: google.ads.googleads.v16.services.ConversionCustomVariableOperation.update:type_name -> google.ads.googleads.v16.resources.ConversionCustomVariable - 7, // 5: google.ads.googleads.v16.services.MutateConversionCustomVariablesResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v16.services.MutateConversionCustomVariablesResponse.results:type_name -> google.ads.googleads.v16.services.MutateConversionCustomVariableResult - 6, // 7: google.ads.googleads.v16.services.MutateConversionCustomVariableResult.conversion_custom_variable:type_name -> google.ads.googleads.v16.resources.ConversionCustomVariable - 0, // 8: google.ads.googleads.v16.services.ConversionCustomVariableService.MutateConversionCustomVariables:input_type -> google.ads.googleads.v16.services.MutateConversionCustomVariablesRequest - 2, // 9: google.ads.googleads.v16.services.ConversionCustomVariableService.MutateConversionCustomVariables:output_type -> google.ads.googleads.v16.services.MutateConversionCustomVariablesResponse +var file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateConversionCustomVariablesRequest.operations:type_name -> google.ads.googleads.v17.services.ConversionCustomVariableOperation + 4, // 1: google.ads.googleads.v17.services.MutateConversionCustomVariablesRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.ConversionCustomVariableOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.ConversionCustomVariableOperation.create:type_name -> google.ads.googleads.v17.resources.ConversionCustomVariable + 6, // 4: google.ads.googleads.v17.services.ConversionCustomVariableOperation.update:type_name -> google.ads.googleads.v17.resources.ConversionCustomVariable + 7, // 5: google.ads.googleads.v17.services.MutateConversionCustomVariablesResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v17.services.MutateConversionCustomVariablesResponse.results:type_name -> google.ads.googleads.v17.services.MutateConversionCustomVariableResult + 6, // 7: google.ads.googleads.v17.services.MutateConversionCustomVariableResult.conversion_custom_variable:type_name -> google.ads.googleads.v17.resources.ConversionCustomVariable + 0, // 8: google.ads.googleads.v17.services.ConversionCustomVariableService.MutateConversionCustomVariables:input_type -> google.ads.googleads.v17.services.MutateConversionCustomVariablesRequest + 2, // 9: google.ads.googleads.v17.services.ConversionCustomVariableService.MutateConversionCustomVariables:output_type -> google.ads.googleads.v17.services.MutateConversionCustomVariablesResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -538,13 +538,13 @@ var file_google_ads_googleads_v16_services_conversion_custom_variable_service_pr 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_init() } -func file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_init() { - if File_google_ads_googleads_v16_services_conversion_custom_variable_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_init() } +func file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_init() { + if File_google_ads_googleads_v17_services_conversion_custom_variable_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateConversionCustomVariablesRequest); i { case 0: return &v.state @@ -556,7 +556,7 @@ func file_google_ads_googleads_v16_services_conversion_custom_variable_service_p return nil } } - file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConversionCustomVariableOperation); i { case 0: return &v.state @@ -568,7 +568,7 @@ func file_google_ads_googleads_v16_services_conversion_custom_variable_service_p return nil } } - file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateConversionCustomVariablesResponse); i { case 0: return &v.state @@ -580,7 +580,7 @@ func file_google_ads_googleads_v16_services_conversion_custom_variable_service_p return nil } } - file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateConversionCustomVariableResult); i { case 0: return &v.state @@ -593,7 +593,7 @@ func file_google_ads_googleads_v16_services_conversion_custom_variable_service_p } } } - file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*ConversionCustomVariableOperation_Create)(nil), (*ConversionCustomVariableOperation_Update)(nil), } @@ -601,18 +601,18 @@ func file_google_ads_googleads_v16_services_conversion_custom_variable_service_p out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_conversion_custom_variable_service_proto = out.File - file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_conversion_custom_variable_service_proto = out.File + file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_depIdxs = nil } diff --git a/services/conversion_custom_variable_service_grpc.pb.go b/services/conversion_custom_variable_service_grpc.pb.go index e2b4d7a3..c759e84f 100644 --- a/services/conversion_custom_variable_service_grpc.pb.go +++ b/services/conversion_custom_variable_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/conversion_custom_variable_service.proto +// source: google/ads/googleads/v17/services/conversion_custom_variable_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - ConversionCustomVariableService_MutateConversionCustomVariables_FullMethodName = "/google.ads.googleads.v16.services.ConversionCustomVariableService/MutateConversionCustomVariables" + ConversionCustomVariableService_MutateConversionCustomVariables_FullMethodName = "/google.ads.googleads.v17.services.ConversionCustomVariableService/MutateConversionCustomVariables" ) // ConversionCustomVariableServiceClient is the client API for ConversionCustomVariableService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage conversion custom variables. type ConversionCustomVariableServiceClient interface { // Creates or updates conversion custom variables. Operation statuses are // returned. @@ -65,8 +67,9 @@ func NewConversionCustomVariableServiceClient(cc grpc.ClientConnInterface) Conve } func (c *conversionCustomVariableServiceClient) MutateConversionCustomVariables(ctx context.Context, in *MutateConversionCustomVariablesRequest, opts ...grpc.CallOption) (*MutateConversionCustomVariablesResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateConversionCustomVariablesResponse) - err := c.cc.Invoke(ctx, ConversionCustomVariableService_MutateConversionCustomVariables_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, ConversionCustomVariableService_MutateConversionCustomVariables_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -76,6 +79,8 @@ func (c *conversionCustomVariableServiceClient) MutateConversionCustomVariables( // ConversionCustomVariableServiceServer is the server API for ConversionCustomVariableService service. // All implementations must embed UnimplementedConversionCustomVariableServiceServer // for forward compatibility +// +// Service to manage conversion custom variables. type ConversionCustomVariableServiceServer interface { // Creates or updates conversion custom variables. Operation statuses are // returned. @@ -137,7 +142,7 @@ func _ConversionCustomVariableService_MutateConversionCustomVariables_Handler(sr // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var ConversionCustomVariableService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.ConversionCustomVariableService", + ServiceName: "google.ads.googleads.v17.services.ConversionCustomVariableService", HandlerType: (*ConversionCustomVariableServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -146,5 +151,5 @@ var ConversionCustomVariableService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/conversion_custom_variable_service.proto", + Metadata: "google/ads/googleads/v17/services/conversion_custom_variable_service.proto", } diff --git a/services/conversion_goal_campaign_config_service.pb.go b/services/conversion_goal_campaign_config_service.pb.go index ac76f789..255b8f6b 100644 --- a/services/conversion_goal_campaign_config_service.pb.go +++ b/services/conversion_goal_campaign_config_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/conversion_goal_campaign_config_service.proto +// source: google/ads/googleads/v17/services/conversion_goal_campaign_config_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [ConversionGoalCampaignConfigService.MutateConversionGoalCampaignConfigs][google.ads.googleads.v16.services.ConversionGoalCampaignConfigService.MutateConversionGoalCampaignConfigs]. +// [ConversionGoalCampaignConfigService.MutateConversionGoalCampaignConfigs][google.ads.googleads.v17.services.ConversionGoalCampaignConfigService.MutateConversionGoalCampaignConfigs]. type MutateConversionGoalCampaignConfigsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -56,13 +56,13 @@ type MutateConversionGoalCampaignConfigsRequest struct { ValidateOnly bool `protobuf:"varint,3,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,4,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,4,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateConversionGoalCampaignConfigsRequest) Reset() { *x = MutateConversionGoalCampaignConfigsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75,7 +75,7 @@ func (x *MutateConversionGoalCampaignConfigsRequest) String() string { func (*MutateConversionGoalCampaignConfigsRequest) ProtoMessage() {} func (x *MutateConversionGoalCampaignConfigsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88,7 +88,7 @@ func (x *MutateConversionGoalCampaignConfigsRequest) ProtoReflect() protoreflect // Deprecated: Use MutateConversionGoalCampaignConfigsRequest.ProtoReflect.Descriptor instead. func (*MutateConversionGoalCampaignConfigsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_rawDescGZIP(), []int{0} } func (x *MutateConversionGoalCampaignConfigsRequest) GetCustomerId() string { @@ -138,7 +138,7 @@ type ConversionGoalCampaignConfigOperation struct { func (x *ConversionGoalCampaignConfigOperation) Reset() { *x = ConversionGoalCampaignConfigOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -151,7 +151,7 @@ func (x *ConversionGoalCampaignConfigOperation) String() string { func (*ConversionGoalCampaignConfigOperation) ProtoMessage() {} func (x *ConversionGoalCampaignConfigOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -164,7 +164,7 @@ func (x *ConversionGoalCampaignConfigOperation) ProtoReflect() protoreflect.Mess // Deprecated: Use ConversionGoalCampaignConfigOperation.ProtoReflect.Descriptor instead. func (*ConversionGoalCampaignConfigOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_rawDescGZIP(), []int{1} } func (x *ConversionGoalCampaignConfigOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -214,7 +214,7 @@ type MutateConversionGoalCampaignConfigsResponse struct { func (x *MutateConversionGoalCampaignConfigsResponse) Reset() { *x = MutateConversionGoalCampaignConfigsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -227,7 +227,7 @@ func (x *MutateConversionGoalCampaignConfigsResponse) String() string { func (*MutateConversionGoalCampaignConfigsResponse) ProtoMessage() {} func (x *MutateConversionGoalCampaignConfigsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -240,7 +240,7 @@ func (x *MutateConversionGoalCampaignConfigsResponse) ProtoReflect() protoreflec // Deprecated: Use MutateConversionGoalCampaignConfigsResponse.ProtoReflect.Descriptor instead. func (*MutateConversionGoalCampaignConfigsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_rawDescGZIP(), []int{2} } func (x *MutateConversionGoalCampaignConfigsResponse) GetResults() []*MutateConversionGoalCampaignConfigResult { @@ -267,7 +267,7 @@ type MutateConversionGoalCampaignConfigResult struct { func (x *MutateConversionGoalCampaignConfigResult) Reset() { *x = MutateConversionGoalCampaignConfigResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -280,7 +280,7 @@ func (x *MutateConversionGoalCampaignConfigResult) String() string { func (*MutateConversionGoalCampaignConfigResult) ProtoMessage() {} func (x *MutateConversionGoalCampaignConfigResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -293,7 +293,7 @@ func (x *MutateConversionGoalCampaignConfigResult) ProtoReflect() protoreflect.M // Deprecated: Use MutateConversionGoalCampaignConfigResult.ProtoReflect.Descriptor instead. func (*MutateConversionGoalCampaignConfigResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_rawDescGZIP(), []int{3} } func (x *MutateConversionGoalCampaignConfigResult) GetResourceName() string { @@ -310,22 +310,22 @@ func (x *MutateConversionGoalCampaignConfigResult) GetConversionGoalCampaignConf return nil } -var File_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_rawDesc = []byte{ 0x0a, 0x4f, 0x67, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 0x2f, 0x67, 0x6f, 0x6f, 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, 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, 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, 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, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, @@ -346,7 +346,7 @@ var file_google_ads_googleads_v16_services_conversion_goal_campaign_config_servi 0x65, 0x72, 0x49, 0x64, 0x12, 0x6d, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, @@ -356,7 +356,7 @@ var file_google_ads_googleads_v16_services_conversion_goal_campaign_config_servi 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 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, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, @@ -369,7 +369,7 @@ var file_google_ads_googleads_v16_services_conversion_goal_campaign_config_servi 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x5a, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 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, 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, 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, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0b, 0x0a, 0x09, @@ -379,7 +379,7 @@ var file_google_ads_googleads_v16_services_conversion_goal_campaign_config_servi 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x65, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, @@ -396,7 +396,7 @@ var file_google_ads_googleads_v16_services_conversion_goal_campaign_config_servi 0x61, 0x6c, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x02, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x52, 0x1c, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, @@ -407,18 +407,18 @@ var file_google_ads_googleads_v16_services_conversion_goal_campaign_config_servi 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x67, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x48, 0x3a, 0x01, 0x2a, 0x22, 0x43, 0x2f, 0x76, 0x31, - 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, + 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 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, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, @@ -428,56 +428,56 @@ var file_google_ads_googleads_v16_services_conversion_goal_campaign_config_servi 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x94, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x28, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, + 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_rawDescData = file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_rawDesc + file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_rawDescData = file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_rawDescData + return file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_goTypes = []interface{}{ - (*MutateConversionGoalCampaignConfigsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateConversionGoalCampaignConfigsRequest - (*ConversionGoalCampaignConfigOperation)(nil), // 1: google.ads.googleads.v16.services.ConversionGoalCampaignConfigOperation - (*MutateConversionGoalCampaignConfigsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateConversionGoalCampaignConfigsResponse - (*MutateConversionGoalCampaignConfigResult)(nil), // 3: google.ads.googleads.v16.services.MutateConversionGoalCampaignConfigResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_goTypes = []interface{}{ + (*MutateConversionGoalCampaignConfigsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateConversionGoalCampaignConfigsRequest + (*ConversionGoalCampaignConfigOperation)(nil), // 1: google.ads.googleads.v17.services.ConversionGoalCampaignConfigOperation + (*MutateConversionGoalCampaignConfigsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateConversionGoalCampaignConfigsResponse + (*MutateConversionGoalCampaignConfigResult)(nil), // 3: google.ads.googleads.v17.services.MutateConversionGoalCampaignConfigResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.ConversionGoalCampaignConfig)(nil), // 6: google.ads.googleads.v16.resources.ConversionGoalCampaignConfig -} -var file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateConversionGoalCampaignConfigsRequest.operations:type_name -> google.ads.googleads.v16.services.ConversionGoalCampaignConfigOperation - 4, // 1: google.ads.googleads.v16.services.MutateConversionGoalCampaignConfigsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.ConversionGoalCampaignConfigOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.ConversionGoalCampaignConfigOperation.update:type_name -> google.ads.googleads.v16.resources.ConversionGoalCampaignConfig - 3, // 4: google.ads.googleads.v16.services.MutateConversionGoalCampaignConfigsResponse.results:type_name -> google.ads.googleads.v16.services.MutateConversionGoalCampaignConfigResult - 6, // 5: google.ads.googleads.v16.services.MutateConversionGoalCampaignConfigResult.conversion_goal_campaign_config:type_name -> google.ads.googleads.v16.resources.ConversionGoalCampaignConfig - 0, // 6: google.ads.googleads.v16.services.ConversionGoalCampaignConfigService.MutateConversionGoalCampaignConfigs:input_type -> google.ads.googleads.v16.services.MutateConversionGoalCampaignConfigsRequest - 2, // 7: google.ads.googleads.v16.services.ConversionGoalCampaignConfigService.MutateConversionGoalCampaignConfigs:output_type -> google.ads.googleads.v16.services.MutateConversionGoalCampaignConfigsResponse + (*resources.ConversionGoalCampaignConfig)(nil), // 6: google.ads.googleads.v17.resources.ConversionGoalCampaignConfig +} +var file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateConversionGoalCampaignConfigsRequest.operations:type_name -> google.ads.googleads.v17.services.ConversionGoalCampaignConfigOperation + 4, // 1: google.ads.googleads.v17.services.MutateConversionGoalCampaignConfigsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.ConversionGoalCampaignConfigOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.ConversionGoalCampaignConfigOperation.update:type_name -> google.ads.googleads.v17.resources.ConversionGoalCampaignConfig + 3, // 4: google.ads.googleads.v17.services.MutateConversionGoalCampaignConfigsResponse.results:type_name -> google.ads.googleads.v17.services.MutateConversionGoalCampaignConfigResult + 6, // 5: google.ads.googleads.v17.services.MutateConversionGoalCampaignConfigResult.conversion_goal_campaign_config:type_name -> google.ads.googleads.v17.resources.ConversionGoalCampaignConfig + 0, // 6: google.ads.googleads.v17.services.ConversionGoalCampaignConfigService.MutateConversionGoalCampaignConfigs:input_type -> google.ads.googleads.v17.services.MutateConversionGoalCampaignConfigsRequest + 2, // 7: google.ads.googleads.v17.services.ConversionGoalCampaignConfigService.MutateConversionGoalCampaignConfigs:output_type -> google.ads.googleads.v17.services.MutateConversionGoalCampaignConfigsResponse 7, // [7:8] is the sub-list for method output_type 6, // [6:7] is the sub-list for method input_type 6, // [6:6] is the sub-list for extension type_name @@ -486,14 +486,14 @@ var file_google_ads_googleads_v16_services_conversion_goal_campaign_config_servi } func init() { - file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_init() + file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_init() } -func file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_init() { - if File_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto != nil { +func file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_init() { + if File_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateConversionGoalCampaignConfigsRequest); i { case 0: return &v.state @@ -505,7 +505,7 @@ func file_google_ads_googleads_v16_services_conversion_goal_campaign_config_serv return nil } } - file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConversionGoalCampaignConfigOperation); i { case 0: return &v.state @@ -517,7 +517,7 @@ func file_google_ads_googleads_v16_services_conversion_goal_campaign_config_serv return nil } } - file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateConversionGoalCampaignConfigsResponse); i { case 0: return &v.state @@ -529,7 +529,7 @@ func file_google_ads_googleads_v16_services_conversion_goal_campaign_config_serv return nil } } - file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateConversionGoalCampaignConfigResult); i { case 0: return &v.state @@ -542,25 +542,25 @@ func file_google_ads_googleads_v16_services_conversion_goal_campaign_config_serv } } } - file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*ConversionGoalCampaignConfigOperation_Update)(nil), } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto = out.File - file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto = out.File + file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_depIdxs = nil } diff --git a/services/conversion_goal_campaign_config_service_grpc.pb.go b/services/conversion_goal_campaign_config_service_grpc.pb.go index 0d14b269..70e14392 100644 --- a/services/conversion_goal_campaign_config_service_grpc.pb.go +++ b/services/conversion_goal_campaign_config_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/conversion_goal_campaign_config_service.proto +// source: google/ads/googleads/v17/services/conversion_goal_campaign_config_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - ConversionGoalCampaignConfigService_MutateConversionGoalCampaignConfigs_FullMethodName = "/google.ads.googleads.v16.services.ConversionGoalCampaignConfigService/MutateConversionGoalCampaignConfigs" + ConversionGoalCampaignConfigService_MutateConversionGoalCampaignConfigs_FullMethodName = "/google.ads.googleads.v17.services.ConversionGoalCampaignConfigService/MutateConversionGoalCampaignConfigs" ) // ConversionGoalCampaignConfigServiceClient is the client API for ConversionGoalCampaignConfigService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage conversion goal campaign config. type ConversionGoalCampaignConfigServiceClient interface { // Creates, updates or removes conversion goal campaign config. Operation // statuses are returned. @@ -54,8 +56,9 @@ func NewConversionGoalCampaignConfigServiceClient(cc grpc.ClientConnInterface) C } func (c *conversionGoalCampaignConfigServiceClient) MutateConversionGoalCampaignConfigs(ctx context.Context, in *MutateConversionGoalCampaignConfigsRequest, opts ...grpc.CallOption) (*MutateConversionGoalCampaignConfigsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateConversionGoalCampaignConfigsResponse) - err := c.cc.Invoke(ctx, ConversionGoalCampaignConfigService_MutateConversionGoalCampaignConfigs_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, ConversionGoalCampaignConfigService_MutateConversionGoalCampaignConfigs_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -65,6 +68,8 @@ func (c *conversionGoalCampaignConfigServiceClient) MutateConversionGoalCampaign // ConversionGoalCampaignConfigServiceServer is the server API for ConversionGoalCampaignConfigService service. // All implementations must embed UnimplementedConversionGoalCampaignConfigServiceServer // for forward compatibility +// +// Service to manage conversion goal campaign config. type ConversionGoalCampaignConfigServiceServer interface { // Creates, updates or removes conversion goal campaign config. Operation // statuses are returned. @@ -115,7 +120,7 @@ func _ConversionGoalCampaignConfigService_MutateConversionGoalCampaignConfigs_Ha // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var ConversionGoalCampaignConfigService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.ConversionGoalCampaignConfigService", + ServiceName: "google.ads.googleads.v17.services.ConversionGoalCampaignConfigService", HandlerType: (*ConversionGoalCampaignConfigServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -124,5 +129,5 @@ var ConversionGoalCampaignConfigService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/conversion_goal_campaign_config_service.proto", + Metadata: "google/ads/googleads/v17/services/conversion_goal_campaign_config_service.proto", } diff --git a/services/conversion_upload_service.pb.go b/services/conversion_upload_service.pb.go index f5fa5311..b35de2cc 100644 --- a/services/conversion_upload_service.pb.go +++ b/services/conversion_upload_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/conversion_upload_service.proto +// source: google/ads/googleads/v17/services/conversion_upload_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [ConversionUploadService.UploadClickConversions][google.ads.googleads.v16.services.ConversionUploadService.UploadClickConversions]. +// [ConversionUploadService.UploadClickConversions][google.ads.googleads.v17.services.ConversionUploadService.UploadClickConversions]. type UploadClickConversionsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -90,7 +90,7 @@ type UploadClickConversionsRequest struct { func (x *UploadClickConversionsRequest) Reset() { *x = UploadClickConversionsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -103,7 +103,7 @@ func (x *UploadClickConversionsRequest) String() string { func (*UploadClickConversionsRequest) ProtoMessage() {} func (x *UploadClickConversionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -116,7 +116,7 @@ func (x *UploadClickConversionsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UploadClickConversionsRequest.ProtoReflect.Descriptor instead. func (*UploadClickConversionsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_conversion_upload_service_proto_rawDescGZIP(), []int{0} } func (x *UploadClickConversionsRequest) GetCustomerId() string { @@ -162,7 +162,7 @@ func (x *UploadClickConversionsRequest) GetJobId() int32 { } // Response message for -// [ConversionUploadService.UploadClickConversions][google.ads.googleads.v16.services.ConversionUploadService.UploadClickConversions]. +// [ConversionUploadService.UploadClickConversions][google.ads.googleads.v17.services.ConversionUploadService.UploadClickConversions]. type UploadClickConversionsResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -186,7 +186,7 @@ type UploadClickConversionsResponse struct { func (x *UploadClickConversionsResponse) Reset() { *x = UploadClickConversionsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -199,7 +199,7 @@ func (x *UploadClickConversionsResponse) String() string { func (*UploadClickConversionsResponse) ProtoMessage() {} func (x *UploadClickConversionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_conversion_upload_service_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 *UploadClickConversionsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use UploadClickConversionsResponse.ProtoReflect.Descriptor instead. func (*UploadClickConversionsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_conversion_upload_service_proto_rawDescGZIP(), []int{1} } func (x *UploadClickConversionsResponse) GetPartialFailureError() *status.Status { @@ -237,7 +237,7 @@ func (x *UploadClickConversionsResponse) GetJobId() int64 { } // Request message for -// [ConversionUploadService.UploadCallConversions][google.ads.googleads.v16.services.ConversionUploadService.UploadCallConversions]. +// [ConversionUploadService.UploadCallConversions][google.ads.googleads.v17.services.ConversionUploadService.UploadCallConversions]. type UploadCallConversionsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -263,7 +263,7 @@ type UploadCallConversionsRequest struct { func (x *UploadCallConversionsRequest) Reset() { *x = UploadCallConversionsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -276,7 +276,7 @@ func (x *UploadCallConversionsRequest) String() string { func (*UploadCallConversionsRequest) ProtoMessage() {} func (x *UploadCallConversionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -289,7 +289,7 @@ func (x *UploadCallConversionsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UploadCallConversionsRequest.ProtoReflect.Descriptor instead. func (*UploadCallConversionsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_conversion_upload_service_proto_rawDescGZIP(), []int{2} } func (x *UploadCallConversionsRequest) GetCustomerId() string { @@ -321,7 +321,7 @@ func (x *UploadCallConversionsRequest) GetValidateOnly() bool { } // Response message for -// [ConversionUploadService.UploadCallConversions][google.ads.googleads.v16.services.ConversionUploadService.UploadCallConversions]. +// [ConversionUploadService.UploadCallConversions][google.ads.googleads.v17.services.ConversionUploadService.UploadCallConversions]. type UploadCallConversionsResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -343,7 +343,7 @@ type UploadCallConversionsResponse struct { func (x *UploadCallConversionsResponse) Reset() { *x = UploadCallConversionsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -356,7 +356,7 @@ func (x *UploadCallConversionsResponse) String() string { func (*UploadCallConversionsResponse) ProtoMessage() {} func (x *UploadCallConversionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -369,7 +369,7 @@ func (x *UploadCallConversionsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use UploadCallConversionsResponse.ProtoReflect.Descriptor instead. func (*UploadCallConversionsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_conversion_upload_service_proto_rawDescGZIP(), []int{3} } func (x *UploadCallConversionsResponse) GetPartialFailureError() *status.Status { @@ -430,7 +430,7 @@ type ClickConversion struct { // number of user identifiers for each conversion is 5. UserIdentifiers []*common.UserIdentifier `protobuf:"bytes,17,rep,name=user_identifiers,json=userIdentifiers,proto3" json:"user_identifiers,omitempty"` // The environment this conversion was recorded on, for example, App or Web. - ConversionEnvironment enums.ConversionEnvironmentEnum_ConversionEnvironment `protobuf:"varint,20,opt,name=conversion_environment,json=conversionEnvironment,proto3,enum=google.ads.googleads.v16.enums.ConversionEnvironmentEnum_ConversionEnvironment" json:"conversion_environment,omitempty"` + ConversionEnvironment enums.ConversionEnvironmentEnum_ConversionEnvironment `protobuf:"varint,20,opt,name=conversion_environment,json=conversionEnvironment,proto3,enum=google.ads.googleads.v17.enums.ConversionEnvironmentEnum_ConversionEnvironment" json:"conversion_environment,omitempty"` // The consent setting for the event. Consent *common.Consent `protobuf:"bytes,23,opt,name=consent,proto3" json:"consent,omitempty"` } @@ -438,7 +438,7 @@ type ClickConversion struct { func (x *ClickConversion) Reset() { *x = ClickConversion{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -451,7 +451,7 @@ func (x *ClickConversion) String() string { func (*ClickConversion) ProtoMessage() {} func (x *ClickConversion) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -464,7 +464,7 @@ func (x *ClickConversion) ProtoReflect() protoreflect.Message { // Deprecated: Use ClickConversion.ProtoReflect.Descriptor instead. func (*ClickConversion) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v17_services_conversion_upload_service_proto_rawDescGZIP(), []int{4} } func (x *ClickConversion) GetGclid() string { @@ -601,7 +601,7 @@ type CallConversion struct { func (x *CallConversion) Reset() { *x = CallConversion{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -614,7 +614,7 @@ func (x *CallConversion) String() string { func (*CallConversion) ProtoMessage() {} func (x *CallConversion) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -627,7 +627,7 @@ func (x *CallConversion) ProtoReflect() protoreflect.Message { // Deprecated: Use CallConversion.ProtoReflect.Descriptor instead. func (*CallConversion) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v17_services_conversion_upload_service_proto_rawDescGZIP(), []int{5} } func (x *CallConversion) GetCallerId() string { @@ -702,7 +702,7 @@ type ExternalAttributionData struct { func (x *ExternalAttributionData) Reset() { *x = ExternalAttributionData{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -715,7 +715,7 @@ func (x *ExternalAttributionData) String() string { func (*ExternalAttributionData) ProtoMessage() {} func (x *ExternalAttributionData) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[6] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -728,7 +728,7 @@ func (x *ExternalAttributionData) ProtoReflect() protoreflect.Message { // Deprecated: Use ExternalAttributionData.ProtoReflect.Descriptor instead. func (*ExternalAttributionData) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v17_services_conversion_upload_service_proto_rawDescGZIP(), []int{6} } func (x *ExternalAttributionData) GetExternalAttributionCredit() float64 { @@ -773,7 +773,7 @@ type ClickConversionResult struct { func (x *ClickConversionResult) Reset() { *x = ClickConversionResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -786,7 +786,7 @@ func (x *ClickConversionResult) String() string { func (*ClickConversionResult) ProtoMessage() {} func (x *ClickConversionResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[7] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -799,7 +799,7 @@ func (x *ClickConversionResult) ProtoReflect() protoreflect.Message { // Deprecated: Use ClickConversionResult.ProtoReflect.Descriptor instead. func (*ClickConversionResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v17_services_conversion_upload_service_proto_rawDescGZIP(), []int{7} } func (x *ClickConversionResult) GetGclid() string { @@ -866,7 +866,7 @@ type CallConversionResult struct { func (x *CallConversionResult) Reset() { *x = CallConversionResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -879,7 +879,7 @@ func (x *CallConversionResult) String() string { func (*CallConversionResult) ProtoMessage() {} func (x *CallConversionResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[8] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -892,7 +892,7 @@ func (x *CallConversionResult) ProtoReflect() protoreflect.Message { // Deprecated: Use CallConversionResult.ProtoReflect.Descriptor instead. func (*CallConversionResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v17_services_conversion_upload_service_proto_rawDescGZIP(), []int{8} } func (x *CallConversionResult) GetCallerId() string { @@ -944,7 +944,7 @@ type CustomVariable struct { func (x *CustomVariable) Reset() { *x = CustomVariable{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -957,7 +957,7 @@ func (x *CustomVariable) String() string { func (*CustomVariable) ProtoMessage() {} func (x *CustomVariable) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[9] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -970,7 +970,7 @@ func (x *CustomVariable) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomVariable.ProtoReflect.Descriptor instead. func (*CustomVariable) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDescGZIP(), []int{9} + return file_google_ads_googleads_v17_services_conversion_upload_service_proto_rawDescGZIP(), []int{9} } func (x *CustomVariable) GetConversionCustomVariable() string { @@ -1010,7 +1010,7 @@ type CartData struct { func (x *CartData) Reset() { *x = CartData{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1023,7 +1023,7 @@ func (x *CartData) String() string { func (*CartData) ProtoMessage() {} func (x *CartData) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[10] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1036,7 +1036,7 @@ func (x *CartData) ProtoReflect() protoreflect.Message { // Deprecated: Use CartData.ProtoReflect.Descriptor instead. func (*CartData) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDescGZIP(), []int{10} + return file_google_ads_googleads_v17_services_conversion_upload_service_proto_rawDescGZIP(), []int{10} } func (x *CartData) GetMerchantId() int64 { @@ -1094,7 +1094,7 @@ type CartData_Item struct { func (x *CartData_Item) Reset() { *x = CartData_Item{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1107,7 +1107,7 @@ func (x *CartData_Item) String() string { func (*CartData_Item) ProtoMessage() {} func (x *CartData_Item) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[11] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1120,7 +1120,7 @@ func (x *CartData_Item) ProtoReflect() protoreflect.Message { // Deprecated: Use CartData_Item.ProtoReflect.Descriptor instead. func (*CartData_Item) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDescGZIP(), []int{10, 0} + return file_google_ads_googleads_v17_services_conversion_upload_service_proto_rawDescGZIP(), []int{10, 0} } func (x *CartData_Item) GetProductId() string { @@ -1144,24 +1144,24 @@ func (x *CartData_Item) GetUnitPrice() float64 { return 0 } -var File_google_ads_googleads_v16_services_conversion_upload_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_conversion_upload_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_conversion_upload_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, + 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, 0x6f, 0x6e, 0x73, 0x65, 0x6e, 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, + 0x73, 0x2f, 0x67, 0x6f, 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, 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, 0x63, + 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, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, @@ -1180,7 +1180,7 @@ var file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDe 0x65, 0x72, 0x49, 0x64, 0x12, 0x59, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6c, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x2c, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x75, @@ -1202,7 +1202,7 @@ var file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDe 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x52, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x15, 0x0a, 0x06, 0x6a, 0x6f, 0x62, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, @@ -1213,7 +1213,7 @@ var file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDe 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x58, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x2c, 0x0a, 0x0f, 0x70, 0x61, @@ -1231,7 +1231,7 @@ var file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDe 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x51, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6c, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xf5, 0x07, 0x0a, 0x0f, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x19, @@ -1257,38 +1257,38 @@ var file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDe 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0x07, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x52, 0x17, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x12, 0x5c, 0x0a, 0x10, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x0f, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x0f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x48, 0x0a, 0x09, 0x63, 0x61, 0x72, 0x74, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0x10, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x72, 0x74, 0x44, 0x61, 0x74, 0x61, 0x52, 0x08, 0x63, 0x61, 0x72, 0x74, 0x44, 0x61, 0x74, 0x61, 0x12, 0x5a, 0x0a, 0x10, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x73, 0x18, 0x11, 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, 0x49, 0x64, 0x65, + 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, 0x86, 0x01, 0x0a, 0x16, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x14, 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, 0x43, 0x6f, 0x6e, 0x76, 0x65, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x15, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x42, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x73, 0x65, 0x6e, 0x74, 0x18, 0x17, 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, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x73, 0x65, 0x6e, 0x74, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x67, 0x63, 0x6c, 0x69, 0x64, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, @@ -1319,12 +1319,12 @@ var file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDe 0x12, 0x5c, 0x0a, 0x10, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x0d, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x0f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x42, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x73, 0x65, 0x6e, 0x74, 0x18, 0x0e, 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, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x73, 0x65, 0x6e, 0x74, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, @@ -1364,7 +1364,7 @@ var file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDe 0x12, 0x5a, 0x0a, 0x10, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x73, 0x18, 0x07, 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, + 0x73, 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, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x67, 0x63, 0x6c, 0x69, 0x64, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, @@ -1413,7 +1413,7 @@ var file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDe 0x63, 0x61, 0x6c, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x73, 0x74, 0x12, 0x46, 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x05, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x72, 0x74, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x1a, 0x60, 0x0a, 0x04, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x69, 0x64, @@ -1426,34 +1426,34 @@ var file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDe 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x89, 0x02, 0x0a, 0x16, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x6a, 0xda, 0x41, 0x27, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2c, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3a, 0x3a, 0x01, 0x2a, 0x22, 0x35, 0x2f, - 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, + 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x3a, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x85, 0x02, 0x0a, 0x15, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x43, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x43, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x43, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x69, 0xda, 0x41, 0x27, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2c, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x82, 0xd3, 0xe4, - 0x93, 0x02, 0x39, 0x3a, 0x01, 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, + 0x93, 0x02, 0x39, 0x3a, 0x01, 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x3a, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x43, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x1a, 0x45, 0xca, 0x41, @@ -1463,76 +1463,76 @@ var file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDe 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x88, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1c, 0x43, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, + 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDescData = file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDesc + file_google_ads_googleads_v17_services_conversion_upload_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_conversion_upload_service_proto_rawDescData = file_google_ads_googleads_v17_services_conversion_upload_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_conversion_upload_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_conversion_upload_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_conversion_upload_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_conversion_upload_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDescData -} - -var file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes = make([]protoimpl.MessageInfo, 12) -var file_google_ads_googleads_v16_services_conversion_upload_service_proto_goTypes = []interface{}{ - (*UploadClickConversionsRequest)(nil), // 0: google.ads.googleads.v16.services.UploadClickConversionsRequest - (*UploadClickConversionsResponse)(nil), // 1: google.ads.googleads.v16.services.UploadClickConversionsResponse - (*UploadCallConversionsRequest)(nil), // 2: google.ads.googleads.v16.services.UploadCallConversionsRequest - (*UploadCallConversionsResponse)(nil), // 3: google.ads.googleads.v16.services.UploadCallConversionsResponse - (*ClickConversion)(nil), // 4: google.ads.googleads.v16.services.ClickConversion - (*CallConversion)(nil), // 5: google.ads.googleads.v16.services.CallConversion - (*ExternalAttributionData)(nil), // 6: google.ads.googleads.v16.services.ExternalAttributionData - (*ClickConversionResult)(nil), // 7: google.ads.googleads.v16.services.ClickConversionResult - (*CallConversionResult)(nil), // 8: google.ads.googleads.v16.services.CallConversionResult - (*CustomVariable)(nil), // 9: google.ads.googleads.v16.services.CustomVariable - (*CartData)(nil), // 10: google.ads.googleads.v16.services.CartData - (*CartData_Item)(nil), // 11: google.ads.googleads.v16.services.CartData.Item + return file_google_ads_googleads_v17_services_conversion_upload_service_proto_rawDescData +} + +var file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes = make([]protoimpl.MessageInfo, 12) +var file_google_ads_googleads_v17_services_conversion_upload_service_proto_goTypes = []interface{}{ + (*UploadClickConversionsRequest)(nil), // 0: google.ads.googleads.v17.services.UploadClickConversionsRequest + (*UploadClickConversionsResponse)(nil), // 1: google.ads.googleads.v17.services.UploadClickConversionsResponse + (*UploadCallConversionsRequest)(nil), // 2: google.ads.googleads.v17.services.UploadCallConversionsRequest + (*UploadCallConversionsResponse)(nil), // 3: google.ads.googleads.v17.services.UploadCallConversionsResponse + (*ClickConversion)(nil), // 4: google.ads.googleads.v17.services.ClickConversion + (*CallConversion)(nil), // 5: google.ads.googleads.v17.services.CallConversion + (*ExternalAttributionData)(nil), // 6: google.ads.googleads.v17.services.ExternalAttributionData + (*ClickConversionResult)(nil), // 7: google.ads.googleads.v17.services.ClickConversionResult + (*CallConversionResult)(nil), // 8: google.ads.googleads.v17.services.CallConversionResult + (*CustomVariable)(nil), // 9: google.ads.googleads.v17.services.CustomVariable + (*CartData)(nil), // 10: google.ads.googleads.v17.services.CartData + (*CartData_Item)(nil), // 11: google.ads.googleads.v17.services.CartData.Item (*status.Status)(nil), // 12: google.rpc.Status - (*common.UserIdentifier)(nil), // 13: google.ads.googleads.v16.common.UserIdentifier - (enums.ConversionEnvironmentEnum_ConversionEnvironment)(0), // 14: google.ads.googleads.v16.enums.ConversionEnvironmentEnum.ConversionEnvironment - (*common.Consent)(nil), // 15: google.ads.googleads.v16.common.Consent -} -var file_google_ads_googleads_v16_services_conversion_upload_service_proto_depIdxs = []int32{ - 4, // 0: google.ads.googleads.v16.services.UploadClickConversionsRequest.conversions:type_name -> google.ads.googleads.v16.services.ClickConversion - 12, // 1: google.ads.googleads.v16.services.UploadClickConversionsResponse.partial_failure_error:type_name -> google.rpc.Status - 7, // 2: google.ads.googleads.v16.services.UploadClickConversionsResponse.results:type_name -> google.ads.googleads.v16.services.ClickConversionResult - 5, // 3: google.ads.googleads.v16.services.UploadCallConversionsRequest.conversions:type_name -> google.ads.googleads.v16.services.CallConversion - 12, // 4: google.ads.googleads.v16.services.UploadCallConversionsResponse.partial_failure_error:type_name -> google.rpc.Status - 8, // 5: google.ads.googleads.v16.services.UploadCallConversionsResponse.results:type_name -> google.ads.googleads.v16.services.CallConversionResult - 6, // 6: google.ads.googleads.v16.services.ClickConversion.external_attribution_data:type_name -> google.ads.googleads.v16.services.ExternalAttributionData - 9, // 7: google.ads.googleads.v16.services.ClickConversion.custom_variables:type_name -> google.ads.googleads.v16.services.CustomVariable - 10, // 8: google.ads.googleads.v16.services.ClickConversion.cart_data:type_name -> google.ads.googleads.v16.services.CartData - 13, // 9: google.ads.googleads.v16.services.ClickConversion.user_identifiers:type_name -> google.ads.googleads.v16.common.UserIdentifier - 14, // 10: google.ads.googleads.v16.services.ClickConversion.conversion_environment:type_name -> google.ads.googleads.v16.enums.ConversionEnvironmentEnum.ConversionEnvironment - 15, // 11: google.ads.googleads.v16.services.ClickConversion.consent:type_name -> google.ads.googleads.v16.common.Consent - 9, // 12: google.ads.googleads.v16.services.CallConversion.custom_variables:type_name -> google.ads.googleads.v16.services.CustomVariable - 15, // 13: google.ads.googleads.v16.services.CallConversion.consent:type_name -> google.ads.googleads.v16.common.Consent - 13, // 14: google.ads.googleads.v16.services.ClickConversionResult.user_identifiers:type_name -> google.ads.googleads.v16.common.UserIdentifier - 11, // 15: google.ads.googleads.v16.services.CartData.items:type_name -> google.ads.googleads.v16.services.CartData.Item - 0, // 16: google.ads.googleads.v16.services.ConversionUploadService.UploadClickConversions:input_type -> google.ads.googleads.v16.services.UploadClickConversionsRequest - 2, // 17: google.ads.googleads.v16.services.ConversionUploadService.UploadCallConversions:input_type -> google.ads.googleads.v16.services.UploadCallConversionsRequest - 1, // 18: google.ads.googleads.v16.services.ConversionUploadService.UploadClickConversions:output_type -> google.ads.googleads.v16.services.UploadClickConversionsResponse - 3, // 19: google.ads.googleads.v16.services.ConversionUploadService.UploadCallConversions:output_type -> google.ads.googleads.v16.services.UploadCallConversionsResponse + (*common.UserIdentifier)(nil), // 13: google.ads.googleads.v17.common.UserIdentifier + (enums.ConversionEnvironmentEnum_ConversionEnvironment)(0), // 14: google.ads.googleads.v17.enums.ConversionEnvironmentEnum.ConversionEnvironment + (*common.Consent)(nil), // 15: google.ads.googleads.v17.common.Consent +} +var file_google_ads_googleads_v17_services_conversion_upload_service_proto_depIdxs = []int32{ + 4, // 0: google.ads.googleads.v17.services.UploadClickConversionsRequest.conversions:type_name -> google.ads.googleads.v17.services.ClickConversion + 12, // 1: google.ads.googleads.v17.services.UploadClickConversionsResponse.partial_failure_error:type_name -> google.rpc.Status + 7, // 2: google.ads.googleads.v17.services.UploadClickConversionsResponse.results:type_name -> google.ads.googleads.v17.services.ClickConversionResult + 5, // 3: google.ads.googleads.v17.services.UploadCallConversionsRequest.conversions:type_name -> google.ads.googleads.v17.services.CallConversion + 12, // 4: google.ads.googleads.v17.services.UploadCallConversionsResponse.partial_failure_error:type_name -> google.rpc.Status + 8, // 5: google.ads.googleads.v17.services.UploadCallConversionsResponse.results:type_name -> google.ads.googleads.v17.services.CallConversionResult + 6, // 6: google.ads.googleads.v17.services.ClickConversion.external_attribution_data:type_name -> google.ads.googleads.v17.services.ExternalAttributionData + 9, // 7: google.ads.googleads.v17.services.ClickConversion.custom_variables:type_name -> google.ads.googleads.v17.services.CustomVariable + 10, // 8: google.ads.googleads.v17.services.ClickConversion.cart_data:type_name -> google.ads.googleads.v17.services.CartData + 13, // 9: google.ads.googleads.v17.services.ClickConversion.user_identifiers:type_name -> google.ads.googleads.v17.common.UserIdentifier + 14, // 10: google.ads.googleads.v17.services.ClickConversion.conversion_environment:type_name -> google.ads.googleads.v17.enums.ConversionEnvironmentEnum.ConversionEnvironment + 15, // 11: google.ads.googleads.v17.services.ClickConversion.consent:type_name -> google.ads.googleads.v17.common.Consent + 9, // 12: google.ads.googleads.v17.services.CallConversion.custom_variables:type_name -> google.ads.googleads.v17.services.CustomVariable + 15, // 13: google.ads.googleads.v17.services.CallConversion.consent:type_name -> google.ads.googleads.v17.common.Consent + 13, // 14: google.ads.googleads.v17.services.ClickConversionResult.user_identifiers:type_name -> google.ads.googleads.v17.common.UserIdentifier + 11, // 15: google.ads.googleads.v17.services.CartData.items:type_name -> google.ads.googleads.v17.services.CartData.Item + 0, // 16: google.ads.googleads.v17.services.ConversionUploadService.UploadClickConversions:input_type -> google.ads.googleads.v17.services.UploadClickConversionsRequest + 2, // 17: google.ads.googleads.v17.services.ConversionUploadService.UploadCallConversions:input_type -> google.ads.googleads.v17.services.UploadCallConversionsRequest + 1, // 18: google.ads.googleads.v17.services.ConversionUploadService.UploadClickConversions:output_type -> google.ads.googleads.v17.services.UploadClickConversionsResponse + 3, // 19: google.ads.googleads.v17.services.ConversionUploadService.UploadCallConversions:output_type -> google.ads.googleads.v17.services.UploadCallConversionsResponse 18, // [18:20] is the sub-list for method output_type 16, // [16:18] is the sub-list for method input_type 16, // [16:16] is the sub-list for extension type_name @@ -1540,13 +1540,13 @@ var file_google_ads_googleads_v16_services_conversion_upload_service_proto_depId 0, // [0:16] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_conversion_upload_service_proto_init() } -func file_google_ads_googleads_v16_services_conversion_upload_service_proto_init() { - if File_google_ads_googleads_v16_services_conversion_upload_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_conversion_upload_service_proto_init() } +func file_google_ads_googleads_v17_services_conversion_upload_service_proto_init() { + if File_google_ads_googleads_v17_services_conversion_upload_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*UploadClickConversionsRequest); i { case 0: return &v.state @@ -1558,7 +1558,7 @@ func file_google_ads_googleads_v16_services_conversion_upload_service_proto_init return nil } } - file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*UploadClickConversionsResponse); i { case 0: return &v.state @@ -1570,7 +1570,7 @@ func file_google_ads_googleads_v16_services_conversion_upload_service_proto_init return nil } } - file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*UploadCallConversionsRequest); i { case 0: return &v.state @@ -1582,7 +1582,7 @@ func file_google_ads_googleads_v16_services_conversion_upload_service_proto_init return nil } } - file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*UploadCallConversionsResponse); i { case 0: return &v.state @@ -1594,7 +1594,7 @@ func file_google_ads_googleads_v16_services_conversion_upload_service_proto_init return nil } } - file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ClickConversion); i { case 0: return &v.state @@ -1606,7 +1606,7 @@ func file_google_ads_googleads_v16_services_conversion_upload_service_proto_init return nil } } - file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CallConversion); i { case 0: return &v.state @@ -1618,7 +1618,7 @@ func file_google_ads_googleads_v16_services_conversion_upload_service_proto_init return nil } } - file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ExternalAttributionData); i { case 0: return &v.state @@ -1630,7 +1630,7 @@ func file_google_ads_googleads_v16_services_conversion_upload_service_proto_init return nil } } - file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ClickConversionResult); i { case 0: return &v.state @@ -1642,7 +1642,7 @@ func file_google_ads_googleads_v16_services_conversion_upload_service_proto_init return nil } } - file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CallConversionResult); i { case 0: return &v.state @@ -1654,7 +1654,7 @@ func file_google_ads_googleads_v16_services_conversion_upload_service_proto_init return nil } } - file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomVariable); i { case 0: return &v.state @@ -1666,7 +1666,7 @@ func file_google_ads_googleads_v16_services_conversion_upload_service_proto_init return nil } } - file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CartData); i { case 0: return &v.state @@ -1678,7 +1678,7 @@ func file_google_ads_googleads_v16_services_conversion_upload_service_proto_init return nil } } - file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CartData_Item); i { case 0: return &v.state @@ -1691,28 +1691,28 @@ func file_google_ads_googleads_v16_services_conversion_upload_service_proto_init } } } - file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[0].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[4].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[5].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[6].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[7].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes[8].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[4].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[5].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[6].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[7].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes[8].OneofWrappers = []interface{}{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_conversion_upload_service_proto_rawDesc, NumEnums: 0, NumMessages: 12, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_conversion_upload_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_conversion_upload_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_conversion_upload_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_conversion_upload_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_conversion_upload_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_conversion_upload_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_conversion_upload_service_proto = out.File - file_google_ads_googleads_v16_services_conversion_upload_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_conversion_upload_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_conversion_upload_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_conversion_upload_service_proto = out.File + file_google_ads_googleads_v17_services_conversion_upload_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_conversion_upload_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_conversion_upload_service_proto_depIdxs = nil } diff --git a/services/conversion_upload_service_grpc.pb.go b/services/conversion_upload_service_grpc.pb.go index 2d680728..b200bafa 100644 --- a/services/conversion_upload_service_grpc.pb.go +++ b/services/conversion_upload_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/conversion_upload_service.proto +// source: google/ads/googleads/v17/services/conversion_upload_service.proto package services @@ -29,17 +29,19 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - ConversionUploadService_UploadClickConversions_FullMethodName = "/google.ads.googleads.v16.services.ConversionUploadService/UploadClickConversions" - ConversionUploadService_UploadCallConversions_FullMethodName = "/google.ads.googleads.v16.services.ConversionUploadService/UploadCallConversions" + ConversionUploadService_UploadClickConversions_FullMethodName = "/google.ads.googleads.v17.services.ConversionUploadService/UploadClickConversions" + ConversionUploadService_UploadCallConversions_FullMethodName = "/google.ads.googleads.v17.services.ConversionUploadService/UploadCallConversions" ) // ConversionUploadServiceClient is the client API for ConversionUploadService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to upload conversions. type ConversionUploadServiceClient interface { // Processes the given click conversions. // @@ -77,8 +79,9 @@ func NewConversionUploadServiceClient(cc grpc.ClientConnInterface) ConversionUpl } func (c *conversionUploadServiceClient) UploadClickConversions(ctx context.Context, in *UploadClickConversionsRequest, opts ...grpc.CallOption) (*UploadClickConversionsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(UploadClickConversionsResponse) - err := c.cc.Invoke(ctx, ConversionUploadService_UploadClickConversions_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, ConversionUploadService_UploadClickConversions_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -86,8 +89,9 @@ func (c *conversionUploadServiceClient) UploadClickConversions(ctx context.Conte } func (c *conversionUploadServiceClient) UploadCallConversions(ctx context.Context, in *UploadCallConversionsRequest, opts ...grpc.CallOption) (*UploadCallConversionsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(UploadCallConversionsResponse) - err := c.cc.Invoke(ctx, ConversionUploadService_UploadCallConversions_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, ConversionUploadService_UploadCallConversions_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -97,6 +101,8 @@ func (c *conversionUploadServiceClient) UploadCallConversions(ctx context.Contex // ConversionUploadServiceServer is the server API for ConversionUploadService service. // All implementations must embed UnimplementedConversionUploadServiceServer // for forward compatibility +// +// Service to upload conversions. type ConversionUploadServiceServer interface { // Processes the given click conversions. // @@ -190,7 +196,7 @@ func _ConversionUploadService_UploadCallConversions_Handler(srv interface{}, ctx // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var ConversionUploadService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.ConversionUploadService", + ServiceName: "google.ads.googleads.v17.services.ConversionUploadService", HandlerType: (*ConversionUploadServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -203,5 +209,5 @@ var ConversionUploadService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/conversion_upload_service.proto", + Metadata: "google/ads/googleads/v17/services/conversion_upload_service.proto", } diff --git a/services/conversion_value_rule_service.pb.go b/services/conversion_value_rule_service.pb.go index 34625e46..07ea8fec 100644 --- a/services/conversion_value_rule_service.pb.go +++ b/services/conversion_value_rule_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/conversion_value_rule_service.proto +// source: google/ads/googleads/v17/services/conversion_value_rule_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [ConversionValueRuleService.MutateConversionValueRules][google.ads.googleads.v16.services.ConversionValueRuleService.MutateConversionValueRules]. +// [ConversionValueRuleService.MutateConversionValueRules][google.ads.googleads.v17.services.ConversionValueRuleService.MutateConversionValueRules]. type MutateConversionValueRulesRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -62,13 +62,13 @@ type MutateConversionValueRulesRequest struct { ValidateOnly bool `protobuf:"varint,3,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,4,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,4,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateConversionValueRulesRequest) Reset() { *x = MutateConversionValueRulesRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81,7 +81,7 @@ func (x *MutateConversionValueRulesRequest) String() string { func (*MutateConversionValueRulesRequest) ProtoMessage() {} func (x *MutateConversionValueRulesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_conversion_value_rule_service_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 *MutateConversionValueRulesRequest) ProtoReflect() protoreflect.Message // Deprecated: Use MutateConversionValueRulesRequest.ProtoReflect.Descriptor instead. func (*MutateConversionValueRulesRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_rawDescGZIP(), []int{0} } func (x *MutateConversionValueRulesRequest) GetCustomerId() string { @@ -153,7 +153,7 @@ type ConversionValueRuleOperation struct { func (x *ConversionValueRuleOperation) Reset() { *x = ConversionValueRuleOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -166,7 +166,7 @@ func (x *ConversionValueRuleOperation) String() string { func (*ConversionValueRuleOperation) ProtoMessage() {} func (x *ConversionValueRuleOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -179,7 +179,7 @@ func (x *ConversionValueRuleOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionValueRuleOperation.ProtoReflect.Descriptor instead. func (*ConversionValueRuleOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_rawDescGZIP(), []int{1} } func (x *ConversionValueRuleOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -248,7 +248,7 @@ func (*ConversionValueRuleOperation_Update) isConversionValueRuleOperation_Opera func (*ConversionValueRuleOperation_Remove) isConversionValueRuleOperation_Operation() {} // Response message for -// [ConversionValueRuleService.MutateConversionValueRules][google.ads.googleads.v16.services.ConversionValueRuleService.MutateConversionValueRules]. +// [ConversionValueRuleService.MutateConversionValueRules][google.ads.googleads.v17.services.ConversionValueRuleService.MutateConversionValueRules]. type MutateConversionValueRulesResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -266,7 +266,7 @@ type MutateConversionValueRulesResponse struct { func (x *MutateConversionValueRulesResponse) Reset() { *x = MutateConversionValueRulesResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -279,7 +279,7 @@ func (x *MutateConversionValueRulesResponse) String() string { func (*MutateConversionValueRulesResponse) ProtoMessage() {} func (x *MutateConversionValueRulesResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -292,7 +292,7 @@ func (x *MutateConversionValueRulesResponse) ProtoReflect() protoreflect.Message // Deprecated: Use MutateConversionValueRulesResponse.ProtoReflect.Descriptor instead. func (*MutateConversionValueRulesResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_rawDescGZIP(), []int{2} } func (x *MutateConversionValueRulesResponse) GetResults() []*MutateConversionValueRuleResult { @@ -326,7 +326,7 @@ type MutateConversionValueRuleResult struct { func (x *MutateConversionValueRuleResult) Reset() { *x = MutateConversionValueRuleResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -339,7 +339,7 @@ func (x *MutateConversionValueRuleResult) String() string { func (*MutateConversionValueRuleResult) ProtoMessage() {} func (x *MutateConversionValueRuleResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -352,7 +352,7 @@ func (x *MutateConversionValueRuleResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateConversionValueRuleResult.ProtoReflect.Descriptor instead. func (*MutateConversionValueRuleResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_rawDescGZIP(), []int{3} } func (x *MutateConversionValueRuleResult) GetResourceName() string { @@ -369,21 +369,21 @@ func (x *MutateConversionValueRuleResult) GetConversionValueRule() *resources.Co return nil } -var File_google_ads_googleads_v16_services_conversion_value_rule_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_conversion_value_rule_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_conversion_value_rule_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, 0x65, 0x73, 0x70, 0x6f, + 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, 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, + 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, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, @@ -404,7 +404,7 @@ var file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_r 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x64, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, @@ -416,7 +416,7 @@ var file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_r 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 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, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, @@ -429,13 +429,13 @@ var file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_r 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x51, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 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, 0x72, + 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, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x51, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x4b, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x31, 0xfa, 0x41, 0x2e, 0x0a, 0x2c, @@ -448,7 +448,7 @@ var file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_r 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5c, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x46, 0x0a, 0x15, 0x70, 0x61, 0x72, 0x74, @@ -467,7 +467,7 @@ var file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_r 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x52, 0x13, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x32, 0xef, 0x02, 0x0a, 0x1a, 0x43, 0x6f, @@ -476,16 +476,16 @@ var file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_r 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5e, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, - 0xd3, 0xe4, 0x93, 0x02, 0x3f, 0x3a, 0x01, 0x2a, 0x22, 0x3a, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, + 0xd3, 0xe4, 0x93, 0x02, 0x3f, 0x3a, 0x01, 0x2a, 0x22, 0x3a, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x3a, 0x6d, 0x75, @@ -495,59 +495,59 @@ var file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_r 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x8b, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1f, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, + 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_rawDescData = file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_rawDesc + file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_rawDescData = file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_rawDescData + return file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_goTypes = []interface{}{ - (*MutateConversionValueRulesRequest)(nil), // 0: google.ads.googleads.v16.services.MutateConversionValueRulesRequest - (*ConversionValueRuleOperation)(nil), // 1: google.ads.googleads.v16.services.ConversionValueRuleOperation - (*MutateConversionValueRulesResponse)(nil), // 2: google.ads.googleads.v16.services.MutateConversionValueRulesResponse - (*MutateConversionValueRuleResult)(nil), // 3: google.ads.googleads.v16.services.MutateConversionValueRuleResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_goTypes = []interface{}{ + (*MutateConversionValueRulesRequest)(nil), // 0: google.ads.googleads.v17.services.MutateConversionValueRulesRequest + (*ConversionValueRuleOperation)(nil), // 1: google.ads.googleads.v17.services.ConversionValueRuleOperation + (*MutateConversionValueRulesResponse)(nil), // 2: google.ads.googleads.v17.services.MutateConversionValueRulesResponse + (*MutateConversionValueRuleResult)(nil), // 3: google.ads.googleads.v17.services.MutateConversionValueRuleResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.ConversionValueRule)(nil), // 6: google.ads.googleads.v16.resources.ConversionValueRule + (*resources.ConversionValueRule)(nil), // 6: google.ads.googleads.v17.resources.ConversionValueRule (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateConversionValueRulesRequest.operations:type_name -> google.ads.googleads.v16.services.ConversionValueRuleOperation - 4, // 1: google.ads.googleads.v16.services.MutateConversionValueRulesRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.ConversionValueRuleOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.ConversionValueRuleOperation.create:type_name -> google.ads.googleads.v16.resources.ConversionValueRule - 6, // 4: google.ads.googleads.v16.services.ConversionValueRuleOperation.update:type_name -> google.ads.googleads.v16.resources.ConversionValueRule - 3, // 5: google.ads.googleads.v16.services.MutateConversionValueRulesResponse.results:type_name -> google.ads.googleads.v16.services.MutateConversionValueRuleResult - 7, // 6: google.ads.googleads.v16.services.MutateConversionValueRulesResponse.partial_failure_error:type_name -> google.rpc.Status - 6, // 7: google.ads.googleads.v16.services.MutateConversionValueRuleResult.conversion_value_rule:type_name -> google.ads.googleads.v16.resources.ConversionValueRule - 0, // 8: google.ads.googleads.v16.services.ConversionValueRuleService.MutateConversionValueRules:input_type -> google.ads.googleads.v16.services.MutateConversionValueRulesRequest - 2, // 9: google.ads.googleads.v16.services.ConversionValueRuleService.MutateConversionValueRules:output_type -> google.ads.googleads.v16.services.MutateConversionValueRulesResponse +var file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateConversionValueRulesRequest.operations:type_name -> google.ads.googleads.v17.services.ConversionValueRuleOperation + 4, // 1: google.ads.googleads.v17.services.MutateConversionValueRulesRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.ConversionValueRuleOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.ConversionValueRuleOperation.create:type_name -> google.ads.googleads.v17.resources.ConversionValueRule + 6, // 4: google.ads.googleads.v17.services.ConversionValueRuleOperation.update:type_name -> google.ads.googleads.v17.resources.ConversionValueRule + 3, // 5: google.ads.googleads.v17.services.MutateConversionValueRulesResponse.results:type_name -> google.ads.googleads.v17.services.MutateConversionValueRuleResult + 7, // 6: google.ads.googleads.v17.services.MutateConversionValueRulesResponse.partial_failure_error:type_name -> google.rpc.Status + 6, // 7: google.ads.googleads.v17.services.MutateConversionValueRuleResult.conversion_value_rule:type_name -> google.ads.googleads.v17.resources.ConversionValueRule + 0, // 8: google.ads.googleads.v17.services.ConversionValueRuleService.MutateConversionValueRules:input_type -> google.ads.googleads.v17.services.MutateConversionValueRulesRequest + 2, // 9: google.ads.googleads.v17.services.ConversionValueRuleService.MutateConversionValueRules:output_type -> google.ads.googleads.v17.services.MutateConversionValueRulesResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -555,13 +555,13 @@ var file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_d 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_init() } -func file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_init() { - if File_google_ads_googleads_v16_services_conversion_value_rule_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_init() } +func file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_init() { + if File_google_ads_googleads_v17_services_conversion_value_rule_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateConversionValueRulesRequest); i { case 0: return &v.state @@ -573,7 +573,7 @@ func file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_ return nil } } - file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConversionValueRuleOperation); i { case 0: return &v.state @@ -585,7 +585,7 @@ func file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_ return nil } } - file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateConversionValueRulesResponse); i { case 0: return &v.state @@ -597,7 +597,7 @@ func file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_ return nil } } - file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateConversionValueRuleResult); i { case 0: return &v.state @@ -610,7 +610,7 @@ func file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_ } } } - file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*ConversionValueRuleOperation_Create)(nil), (*ConversionValueRuleOperation_Update)(nil), (*ConversionValueRuleOperation_Remove)(nil), @@ -619,18 +619,18 @@ func file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_ out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_conversion_value_rule_service_proto = out.File - file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_conversion_value_rule_service_proto = out.File + file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_depIdxs = nil } diff --git a/services/conversion_value_rule_service_grpc.pb.go b/services/conversion_value_rule_service_grpc.pb.go index 161288ab..23fe89c2 100644 --- a/services/conversion_value_rule_service_grpc.pb.go +++ b/services/conversion_value_rule_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/conversion_value_rule_service.proto +// source: google/ads/googleads/v17/services/conversion_value_rule_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - ConversionValueRuleService_MutateConversionValueRules_FullMethodName = "/google.ads.googleads.v16.services.ConversionValueRuleService/MutateConversionValueRules" + ConversionValueRuleService_MutateConversionValueRules_FullMethodName = "/google.ads.googleads.v17.services.ConversionValueRuleService/MutateConversionValueRules" ) // ConversionValueRuleServiceClient is the client API for ConversionValueRuleService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage conversion value rules. type ConversionValueRuleServiceClient interface { // Creates, updates, or removes conversion value rules. Operation statuses are // returned. @@ -54,8 +56,9 @@ func NewConversionValueRuleServiceClient(cc grpc.ClientConnInterface) Conversion } func (c *conversionValueRuleServiceClient) MutateConversionValueRules(ctx context.Context, in *MutateConversionValueRulesRequest, opts ...grpc.CallOption) (*MutateConversionValueRulesResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateConversionValueRulesResponse) - err := c.cc.Invoke(ctx, ConversionValueRuleService_MutateConversionValueRules_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, ConversionValueRuleService_MutateConversionValueRules_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -65,6 +68,8 @@ func (c *conversionValueRuleServiceClient) MutateConversionValueRules(ctx contex // ConversionValueRuleServiceServer is the server API for ConversionValueRuleService service. // All implementations must embed UnimplementedConversionValueRuleServiceServer // for forward compatibility +// +// Service to manage conversion value rules. type ConversionValueRuleServiceServer interface { // Creates, updates, or removes conversion value rules. Operation statuses are // returned. @@ -115,7 +120,7 @@ func _ConversionValueRuleService_MutateConversionValueRules_Handler(srv interfac // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var ConversionValueRuleService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.ConversionValueRuleService", + ServiceName: "google.ads.googleads.v17.services.ConversionValueRuleService", HandlerType: (*ConversionValueRuleServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -124,5 +129,5 @@ var ConversionValueRuleService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/conversion_value_rule_service.proto", + Metadata: "google/ads/googleads/v17/services/conversion_value_rule_service.proto", } diff --git a/services/conversion_value_rule_set_service.pb.go b/services/conversion_value_rule_set_service.pb.go index 96751eed..309f1301 100644 --- a/services/conversion_value_rule_set_service.pb.go +++ b/services/conversion_value_rule_set_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/conversion_value_rule_set_service.proto +// source: google/ads/googleads/v17/services/conversion_value_rule_set_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [ConversionValueRuleSetService.MutateConversionValueRuleSets][google.ads.googleads.v16.services.ConversionValueRuleSetService.MutateConversionValueRuleSets]. +// [ConversionValueRuleSetService.MutateConversionValueRuleSets][google.ads.googleads.v17.services.ConversionValueRuleSetService.MutateConversionValueRuleSets]. type MutateConversionValueRuleSetsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -62,13 +62,13 @@ type MutateConversionValueRuleSetsRequest struct { ValidateOnly bool `protobuf:"varint,3,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,4,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,4,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateConversionValueRuleSetsRequest) Reset() { *x = MutateConversionValueRuleSetsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81,7 +81,7 @@ func (x *MutateConversionValueRuleSetsRequest) String() string { func (*MutateConversionValueRuleSetsRequest) ProtoMessage() {} func (x *MutateConversionValueRuleSetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_conversion_value_rule_set_service_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 *MutateConversionValueRuleSetsRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use MutateConversionValueRuleSetsRequest.ProtoReflect.Descriptor instead. func (*MutateConversionValueRuleSetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_rawDescGZIP(), []int{0} } func (x *MutateConversionValueRuleSetsRequest) GetCustomerId() string { @@ -153,7 +153,7 @@ type ConversionValueRuleSetOperation struct { func (x *ConversionValueRuleSetOperation) Reset() { *x = ConversionValueRuleSetOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -166,7 +166,7 @@ func (x *ConversionValueRuleSetOperation) String() string { func (*ConversionValueRuleSetOperation) ProtoMessage() {} func (x *ConversionValueRuleSetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -179,7 +179,7 @@ func (x *ConversionValueRuleSetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionValueRuleSetOperation.ProtoReflect.Descriptor instead. func (*ConversionValueRuleSetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_rawDescGZIP(), []int{1} } func (x *ConversionValueRuleSetOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -248,7 +248,7 @@ func (*ConversionValueRuleSetOperation_Update) isConversionValueRuleSetOperation func (*ConversionValueRuleSetOperation_Remove) isConversionValueRuleSetOperation_Operation() {} // Response message for -// [ConversionValueRuleSetService.MutateConversionValueRuleSets][google.ads.googleads.v16.services.ConversionValueRuleSetService.MutateConversionValueRuleSets]. +// [ConversionValueRuleSetService.MutateConversionValueRuleSets][google.ads.googleads.v17.services.ConversionValueRuleSetService.MutateConversionValueRuleSets]. type MutateConversionValueRuleSetsResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -266,7 +266,7 @@ type MutateConversionValueRuleSetsResponse struct { func (x *MutateConversionValueRuleSetsResponse) Reset() { *x = MutateConversionValueRuleSetsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -279,7 +279,7 @@ func (x *MutateConversionValueRuleSetsResponse) String() string { func (*MutateConversionValueRuleSetsResponse) ProtoMessage() {} func (x *MutateConversionValueRuleSetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -292,7 +292,7 @@ func (x *MutateConversionValueRuleSetsResponse) ProtoReflect() protoreflect.Mess // Deprecated: Use MutateConversionValueRuleSetsResponse.ProtoReflect.Descriptor instead. func (*MutateConversionValueRuleSetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_rawDescGZIP(), []int{2} } func (x *MutateConversionValueRuleSetsResponse) GetResults() []*MutateConversionValueRuleSetResult { @@ -326,7 +326,7 @@ type MutateConversionValueRuleSetResult struct { func (x *MutateConversionValueRuleSetResult) Reset() { *x = MutateConversionValueRuleSetResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -339,7 +339,7 @@ func (x *MutateConversionValueRuleSetResult) String() string { func (*MutateConversionValueRuleSetResult) ProtoMessage() {} func (x *MutateConversionValueRuleSetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -352,7 +352,7 @@ func (x *MutateConversionValueRuleSetResult) ProtoReflect() protoreflect.Message // Deprecated: Use MutateConversionValueRuleSetResult.ProtoReflect.Descriptor instead. func (*MutateConversionValueRuleSetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_rawDescGZIP(), []int{3} } func (x *MutateConversionValueRuleSetResult) GetResourceName() string { @@ -369,22 +369,22 @@ func (x *MutateConversionValueRuleSetResult) GetConversionValueRuleSet() *resour return nil } -var File_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_conversion_value_rule_set_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3a, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, + 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, + 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, @@ -405,7 +405,7 @@ var file_google_ads_googleads_v16_services_conversion_value_rule_set_service_pro 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x67, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, @@ -417,7 +417,7 @@ var file_google_ads_googleads_v16_services_conversion_value_rule_set_service_pro 0x6c, 0x79, 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 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, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, @@ -430,13 +430,13 @@ var file_google_ads_googleads_v16_services_conversion_value_rule_set_service_pro 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x54, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, + 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, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x54, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x02, 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, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x4e, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, @@ -450,7 +450,7 @@ var file_google_ads_googleads_v16_services_conversion_value_rule_set_service_pro 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5f, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x46, 0x0a, 0x15, 0x70, 0x61, 0x72, 0x74, @@ -469,7 +469,7 @@ var file_google_ads_googleads_v16_services_conversion_value_rule_set_service_pro 0x6d, 0x65, 0x12, 0x75, 0x0a, 0x19, 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, 0x18, 0x02, 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, + 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, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x52, 0x16, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, @@ -479,17 +479,17 @@ var file_google_ads_googleads_v16_services_conversion_value_rule_set_service_pro 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x61, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, - 0x42, 0x3a, 0x01, 0x2a, 0x22, 0x3d, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x42, 0x3a, 0x01, 0x2a, 0x22, 0x3d, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x73, 0x3a, 0x6d, 0x75, 0x74, @@ -499,59 +499,59 @@ var file_google_ads_googleads_v16_services_conversion_value_rule_set_service_pro 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x8e, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x22, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, + 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, + 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, - 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_rawDescData = file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_rawDesc + file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_rawDescData = file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_rawDescData + return file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_goTypes = []interface{}{ - (*MutateConversionValueRuleSetsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateConversionValueRuleSetsRequest - (*ConversionValueRuleSetOperation)(nil), // 1: google.ads.googleads.v16.services.ConversionValueRuleSetOperation - (*MutateConversionValueRuleSetsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateConversionValueRuleSetsResponse - (*MutateConversionValueRuleSetResult)(nil), // 3: google.ads.googleads.v16.services.MutateConversionValueRuleSetResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_goTypes = []interface{}{ + (*MutateConversionValueRuleSetsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateConversionValueRuleSetsRequest + (*ConversionValueRuleSetOperation)(nil), // 1: google.ads.googleads.v17.services.ConversionValueRuleSetOperation + (*MutateConversionValueRuleSetsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateConversionValueRuleSetsResponse + (*MutateConversionValueRuleSetResult)(nil), // 3: google.ads.googleads.v17.services.MutateConversionValueRuleSetResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.ConversionValueRuleSet)(nil), // 6: google.ads.googleads.v16.resources.ConversionValueRuleSet + (*resources.ConversionValueRuleSet)(nil), // 6: google.ads.googleads.v17.resources.ConversionValueRuleSet (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateConversionValueRuleSetsRequest.operations:type_name -> google.ads.googleads.v16.services.ConversionValueRuleSetOperation - 4, // 1: google.ads.googleads.v16.services.MutateConversionValueRuleSetsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.ConversionValueRuleSetOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.ConversionValueRuleSetOperation.create:type_name -> google.ads.googleads.v16.resources.ConversionValueRuleSet - 6, // 4: google.ads.googleads.v16.services.ConversionValueRuleSetOperation.update:type_name -> google.ads.googleads.v16.resources.ConversionValueRuleSet - 3, // 5: google.ads.googleads.v16.services.MutateConversionValueRuleSetsResponse.results:type_name -> google.ads.googleads.v16.services.MutateConversionValueRuleSetResult - 7, // 6: google.ads.googleads.v16.services.MutateConversionValueRuleSetsResponse.partial_failure_error:type_name -> google.rpc.Status - 6, // 7: google.ads.googleads.v16.services.MutateConversionValueRuleSetResult.conversion_value_rule_set:type_name -> google.ads.googleads.v16.resources.ConversionValueRuleSet - 0, // 8: google.ads.googleads.v16.services.ConversionValueRuleSetService.MutateConversionValueRuleSets:input_type -> google.ads.googleads.v16.services.MutateConversionValueRuleSetsRequest - 2, // 9: google.ads.googleads.v16.services.ConversionValueRuleSetService.MutateConversionValueRuleSets:output_type -> google.ads.googleads.v16.services.MutateConversionValueRuleSetsResponse +var file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateConversionValueRuleSetsRequest.operations:type_name -> google.ads.googleads.v17.services.ConversionValueRuleSetOperation + 4, // 1: google.ads.googleads.v17.services.MutateConversionValueRuleSetsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.ConversionValueRuleSetOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.ConversionValueRuleSetOperation.create:type_name -> google.ads.googleads.v17.resources.ConversionValueRuleSet + 6, // 4: google.ads.googleads.v17.services.ConversionValueRuleSetOperation.update:type_name -> google.ads.googleads.v17.resources.ConversionValueRuleSet + 3, // 5: google.ads.googleads.v17.services.MutateConversionValueRuleSetsResponse.results:type_name -> google.ads.googleads.v17.services.MutateConversionValueRuleSetResult + 7, // 6: google.ads.googleads.v17.services.MutateConversionValueRuleSetsResponse.partial_failure_error:type_name -> google.rpc.Status + 6, // 7: google.ads.googleads.v17.services.MutateConversionValueRuleSetResult.conversion_value_rule_set:type_name -> google.ads.googleads.v17.resources.ConversionValueRuleSet + 0, // 8: google.ads.googleads.v17.services.ConversionValueRuleSetService.MutateConversionValueRuleSets:input_type -> google.ads.googleads.v17.services.MutateConversionValueRuleSetsRequest + 2, // 9: google.ads.googleads.v17.services.ConversionValueRuleSetService.MutateConversionValueRuleSets:output_type -> google.ads.googleads.v17.services.MutateConversionValueRuleSetsResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -559,13 +559,13 @@ var file_google_ads_googleads_v16_services_conversion_value_rule_set_service_pro 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_init() } -func file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_init() { - if File_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_init() } +func file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_init() { + if File_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateConversionValueRuleSetsRequest); i { case 0: return &v.state @@ -577,7 +577,7 @@ func file_google_ads_googleads_v16_services_conversion_value_rule_set_service_pr return nil } } - file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConversionValueRuleSetOperation); i { case 0: return &v.state @@ -589,7 +589,7 @@ func file_google_ads_googleads_v16_services_conversion_value_rule_set_service_pr return nil } } - file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateConversionValueRuleSetsResponse); i { case 0: return &v.state @@ -601,7 +601,7 @@ func file_google_ads_googleads_v16_services_conversion_value_rule_set_service_pr return nil } } - file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateConversionValueRuleSetResult); i { case 0: return &v.state @@ -614,7 +614,7 @@ func file_google_ads_googleads_v16_services_conversion_value_rule_set_service_pr } } } - file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*ConversionValueRuleSetOperation_Create)(nil), (*ConversionValueRuleSetOperation_Update)(nil), (*ConversionValueRuleSetOperation_Remove)(nil), @@ -623,18 +623,18 @@ func file_google_ads_googleads_v16_services_conversion_value_rule_set_service_pr out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto = out.File - file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto = out.File + file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_depIdxs = nil } diff --git a/services/conversion_value_rule_set_service_grpc.pb.go b/services/conversion_value_rule_set_service_grpc.pb.go index a3018caf..2d0a1902 100644 --- a/services/conversion_value_rule_set_service_grpc.pb.go +++ b/services/conversion_value_rule_set_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/conversion_value_rule_set_service.proto +// source: google/ads/googleads/v17/services/conversion_value_rule_set_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - ConversionValueRuleSetService_MutateConversionValueRuleSets_FullMethodName = "/google.ads.googleads.v16.services.ConversionValueRuleSetService/MutateConversionValueRuleSets" + ConversionValueRuleSetService_MutateConversionValueRuleSets_FullMethodName = "/google.ads.googleads.v17.services.ConversionValueRuleSetService/MutateConversionValueRuleSets" ) // ConversionValueRuleSetServiceClient is the client API for ConversionValueRuleSetService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage conversion value rule sets. type ConversionValueRuleSetServiceClient interface { // Creates, updates or removes conversion value rule sets. Operation statuses // are returned. @@ -54,8 +56,9 @@ func NewConversionValueRuleSetServiceClient(cc grpc.ClientConnInterface) Convers } func (c *conversionValueRuleSetServiceClient) MutateConversionValueRuleSets(ctx context.Context, in *MutateConversionValueRuleSetsRequest, opts ...grpc.CallOption) (*MutateConversionValueRuleSetsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateConversionValueRuleSetsResponse) - err := c.cc.Invoke(ctx, ConversionValueRuleSetService_MutateConversionValueRuleSets_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, ConversionValueRuleSetService_MutateConversionValueRuleSets_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -65,6 +68,8 @@ func (c *conversionValueRuleSetServiceClient) MutateConversionValueRuleSets(ctx // ConversionValueRuleSetServiceServer is the server API for ConversionValueRuleSetService service. // All implementations must embed UnimplementedConversionValueRuleSetServiceServer // for forward compatibility +// +// Service to manage conversion value rule sets. type ConversionValueRuleSetServiceServer interface { // Creates, updates or removes conversion value rule sets. Operation statuses // are returned. @@ -115,7 +120,7 @@ func _ConversionValueRuleSetService_MutateConversionValueRuleSets_Handler(srv in // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var ConversionValueRuleSetService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.ConversionValueRuleSetService", + ServiceName: "google.ads.googleads.v17.services.ConversionValueRuleSetService", HandlerType: (*ConversionValueRuleSetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -124,5 +129,5 @@ var ConversionValueRuleSetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/conversion_value_rule_set_service.proto", + Metadata: "google/ads/googleads/v17/services/conversion_value_rule_set_service.proto", } diff --git a/services/custom_audience_service.pb.go b/services/custom_audience_service.pb.go index 12de8cf4..01ce6a31 100644 --- a/services/custom_audience_service.pb.go +++ b/services/custom_audience_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/custom_audience_service.proto +// source: google/ads/googleads/v17/services/custom_audience_service.proto package services @@ -38,7 +38,7 @@ const ( ) // Request message for -// [CustomAudienceService.MutateCustomAudiences][google.ads.googleads.v16.services.CustomAudienceService.MutateCustomAudiences]. +// [CustomAudienceService.MutateCustomAudiences][google.ads.googleads.v17.services.CustomAudienceService.MutateCustomAudiences]. type MutateCustomAudiencesRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -56,7 +56,7 @@ type MutateCustomAudiencesRequest struct { func (x *MutateCustomAudiencesRequest) Reset() { *x = MutateCustomAudiencesRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_custom_audience_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_custom_audience_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -69,7 +69,7 @@ func (x *MutateCustomAudiencesRequest) String() string { func (*MutateCustomAudiencesRequest) ProtoMessage() {} func (x *MutateCustomAudiencesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_custom_audience_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_custom_audience_service_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 *MutateCustomAudiencesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomAudiencesRequest.ProtoReflect.Descriptor instead. func (*MutateCustomAudiencesRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_custom_audience_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_custom_audience_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomAudiencesRequest) GetCustomerId() string { @@ -127,7 +127,7 @@ type CustomAudienceOperation struct { func (x *CustomAudienceOperation) Reset() { *x = CustomAudienceOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_custom_audience_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_custom_audience_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -140,7 +140,7 @@ func (x *CustomAudienceOperation) String() string { func (*CustomAudienceOperation) ProtoMessage() {} func (x *CustomAudienceOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_custom_audience_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_custom_audience_service_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 *CustomAudienceOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomAudienceOperation.ProtoReflect.Descriptor instead. func (*CustomAudienceOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_custom_audience_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_custom_audience_service_proto_rawDescGZIP(), []int{1} } func (x *CustomAudienceOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -234,7 +234,7 @@ type MutateCustomAudiencesResponse struct { func (x *MutateCustomAudiencesResponse) Reset() { *x = MutateCustomAudiencesResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_custom_audience_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_custom_audience_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -247,7 +247,7 @@ func (x *MutateCustomAudiencesResponse) String() string { func (*MutateCustomAudiencesResponse) ProtoMessage() {} func (x *MutateCustomAudiencesResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_custom_audience_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_custom_audience_service_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 *MutateCustomAudiencesResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomAudiencesResponse.ProtoReflect.Descriptor instead. func (*MutateCustomAudiencesResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_custom_audience_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_custom_audience_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomAudiencesResponse) GetResults() []*MutateCustomAudienceResult { @@ -283,7 +283,7 @@ type MutateCustomAudienceResult struct { func (x *MutateCustomAudienceResult) Reset() { *x = MutateCustomAudienceResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_custom_audience_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_custom_audience_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -296,7 +296,7 @@ func (x *MutateCustomAudienceResult) String() string { func (*MutateCustomAudienceResult) ProtoMessage() {} func (x *MutateCustomAudienceResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_custom_audience_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_custom_audience_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -309,7 +309,7 @@ func (x *MutateCustomAudienceResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomAudienceResult.ProtoReflect.Descriptor instead. func (*MutateCustomAudienceResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_custom_audience_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_custom_audience_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomAudienceResult) GetResourceName() string { @@ -319,17 +319,17 @@ func (x *MutateCustomAudienceResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_custom_audience_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_custom_audience_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_custom_audience_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_custom_audience_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 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, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, @@ -348,7 +348,7 @@ var file_google_ads_googleads_v16_services_custom_audience_service_proto_rawDesc 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5f, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x76, @@ -362,12 +362,12 @@ var file_google_ads_googleads_v16_services_custom_audience_service_proto_rawDesc 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x4c, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x4c, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x46, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2c, 0xfa, 0x41, 0x29, 0x0a, 0x27, 0x67, 0x6f, 0x6f, 0x67, @@ -379,7 +379,7 @@ var file_google_ads_googleads_v16_services_custom_audience_service_proto_rawDesc 0x63, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x57, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x6f, 0x0a, 0x1a, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, @@ -394,16 +394,16 @@ var file_google_ads_googleads_v16_services_custom_audience_service_proto_rawDesc 0xf5, 0x01, 0x0a, 0x15, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x59, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3a, 0x3a, 0x01, 0x2a, - 0x22, 0x35, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, + 0x22, 0x35, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, @@ -412,53 +412,53 @@ var file_google_ads_googleads_v16_services_custom_audience_service_proto_rawDesc 0x77, 0x77, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x86, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1a, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, + 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, + 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_custom_audience_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_custom_audience_service_proto_rawDescData = file_google_ads_googleads_v16_services_custom_audience_service_proto_rawDesc + file_google_ads_googleads_v17_services_custom_audience_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_custom_audience_service_proto_rawDescData = file_google_ads_googleads_v17_services_custom_audience_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_custom_audience_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_custom_audience_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_custom_audience_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_custom_audience_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_custom_audience_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_custom_audience_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_custom_audience_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_custom_audience_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_custom_audience_service_proto_rawDescData + return file_google_ads_googleads_v17_services_custom_audience_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_custom_audience_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_custom_audience_service_proto_goTypes = []interface{}{ - (*MutateCustomAudiencesRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCustomAudiencesRequest - (*CustomAudienceOperation)(nil), // 1: google.ads.googleads.v16.services.CustomAudienceOperation - (*MutateCustomAudiencesResponse)(nil), // 2: google.ads.googleads.v16.services.MutateCustomAudiencesResponse - (*MutateCustomAudienceResult)(nil), // 3: google.ads.googleads.v16.services.MutateCustomAudienceResult +var file_google_ads_googleads_v17_services_custom_audience_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_custom_audience_service_proto_goTypes = []interface{}{ + (*MutateCustomAudiencesRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCustomAudiencesRequest + (*CustomAudienceOperation)(nil), // 1: google.ads.googleads.v17.services.CustomAudienceOperation + (*MutateCustomAudiencesResponse)(nil), // 2: google.ads.googleads.v17.services.MutateCustomAudiencesResponse + (*MutateCustomAudienceResult)(nil), // 3: google.ads.googleads.v17.services.MutateCustomAudienceResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.CustomAudience)(nil), // 5: google.ads.googleads.v16.resources.CustomAudience -} -var file_google_ads_googleads_v16_services_custom_audience_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateCustomAudiencesRequest.operations:type_name -> google.ads.googleads.v16.services.CustomAudienceOperation - 4, // 1: google.ads.googleads.v16.services.CustomAudienceOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v16.services.CustomAudienceOperation.create:type_name -> google.ads.googleads.v16.resources.CustomAudience - 5, // 3: google.ads.googleads.v16.services.CustomAudienceOperation.update:type_name -> google.ads.googleads.v16.resources.CustomAudience - 3, // 4: google.ads.googleads.v16.services.MutateCustomAudiencesResponse.results:type_name -> google.ads.googleads.v16.services.MutateCustomAudienceResult - 0, // 5: google.ads.googleads.v16.services.CustomAudienceService.MutateCustomAudiences:input_type -> google.ads.googleads.v16.services.MutateCustomAudiencesRequest - 2, // 6: google.ads.googleads.v16.services.CustomAudienceService.MutateCustomAudiences:output_type -> google.ads.googleads.v16.services.MutateCustomAudiencesResponse + (*resources.CustomAudience)(nil), // 5: google.ads.googleads.v17.resources.CustomAudience +} +var file_google_ads_googleads_v17_services_custom_audience_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateCustomAudiencesRequest.operations:type_name -> google.ads.googleads.v17.services.CustomAudienceOperation + 4, // 1: google.ads.googleads.v17.services.CustomAudienceOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v17.services.CustomAudienceOperation.create:type_name -> google.ads.googleads.v17.resources.CustomAudience + 5, // 3: google.ads.googleads.v17.services.CustomAudienceOperation.update:type_name -> google.ads.googleads.v17.resources.CustomAudience + 3, // 4: google.ads.googleads.v17.services.MutateCustomAudiencesResponse.results:type_name -> google.ads.googleads.v17.services.MutateCustomAudienceResult + 0, // 5: google.ads.googleads.v17.services.CustomAudienceService.MutateCustomAudiences:input_type -> google.ads.googleads.v17.services.MutateCustomAudiencesRequest + 2, // 6: google.ads.googleads.v17.services.CustomAudienceService.MutateCustomAudiences:output_type -> google.ads.googleads.v17.services.MutateCustomAudiencesResponse 6, // [6:7] is the sub-list for method output_type 5, // [5:6] is the sub-list for method input_type 5, // [5:5] is the sub-list for extension type_name @@ -466,13 +466,13 @@ var file_google_ads_googleads_v16_services_custom_audience_service_proto_depIdxs 0, // [0:5] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_custom_audience_service_proto_init() } -func file_google_ads_googleads_v16_services_custom_audience_service_proto_init() { - if File_google_ads_googleads_v16_services_custom_audience_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_custom_audience_service_proto_init() } +func file_google_ads_googleads_v17_services_custom_audience_service_proto_init() { + if File_google_ads_googleads_v17_services_custom_audience_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_custom_audience_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_custom_audience_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomAudiencesRequest); i { case 0: return &v.state @@ -484,7 +484,7 @@ func file_google_ads_googleads_v16_services_custom_audience_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_custom_audience_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_custom_audience_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomAudienceOperation); i { case 0: return &v.state @@ -496,7 +496,7 @@ func file_google_ads_googleads_v16_services_custom_audience_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_custom_audience_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_custom_audience_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomAudiencesResponse); i { case 0: return &v.state @@ -508,7 +508,7 @@ func file_google_ads_googleads_v16_services_custom_audience_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_custom_audience_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_custom_audience_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomAudienceResult); i { case 0: return &v.state @@ -521,7 +521,7 @@ func file_google_ads_googleads_v16_services_custom_audience_service_proto_init() } } } - file_google_ads_googleads_v16_services_custom_audience_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_custom_audience_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CustomAudienceOperation_Create)(nil), (*CustomAudienceOperation_Update)(nil), (*CustomAudienceOperation_Remove)(nil), @@ -530,18 +530,18 @@ func file_google_ads_googleads_v16_services_custom_audience_service_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_custom_audience_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_custom_audience_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_custom_audience_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_custom_audience_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_custom_audience_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_custom_audience_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_custom_audience_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_custom_audience_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_custom_audience_service_proto = out.File - file_google_ads_googleads_v16_services_custom_audience_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_custom_audience_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_custom_audience_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_custom_audience_service_proto = out.File + file_google_ads_googleads_v17_services_custom_audience_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_custom_audience_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_custom_audience_service_proto_depIdxs = nil } diff --git a/services/custom_audience_service_grpc.pb.go b/services/custom_audience_service_grpc.pb.go index 6ec7f9f3..10ebd93b 100644 --- a/services/custom_audience_service_grpc.pb.go +++ b/services/custom_audience_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/custom_audience_service.proto +// source: google/ads/googleads/v17/services/custom_audience_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CustomAudienceService_MutateCustomAudiences_FullMethodName = "/google.ads.googleads.v16.services.CustomAudienceService/MutateCustomAudiences" + CustomAudienceService_MutateCustomAudiences_FullMethodName = "/google.ads.googleads.v17.services.CustomAudienceService/MutateCustomAudiences" ) // CustomAudienceServiceClient is the client API for CustomAudienceService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage custom audiences. type CustomAudienceServiceClient interface { // Creates or updates custom audiences. Operation statuses are returned. // @@ -69,8 +71,9 @@ func NewCustomAudienceServiceClient(cc grpc.ClientConnInterface) CustomAudienceS } func (c *customAudienceServiceClient) MutateCustomAudiences(ctx context.Context, in *MutateCustomAudiencesRequest, opts ...grpc.CallOption) (*MutateCustomAudiencesResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCustomAudiencesResponse) - err := c.cc.Invoke(ctx, CustomAudienceService_MutateCustomAudiences_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CustomAudienceService_MutateCustomAudiences_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -80,6 +83,8 @@ func (c *customAudienceServiceClient) MutateCustomAudiences(ctx context.Context, // CustomAudienceServiceServer is the server API for CustomAudienceService service. // All implementations must embed UnimplementedCustomAudienceServiceServer // for forward compatibility +// +// Service to manage custom audiences. type CustomAudienceServiceServer interface { // Creates or updates custom audiences. Operation statuses are returned. // @@ -144,7 +149,7 @@ func _CustomAudienceService_MutateCustomAudiences_Handler(srv interface{}, ctx c // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CustomAudienceService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CustomAudienceService", + ServiceName: "google.ads.googleads.v17.services.CustomAudienceService", HandlerType: (*CustomAudienceServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -153,5 +158,5 @@ var CustomAudienceService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/custom_audience_service.proto", + Metadata: "google/ads/googleads/v17/services/custom_audience_service.proto", } diff --git a/services/custom_conversion_goal_service.pb.go b/services/custom_conversion_goal_service.pb.go index ff27e5c1..3d742262 100644 --- a/services/custom_conversion_goal_service.pb.go +++ b/services/custom_conversion_goal_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/custom_conversion_goal_service.proto +// source: google/ads/googleads/v17/services/custom_conversion_goal_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [CustomConversionGoalService.MutateCustomConversionGoals][google.ads.googleads.v16.services.CustomConversionGoalService.MutateCustomConversionGoals]. +// [CustomConversionGoalService.MutateCustomConversionGoals][google.ads.googleads.v17.services.CustomConversionGoalService.MutateCustomConversionGoals]. type MutateCustomConversionGoalsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -56,13 +56,13 @@ type MutateCustomConversionGoalsRequest struct { ValidateOnly bool `protobuf:"varint,3,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,4,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,4,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateCustomConversionGoalsRequest) Reset() { *x = MutateCustomConversionGoalsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75,7 +75,7 @@ func (x *MutateCustomConversionGoalsRequest) String() string { func (*MutateCustomConversionGoalsRequest) ProtoMessage() {} func (x *MutateCustomConversionGoalsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88,7 +88,7 @@ func (x *MutateCustomConversionGoalsRequest) ProtoReflect() protoreflect.Message // Deprecated: Use MutateCustomConversionGoalsRequest.ProtoReflect.Descriptor instead. func (*MutateCustomConversionGoalsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomConversionGoalsRequest) GetCustomerId() string { @@ -140,7 +140,7 @@ type CustomConversionGoalOperation struct { func (x *CustomConversionGoalOperation) Reset() { *x = CustomConversionGoalOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -153,7 +153,7 @@ func (x *CustomConversionGoalOperation) String() string { func (*CustomConversionGoalOperation) ProtoMessage() {} func (x *CustomConversionGoalOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -166,7 +166,7 @@ func (x *CustomConversionGoalOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomConversionGoalOperation.ProtoReflect.Descriptor instead. func (*CustomConversionGoalOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_rawDescGZIP(), []int{1} } func (x *CustomConversionGoalOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -247,7 +247,7 @@ type MutateCustomConversionGoalsResponse struct { func (x *MutateCustomConversionGoalsResponse) Reset() { *x = MutateCustomConversionGoalsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -260,7 +260,7 @@ func (x *MutateCustomConversionGoalsResponse) String() string { func (*MutateCustomConversionGoalsResponse) ProtoMessage() {} func (x *MutateCustomConversionGoalsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -273,7 +273,7 @@ func (x *MutateCustomConversionGoalsResponse) ProtoReflect() protoreflect.Messag // Deprecated: Use MutateCustomConversionGoalsResponse.ProtoReflect.Descriptor instead. func (*MutateCustomConversionGoalsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomConversionGoalsResponse) GetResults() []*MutateCustomConversionGoalResult { @@ -300,7 +300,7 @@ type MutateCustomConversionGoalResult struct { func (x *MutateCustomConversionGoalResult) Reset() { *x = MutateCustomConversionGoalResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -313,7 +313,7 @@ func (x *MutateCustomConversionGoalResult) String() string { func (*MutateCustomConversionGoalResult) ProtoMessage() {} func (x *MutateCustomConversionGoalResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -326,7 +326,7 @@ func (x *MutateCustomConversionGoalResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomConversionGoalResult.ProtoReflect.Descriptor instead. func (*MutateCustomConversionGoalResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomConversionGoalResult) GetResourceName() string { @@ -343,22 +343,22 @@ func (x *MutateCustomConversionGoalResult) GetCustomConversionGoal() *resources. return nil } -var File_google_ads_googleads_v16_services_custom_conversion_goal_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_custom_conversion_goal_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_custom_conversion_goal_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3a, 0x67, 0x6f, 0x6f, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, 0x65, 0x73, 0x70, + 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, + 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, @@ -377,7 +377,7 @@ var file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_ 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x65, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, @@ -386,7 +386,7 @@ var file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_ 0x74, 0x65, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 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, + 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, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, @@ -400,12 +400,12 @@ var file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_ 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x52, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x52, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x02, 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, 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x4c, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x32, @@ -418,7 +418,7 @@ var file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_ 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5d, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, @@ -433,7 +433,7 @@ var file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_ 0x0a, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x18, 0x02, 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, 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x52, 0x14, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x32, 0xf4, @@ -442,17 +442,17 @@ var file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_ 0x02, 0x0a, 0x1b, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5f, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x40, 0x3a, 0x01, - 0x2a, 0x22, 0x3b, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x2a, 0x22, 0x3b, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, @@ -462,56 +462,56 @@ var file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_ 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x8c, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x20, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, + 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_rawDescData = file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_rawDesc + file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_rawDescData = file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_rawDescData + return file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_goTypes = []interface{}{ - (*MutateCustomConversionGoalsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCustomConversionGoalsRequest - (*CustomConversionGoalOperation)(nil), // 1: google.ads.googleads.v16.services.CustomConversionGoalOperation - (*MutateCustomConversionGoalsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateCustomConversionGoalsResponse - (*MutateCustomConversionGoalResult)(nil), // 3: google.ads.googleads.v16.services.MutateCustomConversionGoalResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_goTypes = []interface{}{ + (*MutateCustomConversionGoalsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCustomConversionGoalsRequest + (*CustomConversionGoalOperation)(nil), // 1: google.ads.googleads.v17.services.CustomConversionGoalOperation + (*MutateCustomConversionGoalsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateCustomConversionGoalsResponse + (*MutateCustomConversionGoalResult)(nil), // 3: google.ads.googleads.v17.services.MutateCustomConversionGoalResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.CustomConversionGoal)(nil), // 6: google.ads.googleads.v16.resources.CustomConversionGoal -} -var file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateCustomConversionGoalsRequest.operations:type_name -> google.ads.googleads.v16.services.CustomConversionGoalOperation - 4, // 1: google.ads.googleads.v16.services.MutateCustomConversionGoalsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.CustomConversionGoalOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.CustomConversionGoalOperation.create:type_name -> google.ads.googleads.v16.resources.CustomConversionGoal - 6, // 4: google.ads.googleads.v16.services.CustomConversionGoalOperation.update:type_name -> google.ads.googleads.v16.resources.CustomConversionGoal - 3, // 5: google.ads.googleads.v16.services.MutateCustomConversionGoalsResponse.results:type_name -> google.ads.googleads.v16.services.MutateCustomConversionGoalResult - 6, // 6: google.ads.googleads.v16.services.MutateCustomConversionGoalResult.custom_conversion_goal:type_name -> google.ads.googleads.v16.resources.CustomConversionGoal - 0, // 7: google.ads.googleads.v16.services.CustomConversionGoalService.MutateCustomConversionGoals:input_type -> google.ads.googleads.v16.services.MutateCustomConversionGoalsRequest - 2, // 8: google.ads.googleads.v16.services.CustomConversionGoalService.MutateCustomConversionGoals:output_type -> google.ads.googleads.v16.services.MutateCustomConversionGoalsResponse + (*resources.CustomConversionGoal)(nil), // 6: google.ads.googleads.v17.resources.CustomConversionGoal +} +var file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateCustomConversionGoalsRequest.operations:type_name -> google.ads.googleads.v17.services.CustomConversionGoalOperation + 4, // 1: google.ads.googleads.v17.services.MutateCustomConversionGoalsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.CustomConversionGoalOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.CustomConversionGoalOperation.create:type_name -> google.ads.googleads.v17.resources.CustomConversionGoal + 6, // 4: google.ads.googleads.v17.services.CustomConversionGoalOperation.update:type_name -> google.ads.googleads.v17.resources.CustomConversionGoal + 3, // 5: google.ads.googleads.v17.services.MutateCustomConversionGoalsResponse.results:type_name -> google.ads.googleads.v17.services.MutateCustomConversionGoalResult + 6, // 6: google.ads.googleads.v17.services.MutateCustomConversionGoalResult.custom_conversion_goal:type_name -> google.ads.googleads.v17.resources.CustomConversionGoal + 0, // 7: google.ads.googleads.v17.services.CustomConversionGoalService.MutateCustomConversionGoals:input_type -> google.ads.googleads.v17.services.MutateCustomConversionGoalsRequest + 2, // 8: google.ads.googleads.v17.services.CustomConversionGoalService.MutateCustomConversionGoals:output_type -> google.ads.googleads.v17.services.MutateCustomConversionGoalsResponse 8, // [8:9] is the sub-list for method output_type 7, // [7:8] is the sub-list for method input_type 7, // [7:7] is the sub-list for extension type_name @@ -519,13 +519,13 @@ var file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_ 0, // [0:7] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_init() } -func file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_init() { - if File_google_ads_googleads_v16_services_custom_conversion_goal_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_init() } +func file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_init() { + if File_google_ads_googleads_v17_services_custom_conversion_goal_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomConversionGoalsRequest); i { case 0: return &v.state @@ -537,7 +537,7 @@ func file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto return nil } } - file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomConversionGoalOperation); i { case 0: return &v.state @@ -549,7 +549,7 @@ func file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto return nil } } - file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomConversionGoalsResponse); i { case 0: return &v.state @@ -561,7 +561,7 @@ func file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto return nil } } - file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomConversionGoalResult); i { case 0: return &v.state @@ -574,7 +574,7 @@ func file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto } } } - file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CustomConversionGoalOperation_Create)(nil), (*CustomConversionGoalOperation_Update)(nil), (*CustomConversionGoalOperation_Remove)(nil), @@ -583,18 +583,18 @@ func file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_custom_conversion_goal_service_proto = out.File - file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_custom_conversion_goal_service_proto = out.File + file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_depIdxs = nil } diff --git a/services/custom_conversion_goal_service_grpc.pb.go b/services/custom_conversion_goal_service_grpc.pb.go index 07710900..bb4e11aa 100644 --- a/services/custom_conversion_goal_service_grpc.pb.go +++ b/services/custom_conversion_goal_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/custom_conversion_goal_service.proto +// source: google/ads/googleads/v17/services/custom_conversion_goal_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CustomConversionGoalService_MutateCustomConversionGoals_FullMethodName = "/google.ads.googleads.v16.services.CustomConversionGoalService/MutateCustomConversionGoals" + CustomConversionGoalService_MutateCustomConversionGoals_FullMethodName = "/google.ads.googleads.v17.services.CustomConversionGoalService/MutateCustomConversionGoals" ) // CustomConversionGoalServiceClient is the client API for CustomConversionGoalService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage custom conversion goal. type CustomConversionGoalServiceClient interface { // Creates, updates or removes custom conversion goals. Operation statuses // are returned. @@ -54,8 +56,9 @@ func NewCustomConversionGoalServiceClient(cc grpc.ClientConnInterface) CustomCon } func (c *customConversionGoalServiceClient) MutateCustomConversionGoals(ctx context.Context, in *MutateCustomConversionGoalsRequest, opts ...grpc.CallOption) (*MutateCustomConversionGoalsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCustomConversionGoalsResponse) - err := c.cc.Invoke(ctx, CustomConversionGoalService_MutateCustomConversionGoals_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CustomConversionGoalService_MutateCustomConversionGoals_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -65,6 +68,8 @@ func (c *customConversionGoalServiceClient) MutateCustomConversionGoals(ctx cont // CustomConversionGoalServiceServer is the server API for CustomConversionGoalService service. // All implementations must embed UnimplementedCustomConversionGoalServiceServer // for forward compatibility +// +// Service to manage custom conversion goal. type CustomConversionGoalServiceServer interface { // Creates, updates or removes custom conversion goals. Operation statuses // are returned. @@ -115,7 +120,7 @@ func _CustomConversionGoalService_MutateCustomConversionGoals_Handler(srv interf // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CustomConversionGoalService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CustomConversionGoalService", + ServiceName: "google.ads.googleads.v17.services.CustomConversionGoalService", HandlerType: (*CustomConversionGoalServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -124,5 +129,5 @@ var CustomConversionGoalService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/custom_conversion_goal_service.proto", + Metadata: "google/ads/googleads/v17/services/custom_conversion_goal_service.proto", } diff --git a/services/custom_interest_service.pb.go b/services/custom_interest_service.pb.go index bab158b6..7c937fd2 100644 --- a/services/custom_interest_service.pb.go +++ b/services/custom_interest_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/custom_interest_service.proto +// source: google/ads/googleads/v17/services/custom_interest_service.proto package services @@ -38,7 +38,7 @@ const ( ) // Request message for -// [CustomInterestService.MutateCustomInterests][google.ads.googleads.v16.services.CustomInterestService.MutateCustomInterests]. +// [CustomInterestService.MutateCustomInterests][google.ads.googleads.v17.services.CustomInterestService.MutateCustomInterests]. type MutateCustomInterestsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -56,7 +56,7 @@ type MutateCustomInterestsRequest struct { func (x *MutateCustomInterestsRequest) Reset() { *x = MutateCustomInterestsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_custom_interest_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_custom_interest_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -69,7 +69,7 @@ func (x *MutateCustomInterestsRequest) String() string { func (*MutateCustomInterestsRequest) ProtoMessage() {} func (x *MutateCustomInterestsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_custom_interest_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_custom_interest_service_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 *MutateCustomInterestsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomInterestsRequest.ProtoReflect.Descriptor instead. func (*MutateCustomInterestsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_custom_interest_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_custom_interest_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomInterestsRequest) GetCustomerId() string { @@ -126,7 +126,7 @@ type CustomInterestOperation struct { func (x *CustomInterestOperation) Reset() { *x = CustomInterestOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_custom_interest_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_custom_interest_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -139,7 +139,7 @@ func (x *CustomInterestOperation) String() string { func (*CustomInterestOperation) ProtoMessage() {} func (x *CustomInterestOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_custom_interest_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_custom_interest_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -152,7 +152,7 @@ func (x *CustomInterestOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomInterestOperation.ProtoReflect.Descriptor instead. func (*CustomInterestOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_custom_interest_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_custom_interest_service_proto_rawDescGZIP(), []int{1} } func (x *CustomInterestOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -216,7 +216,7 @@ type MutateCustomInterestsResponse struct { func (x *MutateCustomInterestsResponse) Reset() { *x = MutateCustomInterestsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_custom_interest_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_custom_interest_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -229,7 +229,7 @@ func (x *MutateCustomInterestsResponse) String() string { func (*MutateCustomInterestsResponse) ProtoMessage() {} func (x *MutateCustomInterestsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_custom_interest_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_custom_interest_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -242,7 +242,7 @@ func (x *MutateCustomInterestsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomInterestsResponse.ProtoReflect.Descriptor instead. func (*MutateCustomInterestsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_custom_interest_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_custom_interest_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomInterestsResponse) GetResults() []*MutateCustomInterestResult { @@ -265,7 +265,7 @@ type MutateCustomInterestResult struct { func (x *MutateCustomInterestResult) Reset() { *x = MutateCustomInterestResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_custom_interest_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_custom_interest_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -278,7 +278,7 @@ func (x *MutateCustomInterestResult) String() string { func (*MutateCustomInterestResult) ProtoMessage() {} func (x *MutateCustomInterestResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_custom_interest_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_custom_interest_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -291,7 +291,7 @@ func (x *MutateCustomInterestResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomInterestResult.ProtoReflect.Descriptor instead. func (*MutateCustomInterestResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_custom_interest_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_custom_interest_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomInterestResult) GetResourceName() string { @@ -301,17 +301,17 @@ func (x *MutateCustomInterestResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_custom_interest_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_custom_interest_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_custom_interest_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_custom_interest_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 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, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, @@ -330,7 +330,7 @@ var file_google_ads_googleads_v16_services_custom_interest_service_proto_rawDesc 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5f, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x76, @@ -344,19 +344,19 @@ var file_google_ads_googleads_v16_services_custom_interest_service_proto_rawDesc 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x4c, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x4c, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x78, 0x0a, 0x1d, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x57, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x6f, 0x0a, 0x1a, @@ -371,16 +371,16 @@ var file_google_ads_googleads_v16_services_custom_interest_service_proto_rawDesc 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xf5, 0x01, 0x0a, 0x15, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x73, 0x12, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x59, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, - 0xd3, 0xe4, 0x93, 0x02, 0x3a, 0x3a, 0x01, 0x2a, 0x22, 0x35, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, + 0xd3, 0xe4, 0x93, 0x02, 0x3a, 0x3a, 0x01, 0x2a, 0x22, 0x35, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, @@ -390,53 +390,53 @@ var file_google_ads_googleads_v16_services_custom_interest_service_proto_rawDesc 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x86, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1a, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_custom_interest_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_custom_interest_service_proto_rawDescData = file_google_ads_googleads_v16_services_custom_interest_service_proto_rawDesc + file_google_ads_googleads_v17_services_custom_interest_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_custom_interest_service_proto_rawDescData = file_google_ads_googleads_v17_services_custom_interest_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_custom_interest_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_custom_interest_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_custom_interest_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_custom_interest_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_custom_interest_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_custom_interest_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_custom_interest_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_custom_interest_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_custom_interest_service_proto_rawDescData + return file_google_ads_googleads_v17_services_custom_interest_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_custom_interest_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_custom_interest_service_proto_goTypes = []interface{}{ - (*MutateCustomInterestsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCustomInterestsRequest - (*CustomInterestOperation)(nil), // 1: google.ads.googleads.v16.services.CustomInterestOperation - (*MutateCustomInterestsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateCustomInterestsResponse - (*MutateCustomInterestResult)(nil), // 3: google.ads.googleads.v16.services.MutateCustomInterestResult +var file_google_ads_googleads_v17_services_custom_interest_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_custom_interest_service_proto_goTypes = []interface{}{ + (*MutateCustomInterestsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCustomInterestsRequest + (*CustomInterestOperation)(nil), // 1: google.ads.googleads.v17.services.CustomInterestOperation + (*MutateCustomInterestsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateCustomInterestsResponse + (*MutateCustomInterestResult)(nil), // 3: google.ads.googleads.v17.services.MutateCustomInterestResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.CustomInterest)(nil), // 5: google.ads.googleads.v16.resources.CustomInterest -} -var file_google_ads_googleads_v16_services_custom_interest_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateCustomInterestsRequest.operations:type_name -> google.ads.googleads.v16.services.CustomInterestOperation - 4, // 1: google.ads.googleads.v16.services.CustomInterestOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v16.services.CustomInterestOperation.create:type_name -> google.ads.googleads.v16.resources.CustomInterest - 5, // 3: google.ads.googleads.v16.services.CustomInterestOperation.update:type_name -> google.ads.googleads.v16.resources.CustomInterest - 3, // 4: google.ads.googleads.v16.services.MutateCustomInterestsResponse.results:type_name -> google.ads.googleads.v16.services.MutateCustomInterestResult - 0, // 5: google.ads.googleads.v16.services.CustomInterestService.MutateCustomInterests:input_type -> google.ads.googleads.v16.services.MutateCustomInterestsRequest - 2, // 6: google.ads.googleads.v16.services.CustomInterestService.MutateCustomInterests:output_type -> google.ads.googleads.v16.services.MutateCustomInterestsResponse + (*resources.CustomInterest)(nil), // 5: google.ads.googleads.v17.resources.CustomInterest +} +var file_google_ads_googleads_v17_services_custom_interest_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateCustomInterestsRequest.operations:type_name -> google.ads.googleads.v17.services.CustomInterestOperation + 4, // 1: google.ads.googleads.v17.services.CustomInterestOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v17.services.CustomInterestOperation.create:type_name -> google.ads.googleads.v17.resources.CustomInterest + 5, // 3: google.ads.googleads.v17.services.CustomInterestOperation.update:type_name -> google.ads.googleads.v17.resources.CustomInterest + 3, // 4: google.ads.googleads.v17.services.MutateCustomInterestsResponse.results:type_name -> google.ads.googleads.v17.services.MutateCustomInterestResult + 0, // 5: google.ads.googleads.v17.services.CustomInterestService.MutateCustomInterests:input_type -> google.ads.googleads.v17.services.MutateCustomInterestsRequest + 2, // 6: google.ads.googleads.v17.services.CustomInterestService.MutateCustomInterests:output_type -> google.ads.googleads.v17.services.MutateCustomInterestsResponse 6, // [6:7] is the sub-list for method output_type 5, // [5:6] is the sub-list for method input_type 5, // [5:5] is the sub-list for extension type_name @@ -444,13 +444,13 @@ var file_google_ads_googleads_v16_services_custom_interest_service_proto_depIdxs 0, // [0:5] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_custom_interest_service_proto_init() } -func file_google_ads_googleads_v16_services_custom_interest_service_proto_init() { - if File_google_ads_googleads_v16_services_custom_interest_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_custom_interest_service_proto_init() } +func file_google_ads_googleads_v17_services_custom_interest_service_proto_init() { + if File_google_ads_googleads_v17_services_custom_interest_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_custom_interest_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_custom_interest_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomInterestsRequest); i { case 0: return &v.state @@ -462,7 +462,7 @@ func file_google_ads_googleads_v16_services_custom_interest_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_custom_interest_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_custom_interest_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomInterestOperation); i { case 0: return &v.state @@ -474,7 +474,7 @@ func file_google_ads_googleads_v16_services_custom_interest_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_custom_interest_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_custom_interest_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomInterestsResponse); i { case 0: return &v.state @@ -486,7 +486,7 @@ func file_google_ads_googleads_v16_services_custom_interest_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_custom_interest_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_custom_interest_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomInterestResult); i { case 0: return &v.state @@ -499,7 +499,7 @@ func file_google_ads_googleads_v16_services_custom_interest_service_proto_init() } } } - file_google_ads_googleads_v16_services_custom_interest_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_custom_interest_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CustomInterestOperation_Create)(nil), (*CustomInterestOperation_Update)(nil), } @@ -507,18 +507,18 @@ func file_google_ads_googleads_v16_services_custom_interest_service_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_custom_interest_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_custom_interest_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_custom_interest_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_custom_interest_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_custom_interest_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_custom_interest_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_custom_interest_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_custom_interest_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_custom_interest_service_proto = out.File - file_google_ads_googleads_v16_services_custom_interest_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_custom_interest_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_custom_interest_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_custom_interest_service_proto = out.File + file_google_ads_googleads_v17_services_custom_interest_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_custom_interest_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_custom_interest_service_proto_depIdxs = nil } diff --git a/services/custom_interest_service_grpc.pb.go b/services/custom_interest_service_grpc.pb.go index 1d9b4ac6..1f73644b 100644 --- a/services/custom_interest_service_grpc.pb.go +++ b/services/custom_interest_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/custom_interest_service.proto +// source: google/ads/googleads/v17/services/custom_interest_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CustomInterestService_MutateCustomInterests_FullMethodName = "/google.ads.googleads.v16.services.CustomInterestService/MutateCustomInterests" + CustomInterestService_MutateCustomInterests_FullMethodName = "/google.ads.googleads.v17.services.CustomInterestService/MutateCustomInterests" ) // CustomInterestServiceClient is the client API for CustomInterestService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage custom interests. type CustomInterestServiceClient interface { // Creates or updates custom interests. Operation statuses are returned. // @@ -67,8 +69,9 @@ func NewCustomInterestServiceClient(cc grpc.ClientConnInterface) CustomInterestS } func (c *customInterestServiceClient) MutateCustomInterests(ctx context.Context, in *MutateCustomInterestsRequest, opts ...grpc.CallOption) (*MutateCustomInterestsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCustomInterestsResponse) - err := c.cc.Invoke(ctx, CustomInterestService_MutateCustomInterests_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CustomInterestService_MutateCustomInterests_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -78,6 +81,8 @@ func (c *customInterestServiceClient) MutateCustomInterests(ctx context.Context, // CustomInterestServiceServer is the server API for CustomInterestService service. // All implementations must embed UnimplementedCustomInterestServiceServer // for forward compatibility +// +// Service to manage custom interests. type CustomInterestServiceServer interface { // Creates or updates custom interests. Operation statuses are returned. // @@ -140,7 +145,7 @@ func _CustomInterestService_MutateCustomInterests_Handler(srv interface{}, ctx c // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CustomInterestService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CustomInterestService", + ServiceName: "google.ads.googleads.v17.services.CustomInterestService", HandlerType: (*CustomInterestServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -149,5 +154,5 @@ var CustomInterestService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/custom_interest_service.proto", + Metadata: "google/ads/googleads/v17/services/custom_interest_service.proto", } diff --git a/services/customer_asset_service.pb.go b/services/customer_asset_service.pb.go index f7570605..69eaba6b 100644 --- a/services/customer_asset_service.pb.go +++ b/services/customer_asset_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_asset_service.proto +// source: google/ads/googleads/v17/services/customer_asset_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [CustomerAssetService.MutateCustomerAssets][google.ads.googleads.v16.services.CustomerAssetService.MutateCustomerAssets]. +// [CustomerAssetService.MutateCustomerAssets][google.ads.googleads.v17.services.CustomerAssetService.MutateCustomerAssets]. type MutateCustomerAssetsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -60,13 +60,13 @@ type MutateCustomerAssetsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateCustomerAssetsRequest) Reset() { *x = MutateCustomerAssetsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_asset_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_asset_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateCustomerAssetsRequest) String() string { func (*MutateCustomerAssetsRequest) ProtoMessage() {} func (x *MutateCustomerAssetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_asset_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_asset_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateCustomerAssetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerAssetsRequest.ProtoReflect.Descriptor instead. func (*MutateCustomerAssetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_asset_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_customer_asset_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomerAssetsRequest) GetCustomerId() string { @@ -151,7 +151,7 @@ type CustomerAssetOperation struct { func (x *CustomerAssetOperation) Reset() { *x = CustomerAssetOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_asset_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_asset_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164,7 +164,7 @@ func (x *CustomerAssetOperation) String() string { func (*CustomerAssetOperation) ProtoMessage() {} func (x *CustomerAssetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_asset_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_asset_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177,7 +177,7 @@ func (x *CustomerAssetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerAssetOperation.ProtoReflect.Descriptor instead. func (*CustomerAssetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_asset_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_customer_asset_service_proto_rawDescGZIP(), []int{1} } func (x *CustomerAssetOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -263,7 +263,7 @@ type MutateCustomerAssetsResponse struct { func (x *MutateCustomerAssetsResponse) Reset() { *x = MutateCustomerAssetsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_asset_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_asset_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -276,7 +276,7 @@ func (x *MutateCustomerAssetsResponse) String() string { func (*MutateCustomerAssetsResponse) ProtoMessage() {} func (x *MutateCustomerAssetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_asset_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_asset_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -289,7 +289,7 @@ func (x *MutateCustomerAssetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerAssetsResponse.ProtoReflect.Descriptor instead. func (*MutateCustomerAssetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_asset_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_customer_asset_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomerAssetsResponse) GetPartialFailureError() *status.Status { @@ -323,7 +323,7 @@ type MutateCustomerAssetResult struct { func (x *MutateCustomerAssetResult) Reset() { *x = MutateCustomerAssetResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_asset_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_asset_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -336,7 +336,7 @@ func (x *MutateCustomerAssetResult) String() string { func (*MutateCustomerAssetResult) ProtoMessage() {} func (x *MutateCustomerAssetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_asset_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_asset_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -349,7 +349,7 @@ func (x *MutateCustomerAssetResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerAssetResult.ProtoReflect.Descriptor instead. func (*MutateCustomerAssetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_asset_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_customer_asset_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomerAssetResult) GetResourceName() string { @@ -366,21 +366,21 @@ func (x *MutateCustomerAssetResult) GetCustomerAsset() *resources.CustomerAsset return nil } -var File_google_ads_googleads_v16_services_customer_asset_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_customer_asset_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_customer_asset_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_customer_asset_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 0x67, 0x6f, 0x6f, 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, @@ -400,7 +400,7 @@ var file_google_ads_googleads_v16_services_customer_asset_service_proto_rawDesc 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5e, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, @@ -412,7 +412,7 @@ var file_google_ads_googleads_v16_services_customer_asset_service_proto_rawDesc 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, @@ -424,12 +424,12 @@ var file_google_ads_googleads_v16_services_customer_asset_service_proto_rawDesc 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x4b, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 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, 0x72, + 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x4b, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 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, 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, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x45, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2b, 0xfa, @@ -446,7 +446,7 @@ var file_google_ads_googleads_v16_services_customer_asset_service_proto_rawDesc 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x56, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xc7, 0x01, 0x0a, 0x19, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, @@ -459,23 +459,23 @@ var file_google_ads_googleads_v16_services_customer_asset_service_proto_rawDesc 0x6d, 0x65, 0x12, 0x58, 0x0a, 0x0e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x02, 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, 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x32, 0xd1, 0x02, 0x0a, 0x14, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xf1, 0x01, 0x0a, 0x14, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x58, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x39, - 0x3a, 0x01, 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x3a, 0x01, 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, @@ -485,57 +485,57 @@ var file_google_ads_googleads_v16_services_customer_asset_service_proto_rawDesc 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x85, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x19, 0x43, 0x75, 0x73, 0x74, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x19, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, + 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_customer_asset_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_customer_asset_service_proto_rawDescData = file_google_ads_googleads_v16_services_customer_asset_service_proto_rawDesc + file_google_ads_googleads_v17_services_customer_asset_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_customer_asset_service_proto_rawDescData = file_google_ads_googleads_v17_services_customer_asset_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_customer_asset_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_customer_asset_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_customer_asset_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_customer_asset_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_customer_asset_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_customer_asset_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_customer_asset_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_customer_asset_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_customer_asset_service_proto_rawDescData + return file_google_ads_googleads_v17_services_customer_asset_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_customer_asset_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_customer_asset_service_proto_goTypes = []interface{}{ - (*MutateCustomerAssetsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCustomerAssetsRequest - (*CustomerAssetOperation)(nil), // 1: google.ads.googleads.v16.services.CustomerAssetOperation - (*MutateCustomerAssetsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateCustomerAssetsResponse - (*MutateCustomerAssetResult)(nil), // 3: google.ads.googleads.v16.services.MutateCustomerAssetResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_customer_asset_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_customer_asset_service_proto_goTypes = []interface{}{ + (*MutateCustomerAssetsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCustomerAssetsRequest + (*CustomerAssetOperation)(nil), // 1: google.ads.googleads.v17.services.CustomerAssetOperation + (*MutateCustomerAssetsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateCustomerAssetsResponse + (*MutateCustomerAssetResult)(nil), // 3: google.ads.googleads.v17.services.MutateCustomerAssetResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.CustomerAsset)(nil), // 6: google.ads.googleads.v16.resources.CustomerAsset + (*resources.CustomerAsset)(nil), // 6: google.ads.googleads.v17.resources.CustomerAsset (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_customer_asset_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateCustomerAssetsRequest.operations:type_name -> google.ads.googleads.v16.services.CustomerAssetOperation - 4, // 1: google.ads.googleads.v16.services.MutateCustomerAssetsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.CustomerAssetOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.CustomerAssetOperation.create:type_name -> google.ads.googleads.v16.resources.CustomerAsset - 6, // 4: google.ads.googleads.v16.services.CustomerAssetOperation.update:type_name -> google.ads.googleads.v16.resources.CustomerAsset - 7, // 5: google.ads.googleads.v16.services.MutateCustomerAssetsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v16.services.MutateCustomerAssetsResponse.results:type_name -> google.ads.googleads.v16.services.MutateCustomerAssetResult - 6, // 7: google.ads.googleads.v16.services.MutateCustomerAssetResult.customer_asset:type_name -> google.ads.googleads.v16.resources.CustomerAsset - 0, // 8: google.ads.googleads.v16.services.CustomerAssetService.MutateCustomerAssets:input_type -> google.ads.googleads.v16.services.MutateCustomerAssetsRequest - 2, // 9: google.ads.googleads.v16.services.CustomerAssetService.MutateCustomerAssets:output_type -> google.ads.googleads.v16.services.MutateCustomerAssetsResponse +var file_google_ads_googleads_v17_services_customer_asset_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateCustomerAssetsRequest.operations:type_name -> google.ads.googleads.v17.services.CustomerAssetOperation + 4, // 1: google.ads.googleads.v17.services.MutateCustomerAssetsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.CustomerAssetOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.CustomerAssetOperation.create:type_name -> google.ads.googleads.v17.resources.CustomerAsset + 6, // 4: google.ads.googleads.v17.services.CustomerAssetOperation.update:type_name -> google.ads.googleads.v17.resources.CustomerAsset + 7, // 5: google.ads.googleads.v17.services.MutateCustomerAssetsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v17.services.MutateCustomerAssetsResponse.results:type_name -> google.ads.googleads.v17.services.MutateCustomerAssetResult + 6, // 7: google.ads.googleads.v17.services.MutateCustomerAssetResult.customer_asset:type_name -> google.ads.googleads.v17.resources.CustomerAsset + 0, // 8: google.ads.googleads.v17.services.CustomerAssetService.MutateCustomerAssets:input_type -> google.ads.googleads.v17.services.MutateCustomerAssetsRequest + 2, // 9: google.ads.googleads.v17.services.CustomerAssetService.MutateCustomerAssets:output_type -> google.ads.googleads.v17.services.MutateCustomerAssetsResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -543,13 +543,13 @@ var file_google_ads_googleads_v16_services_customer_asset_service_proto_depIdxs 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_customer_asset_service_proto_init() } -func file_google_ads_googleads_v16_services_customer_asset_service_proto_init() { - if File_google_ads_googleads_v16_services_customer_asset_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_customer_asset_service_proto_init() } +func file_google_ads_googleads_v17_services_customer_asset_service_proto_init() { + if File_google_ads_googleads_v17_services_customer_asset_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_customer_asset_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_asset_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerAssetsRequest); i { case 0: return &v.state @@ -561,7 +561,7 @@ func file_google_ads_googleads_v16_services_customer_asset_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_customer_asset_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_asset_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerAssetOperation); i { case 0: return &v.state @@ -573,7 +573,7 @@ func file_google_ads_googleads_v16_services_customer_asset_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_customer_asset_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_asset_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerAssetsResponse); i { case 0: return &v.state @@ -585,7 +585,7 @@ func file_google_ads_googleads_v16_services_customer_asset_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_customer_asset_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_asset_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerAssetResult); i { case 0: return &v.state @@ -598,7 +598,7 @@ func file_google_ads_googleads_v16_services_customer_asset_service_proto_init() } } } - file_google_ads_googleads_v16_services_customer_asset_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_customer_asset_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CustomerAssetOperation_Create)(nil), (*CustomerAssetOperation_Update)(nil), (*CustomerAssetOperation_Remove)(nil), @@ -607,18 +607,18 @@ func file_google_ads_googleads_v16_services_customer_asset_service_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_customer_asset_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_customer_asset_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_customer_asset_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_customer_asset_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_customer_asset_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_customer_asset_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_customer_asset_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_customer_asset_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_customer_asset_service_proto = out.File - file_google_ads_googleads_v16_services_customer_asset_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_customer_asset_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_customer_asset_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_customer_asset_service_proto = out.File + file_google_ads_googleads_v17_services_customer_asset_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_customer_asset_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_customer_asset_service_proto_depIdxs = nil } diff --git a/services/customer_asset_service_grpc.pb.go b/services/customer_asset_service_grpc.pb.go index 78e6e8f4..d763386c 100644 --- a/services/customer_asset_service_grpc.pb.go +++ b/services/customer_asset_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_asset_service.proto +// source: google/ads/googleads/v17/services/customer_asset_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CustomerAssetService_MutateCustomerAssets_FullMethodName = "/google.ads.googleads.v16.services.CustomerAssetService/MutateCustomerAssets" + CustomerAssetService_MutateCustomerAssets_FullMethodName = "/google.ads.googleads.v17.services.CustomerAssetService/MutateCustomerAssets" ) // CustomerAssetServiceClient is the client API for CustomerAssetService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage customer assets. type CustomerAssetServiceClient interface { // Creates, updates, or removes customer assets. Operation statuses are // returned. @@ -66,8 +68,9 @@ func NewCustomerAssetServiceClient(cc grpc.ClientConnInterface) CustomerAssetSer } func (c *customerAssetServiceClient) MutateCustomerAssets(ctx context.Context, in *MutateCustomerAssetsRequest, opts ...grpc.CallOption) (*MutateCustomerAssetsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCustomerAssetsResponse) - err := c.cc.Invoke(ctx, CustomerAssetService_MutateCustomerAssets_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CustomerAssetService_MutateCustomerAssets_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -77,6 +80,8 @@ func (c *customerAssetServiceClient) MutateCustomerAssets(ctx context.Context, i // CustomerAssetServiceServer is the server API for CustomerAssetService service. // All implementations must embed UnimplementedCustomerAssetServiceServer // for forward compatibility +// +// Service to manage customer assets. type CustomerAssetServiceServer interface { // Creates, updates, or removes customer assets. Operation statuses are // returned. @@ -138,7 +143,7 @@ func _CustomerAssetService_MutateCustomerAssets_Handler(srv interface{}, ctx con // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CustomerAssetService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CustomerAssetService", + ServiceName: "google.ads.googleads.v17.services.CustomerAssetService", HandlerType: (*CustomerAssetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -147,5 +152,5 @@ var CustomerAssetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/customer_asset_service.proto", + Metadata: "google/ads/googleads/v17/services/customer_asset_service.proto", } diff --git a/services/customer_asset_set_service.pb.go b/services/customer_asset_set_service.pb.go index 1485eddd..a7ff5133 100644 --- a/services/customer_asset_set_service.pb.go +++ b/services/customer_asset_set_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_asset_set_service.proto +// source: google/ads/googleads/v17/services/customer_asset_set_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [CustomerAssetSetService.MutateCustomerAssetSets][google.ads.googleads.v16.services.CustomerAssetSetService.MutateCustomerAssetSets]. +// [CustomerAssetSetService.MutateCustomerAssetSets][google.ads.googleads.v17.services.CustomerAssetSetService.MutateCustomerAssetSets]. type MutateCustomerAssetSetsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -61,13 +61,13 @@ type MutateCustomerAssetSetsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateCustomerAssetSetsRequest) Reset() { *x = MutateCustomerAssetSetsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_asset_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_asset_set_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80,7 +80,7 @@ func (x *MutateCustomerAssetSetsRequest) String() string { func (*MutateCustomerAssetSetsRequest) ProtoMessage() {} func (x *MutateCustomerAssetSetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_asset_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_asset_set_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93,7 +93,7 @@ func (x *MutateCustomerAssetSetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerAssetSetsRequest.ProtoReflect.Descriptor instead. func (*MutateCustomerAssetSetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_asset_set_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_customer_asset_set_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomerAssetSetsRequest) GetCustomerId() string { @@ -149,7 +149,7 @@ type CustomerAssetSetOperation struct { func (x *CustomerAssetSetOperation) Reset() { *x = CustomerAssetSetOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_asset_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_asset_set_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -162,7 +162,7 @@ func (x *CustomerAssetSetOperation) String() string { func (*CustomerAssetSetOperation) ProtoMessage() {} func (x *CustomerAssetSetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_asset_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_asset_set_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -175,7 +175,7 @@ func (x *CustomerAssetSetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerAssetSetOperation.ProtoReflect.Descriptor instead. func (*CustomerAssetSetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_asset_set_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_customer_asset_set_service_proto_rawDescGZIP(), []int{1} } func (m *CustomerAssetSetOperation) GetOperation() isCustomerAssetSetOperation_Operation { @@ -238,7 +238,7 @@ type MutateCustomerAssetSetsResponse struct { func (x *MutateCustomerAssetSetsResponse) Reset() { *x = MutateCustomerAssetSetsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_asset_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_asset_set_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -251,7 +251,7 @@ func (x *MutateCustomerAssetSetsResponse) String() string { func (*MutateCustomerAssetSetsResponse) ProtoMessage() {} func (x *MutateCustomerAssetSetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_asset_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_asset_set_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -264,7 +264,7 @@ func (x *MutateCustomerAssetSetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerAssetSetsResponse.ProtoReflect.Descriptor instead. func (*MutateCustomerAssetSetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_asset_set_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_customer_asset_set_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomerAssetSetsResponse) GetResults() []*MutateCustomerAssetSetResult { @@ -298,7 +298,7 @@ type MutateCustomerAssetSetResult struct { func (x *MutateCustomerAssetSetResult) Reset() { *x = MutateCustomerAssetSetResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_asset_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_asset_set_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -311,7 +311,7 @@ func (x *MutateCustomerAssetSetResult) String() string { func (*MutateCustomerAssetSetResult) ProtoMessage() {} func (x *MutateCustomerAssetSetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_asset_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_asset_set_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -324,7 +324,7 @@ func (x *MutateCustomerAssetSetResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerAssetSetResult.ProtoReflect.Descriptor instead. func (*MutateCustomerAssetSetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_asset_set_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_customer_asset_set_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomerAssetSetResult) GetResourceName() string { @@ -341,21 +341,21 @@ func (x *MutateCustomerAssetSetResult) GetCustomerAssetSet() *resources.Customer return nil } -var File_google_ads_googleads_v16_services_customer_asset_set_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_customer_asset_set_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_customer_asset_set_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_customer_asset_set_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 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, 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, 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, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, @@ -374,7 +374,7 @@ var file_google_ads_googleads_v16_services_customer_asset_set_service_proto_rawD 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x61, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, @@ -385,7 +385,7 @@ var file_google_ads_googleads_v16_services_customer_asset_set_service_proto_rawD 0x74, 0x65, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, + 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, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, @@ -394,7 +394,7 @@ var file_google_ads_googleads_v16_services_customer_asset_set_service_proto_rawD 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4e, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, + 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x48, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, @@ -407,7 +407,7 @@ var file_google_ads_googleads_v16_services_customer_asset_set_service_proto_rawD 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x59, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x46, 0x0a, 0x15, 0x70, @@ -425,7 +425,7 @@ var file_google_ads_googleads_v16_services_customer_asset_set_service_proto_rawD 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x62, 0x0a, 0x12, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 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, + 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x52, 0x10, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x32, 0xe0, 0x02, @@ -433,17 +433,17 @@ var file_google_ads_googleads_v16_services_customer_asset_set_service_proto_rawD 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xfd, 0x01, 0x0a, 0x17, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x73, 0x12, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5b, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3c, 0x3a, 0x01, 0x2a, - 0x22, 0x37, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, + 0x22, 0x37, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, @@ -453,55 +453,55 @@ var file_google_ads_googleads_v16_services_customer_asset_set_service_proto_rawD 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x88, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1c, 0x43, 0x75, 0x73, 0x74, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1c, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, + 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, + 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, - 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_customer_asset_set_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_customer_asset_set_service_proto_rawDescData = file_google_ads_googleads_v16_services_customer_asset_set_service_proto_rawDesc + file_google_ads_googleads_v17_services_customer_asset_set_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_customer_asset_set_service_proto_rawDescData = file_google_ads_googleads_v17_services_customer_asset_set_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_customer_asset_set_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_customer_asset_set_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_customer_asset_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_customer_asset_set_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_customer_asset_set_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_customer_asset_set_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_customer_asset_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_customer_asset_set_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_customer_asset_set_service_proto_rawDescData + return file_google_ads_googleads_v17_services_customer_asset_set_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_customer_asset_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_customer_asset_set_service_proto_goTypes = []interface{}{ - (*MutateCustomerAssetSetsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCustomerAssetSetsRequest - (*CustomerAssetSetOperation)(nil), // 1: google.ads.googleads.v16.services.CustomerAssetSetOperation - (*MutateCustomerAssetSetsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateCustomerAssetSetsResponse - (*MutateCustomerAssetSetResult)(nil), // 3: google.ads.googleads.v16.services.MutateCustomerAssetSetResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - (*resources.CustomerAssetSet)(nil), // 5: google.ads.googleads.v16.resources.CustomerAssetSet +var file_google_ads_googleads_v17_services_customer_asset_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_customer_asset_set_service_proto_goTypes = []interface{}{ + (*MutateCustomerAssetSetsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCustomerAssetSetsRequest + (*CustomerAssetSetOperation)(nil), // 1: google.ads.googleads.v17.services.CustomerAssetSetOperation + (*MutateCustomerAssetSetsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateCustomerAssetSetsResponse + (*MutateCustomerAssetSetResult)(nil), // 3: google.ads.googleads.v17.services.MutateCustomerAssetSetResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + (*resources.CustomerAssetSet)(nil), // 5: google.ads.googleads.v17.resources.CustomerAssetSet (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v16_services_customer_asset_set_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateCustomerAssetSetsRequest.operations:type_name -> google.ads.googleads.v16.services.CustomerAssetSetOperation - 4, // 1: google.ads.googleads.v16.services.MutateCustomerAssetSetsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.CustomerAssetSetOperation.create:type_name -> google.ads.googleads.v16.resources.CustomerAssetSet - 3, // 3: google.ads.googleads.v16.services.MutateCustomerAssetSetsResponse.results:type_name -> google.ads.googleads.v16.services.MutateCustomerAssetSetResult - 6, // 4: google.ads.googleads.v16.services.MutateCustomerAssetSetsResponse.partial_failure_error:type_name -> google.rpc.Status - 5, // 5: google.ads.googleads.v16.services.MutateCustomerAssetSetResult.customer_asset_set:type_name -> google.ads.googleads.v16.resources.CustomerAssetSet - 0, // 6: google.ads.googleads.v16.services.CustomerAssetSetService.MutateCustomerAssetSets:input_type -> google.ads.googleads.v16.services.MutateCustomerAssetSetsRequest - 2, // 7: google.ads.googleads.v16.services.CustomerAssetSetService.MutateCustomerAssetSets:output_type -> google.ads.googleads.v16.services.MutateCustomerAssetSetsResponse +var file_google_ads_googleads_v17_services_customer_asset_set_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateCustomerAssetSetsRequest.operations:type_name -> google.ads.googleads.v17.services.CustomerAssetSetOperation + 4, // 1: google.ads.googleads.v17.services.MutateCustomerAssetSetsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.CustomerAssetSetOperation.create:type_name -> google.ads.googleads.v17.resources.CustomerAssetSet + 3, // 3: google.ads.googleads.v17.services.MutateCustomerAssetSetsResponse.results:type_name -> google.ads.googleads.v17.services.MutateCustomerAssetSetResult + 6, // 4: google.ads.googleads.v17.services.MutateCustomerAssetSetsResponse.partial_failure_error:type_name -> google.rpc.Status + 5, // 5: google.ads.googleads.v17.services.MutateCustomerAssetSetResult.customer_asset_set:type_name -> google.ads.googleads.v17.resources.CustomerAssetSet + 0, // 6: google.ads.googleads.v17.services.CustomerAssetSetService.MutateCustomerAssetSets:input_type -> google.ads.googleads.v17.services.MutateCustomerAssetSetsRequest + 2, // 7: google.ads.googleads.v17.services.CustomerAssetSetService.MutateCustomerAssetSets:output_type -> google.ads.googleads.v17.services.MutateCustomerAssetSetsResponse 7, // [7:8] is the sub-list for method output_type 6, // [6:7] is the sub-list for method input_type 6, // [6:6] is the sub-list for extension type_name @@ -509,13 +509,13 @@ var file_google_ads_googleads_v16_services_customer_asset_set_service_proto_depI 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_customer_asset_set_service_proto_init() } -func file_google_ads_googleads_v16_services_customer_asset_set_service_proto_init() { - if File_google_ads_googleads_v16_services_customer_asset_set_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_customer_asset_set_service_proto_init() } +func file_google_ads_googleads_v17_services_customer_asset_set_service_proto_init() { + if File_google_ads_googleads_v17_services_customer_asset_set_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_customer_asset_set_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_asset_set_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerAssetSetsRequest); i { case 0: return &v.state @@ -527,7 +527,7 @@ func file_google_ads_googleads_v16_services_customer_asset_set_service_proto_ini return nil } } - file_google_ads_googleads_v16_services_customer_asset_set_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_asset_set_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerAssetSetOperation); i { case 0: return &v.state @@ -539,7 +539,7 @@ func file_google_ads_googleads_v16_services_customer_asset_set_service_proto_ini return nil } } - file_google_ads_googleads_v16_services_customer_asset_set_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_asset_set_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerAssetSetsResponse); i { case 0: return &v.state @@ -551,7 +551,7 @@ func file_google_ads_googleads_v16_services_customer_asset_set_service_proto_ini return nil } } - file_google_ads_googleads_v16_services_customer_asset_set_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_asset_set_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerAssetSetResult); i { case 0: return &v.state @@ -564,7 +564,7 @@ func file_google_ads_googleads_v16_services_customer_asset_set_service_proto_ini } } } - file_google_ads_googleads_v16_services_customer_asset_set_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_customer_asset_set_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CustomerAssetSetOperation_Create)(nil), (*CustomerAssetSetOperation_Remove)(nil), } @@ -572,18 +572,18 @@ func file_google_ads_googleads_v16_services_customer_asset_set_service_proto_ini out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_customer_asset_set_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_customer_asset_set_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_customer_asset_set_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_customer_asset_set_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_customer_asset_set_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_customer_asset_set_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_customer_asset_set_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_customer_asset_set_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_customer_asset_set_service_proto = out.File - file_google_ads_googleads_v16_services_customer_asset_set_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_customer_asset_set_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_customer_asset_set_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_customer_asset_set_service_proto = out.File + file_google_ads_googleads_v17_services_customer_asset_set_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_customer_asset_set_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_customer_asset_set_service_proto_depIdxs = nil } diff --git a/services/customer_asset_set_service_grpc.pb.go b/services/customer_asset_set_service_grpc.pb.go index 7e9a3d65..c9279c67 100644 --- a/services/customer_asset_set_service_grpc.pb.go +++ b/services/customer_asset_set_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_asset_set_service.proto +// source: google/ads/googleads/v17/services/customer_asset_set_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CustomerAssetSetService_MutateCustomerAssetSets_FullMethodName = "/google.ads.googleads.v16.services.CustomerAssetSetService/MutateCustomerAssetSets" + CustomerAssetSetService_MutateCustomerAssetSets_FullMethodName = "/google.ads.googleads.v17.services.CustomerAssetSetService/MutateCustomerAssetSets" ) // CustomerAssetSetServiceClient is the client API for CustomerAssetSetService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage customer asset set type CustomerAssetSetServiceClient interface { // Creates, or removes customer asset sets. Operation statuses are // returned. @@ -54,8 +56,9 @@ func NewCustomerAssetSetServiceClient(cc grpc.ClientConnInterface) CustomerAsset } func (c *customerAssetSetServiceClient) MutateCustomerAssetSets(ctx context.Context, in *MutateCustomerAssetSetsRequest, opts ...grpc.CallOption) (*MutateCustomerAssetSetsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCustomerAssetSetsResponse) - err := c.cc.Invoke(ctx, CustomerAssetSetService_MutateCustomerAssetSets_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CustomerAssetSetService_MutateCustomerAssetSets_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -65,6 +68,8 @@ func (c *customerAssetSetServiceClient) MutateCustomerAssetSets(ctx context.Cont // CustomerAssetSetServiceServer is the server API for CustomerAssetSetService service. // All implementations must embed UnimplementedCustomerAssetSetServiceServer // for forward compatibility +// +// Service to manage customer asset set type CustomerAssetSetServiceServer interface { // Creates, or removes customer asset sets. Operation statuses are // returned. @@ -115,7 +120,7 @@ func _CustomerAssetSetService_MutateCustomerAssetSets_Handler(srv interface{}, c // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CustomerAssetSetService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CustomerAssetSetService", + ServiceName: "google.ads.googleads.v17.services.CustomerAssetSetService", HandlerType: (*CustomerAssetSetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -124,5 +129,5 @@ var CustomerAssetSetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/customer_asset_set_service.proto", + Metadata: "google/ads/googleads/v17/services/customer_asset_set_service.proto", } diff --git a/services/customer_client_link_service.pb.go b/services/customer_client_link_service.pb.go index c78006d4..7cdcfe02 100644 --- a/services/customer_client_link_service.pb.go +++ b/services/customer_client_link_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_client_link_service.proto +// source: google/ads/googleads/v17/services/customer_client_link_service.proto package services @@ -38,7 +38,7 @@ const ( ) // Request message for -// [CustomerClientLinkService.MutateCustomerClientLink][google.ads.googleads.v16.services.CustomerClientLinkService.MutateCustomerClientLink]. +// [CustomerClientLinkService.MutateCustomerClientLink][google.ads.googleads.v17.services.CustomerClientLinkService.MutateCustomerClientLink]. type MutateCustomerClientLinkRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -56,7 +56,7 @@ type MutateCustomerClientLinkRequest struct { func (x *MutateCustomerClientLinkRequest) Reset() { *x = MutateCustomerClientLinkRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_client_link_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_client_link_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -69,7 +69,7 @@ func (x *MutateCustomerClientLinkRequest) String() string { func (*MutateCustomerClientLinkRequest) ProtoMessage() {} func (x *MutateCustomerClientLinkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_client_link_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_client_link_service_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 *MutateCustomerClientLinkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerClientLinkRequest.ProtoReflect.Descriptor instead. func (*MutateCustomerClientLinkRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_client_link_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_customer_client_link_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomerClientLinkRequest) GetCustomerId() string { @@ -126,7 +126,7 @@ type CustomerClientLinkOperation struct { func (x *CustomerClientLinkOperation) Reset() { *x = CustomerClientLinkOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_client_link_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_client_link_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -139,7 +139,7 @@ func (x *CustomerClientLinkOperation) String() string { func (*CustomerClientLinkOperation) ProtoMessage() {} func (x *CustomerClientLinkOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_client_link_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_client_link_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -152,7 +152,7 @@ func (x *CustomerClientLinkOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerClientLinkOperation.ProtoReflect.Descriptor instead. func (*CustomerClientLinkOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_client_link_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_customer_client_link_service_proto_rawDescGZIP(), []int{1} } func (x *CustomerClientLinkOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -214,7 +214,7 @@ type MutateCustomerClientLinkResponse struct { func (x *MutateCustomerClientLinkResponse) Reset() { *x = MutateCustomerClientLinkResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_client_link_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_client_link_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -227,7 +227,7 @@ func (x *MutateCustomerClientLinkResponse) String() string { func (*MutateCustomerClientLinkResponse) ProtoMessage() {} func (x *MutateCustomerClientLinkResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_client_link_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_client_link_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -240,7 +240,7 @@ func (x *MutateCustomerClientLinkResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerClientLinkResponse.ProtoReflect.Descriptor instead. func (*MutateCustomerClientLinkResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_client_link_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_customer_client_link_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomerClientLinkResponse) GetResult() *MutateCustomerClientLinkResult { @@ -263,7 +263,7 @@ type MutateCustomerClientLinkResult struct { func (x *MutateCustomerClientLinkResult) Reset() { *x = MutateCustomerClientLinkResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_client_link_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_client_link_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -276,7 +276,7 @@ func (x *MutateCustomerClientLinkResult) String() string { func (*MutateCustomerClientLinkResult) ProtoMessage() {} func (x *MutateCustomerClientLinkResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_client_link_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_client_link_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -289,7 +289,7 @@ func (x *MutateCustomerClientLinkResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerClientLinkResult.ProtoReflect.Descriptor instead. func (*MutateCustomerClientLinkResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_client_link_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_customer_client_link_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomerClientLinkResult) GetResourceName() string { @@ -299,18 +299,18 @@ func (x *MutateCustomerClientLinkResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_customer_client_link_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_customer_client_link_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_customer_client_link_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_customer_client_link_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, + 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, @@ -329,7 +329,7 @@ var file_google_ads_googleads_v16_services_customer_client_link_service_proto_ra 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x61, 0x0a, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x23, 0x0a, 0x0d, 0x76, 0x61, @@ -343,12 +343,12 @@ var file_google_ads_googleads_v16_services_customer_client_link_service_proto_ra 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x50, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x50, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x02, 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, 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x7d, 0x0a, @@ -356,7 +356,7 @@ var file_google_ads_googleads_v16_services_customer_client_link_service_proto_ra 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x59, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 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, 0x36, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x77, 0x0a, 0x1e, @@ -372,17 +372,17 @@ var file_google_ads_googleads_v16_services_customer_client_link_service_proto_ra 0x69, 0x63, 0x65, 0x12, 0x81, 0x02, 0x0a, 0x18, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x12, 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, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5c, 0xda, 0x41, 0x15, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3e, 0x3a, 0x01, 0x2a, 0x22, 0x39, 0x2f, 0x76, - 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, + 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, @@ -391,54 +391,54 @@ var file_google_ads_googleads_v16_services_customer_client_link_service_proto_ra 0x77, 0x77, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x8a, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, + 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, + 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, - 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_customer_client_link_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_customer_client_link_service_proto_rawDescData = file_google_ads_googleads_v16_services_customer_client_link_service_proto_rawDesc + file_google_ads_googleads_v17_services_customer_client_link_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_customer_client_link_service_proto_rawDescData = file_google_ads_googleads_v17_services_customer_client_link_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_customer_client_link_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_customer_client_link_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_customer_client_link_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_customer_client_link_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_customer_client_link_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_customer_client_link_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_customer_client_link_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_customer_client_link_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_customer_client_link_service_proto_rawDescData + return file_google_ads_googleads_v17_services_customer_client_link_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_customer_client_link_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_customer_client_link_service_proto_goTypes = []interface{}{ - (*MutateCustomerClientLinkRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCustomerClientLinkRequest - (*CustomerClientLinkOperation)(nil), // 1: google.ads.googleads.v16.services.CustomerClientLinkOperation - (*MutateCustomerClientLinkResponse)(nil), // 2: google.ads.googleads.v16.services.MutateCustomerClientLinkResponse - (*MutateCustomerClientLinkResult)(nil), // 3: google.ads.googleads.v16.services.MutateCustomerClientLinkResult +var file_google_ads_googleads_v17_services_customer_client_link_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_customer_client_link_service_proto_goTypes = []interface{}{ + (*MutateCustomerClientLinkRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCustomerClientLinkRequest + (*CustomerClientLinkOperation)(nil), // 1: google.ads.googleads.v17.services.CustomerClientLinkOperation + (*MutateCustomerClientLinkResponse)(nil), // 2: google.ads.googleads.v17.services.MutateCustomerClientLinkResponse + (*MutateCustomerClientLinkResult)(nil), // 3: google.ads.googleads.v17.services.MutateCustomerClientLinkResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.CustomerClientLink)(nil), // 5: google.ads.googleads.v16.resources.CustomerClientLink -} -var file_google_ads_googleads_v16_services_customer_client_link_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateCustomerClientLinkRequest.operation:type_name -> google.ads.googleads.v16.services.CustomerClientLinkOperation - 4, // 1: google.ads.googleads.v16.services.CustomerClientLinkOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v16.services.CustomerClientLinkOperation.create:type_name -> google.ads.googleads.v16.resources.CustomerClientLink - 5, // 3: google.ads.googleads.v16.services.CustomerClientLinkOperation.update:type_name -> google.ads.googleads.v16.resources.CustomerClientLink - 3, // 4: google.ads.googleads.v16.services.MutateCustomerClientLinkResponse.result:type_name -> google.ads.googleads.v16.services.MutateCustomerClientLinkResult - 0, // 5: google.ads.googleads.v16.services.CustomerClientLinkService.MutateCustomerClientLink:input_type -> google.ads.googleads.v16.services.MutateCustomerClientLinkRequest - 2, // 6: google.ads.googleads.v16.services.CustomerClientLinkService.MutateCustomerClientLink:output_type -> google.ads.googleads.v16.services.MutateCustomerClientLinkResponse + (*resources.CustomerClientLink)(nil), // 5: google.ads.googleads.v17.resources.CustomerClientLink +} +var file_google_ads_googleads_v17_services_customer_client_link_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateCustomerClientLinkRequest.operation:type_name -> google.ads.googleads.v17.services.CustomerClientLinkOperation + 4, // 1: google.ads.googleads.v17.services.CustomerClientLinkOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v17.services.CustomerClientLinkOperation.create:type_name -> google.ads.googleads.v17.resources.CustomerClientLink + 5, // 3: google.ads.googleads.v17.services.CustomerClientLinkOperation.update:type_name -> google.ads.googleads.v17.resources.CustomerClientLink + 3, // 4: google.ads.googleads.v17.services.MutateCustomerClientLinkResponse.result:type_name -> google.ads.googleads.v17.services.MutateCustomerClientLinkResult + 0, // 5: google.ads.googleads.v17.services.CustomerClientLinkService.MutateCustomerClientLink:input_type -> google.ads.googleads.v17.services.MutateCustomerClientLinkRequest + 2, // 6: google.ads.googleads.v17.services.CustomerClientLinkService.MutateCustomerClientLink:output_type -> google.ads.googleads.v17.services.MutateCustomerClientLinkResponse 6, // [6:7] is the sub-list for method output_type 5, // [5:6] is the sub-list for method input_type 5, // [5:5] is the sub-list for extension type_name @@ -446,13 +446,13 @@ var file_google_ads_googleads_v16_services_customer_client_link_service_proto_de 0, // [0:5] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_customer_client_link_service_proto_init() } -func file_google_ads_googleads_v16_services_customer_client_link_service_proto_init() { - if File_google_ads_googleads_v16_services_customer_client_link_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_customer_client_link_service_proto_init() } +func file_google_ads_googleads_v17_services_customer_client_link_service_proto_init() { + if File_google_ads_googleads_v17_services_customer_client_link_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_customer_client_link_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_client_link_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerClientLinkRequest); i { case 0: return &v.state @@ -464,7 +464,7 @@ func file_google_ads_googleads_v16_services_customer_client_link_service_proto_i return nil } } - file_google_ads_googleads_v16_services_customer_client_link_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_client_link_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerClientLinkOperation); i { case 0: return &v.state @@ -476,7 +476,7 @@ func file_google_ads_googleads_v16_services_customer_client_link_service_proto_i return nil } } - file_google_ads_googleads_v16_services_customer_client_link_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_client_link_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerClientLinkResponse); i { case 0: return &v.state @@ -488,7 +488,7 @@ func file_google_ads_googleads_v16_services_customer_client_link_service_proto_i return nil } } - file_google_ads_googleads_v16_services_customer_client_link_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_client_link_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerClientLinkResult); i { case 0: return &v.state @@ -501,7 +501,7 @@ func file_google_ads_googleads_v16_services_customer_client_link_service_proto_i } } } - file_google_ads_googleads_v16_services_customer_client_link_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_customer_client_link_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CustomerClientLinkOperation_Create)(nil), (*CustomerClientLinkOperation_Update)(nil), } @@ -509,18 +509,18 @@ func file_google_ads_googleads_v16_services_customer_client_link_service_proto_i out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_customer_client_link_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_customer_client_link_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_customer_client_link_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_customer_client_link_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_customer_client_link_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_customer_client_link_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_customer_client_link_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_customer_client_link_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_customer_client_link_service_proto = out.File - file_google_ads_googleads_v16_services_customer_client_link_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_customer_client_link_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_customer_client_link_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_customer_client_link_service_proto = out.File + file_google_ads_googleads_v17_services_customer_client_link_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_customer_client_link_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_customer_client_link_service_proto_depIdxs = nil } diff --git a/services/customer_client_link_service_grpc.pb.go b/services/customer_client_link_service_grpc.pb.go index 65c5eef3..f6134af3 100644 --- a/services/customer_client_link_service_grpc.pb.go +++ b/services/customer_client_link_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_client_link_service.proto +// source: google/ads/googleads/v17/services/customer_client_link_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CustomerClientLinkService_MutateCustomerClientLink_FullMethodName = "/google.ads.googleads.v16.services.CustomerClientLinkService/MutateCustomerClientLink" + CustomerClientLinkService_MutateCustomerClientLink_FullMethodName = "/google.ads.googleads.v17.services.CustomerClientLinkService/MutateCustomerClientLink" ) // CustomerClientLinkServiceClient is the client API for CustomerClientLinkService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage customer client links. type CustomerClientLinkServiceClient interface { // Creates or updates a customer client link. Operation statuses are returned. // @@ -68,8 +70,9 @@ func NewCustomerClientLinkServiceClient(cc grpc.ClientConnInterface) CustomerCli } func (c *customerClientLinkServiceClient) MutateCustomerClientLink(ctx context.Context, in *MutateCustomerClientLinkRequest, opts ...grpc.CallOption) (*MutateCustomerClientLinkResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCustomerClientLinkResponse) - err := c.cc.Invoke(ctx, CustomerClientLinkService_MutateCustomerClientLink_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CustomerClientLinkService_MutateCustomerClientLink_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -79,6 +82,8 @@ func (c *customerClientLinkServiceClient) MutateCustomerClientLink(ctx context.C // CustomerClientLinkServiceServer is the server API for CustomerClientLinkService service. // All implementations must embed UnimplementedCustomerClientLinkServiceServer // for forward compatibility +// +// Service to manage customer client links. type CustomerClientLinkServiceServer interface { // Creates or updates a customer client link. Operation statuses are returned. // @@ -143,7 +148,7 @@ func _CustomerClientLinkService_MutateCustomerClientLink_Handler(srv interface{} // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CustomerClientLinkService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CustomerClientLinkService", + ServiceName: "google.ads.googleads.v17.services.CustomerClientLinkService", HandlerType: (*CustomerClientLinkServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -152,5 +157,5 @@ var CustomerClientLinkService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/customer_client_link_service.proto", + Metadata: "google/ads/googleads/v17/services/customer_client_link_service.proto", } diff --git a/services/customer_conversion_goal_service.pb.go b/services/customer_conversion_goal_service.pb.go index 97a00ca8..b30d49d7 100644 --- a/services/customer_conversion_goal_service.pb.go +++ b/services/customer_conversion_goal_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_conversion_goal_service.proto +// source: google/ads/googleads/v17/services/customer_conversion_goal_service.proto package services @@ -38,7 +38,7 @@ const ( ) // Request message for -// [CustomerConversionGoalService.MutateCustomerConversionGoals][google.ads.googleads.v16.services.CustomerConversionGoalService.MutateCustomerConversionGoals]. +// [CustomerConversionGoalService.MutateCustomerConversionGoals][google.ads.googleads.v17.services.CustomerConversionGoalService.MutateCustomerConversionGoals]. type MutateCustomerConversionGoalsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -58,7 +58,7 @@ type MutateCustomerConversionGoalsRequest struct { func (x *MutateCustomerConversionGoalsRequest) Reset() { *x = MutateCustomerConversionGoalsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -71,7 +71,7 @@ func (x *MutateCustomerConversionGoalsRequest) String() string { func (*MutateCustomerConversionGoalsRequest) ProtoMessage() {} func (x *MutateCustomerConversionGoalsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84,7 +84,7 @@ func (x *MutateCustomerConversionGoalsRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use MutateCustomerConversionGoalsRequest.ProtoReflect.Descriptor instead. func (*MutateCustomerConversionGoalsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomerConversionGoalsRequest) GetCustomerId() string { @@ -127,7 +127,7 @@ type CustomerConversionGoalOperation struct { func (x *CustomerConversionGoalOperation) Reset() { *x = CustomerConversionGoalOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -140,7 +140,7 @@ func (x *CustomerConversionGoalOperation) String() string { func (*CustomerConversionGoalOperation) ProtoMessage() {} func (x *CustomerConversionGoalOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_conversion_goal_service_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 *CustomerConversionGoalOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerConversionGoalOperation.ProtoReflect.Descriptor instead. func (*CustomerConversionGoalOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_rawDescGZIP(), []int{1} } func (x *CustomerConversionGoalOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -202,7 +202,7 @@ type MutateCustomerConversionGoalsResponse struct { func (x *MutateCustomerConversionGoalsResponse) Reset() { *x = MutateCustomerConversionGoalsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -215,7 +215,7 @@ func (x *MutateCustomerConversionGoalsResponse) String() string { func (*MutateCustomerConversionGoalsResponse) ProtoMessage() {} func (x *MutateCustomerConversionGoalsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_conversion_goal_service_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 *MutateCustomerConversionGoalsResponse) ProtoReflect() protoreflect.Mess // Deprecated: Use MutateCustomerConversionGoalsResponse.ProtoReflect.Descriptor instead. func (*MutateCustomerConversionGoalsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomerConversionGoalsResponse) GetResults() []*MutateCustomerConversionGoalResult { @@ -251,7 +251,7 @@ type MutateCustomerConversionGoalResult struct { func (x *MutateCustomerConversionGoalResult) Reset() { *x = MutateCustomerConversionGoalResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -264,7 +264,7 @@ func (x *MutateCustomerConversionGoalResult) String() string { func (*MutateCustomerConversionGoalResult) ProtoMessage() {} func (x *MutateCustomerConversionGoalResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -277,7 +277,7 @@ func (x *MutateCustomerConversionGoalResult) ProtoReflect() protoreflect.Message // Deprecated: Use MutateCustomerConversionGoalResult.ProtoReflect.Descriptor instead. func (*MutateCustomerConversionGoalResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomerConversionGoalResult) GetResourceName() string { @@ -287,18 +287,18 @@ func (x *MutateCustomerConversionGoalResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_customer_conversion_goal_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_customer_conversion_goal_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_customer_conversion_goal_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x41, 0x67, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, @@ -318,7 +318,7 @@ var file_google_ads_googleads_v16_services_customer_conversion_goal_service_prot 0x65, 0x72, 0x49, 0x64, 0x12, 0x67, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x23, 0x0a, @@ -332,7 +332,7 @@ var file_google_ads_googleads_v16_services_customer_conversion_goal_service_prot 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x54, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x01, 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, + 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x6f, 0x70, 0x65, @@ -341,7 +341,7 @@ var file_google_ads_googleads_v16_services_customer_conversion_goal_service_prot 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5f, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, @@ -359,17 +359,17 @@ var file_google_ads_googleads_v16_services_customer_conversion_goal_service_prot 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x61, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x42, 0x3a, 0x01, 0x2a, 0x22, 0x3d, 0x2f, - 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, + 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, @@ -379,52 +379,52 @@ var file_google_ads_googleads_v16_services_customer_conversion_goal_service_prot 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x8e, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x22, 0x43, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x22, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, + 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_rawDescData = file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_rawDesc + file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_rawDescData = file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_rawDescData + return file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_goTypes = []interface{}{ - (*MutateCustomerConversionGoalsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCustomerConversionGoalsRequest - (*CustomerConversionGoalOperation)(nil), // 1: google.ads.googleads.v16.services.CustomerConversionGoalOperation - (*MutateCustomerConversionGoalsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateCustomerConversionGoalsResponse - (*MutateCustomerConversionGoalResult)(nil), // 3: google.ads.googleads.v16.services.MutateCustomerConversionGoalResult +var file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_goTypes = []interface{}{ + (*MutateCustomerConversionGoalsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCustomerConversionGoalsRequest + (*CustomerConversionGoalOperation)(nil), // 1: google.ads.googleads.v17.services.CustomerConversionGoalOperation + (*MutateCustomerConversionGoalsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateCustomerConversionGoalsResponse + (*MutateCustomerConversionGoalResult)(nil), // 3: google.ads.googleads.v17.services.MutateCustomerConversionGoalResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.CustomerConversionGoal)(nil), // 5: google.ads.googleads.v16.resources.CustomerConversionGoal -} -var file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateCustomerConversionGoalsRequest.operations:type_name -> google.ads.googleads.v16.services.CustomerConversionGoalOperation - 4, // 1: google.ads.googleads.v16.services.CustomerConversionGoalOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v16.services.CustomerConversionGoalOperation.update:type_name -> google.ads.googleads.v16.resources.CustomerConversionGoal - 3, // 3: google.ads.googleads.v16.services.MutateCustomerConversionGoalsResponse.results:type_name -> google.ads.googleads.v16.services.MutateCustomerConversionGoalResult - 0, // 4: google.ads.googleads.v16.services.CustomerConversionGoalService.MutateCustomerConversionGoals:input_type -> google.ads.googleads.v16.services.MutateCustomerConversionGoalsRequest - 2, // 5: google.ads.googleads.v16.services.CustomerConversionGoalService.MutateCustomerConversionGoals:output_type -> google.ads.googleads.v16.services.MutateCustomerConversionGoalsResponse + (*resources.CustomerConversionGoal)(nil), // 5: google.ads.googleads.v17.resources.CustomerConversionGoal +} +var file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateCustomerConversionGoalsRequest.operations:type_name -> google.ads.googleads.v17.services.CustomerConversionGoalOperation + 4, // 1: google.ads.googleads.v17.services.CustomerConversionGoalOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v17.services.CustomerConversionGoalOperation.update:type_name -> google.ads.googleads.v17.resources.CustomerConversionGoal + 3, // 3: google.ads.googleads.v17.services.MutateCustomerConversionGoalsResponse.results:type_name -> google.ads.googleads.v17.services.MutateCustomerConversionGoalResult + 0, // 4: google.ads.googleads.v17.services.CustomerConversionGoalService.MutateCustomerConversionGoals:input_type -> google.ads.googleads.v17.services.MutateCustomerConversionGoalsRequest + 2, // 5: google.ads.googleads.v17.services.CustomerConversionGoalService.MutateCustomerConversionGoals:output_type -> google.ads.googleads.v17.services.MutateCustomerConversionGoalsResponse 5, // [5:6] is the sub-list for method output_type 4, // [4:5] is the sub-list for method input_type 4, // [4:4] is the sub-list for extension type_name @@ -432,13 +432,13 @@ var file_google_ads_googleads_v16_services_customer_conversion_goal_service_prot 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_init() } -func file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_init() { - if File_google_ads_googleads_v16_services_customer_conversion_goal_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_init() } +func file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_init() { + if File_google_ads_googleads_v17_services_customer_conversion_goal_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerConversionGoalsRequest); i { case 0: return &v.state @@ -450,7 +450,7 @@ func file_google_ads_googleads_v16_services_customer_conversion_goal_service_pro return nil } } - file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerConversionGoalOperation); i { case 0: return &v.state @@ -462,7 +462,7 @@ func file_google_ads_googleads_v16_services_customer_conversion_goal_service_pro return nil } } - file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerConversionGoalsResponse); i { case 0: return &v.state @@ -474,7 +474,7 @@ func file_google_ads_googleads_v16_services_customer_conversion_goal_service_pro return nil } } - file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerConversionGoalResult); i { case 0: return &v.state @@ -487,25 +487,25 @@ func file_google_ads_googleads_v16_services_customer_conversion_goal_service_pro } } } - file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CustomerConversionGoalOperation_Update)(nil), } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_customer_conversion_goal_service_proto = out.File - file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_customer_conversion_goal_service_proto = out.File + file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_depIdxs = nil } diff --git a/services/customer_conversion_goal_service_grpc.pb.go b/services/customer_conversion_goal_service_grpc.pb.go index 65c27e99..734cc7a0 100644 --- a/services/customer_conversion_goal_service_grpc.pb.go +++ b/services/customer_conversion_goal_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_conversion_goal_service.proto +// source: google/ads/googleads/v17/services/customer_conversion_goal_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CustomerConversionGoalService_MutateCustomerConversionGoals_FullMethodName = "/google.ads.googleads.v16.services.CustomerConversionGoalService/MutateCustomerConversionGoals" + CustomerConversionGoalService_MutateCustomerConversionGoals_FullMethodName = "/google.ads.googleads.v17.services.CustomerConversionGoalService/MutateCustomerConversionGoals" ) // CustomerConversionGoalServiceClient is the client API for CustomerConversionGoalService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage customer conversion goal. type CustomerConversionGoalServiceClient interface { // Creates, updates or removes customer conversion goals. Operation statuses // are returned. @@ -54,8 +56,9 @@ func NewCustomerConversionGoalServiceClient(cc grpc.ClientConnInterface) Custome } func (c *customerConversionGoalServiceClient) MutateCustomerConversionGoals(ctx context.Context, in *MutateCustomerConversionGoalsRequest, opts ...grpc.CallOption) (*MutateCustomerConversionGoalsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCustomerConversionGoalsResponse) - err := c.cc.Invoke(ctx, CustomerConversionGoalService_MutateCustomerConversionGoals_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CustomerConversionGoalService_MutateCustomerConversionGoals_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -65,6 +68,8 @@ func (c *customerConversionGoalServiceClient) MutateCustomerConversionGoals(ctx // CustomerConversionGoalServiceServer is the server API for CustomerConversionGoalService service. // All implementations must embed UnimplementedCustomerConversionGoalServiceServer // for forward compatibility +// +// Service to manage customer conversion goal. type CustomerConversionGoalServiceServer interface { // Creates, updates or removes customer conversion goals. Operation statuses // are returned. @@ -115,7 +120,7 @@ func _CustomerConversionGoalService_MutateCustomerConversionGoals_Handler(srv in // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CustomerConversionGoalService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CustomerConversionGoalService", + ServiceName: "google.ads.googleads.v17.services.CustomerConversionGoalService", HandlerType: (*CustomerConversionGoalServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -124,5 +129,5 @@ var CustomerConversionGoalService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/customer_conversion_goal_service.proto", + Metadata: "google/ads/googleads/v17/services/customer_conversion_goal_service.proto", } diff --git a/services/customer_customizer_service.pb.go b/services/customer_customizer_service.pb.go index 26de514a..60ac1ffd 100644 --- a/services/customer_customizer_service.pb.go +++ b/services/customer_customizer_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_customizer_service.proto +// source: google/ads/googleads/v17/services/customer_customizer_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [CustomerCustomizerService.MutateCustomerCustomizers][google.ads.googleads.v16.services.CustomerCustomizerService.MutateCustomerCustomizers]. +// [CustomerCustomizerService.MutateCustomerCustomizers][google.ads.googleads.v17.services.CustomerCustomizerService.MutateCustomerCustomizers]. type MutateCustomerCustomizersRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -61,13 +61,13 @@ type MutateCustomerCustomizersRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateCustomerCustomizersRequest) Reset() { *x = MutateCustomerCustomizersRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_customizer_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_customizer_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80,7 +80,7 @@ func (x *MutateCustomerCustomizersRequest) String() string { func (*MutateCustomerCustomizersRequest) ProtoMessage() {} func (x *MutateCustomerCustomizersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_customizer_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_customizer_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93,7 +93,7 @@ func (x *MutateCustomerCustomizersRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerCustomizersRequest.ProtoReflect.Descriptor instead. func (*MutateCustomerCustomizersRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_customizer_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_customer_customizer_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomerCustomizersRequest) GetCustomerId() string { @@ -149,7 +149,7 @@ type CustomerCustomizerOperation struct { func (x *CustomerCustomizerOperation) Reset() { *x = CustomerCustomizerOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_customizer_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_customizer_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -162,7 +162,7 @@ func (x *CustomerCustomizerOperation) String() string { func (*CustomerCustomizerOperation) ProtoMessage() {} func (x *CustomerCustomizerOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_customizer_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_customizer_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -175,7 +175,7 @@ func (x *CustomerCustomizerOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerCustomizerOperation.ProtoReflect.Descriptor instead. func (*CustomerCustomizerOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_customizer_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_customer_customizer_service_proto_rawDescGZIP(), []int{1} } func (m *CustomerCustomizerOperation) GetOperation() isCustomerCustomizerOperation_Operation { @@ -238,7 +238,7 @@ type MutateCustomerCustomizersResponse struct { func (x *MutateCustomerCustomizersResponse) Reset() { *x = MutateCustomerCustomizersResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_customizer_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_customizer_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -251,7 +251,7 @@ func (x *MutateCustomerCustomizersResponse) String() string { func (*MutateCustomerCustomizersResponse) ProtoMessage() {} func (x *MutateCustomerCustomizersResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_customizer_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_customizer_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -264,7 +264,7 @@ func (x *MutateCustomerCustomizersResponse) ProtoReflect() protoreflect.Message // Deprecated: Use MutateCustomerCustomizersResponse.ProtoReflect.Descriptor instead. func (*MutateCustomerCustomizersResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_customizer_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_customer_customizer_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomerCustomizersResponse) GetResults() []*MutateCustomerCustomizerResult { @@ -298,7 +298,7 @@ type MutateCustomerCustomizerResult struct { func (x *MutateCustomerCustomizerResult) Reset() { *x = MutateCustomerCustomizerResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_customizer_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_customizer_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -311,7 +311,7 @@ func (x *MutateCustomerCustomizerResult) String() string { func (*MutateCustomerCustomizerResult) ProtoMessage() {} func (x *MutateCustomerCustomizerResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_customizer_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_customizer_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -324,7 +324,7 @@ func (x *MutateCustomerCustomizerResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerCustomizerResult.ProtoReflect.Descriptor instead. func (*MutateCustomerCustomizerResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_customizer_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_customer_customizer_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomerCustomizerResult) GetResourceName() string { @@ -341,21 +341,21 @@ func (x *MutateCustomerCustomizerResult) GetCustomerCustomizer() *resources.Cust return nil } -var File_google_ads_googleads_v16_services_customer_customizer_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_customer_customizer_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_customer_customizer_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_customer_customizer_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 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, 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, 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, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, @@ -374,7 +374,7 @@ var file_google_ads_googleads_v16_services_customer_customizer_service_proto_raw 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x63, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, @@ -386,7 +386,7 @@ var file_google_ads_googleads_v16_services_customer_customizer_service_proto_raw 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, @@ -395,7 +395,7 @@ var file_google_ads_googleads_v16_services_customer_customizer_service_proto_raw 0x69, 0x7a, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x50, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x4a, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, @@ -408,7 +408,7 @@ var file_google_ads_googleads_v16_services_customer_customizer_service_proto_raw 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5b, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 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, 0x36, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x46, 0x0a, 0x15, 0x70, @@ -427,7 +427,7 @@ var file_google_ads_googleads_v16_services_customer_customizer_service_proto_raw 0x13, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x18, 0x02, 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, 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x52, 0x12, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x32, 0xea, 0x02, 0x0a, 0x19, 0x43, 0x75, 0x73, 0x74, 0x6f, @@ -435,17 +435,17 @@ var file_google_ads_googleads_v16_services_customer_customizer_service_proto_raw 0x76, 0x69, 0x63, 0x65, 0x12, 0x85, 0x02, 0x0a, 0x19, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x73, 0x12, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5d, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3e, 0x3a, 0x01, - 0x2a, 0x22, 0x39, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x2a, 0x22, 0x39, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, @@ -455,55 +455,55 @@ var file_google_ads_googleads_v16_services_customer_customizer_service_proto_raw 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x8a, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1e, 0x43, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_customer_customizer_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_customer_customizer_service_proto_rawDescData = file_google_ads_googleads_v16_services_customer_customizer_service_proto_rawDesc + file_google_ads_googleads_v17_services_customer_customizer_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_customer_customizer_service_proto_rawDescData = file_google_ads_googleads_v17_services_customer_customizer_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_customer_customizer_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_customer_customizer_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_customer_customizer_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_customer_customizer_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_customer_customizer_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_customer_customizer_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_customer_customizer_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_customer_customizer_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_customer_customizer_service_proto_rawDescData + return file_google_ads_googleads_v17_services_customer_customizer_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_customer_customizer_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_customer_customizer_service_proto_goTypes = []interface{}{ - (*MutateCustomerCustomizersRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCustomerCustomizersRequest - (*CustomerCustomizerOperation)(nil), // 1: google.ads.googleads.v16.services.CustomerCustomizerOperation - (*MutateCustomerCustomizersResponse)(nil), // 2: google.ads.googleads.v16.services.MutateCustomerCustomizersResponse - (*MutateCustomerCustomizerResult)(nil), // 3: google.ads.googleads.v16.services.MutateCustomerCustomizerResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - (*resources.CustomerCustomizer)(nil), // 5: google.ads.googleads.v16.resources.CustomerCustomizer +var file_google_ads_googleads_v17_services_customer_customizer_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_customer_customizer_service_proto_goTypes = []interface{}{ + (*MutateCustomerCustomizersRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCustomerCustomizersRequest + (*CustomerCustomizerOperation)(nil), // 1: google.ads.googleads.v17.services.CustomerCustomizerOperation + (*MutateCustomerCustomizersResponse)(nil), // 2: google.ads.googleads.v17.services.MutateCustomerCustomizersResponse + (*MutateCustomerCustomizerResult)(nil), // 3: google.ads.googleads.v17.services.MutateCustomerCustomizerResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + (*resources.CustomerCustomizer)(nil), // 5: google.ads.googleads.v17.resources.CustomerCustomizer (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v16_services_customer_customizer_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateCustomerCustomizersRequest.operations:type_name -> google.ads.googleads.v16.services.CustomerCustomizerOperation - 4, // 1: google.ads.googleads.v16.services.MutateCustomerCustomizersRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.CustomerCustomizerOperation.create:type_name -> google.ads.googleads.v16.resources.CustomerCustomizer - 3, // 3: google.ads.googleads.v16.services.MutateCustomerCustomizersResponse.results:type_name -> google.ads.googleads.v16.services.MutateCustomerCustomizerResult - 6, // 4: google.ads.googleads.v16.services.MutateCustomerCustomizersResponse.partial_failure_error:type_name -> google.rpc.Status - 5, // 5: google.ads.googleads.v16.services.MutateCustomerCustomizerResult.customer_customizer:type_name -> google.ads.googleads.v16.resources.CustomerCustomizer - 0, // 6: google.ads.googleads.v16.services.CustomerCustomizerService.MutateCustomerCustomizers:input_type -> google.ads.googleads.v16.services.MutateCustomerCustomizersRequest - 2, // 7: google.ads.googleads.v16.services.CustomerCustomizerService.MutateCustomerCustomizers:output_type -> google.ads.googleads.v16.services.MutateCustomerCustomizersResponse +var file_google_ads_googleads_v17_services_customer_customizer_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateCustomerCustomizersRequest.operations:type_name -> google.ads.googleads.v17.services.CustomerCustomizerOperation + 4, // 1: google.ads.googleads.v17.services.MutateCustomerCustomizersRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.CustomerCustomizerOperation.create:type_name -> google.ads.googleads.v17.resources.CustomerCustomizer + 3, // 3: google.ads.googleads.v17.services.MutateCustomerCustomizersResponse.results:type_name -> google.ads.googleads.v17.services.MutateCustomerCustomizerResult + 6, // 4: google.ads.googleads.v17.services.MutateCustomerCustomizersResponse.partial_failure_error:type_name -> google.rpc.Status + 5, // 5: google.ads.googleads.v17.services.MutateCustomerCustomizerResult.customer_customizer:type_name -> google.ads.googleads.v17.resources.CustomerCustomizer + 0, // 6: google.ads.googleads.v17.services.CustomerCustomizerService.MutateCustomerCustomizers:input_type -> google.ads.googleads.v17.services.MutateCustomerCustomizersRequest + 2, // 7: google.ads.googleads.v17.services.CustomerCustomizerService.MutateCustomerCustomizers:output_type -> google.ads.googleads.v17.services.MutateCustomerCustomizersResponse 7, // [7:8] is the sub-list for method output_type 6, // [6:7] is the sub-list for method input_type 6, // [6:6] is the sub-list for extension type_name @@ -511,13 +511,13 @@ var file_google_ads_googleads_v16_services_customer_customizer_service_proto_dep 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_customer_customizer_service_proto_init() } -func file_google_ads_googleads_v16_services_customer_customizer_service_proto_init() { - if File_google_ads_googleads_v16_services_customer_customizer_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_customer_customizer_service_proto_init() } +func file_google_ads_googleads_v17_services_customer_customizer_service_proto_init() { + if File_google_ads_googleads_v17_services_customer_customizer_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_customer_customizer_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_customizer_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerCustomizersRequest); i { case 0: return &v.state @@ -529,7 +529,7 @@ func file_google_ads_googleads_v16_services_customer_customizer_service_proto_in return nil } } - file_google_ads_googleads_v16_services_customer_customizer_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_customizer_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerCustomizerOperation); i { case 0: return &v.state @@ -541,7 +541,7 @@ func file_google_ads_googleads_v16_services_customer_customizer_service_proto_in return nil } } - file_google_ads_googleads_v16_services_customer_customizer_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_customizer_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerCustomizersResponse); i { case 0: return &v.state @@ -553,7 +553,7 @@ func file_google_ads_googleads_v16_services_customer_customizer_service_proto_in return nil } } - file_google_ads_googleads_v16_services_customer_customizer_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_customizer_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerCustomizerResult); i { case 0: return &v.state @@ -566,7 +566,7 @@ func file_google_ads_googleads_v16_services_customer_customizer_service_proto_in } } } - file_google_ads_googleads_v16_services_customer_customizer_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_customer_customizer_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CustomerCustomizerOperation_Create)(nil), (*CustomerCustomizerOperation_Remove)(nil), } @@ -574,18 +574,18 @@ func file_google_ads_googleads_v16_services_customer_customizer_service_proto_in out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_customer_customizer_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_customer_customizer_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_customer_customizer_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_customer_customizer_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_customer_customizer_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_customer_customizer_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_customer_customizer_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_customer_customizer_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_customer_customizer_service_proto = out.File - file_google_ads_googleads_v16_services_customer_customizer_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_customer_customizer_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_customer_customizer_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_customer_customizer_service_proto = out.File + file_google_ads_googleads_v17_services_customer_customizer_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_customer_customizer_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_customer_customizer_service_proto_depIdxs = nil } diff --git a/services/customer_customizer_service_grpc.pb.go b/services/customer_customizer_service_grpc.pb.go index f786d2c1..a97b167f 100644 --- a/services/customer_customizer_service_grpc.pb.go +++ b/services/customer_customizer_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_customizer_service.proto +// source: google/ads/googleads/v17/services/customer_customizer_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CustomerCustomizerService_MutateCustomerCustomizers_FullMethodName = "/google.ads.googleads.v16.services.CustomerCustomizerService/MutateCustomerCustomizers" + CustomerCustomizerService_MutateCustomerCustomizers_FullMethodName = "/google.ads.googleads.v17.services.CustomerCustomizerService/MutateCustomerCustomizers" ) // CustomerCustomizerServiceClient is the client API for CustomerCustomizerService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage customer customizer type CustomerCustomizerServiceClient interface { // Creates, updates or removes customer customizers. Operation statuses are // returned. @@ -54,8 +56,9 @@ func NewCustomerCustomizerServiceClient(cc grpc.ClientConnInterface) CustomerCus } func (c *customerCustomizerServiceClient) MutateCustomerCustomizers(ctx context.Context, in *MutateCustomerCustomizersRequest, opts ...grpc.CallOption) (*MutateCustomerCustomizersResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCustomerCustomizersResponse) - err := c.cc.Invoke(ctx, CustomerCustomizerService_MutateCustomerCustomizers_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CustomerCustomizerService_MutateCustomerCustomizers_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -65,6 +68,8 @@ func (c *customerCustomizerServiceClient) MutateCustomerCustomizers(ctx context. // CustomerCustomizerServiceServer is the server API for CustomerCustomizerService service. // All implementations must embed UnimplementedCustomerCustomizerServiceServer // for forward compatibility +// +// Service to manage customer customizer type CustomerCustomizerServiceServer interface { // Creates, updates or removes customer customizers. Operation statuses are // returned. @@ -115,7 +120,7 @@ func _CustomerCustomizerService_MutateCustomerCustomizers_Handler(srv interface{ // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CustomerCustomizerService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CustomerCustomizerService", + ServiceName: "google.ads.googleads.v17.services.CustomerCustomizerService", HandlerType: (*CustomerCustomizerServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -124,5 +129,5 @@ var CustomerCustomizerService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/customer_customizer_service.proto", + Metadata: "google/ads/googleads/v17/services/customer_customizer_service.proto", } diff --git a/services/customer_extension_setting_service.pb.go b/services/customer_extension_setting_service.pb.go index d874f228..e34fba88 100644 --- a/services/customer_extension_setting_service.pb.go +++ b/services/customer_extension_setting_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_extension_setting_service.proto +// source: google/ads/googleads/v17/services/customer_extension_setting_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [CustomerExtensionSettingService.MutateCustomerExtensionSettings][google.ads.googleads.v16.services.CustomerExtensionSettingService.MutateCustomerExtensionSettings]. +// [CustomerExtensionSettingService.MutateCustomerExtensionSettings][google.ads.googleads.v17.services.CustomerExtensionSettingService.MutateCustomerExtensionSettings]. type MutateCustomerExtensionSettingsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -62,13 +62,13 @@ type MutateCustomerExtensionSettingsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateCustomerExtensionSettingsRequest) Reset() { *x = MutateCustomerExtensionSettingsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81,7 +81,7 @@ func (x *MutateCustomerExtensionSettingsRequest) String() string { func (*MutateCustomerExtensionSettingsRequest) ProtoMessage() {} func (x *MutateCustomerExtensionSettingsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_extension_setting_service_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 *MutateCustomerExtensionSettingsRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use MutateCustomerExtensionSettingsRequest.ProtoReflect.Descriptor instead. func (*MutateCustomerExtensionSettingsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomerExtensionSettingsRequest) GetCustomerId() string { @@ -153,7 +153,7 @@ type CustomerExtensionSettingOperation struct { func (x *CustomerExtensionSettingOperation) Reset() { *x = CustomerExtensionSettingOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -166,7 +166,7 @@ func (x *CustomerExtensionSettingOperation) String() string { func (*CustomerExtensionSettingOperation) ProtoMessage() {} func (x *CustomerExtensionSettingOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -179,7 +179,7 @@ func (x *CustomerExtensionSettingOperation) ProtoReflect() protoreflect.Message // Deprecated: Use CustomerExtensionSettingOperation.ProtoReflect.Descriptor instead. func (*CustomerExtensionSettingOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_rawDescGZIP(), []int{1} } func (x *CustomerExtensionSettingOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -265,7 +265,7 @@ type MutateCustomerExtensionSettingsResponse struct { func (x *MutateCustomerExtensionSettingsResponse) Reset() { *x = MutateCustomerExtensionSettingsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -278,7 +278,7 @@ func (x *MutateCustomerExtensionSettingsResponse) String() string { func (*MutateCustomerExtensionSettingsResponse) ProtoMessage() {} func (x *MutateCustomerExtensionSettingsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -291,7 +291,7 @@ func (x *MutateCustomerExtensionSettingsResponse) ProtoReflect() protoreflect.Me // Deprecated: Use MutateCustomerExtensionSettingsResponse.ProtoReflect.Descriptor instead. func (*MutateCustomerExtensionSettingsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomerExtensionSettingsResponse) GetPartialFailureError() *status.Status { @@ -325,7 +325,7 @@ type MutateCustomerExtensionSettingResult struct { func (x *MutateCustomerExtensionSettingResult) Reset() { *x = MutateCustomerExtensionSettingResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -338,7 +338,7 @@ func (x *MutateCustomerExtensionSettingResult) String() string { func (*MutateCustomerExtensionSettingResult) ProtoMessage() {} func (x *MutateCustomerExtensionSettingResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -351,7 +351,7 @@ func (x *MutateCustomerExtensionSettingResult) ProtoReflect() protoreflect.Messa // Deprecated: Use MutateCustomerExtensionSettingResult.ProtoReflect.Descriptor instead. func (*MutateCustomerExtensionSettingResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomerExtensionSettingResult) GetResourceName() string { @@ -368,22 +368,22 @@ func (x *MutateCustomerExtensionSettingResult) GetCustomerExtensionSetting() *re return nil } -var File_google_ads_googleads_v16_services_customer_extension_setting_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_customer_extension_setting_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_customer_extension_setting_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, + 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, @@ -404,7 +404,7 @@ var file_google_ads_googleads_v16_services_customer_extension_setting_service_pr 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x69, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, @@ -417,7 +417,7 @@ var file_google_ads_googleads_v16_services_customer_extension_setting_service_pr 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, @@ -430,12 +430,12 @@ var file_google_ads_googleads_v16_services_customer_extension_setting_service_pr 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x56, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x56, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 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, + 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x50, 0x0a, 0x06, @@ -454,7 +454,7 @@ var file_google_ads_googleads_v16_services_customer_extension_setting_service_pr 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x61, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, @@ -470,7 +470,7 @@ var file_google_ads_googleads_v16_services_customer_extension_setting_service_pr 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 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, 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x18, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, @@ -480,17 +480,17 @@ var file_google_ads_googleads_v16_services_customer_extension_setting_service_pr 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x63, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, - 0xe4, 0x93, 0x02, 0x44, 0x3a, 0x01, 0x2a, 0x22, 0x3f, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, + 0xe4, 0x93, 0x02, 0x44, 0x3a, 0x01, 0x2a, 0x22, 0x3f, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, @@ -500,59 +500,59 @@ var file_google_ads_googleads_v16_services_customer_extension_setting_service_pr 0x77, 0x77, 0x77, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x90, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x24, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, - 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, + 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_rawDescData = file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_rawDesc + file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_rawDescData = file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_rawDescData + return file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_goTypes = []interface{}{ - (*MutateCustomerExtensionSettingsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCustomerExtensionSettingsRequest - (*CustomerExtensionSettingOperation)(nil), // 1: google.ads.googleads.v16.services.CustomerExtensionSettingOperation - (*MutateCustomerExtensionSettingsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateCustomerExtensionSettingsResponse - (*MutateCustomerExtensionSettingResult)(nil), // 3: google.ads.googleads.v16.services.MutateCustomerExtensionSettingResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_goTypes = []interface{}{ + (*MutateCustomerExtensionSettingsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCustomerExtensionSettingsRequest + (*CustomerExtensionSettingOperation)(nil), // 1: google.ads.googleads.v17.services.CustomerExtensionSettingOperation + (*MutateCustomerExtensionSettingsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateCustomerExtensionSettingsResponse + (*MutateCustomerExtensionSettingResult)(nil), // 3: google.ads.googleads.v17.services.MutateCustomerExtensionSettingResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.CustomerExtensionSetting)(nil), // 6: google.ads.googleads.v16.resources.CustomerExtensionSetting + (*resources.CustomerExtensionSetting)(nil), // 6: google.ads.googleads.v17.resources.CustomerExtensionSetting (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateCustomerExtensionSettingsRequest.operations:type_name -> google.ads.googleads.v16.services.CustomerExtensionSettingOperation - 4, // 1: google.ads.googleads.v16.services.MutateCustomerExtensionSettingsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.CustomerExtensionSettingOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.CustomerExtensionSettingOperation.create:type_name -> google.ads.googleads.v16.resources.CustomerExtensionSetting - 6, // 4: google.ads.googleads.v16.services.CustomerExtensionSettingOperation.update:type_name -> google.ads.googleads.v16.resources.CustomerExtensionSetting - 7, // 5: google.ads.googleads.v16.services.MutateCustomerExtensionSettingsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v16.services.MutateCustomerExtensionSettingsResponse.results:type_name -> google.ads.googleads.v16.services.MutateCustomerExtensionSettingResult - 6, // 7: google.ads.googleads.v16.services.MutateCustomerExtensionSettingResult.customer_extension_setting:type_name -> google.ads.googleads.v16.resources.CustomerExtensionSetting - 0, // 8: google.ads.googleads.v16.services.CustomerExtensionSettingService.MutateCustomerExtensionSettings:input_type -> google.ads.googleads.v16.services.MutateCustomerExtensionSettingsRequest - 2, // 9: google.ads.googleads.v16.services.CustomerExtensionSettingService.MutateCustomerExtensionSettings:output_type -> google.ads.googleads.v16.services.MutateCustomerExtensionSettingsResponse +var file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateCustomerExtensionSettingsRequest.operations:type_name -> google.ads.googleads.v17.services.CustomerExtensionSettingOperation + 4, // 1: google.ads.googleads.v17.services.MutateCustomerExtensionSettingsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.CustomerExtensionSettingOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.CustomerExtensionSettingOperation.create:type_name -> google.ads.googleads.v17.resources.CustomerExtensionSetting + 6, // 4: google.ads.googleads.v17.services.CustomerExtensionSettingOperation.update:type_name -> google.ads.googleads.v17.resources.CustomerExtensionSetting + 7, // 5: google.ads.googleads.v17.services.MutateCustomerExtensionSettingsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v17.services.MutateCustomerExtensionSettingsResponse.results:type_name -> google.ads.googleads.v17.services.MutateCustomerExtensionSettingResult + 6, // 7: google.ads.googleads.v17.services.MutateCustomerExtensionSettingResult.customer_extension_setting:type_name -> google.ads.googleads.v17.resources.CustomerExtensionSetting + 0, // 8: google.ads.googleads.v17.services.CustomerExtensionSettingService.MutateCustomerExtensionSettings:input_type -> google.ads.googleads.v17.services.MutateCustomerExtensionSettingsRequest + 2, // 9: google.ads.googleads.v17.services.CustomerExtensionSettingService.MutateCustomerExtensionSettings:output_type -> google.ads.googleads.v17.services.MutateCustomerExtensionSettingsResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -560,13 +560,13 @@ var file_google_ads_googleads_v16_services_customer_extension_setting_service_pr 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_init() } -func file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_init() { - if File_google_ads_googleads_v16_services_customer_extension_setting_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_init() } +func file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_init() { + if File_google_ads_googleads_v17_services_customer_extension_setting_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerExtensionSettingsRequest); i { case 0: return &v.state @@ -578,7 +578,7 @@ func file_google_ads_googleads_v16_services_customer_extension_setting_service_p return nil } } - file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerExtensionSettingOperation); i { case 0: return &v.state @@ -590,7 +590,7 @@ func file_google_ads_googleads_v16_services_customer_extension_setting_service_p return nil } } - file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerExtensionSettingsResponse); i { case 0: return &v.state @@ -602,7 +602,7 @@ func file_google_ads_googleads_v16_services_customer_extension_setting_service_p return nil } } - file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerExtensionSettingResult); i { case 0: return &v.state @@ -615,7 +615,7 @@ func file_google_ads_googleads_v16_services_customer_extension_setting_service_p } } } - file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CustomerExtensionSettingOperation_Create)(nil), (*CustomerExtensionSettingOperation_Update)(nil), (*CustomerExtensionSettingOperation_Remove)(nil), @@ -624,18 +624,18 @@ func file_google_ads_googleads_v16_services_customer_extension_setting_service_p out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_customer_extension_setting_service_proto = out.File - file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_customer_extension_setting_service_proto = out.File + file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_depIdxs = nil } diff --git a/services/customer_extension_setting_service_grpc.pb.go b/services/customer_extension_setting_service_grpc.pb.go index 5eb8b1c5..fbb275ae 100644 --- a/services/customer_extension_setting_service_grpc.pb.go +++ b/services/customer_extension_setting_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_extension_setting_service.proto +// source: google/ads/googleads/v17/services/customer_extension_setting_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CustomerExtensionSettingService_MutateCustomerExtensionSettings_FullMethodName = "/google.ads.googleads.v16.services.CustomerExtensionSettingService/MutateCustomerExtensionSettings" + CustomerExtensionSettingService_MutateCustomerExtensionSettings_FullMethodName = "/google.ads.googleads.v17.services.CustomerExtensionSettingService/MutateCustomerExtensionSettings" ) // CustomerExtensionSettingServiceClient is the client API for CustomerExtensionSettingService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage customer extension settings. type CustomerExtensionSettingServiceClient interface { // Creates, updates, or removes customer extension settings. Operation // statuses are returned. @@ -82,8 +84,9 @@ func NewCustomerExtensionSettingServiceClient(cc grpc.ClientConnInterface) Custo } func (c *customerExtensionSettingServiceClient) MutateCustomerExtensionSettings(ctx context.Context, in *MutateCustomerExtensionSettingsRequest, opts ...grpc.CallOption) (*MutateCustomerExtensionSettingsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCustomerExtensionSettingsResponse) - err := c.cc.Invoke(ctx, CustomerExtensionSettingService_MutateCustomerExtensionSettings_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CustomerExtensionSettingService_MutateCustomerExtensionSettings_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -93,6 +96,8 @@ func (c *customerExtensionSettingServiceClient) MutateCustomerExtensionSettings( // CustomerExtensionSettingServiceServer is the server API for CustomerExtensionSettingService service. // All implementations must embed UnimplementedCustomerExtensionSettingServiceServer // for forward compatibility +// +// Service to manage customer extension settings. type CustomerExtensionSettingServiceServer interface { // Creates, updates, or removes customer extension settings. Operation // statuses are returned. @@ -171,7 +176,7 @@ func _CustomerExtensionSettingService_MutateCustomerExtensionSettings_Handler(sr // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CustomerExtensionSettingService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CustomerExtensionSettingService", + ServiceName: "google.ads.googleads.v17.services.CustomerExtensionSettingService", HandlerType: (*CustomerExtensionSettingServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -180,5 +185,5 @@ var CustomerExtensionSettingService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/customer_extension_setting_service.proto", + Metadata: "google/ads/googleads/v17/services/customer_extension_setting_service.proto", } diff --git a/services/customer_feed_service.pb.go b/services/customer_feed_service.pb.go index 53968b4f..f23307c2 100644 --- a/services/customer_feed_service.pb.go +++ b/services/customer_feed_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_feed_service.proto +// source: google/ads/googleads/v17/services/customer_feed_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [CustomerFeedService.MutateCustomerFeeds][google.ads.googleads.v16.services.CustomerFeedService.MutateCustomerFeeds]. +// [CustomerFeedService.MutateCustomerFeeds][google.ads.googleads.v17.services.CustomerFeedService.MutateCustomerFeeds]. type MutateCustomerFeedsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -60,13 +60,13 @@ type MutateCustomerFeedsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateCustomerFeedsRequest) Reset() { *x = MutateCustomerFeedsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_feed_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_feed_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateCustomerFeedsRequest) String() string { func (*MutateCustomerFeedsRequest) ProtoMessage() {} func (x *MutateCustomerFeedsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_feed_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_feed_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateCustomerFeedsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerFeedsRequest.ProtoReflect.Descriptor instead. func (*MutateCustomerFeedsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_feed_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_customer_feed_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomerFeedsRequest) GetCustomerId() string { @@ -151,7 +151,7 @@ type CustomerFeedOperation struct { func (x *CustomerFeedOperation) Reset() { *x = CustomerFeedOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_feed_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_feed_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164,7 +164,7 @@ func (x *CustomerFeedOperation) String() string { func (*CustomerFeedOperation) ProtoMessage() {} func (x *CustomerFeedOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_feed_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_feed_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177,7 +177,7 @@ func (x *CustomerFeedOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerFeedOperation.ProtoReflect.Descriptor instead. func (*CustomerFeedOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_feed_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_customer_feed_service_proto_rawDescGZIP(), []int{1} } func (x *CustomerFeedOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -262,7 +262,7 @@ type MutateCustomerFeedsResponse struct { func (x *MutateCustomerFeedsResponse) Reset() { *x = MutateCustomerFeedsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_feed_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_feed_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -275,7 +275,7 @@ func (x *MutateCustomerFeedsResponse) String() string { func (*MutateCustomerFeedsResponse) ProtoMessage() {} func (x *MutateCustomerFeedsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_feed_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_feed_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -288,7 +288,7 @@ func (x *MutateCustomerFeedsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerFeedsResponse.ProtoReflect.Descriptor instead. func (*MutateCustomerFeedsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_feed_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_customer_feed_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomerFeedsResponse) GetPartialFailureError() *status.Status { @@ -322,7 +322,7 @@ type MutateCustomerFeedResult struct { func (x *MutateCustomerFeedResult) Reset() { *x = MutateCustomerFeedResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_feed_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_feed_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -335,7 +335,7 @@ func (x *MutateCustomerFeedResult) String() string { func (*MutateCustomerFeedResult) ProtoMessage() {} func (x *MutateCustomerFeedResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_feed_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_feed_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -348,7 +348,7 @@ func (x *MutateCustomerFeedResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerFeedResult.ProtoReflect.Descriptor instead. func (*MutateCustomerFeedResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_feed_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_customer_feed_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomerFeedResult) GetResourceName() string { @@ -365,21 +365,21 @@ func (x *MutateCustomerFeedResult) GetCustomerFeed() *resources.CustomerFeed { return nil } -var File_google_ads_googleads_v16_services_customer_feed_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_customer_feed_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_customer_feed_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_customer_feed_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 0x6f, 0x6f, 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, @@ -399,7 +399,7 @@ var file_google_ads_googleads_v16_services_customer_feed_service_proto_rawDesc = 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5d, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, @@ -410,7 +410,7 @@ var file_google_ads_googleads_v16_services_customer_feed_service_proto_rawDesc = 0x74, 0x65, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, + 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, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, @@ -423,12 +423,12 @@ var file_google_ads_googleads_v16_services_customer_feed_service_proto_rawDesc = 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x4a, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 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, 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x4a, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 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, 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x44, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2a, 0xfa, 0x41, 0x27, 0x0a, 0x25, 0x67, 0x6f, 0x6f, @@ -444,7 +444,7 @@ var file_google_ads_googleads_v16_services_customer_feed_service_proto_rawDesc = 0x72, 0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x55, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xc2, 0x01, 0x0a, 0x18, 0x4d, 0x75, 0x74, @@ -457,23 +457,23 @@ var file_google_ads_googleads_v16_services_customer_feed_service_proto_rawDesc = 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x55, 0x0a, 0x0d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x66, 0x65, 0x65, 0x64, 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, 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, 0x52, 0x0c, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, 0x32, 0xcc, 0x02, 0x0a, 0x13, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xed, 0x01, 0x0a, 0x13, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x57, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x38, 0x3a, 0x01, 0x2a, - 0x22, 0x33, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, + 0x22, 0x33, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, @@ -482,58 +482,58 @@ var file_google_ads_googleads_v16_services_customer_feed_service_proto_rawDesc = 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x84, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x18, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, - 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, + 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_customer_feed_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_customer_feed_service_proto_rawDescData = file_google_ads_googleads_v16_services_customer_feed_service_proto_rawDesc + file_google_ads_googleads_v17_services_customer_feed_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_customer_feed_service_proto_rawDescData = file_google_ads_googleads_v17_services_customer_feed_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_customer_feed_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_customer_feed_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_customer_feed_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_customer_feed_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_customer_feed_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_customer_feed_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_customer_feed_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_customer_feed_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_customer_feed_service_proto_rawDescData + return file_google_ads_googleads_v17_services_customer_feed_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_customer_feed_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_customer_feed_service_proto_goTypes = []interface{}{ - (*MutateCustomerFeedsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCustomerFeedsRequest - (*CustomerFeedOperation)(nil), // 1: google.ads.googleads.v16.services.CustomerFeedOperation - (*MutateCustomerFeedsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateCustomerFeedsResponse - (*MutateCustomerFeedResult)(nil), // 3: google.ads.googleads.v16.services.MutateCustomerFeedResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_customer_feed_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_customer_feed_service_proto_goTypes = []interface{}{ + (*MutateCustomerFeedsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCustomerFeedsRequest + (*CustomerFeedOperation)(nil), // 1: google.ads.googleads.v17.services.CustomerFeedOperation + (*MutateCustomerFeedsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateCustomerFeedsResponse + (*MutateCustomerFeedResult)(nil), // 3: google.ads.googleads.v17.services.MutateCustomerFeedResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.CustomerFeed)(nil), // 6: google.ads.googleads.v16.resources.CustomerFeed + (*resources.CustomerFeed)(nil), // 6: google.ads.googleads.v17.resources.CustomerFeed (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_customer_feed_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateCustomerFeedsRequest.operations:type_name -> google.ads.googleads.v16.services.CustomerFeedOperation - 4, // 1: google.ads.googleads.v16.services.MutateCustomerFeedsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.CustomerFeedOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.CustomerFeedOperation.create:type_name -> google.ads.googleads.v16.resources.CustomerFeed - 6, // 4: google.ads.googleads.v16.services.CustomerFeedOperation.update:type_name -> google.ads.googleads.v16.resources.CustomerFeed - 7, // 5: google.ads.googleads.v16.services.MutateCustomerFeedsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v16.services.MutateCustomerFeedsResponse.results:type_name -> google.ads.googleads.v16.services.MutateCustomerFeedResult - 6, // 7: google.ads.googleads.v16.services.MutateCustomerFeedResult.customer_feed:type_name -> google.ads.googleads.v16.resources.CustomerFeed - 0, // 8: google.ads.googleads.v16.services.CustomerFeedService.MutateCustomerFeeds:input_type -> google.ads.googleads.v16.services.MutateCustomerFeedsRequest - 2, // 9: google.ads.googleads.v16.services.CustomerFeedService.MutateCustomerFeeds:output_type -> google.ads.googleads.v16.services.MutateCustomerFeedsResponse +var file_google_ads_googleads_v17_services_customer_feed_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateCustomerFeedsRequest.operations:type_name -> google.ads.googleads.v17.services.CustomerFeedOperation + 4, // 1: google.ads.googleads.v17.services.MutateCustomerFeedsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.CustomerFeedOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.CustomerFeedOperation.create:type_name -> google.ads.googleads.v17.resources.CustomerFeed + 6, // 4: google.ads.googleads.v17.services.CustomerFeedOperation.update:type_name -> google.ads.googleads.v17.resources.CustomerFeed + 7, // 5: google.ads.googleads.v17.services.MutateCustomerFeedsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v17.services.MutateCustomerFeedsResponse.results:type_name -> google.ads.googleads.v17.services.MutateCustomerFeedResult + 6, // 7: google.ads.googleads.v17.services.MutateCustomerFeedResult.customer_feed:type_name -> google.ads.googleads.v17.resources.CustomerFeed + 0, // 8: google.ads.googleads.v17.services.CustomerFeedService.MutateCustomerFeeds:input_type -> google.ads.googleads.v17.services.MutateCustomerFeedsRequest + 2, // 9: google.ads.googleads.v17.services.CustomerFeedService.MutateCustomerFeeds:output_type -> google.ads.googleads.v17.services.MutateCustomerFeedsResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -541,13 +541,13 @@ var file_google_ads_googleads_v16_services_customer_feed_service_proto_depIdxs = 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_customer_feed_service_proto_init() } -func file_google_ads_googleads_v16_services_customer_feed_service_proto_init() { - if File_google_ads_googleads_v16_services_customer_feed_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_customer_feed_service_proto_init() } +func file_google_ads_googleads_v17_services_customer_feed_service_proto_init() { + if File_google_ads_googleads_v17_services_customer_feed_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_customer_feed_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_feed_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerFeedsRequest); i { case 0: return &v.state @@ -559,7 +559,7 @@ func file_google_ads_googleads_v16_services_customer_feed_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_customer_feed_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_feed_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerFeedOperation); i { case 0: return &v.state @@ -571,7 +571,7 @@ func file_google_ads_googleads_v16_services_customer_feed_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_customer_feed_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_feed_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerFeedsResponse); i { case 0: return &v.state @@ -583,7 +583,7 @@ func file_google_ads_googleads_v16_services_customer_feed_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_customer_feed_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_feed_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerFeedResult); i { case 0: return &v.state @@ -596,7 +596,7 @@ func file_google_ads_googleads_v16_services_customer_feed_service_proto_init() { } } } - file_google_ads_googleads_v16_services_customer_feed_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_customer_feed_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CustomerFeedOperation_Create)(nil), (*CustomerFeedOperation_Update)(nil), (*CustomerFeedOperation_Remove)(nil), @@ -605,18 +605,18 @@ func file_google_ads_googleads_v16_services_customer_feed_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_customer_feed_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_customer_feed_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_customer_feed_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_customer_feed_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_customer_feed_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_customer_feed_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_customer_feed_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_customer_feed_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_customer_feed_service_proto = out.File - file_google_ads_googleads_v16_services_customer_feed_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_customer_feed_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_customer_feed_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_customer_feed_service_proto = out.File + file_google_ads_googleads_v17_services_customer_feed_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_customer_feed_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_customer_feed_service_proto_depIdxs = nil } diff --git a/services/customer_feed_service_grpc.pb.go b/services/customer_feed_service_grpc.pb.go index 926282d0..0e0cca74 100644 --- a/services/customer_feed_service_grpc.pb.go +++ b/services/customer_feed_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_feed_service.proto +// source: google/ads/googleads/v17/services/customer_feed_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CustomerFeedService_MutateCustomerFeeds_FullMethodName = "/google.ads.googleads.v16.services.CustomerFeedService/MutateCustomerFeeds" + CustomerFeedService_MutateCustomerFeeds_FullMethodName = "/google.ads.googleads.v17.services.CustomerFeedService/MutateCustomerFeeds" ) // CustomerFeedServiceClient is the client API for CustomerFeedService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage customer feeds. type CustomerFeedServiceClient interface { // Creates, updates, or removes customer feeds. Operation statuses are // returned. @@ -79,8 +81,9 @@ func NewCustomerFeedServiceClient(cc grpc.ClientConnInterface) CustomerFeedServi } func (c *customerFeedServiceClient) MutateCustomerFeeds(ctx context.Context, in *MutateCustomerFeedsRequest, opts ...grpc.CallOption) (*MutateCustomerFeedsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCustomerFeedsResponse) - err := c.cc.Invoke(ctx, CustomerFeedService_MutateCustomerFeeds_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CustomerFeedService_MutateCustomerFeeds_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -90,6 +93,8 @@ func (c *customerFeedServiceClient) MutateCustomerFeeds(ctx context.Context, in // CustomerFeedServiceServer is the server API for CustomerFeedService service. // All implementations must embed UnimplementedCustomerFeedServiceServer // for forward compatibility +// +// Service to manage customer feeds. type CustomerFeedServiceServer interface { // Creates, updates, or removes customer feeds. Operation statuses are // returned. @@ -164,7 +169,7 @@ func _CustomerFeedService_MutateCustomerFeeds_Handler(srv interface{}, ctx conte // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CustomerFeedService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CustomerFeedService", + ServiceName: "google.ads.googleads.v17.services.CustomerFeedService", HandlerType: (*CustomerFeedServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -173,5 +178,5 @@ var CustomerFeedService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/customer_feed_service.proto", + Metadata: "google/ads/googleads/v17/services/customer_feed_service.proto", } diff --git a/services/customer_label_service.pb.go b/services/customer_label_service.pb.go index e29d7050..a968d20c 100644 --- a/services/customer_label_service.pb.go +++ b/services/customer_label_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_label_service.proto +// source: google/ads/googleads/v17/services/customer_label_service.proto package services @@ -38,7 +38,7 @@ const ( ) // Request message for -// [CustomerLabelService.MutateCustomerLabels][google.ads.googleads.v16.services.CustomerLabelService.MutateCustomerLabels]. +// [CustomerLabelService.MutateCustomerLabels][google.ads.googleads.v17.services.CustomerLabelService.MutateCustomerLabels]. type MutateCustomerLabelsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -63,7 +63,7 @@ type MutateCustomerLabelsRequest struct { func (x *MutateCustomerLabelsRequest) Reset() { *x = MutateCustomerLabelsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_label_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_label_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76,7 +76,7 @@ func (x *MutateCustomerLabelsRequest) String() string { func (*MutateCustomerLabelsRequest) ProtoMessage() {} func (x *MutateCustomerLabelsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_label_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_label_service_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 *MutateCustomerLabelsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerLabelsRequest.ProtoReflect.Descriptor instead. func (*MutateCustomerLabelsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_label_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_customer_label_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomerLabelsRequest) GetCustomerId() string { @@ -138,7 +138,7 @@ type CustomerLabelOperation struct { func (x *CustomerLabelOperation) Reset() { *x = CustomerLabelOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_label_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_label_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -151,7 +151,7 @@ func (x *CustomerLabelOperation) String() string { func (*CustomerLabelOperation) ProtoMessage() {} func (x *CustomerLabelOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_label_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_label_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -164,7 +164,7 @@ func (x *CustomerLabelOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerLabelOperation.ProtoReflect.Descriptor instead. func (*CustomerLabelOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_label_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_customer_label_service_proto_rawDescGZIP(), []int{1} } func (m *CustomerLabelOperation) GetOperation() isCustomerLabelOperation_Operation { @@ -228,7 +228,7 @@ type MutateCustomerLabelsResponse struct { func (x *MutateCustomerLabelsResponse) Reset() { *x = MutateCustomerLabelsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_label_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_label_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -241,7 +241,7 @@ func (x *MutateCustomerLabelsResponse) String() string { func (*MutateCustomerLabelsResponse) ProtoMessage() {} func (x *MutateCustomerLabelsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_label_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_label_service_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 *MutateCustomerLabelsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerLabelsResponse.ProtoReflect.Descriptor instead. func (*MutateCustomerLabelsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_label_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_customer_label_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomerLabelsResponse) GetPartialFailureError() *status.Status { @@ -284,7 +284,7 @@ type MutateCustomerLabelResult struct { func (x *MutateCustomerLabelResult) Reset() { *x = MutateCustomerLabelResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_label_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_label_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -297,7 +297,7 @@ func (x *MutateCustomerLabelResult) String() string { func (*MutateCustomerLabelResult) ProtoMessage() {} func (x *MutateCustomerLabelResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_label_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_label_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -310,7 +310,7 @@ func (x *MutateCustomerLabelResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerLabelResult.ProtoReflect.Descriptor instead. func (*MutateCustomerLabelResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_label_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_customer_label_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomerLabelResult) GetResourceName() string { @@ -320,17 +320,17 @@ func (x *MutateCustomerLabelResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_customer_label_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_customer_label_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_customer_label_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_customer_label_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 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, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, @@ -348,7 +348,7 @@ var file_google_ads_googleads_v16_services_customer_label_service_proto_rawDesc 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5e, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, @@ -361,7 +361,7 @@ var file_google_ads_googleads_v16_services_customer_label_service_proto_rawDesc 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4b, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x45, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2b, 0xfa, 0x41, 0x28, 0x0a, 0x26, 0x67, 0x6f, 0x6f, 0x67, 0x6c, @@ -377,7 +377,7 @@ var file_google_ads_googleads_v16_services_customer_label_service_proto_rawDesc 0x72, 0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x56, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x6d, 0x0a, 0x19, 0x4d, 0x75, 0x74, @@ -392,16 +392,16 @@ var file_google_ads_googleads_v16_services_customer_label_service_proto_rawDesc 0x65, 0x12, 0xf1, 0x01, 0x0a, 0x14, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x58, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x39, 0x3a, 0x01, 0x2a, 0x22, - 0x34, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, + 0x34, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, @@ -410,52 +410,52 @@ var file_google_ads_googleads_v16_services_customer_label_service_proto_rawDesc 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x85, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x19, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, + 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_customer_label_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_customer_label_service_proto_rawDescData = file_google_ads_googleads_v16_services_customer_label_service_proto_rawDesc + file_google_ads_googleads_v17_services_customer_label_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_customer_label_service_proto_rawDescData = file_google_ads_googleads_v17_services_customer_label_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_customer_label_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_customer_label_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_customer_label_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_customer_label_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_customer_label_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_customer_label_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_customer_label_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_customer_label_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_customer_label_service_proto_rawDescData + return file_google_ads_googleads_v17_services_customer_label_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_customer_label_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_customer_label_service_proto_goTypes = []interface{}{ - (*MutateCustomerLabelsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCustomerLabelsRequest - (*CustomerLabelOperation)(nil), // 1: google.ads.googleads.v16.services.CustomerLabelOperation - (*MutateCustomerLabelsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateCustomerLabelsResponse - (*MutateCustomerLabelResult)(nil), // 3: google.ads.googleads.v16.services.MutateCustomerLabelResult - (*resources.CustomerLabel)(nil), // 4: google.ads.googleads.v16.resources.CustomerLabel +var file_google_ads_googleads_v17_services_customer_label_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_customer_label_service_proto_goTypes = []interface{}{ + (*MutateCustomerLabelsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCustomerLabelsRequest + (*CustomerLabelOperation)(nil), // 1: google.ads.googleads.v17.services.CustomerLabelOperation + (*MutateCustomerLabelsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateCustomerLabelsResponse + (*MutateCustomerLabelResult)(nil), // 3: google.ads.googleads.v17.services.MutateCustomerLabelResult + (*resources.CustomerLabel)(nil), // 4: google.ads.googleads.v17.resources.CustomerLabel (*status.Status)(nil), // 5: google.rpc.Status } -var file_google_ads_googleads_v16_services_customer_label_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateCustomerLabelsRequest.operations:type_name -> google.ads.googleads.v16.services.CustomerLabelOperation - 4, // 1: google.ads.googleads.v16.services.CustomerLabelOperation.create:type_name -> google.ads.googleads.v16.resources.CustomerLabel - 5, // 2: google.ads.googleads.v16.services.MutateCustomerLabelsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 3: google.ads.googleads.v16.services.MutateCustomerLabelsResponse.results:type_name -> google.ads.googleads.v16.services.MutateCustomerLabelResult - 0, // 4: google.ads.googleads.v16.services.CustomerLabelService.MutateCustomerLabels:input_type -> google.ads.googleads.v16.services.MutateCustomerLabelsRequest - 2, // 5: google.ads.googleads.v16.services.CustomerLabelService.MutateCustomerLabels:output_type -> google.ads.googleads.v16.services.MutateCustomerLabelsResponse +var file_google_ads_googleads_v17_services_customer_label_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateCustomerLabelsRequest.operations:type_name -> google.ads.googleads.v17.services.CustomerLabelOperation + 4, // 1: google.ads.googleads.v17.services.CustomerLabelOperation.create:type_name -> google.ads.googleads.v17.resources.CustomerLabel + 5, // 2: google.ads.googleads.v17.services.MutateCustomerLabelsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 3: google.ads.googleads.v17.services.MutateCustomerLabelsResponse.results:type_name -> google.ads.googleads.v17.services.MutateCustomerLabelResult + 0, // 4: google.ads.googleads.v17.services.CustomerLabelService.MutateCustomerLabels:input_type -> google.ads.googleads.v17.services.MutateCustomerLabelsRequest + 2, // 5: google.ads.googleads.v17.services.CustomerLabelService.MutateCustomerLabels:output_type -> google.ads.googleads.v17.services.MutateCustomerLabelsResponse 5, // [5:6] is the sub-list for method output_type 4, // [4:5] is the sub-list for method input_type 4, // [4:4] is the sub-list for extension type_name @@ -463,13 +463,13 @@ var file_google_ads_googleads_v16_services_customer_label_service_proto_depIdxs 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_customer_label_service_proto_init() } -func file_google_ads_googleads_v16_services_customer_label_service_proto_init() { - if File_google_ads_googleads_v16_services_customer_label_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_customer_label_service_proto_init() } +func file_google_ads_googleads_v17_services_customer_label_service_proto_init() { + if File_google_ads_googleads_v17_services_customer_label_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_customer_label_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_label_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerLabelsRequest); i { case 0: return &v.state @@ -481,7 +481,7 @@ func file_google_ads_googleads_v16_services_customer_label_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_customer_label_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_label_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerLabelOperation); i { case 0: return &v.state @@ -493,7 +493,7 @@ func file_google_ads_googleads_v16_services_customer_label_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_customer_label_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_label_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerLabelsResponse); i { case 0: return &v.state @@ -505,7 +505,7 @@ func file_google_ads_googleads_v16_services_customer_label_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_customer_label_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_label_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerLabelResult); i { case 0: return &v.state @@ -518,7 +518,7 @@ func file_google_ads_googleads_v16_services_customer_label_service_proto_init() } } } - file_google_ads_googleads_v16_services_customer_label_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_customer_label_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CustomerLabelOperation_Create)(nil), (*CustomerLabelOperation_Remove)(nil), } @@ -526,18 +526,18 @@ func file_google_ads_googleads_v16_services_customer_label_service_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_customer_label_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_customer_label_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_customer_label_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_customer_label_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_customer_label_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_customer_label_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_customer_label_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_customer_label_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_customer_label_service_proto = out.File - file_google_ads_googleads_v16_services_customer_label_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_customer_label_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_customer_label_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_customer_label_service_proto = out.File + file_google_ads_googleads_v17_services_customer_label_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_customer_label_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_customer_label_service_proto_depIdxs = nil } diff --git a/services/customer_label_service_grpc.pb.go b/services/customer_label_service_grpc.pb.go index 694daeb8..d50a5d1d 100644 --- a/services/customer_label_service_grpc.pb.go +++ b/services/customer_label_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_label_service.proto +// source: google/ads/googleads/v17/services/customer_label_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CustomerLabelService_MutateCustomerLabels_FullMethodName = "/google.ads.googleads.v16.services.CustomerLabelService/MutateCustomerLabels" + CustomerLabelService_MutateCustomerLabels_FullMethodName = "/google.ads.googleads.v17.services.CustomerLabelService/MutateCustomerLabels" ) // CustomerLabelServiceClient is the client API for CustomerLabelService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage labels on customers. type CustomerLabelServiceClient interface { // Creates and removes customer-label relationships. // Operation statuses are returned. @@ -66,8 +68,9 @@ func NewCustomerLabelServiceClient(cc grpc.ClientConnInterface) CustomerLabelSer } func (c *customerLabelServiceClient) MutateCustomerLabels(ctx context.Context, in *MutateCustomerLabelsRequest, opts ...grpc.CallOption) (*MutateCustomerLabelsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCustomerLabelsResponse) - err := c.cc.Invoke(ctx, CustomerLabelService_MutateCustomerLabels_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CustomerLabelService_MutateCustomerLabels_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -77,6 +80,8 @@ func (c *customerLabelServiceClient) MutateCustomerLabels(ctx context.Context, i // CustomerLabelServiceServer is the server API for CustomerLabelService service. // All implementations must embed UnimplementedCustomerLabelServiceServer // for forward compatibility +// +// Service to manage labels on customers. type CustomerLabelServiceServer interface { // Creates and removes customer-label relationships. // Operation statuses are returned. @@ -138,7 +143,7 @@ func _CustomerLabelService_MutateCustomerLabels_Handler(srv interface{}, ctx con // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CustomerLabelService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CustomerLabelService", + ServiceName: "google.ads.googleads.v17.services.CustomerLabelService", HandlerType: (*CustomerLabelServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -147,5 +152,5 @@ var CustomerLabelService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/customer_label_service.proto", + Metadata: "google/ads/googleads/v17/services/customer_label_service.proto", } diff --git a/services/customer_lifecycle_goal_service.pb.go b/services/customer_lifecycle_goal_service.pb.go index 419b667c..eceb6ecd 100644 --- a/services/customer_lifecycle_goal_service.pb.go +++ b/services/customer_lifecycle_goal_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_lifecycle_goal_service.proto +// source: google/ads/googleads/v17/services/customer_lifecycle_goal_service.proto package services @@ -56,7 +56,7 @@ type ConfigureCustomerLifecycleGoalsRequest struct { func (x *ConfigureCustomerLifecycleGoalsRequest) Reset() { *x = ConfigureCustomerLifecycleGoalsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -69,7 +69,7 @@ func (x *ConfigureCustomerLifecycleGoalsRequest) String() string { func (*ConfigureCustomerLifecycleGoalsRequest) ProtoMessage() {} func (x *ConfigureCustomerLifecycleGoalsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_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 *ConfigureCustomerLifecycleGoalsRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use ConfigureCustomerLifecycleGoalsRequest.ProtoReflect.Descriptor instead. func (*ConfigureCustomerLifecycleGoalsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_rawDescGZIP(), []int{0} } func (x *ConfigureCustomerLifecycleGoalsRequest) GetCustomerId() string { @@ -127,7 +127,7 @@ type CustomerLifecycleGoalOperation struct { func (x *CustomerLifecycleGoalOperation) Reset() { *x = CustomerLifecycleGoalOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -140,7 +140,7 @@ func (x *CustomerLifecycleGoalOperation) String() string { func (*CustomerLifecycleGoalOperation) ProtoMessage() {} func (x *CustomerLifecycleGoalOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_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 *CustomerLifecycleGoalOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerLifecycleGoalOperation.ProtoReflect.Descriptor instead. func (*CustomerLifecycleGoalOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_rawDescGZIP(), []int{1} } func (x *CustomerLifecycleGoalOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -216,7 +216,7 @@ type ConfigureCustomerLifecycleGoalsResponse struct { func (x *ConfigureCustomerLifecycleGoalsResponse) Reset() { *x = ConfigureCustomerLifecycleGoalsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -229,7 +229,7 @@ func (x *ConfigureCustomerLifecycleGoalsResponse) String() string { func (*ConfigureCustomerLifecycleGoalsResponse) ProtoMessage() {} func (x *ConfigureCustomerLifecycleGoalsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -242,7 +242,7 @@ func (x *ConfigureCustomerLifecycleGoalsResponse) ProtoReflect() protoreflect.Me // Deprecated: Use ConfigureCustomerLifecycleGoalsResponse.ProtoReflect.Descriptor instead. func (*ConfigureCustomerLifecycleGoalsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_rawDescGZIP(), []int{2} } func (x *ConfigureCustomerLifecycleGoalsResponse) GetResult() *ConfigureCustomerLifecycleGoalsResult { @@ -265,7 +265,7 @@ type ConfigureCustomerLifecycleGoalsResult struct { func (x *ConfigureCustomerLifecycleGoalsResult) Reset() { *x = ConfigureCustomerLifecycleGoalsResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -278,7 +278,7 @@ func (x *ConfigureCustomerLifecycleGoalsResult) String() string { func (*ConfigureCustomerLifecycleGoalsResult) ProtoMessage() {} func (x *ConfigureCustomerLifecycleGoalsResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -291,7 +291,7 @@ func (x *ConfigureCustomerLifecycleGoalsResult) ProtoReflect() protoreflect.Mess // Deprecated: Use ConfigureCustomerLifecycleGoalsResult.ProtoReflect.Descriptor instead. func (*ConfigureCustomerLifecycleGoalsResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_rawDescGZIP(), []int{3} } func (x *ConfigureCustomerLifecycleGoalsResult) GetResourceName() string { @@ -301,18 +301,18 @@ func (x *ConfigureCustomerLifecycleGoalsResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x40, 0x67, 0x6f, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 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, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, @@ -332,7 +332,7 @@ var file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto 0x65, 0x72, 0x49, 0x64, 0x12, 0x64, 0x0a, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 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, 0x36, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x0a, 0x0d, 0x76, 0x61, @@ -347,12 +347,12 @@ var file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x53, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x53, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 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, 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, @@ -361,7 +361,7 @@ var file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto 0x6f, 0x61, 0x6c, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x60, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x73, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x81, @@ -379,17 +379,17 @@ var file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x66, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x77, 0xda, 0x41, 0x15, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x59, 0x3a, 0x01, - 0x2a, 0x22, 0x54, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x2a, 0x22, 0x54, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x3a, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, @@ -400,54 +400,54 @@ var file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto 0x77, 0x77, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x8d, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x21, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, + 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_rawDescData = file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_rawDesc + file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_rawDescData = file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_rawDescData + return file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_goTypes = []interface{}{ - (*ConfigureCustomerLifecycleGoalsRequest)(nil), // 0: google.ads.googleads.v16.services.ConfigureCustomerLifecycleGoalsRequest - (*CustomerLifecycleGoalOperation)(nil), // 1: google.ads.googleads.v16.services.CustomerLifecycleGoalOperation - (*ConfigureCustomerLifecycleGoalsResponse)(nil), // 2: google.ads.googleads.v16.services.ConfigureCustomerLifecycleGoalsResponse - (*ConfigureCustomerLifecycleGoalsResult)(nil), // 3: google.ads.googleads.v16.services.ConfigureCustomerLifecycleGoalsResult +var file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_goTypes = []interface{}{ + (*ConfigureCustomerLifecycleGoalsRequest)(nil), // 0: google.ads.googleads.v17.services.ConfigureCustomerLifecycleGoalsRequest + (*CustomerLifecycleGoalOperation)(nil), // 1: google.ads.googleads.v17.services.CustomerLifecycleGoalOperation + (*ConfigureCustomerLifecycleGoalsResponse)(nil), // 2: google.ads.googleads.v17.services.ConfigureCustomerLifecycleGoalsResponse + (*ConfigureCustomerLifecycleGoalsResult)(nil), // 3: google.ads.googleads.v17.services.ConfigureCustomerLifecycleGoalsResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.CustomerLifecycleGoal)(nil), // 5: google.ads.googleads.v16.resources.CustomerLifecycleGoal -} -var file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.ConfigureCustomerLifecycleGoalsRequest.operation:type_name -> google.ads.googleads.v16.services.CustomerLifecycleGoalOperation - 4, // 1: google.ads.googleads.v16.services.CustomerLifecycleGoalOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v16.services.CustomerLifecycleGoalOperation.create:type_name -> google.ads.googleads.v16.resources.CustomerLifecycleGoal - 5, // 3: google.ads.googleads.v16.services.CustomerLifecycleGoalOperation.update:type_name -> google.ads.googleads.v16.resources.CustomerLifecycleGoal - 3, // 4: google.ads.googleads.v16.services.ConfigureCustomerLifecycleGoalsResponse.result:type_name -> google.ads.googleads.v16.services.ConfigureCustomerLifecycleGoalsResult - 0, // 5: google.ads.googleads.v16.services.CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals:input_type -> google.ads.googleads.v16.services.ConfigureCustomerLifecycleGoalsRequest - 2, // 6: google.ads.googleads.v16.services.CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals:output_type -> google.ads.googleads.v16.services.ConfigureCustomerLifecycleGoalsResponse + (*resources.CustomerLifecycleGoal)(nil), // 5: google.ads.googleads.v17.resources.CustomerLifecycleGoal +} +var file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.ConfigureCustomerLifecycleGoalsRequest.operation:type_name -> google.ads.googleads.v17.services.CustomerLifecycleGoalOperation + 4, // 1: google.ads.googleads.v17.services.CustomerLifecycleGoalOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v17.services.CustomerLifecycleGoalOperation.create:type_name -> google.ads.googleads.v17.resources.CustomerLifecycleGoal + 5, // 3: google.ads.googleads.v17.services.CustomerLifecycleGoalOperation.update:type_name -> google.ads.googleads.v17.resources.CustomerLifecycleGoal + 3, // 4: google.ads.googleads.v17.services.ConfigureCustomerLifecycleGoalsResponse.result:type_name -> google.ads.googleads.v17.services.ConfigureCustomerLifecycleGoalsResult + 0, // 5: google.ads.googleads.v17.services.CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals:input_type -> google.ads.googleads.v17.services.ConfigureCustomerLifecycleGoalsRequest + 2, // 6: google.ads.googleads.v17.services.CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals:output_type -> google.ads.googleads.v17.services.ConfigureCustomerLifecycleGoalsResponse 6, // [6:7] is the sub-list for method output_type 5, // [5:6] is the sub-list for method input_type 5, // [5:5] is the sub-list for extension type_name @@ -455,13 +455,13 @@ var file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto 0, // [0:5] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_init() } -func file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_init() { - if File_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_init() } +func file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_init() { + if File_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConfigureCustomerLifecycleGoalsRequest); i { case 0: return &v.state @@ -473,7 +473,7 @@ func file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_prot return nil } } - file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerLifecycleGoalOperation); i { case 0: return &v.state @@ -485,7 +485,7 @@ func file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_prot return nil } } - file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConfigureCustomerLifecycleGoalsResponse); i { case 0: return &v.state @@ -497,7 +497,7 @@ func file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_prot return nil } } - file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConfigureCustomerLifecycleGoalsResult); i { case 0: return &v.state @@ -510,7 +510,7 @@ func file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_prot } } } - file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CustomerLifecycleGoalOperation_Create)(nil), (*CustomerLifecycleGoalOperation_Update)(nil), } @@ -518,18 +518,18 @@ func file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_prot out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto = out.File - file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_customer_lifecycle_goal_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto = out.File + file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_customer_lifecycle_goal_service_proto_depIdxs = nil } diff --git a/services/customer_lifecycle_goal_service_grpc.pb.go b/services/customer_lifecycle_goal_service_grpc.pb.go index af11ef9c..eb196037 100644 --- a/services/customer_lifecycle_goal_service_grpc.pb.go +++ b/services/customer_lifecycle_goal_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_lifecycle_goal_service.proto +// source: google/ads/googleads/v17/services/customer_lifecycle_goal_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CustomerLifecycleGoalService_ConfigureCustomerLifecycleGoals_FullMethodName = "/google.ads.googleads.v16.services.CustomerLifecycleGoalService/ConfigureCustomerLifecycleGoals" + CustomerLifecycleGoalService_ConfigureCustomerLifecycleGoals_FullMethodName = "/google.ads.googleads.v17.services.CustomerLifecycleGoalService/ConfigureCustomerLifecycleGoals" ) // CustomerLifecycleGoalServiceClient is the client API for CustomerLifecycleGoalService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to configure customer lifecycle goals. type CustomerLifecycleGoalServiceClient interface { // Process the given customer lifecycle configurations. // @@ -63,8 +65,9 @@ func NewCustomerLifecycleGoalServiceClient(cc grpc.ClientConnInterface) Customer } func (c *customerLifecycleGoalServiceClient) ConfigureCustomerLifecycleGoals(ctx context.Context, in *ConfigureCustomerLifecycleGoalsRequest, opts ...grpc.CallOption) (*ConfigureCustomerLifecycleGoalsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(ConfigureCustomerLifecycleGoalsResponse) - err := c.cc.Invoke(ctx, CustomerLifecycleGoalService_ConfigureCustomerLifecycleGoals_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CustomerLifecycleGoalService_ConfigureCustomerLifecycleGoals_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -74,6 +77,8 @@ func (c *customerLifecycleGoalServiceClient) ConfigureCustomerLifecycleGoals(ctx // CustomerLifecycleGoalServiceServer is the server API for CustomerLifecycleGoalService service. // All implementations must embed UnimplementedCustomerLifecycleGoalServiceServer // for forward compatibility +// +// Service to configure customer lifecycle goals. type CustomerLifecycleGoalServiceServer interface { // Process the given customer lifecycle configurations. // @@ -133,7 +138,7 @@ func _CustomerLifecycleGoalService_ConfigureCustomerLifecycleGoals_Handler(srv i // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CustomerLifecycleGoalService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CustomerLifecycleGoalService", + ServiceName: "google.ads.googleads.v17.services.CustomerLifecycleGoalService", HandlerType: (*CustomerLifecycleGoalServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -142,5 +147,5 @@ var CustomerLifecycleGoalService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/customer_lifecycle_goal_service.proto", + Metadata: "google/ads/googleads/v17/services/customer_lifecycle_goal_service.proto", } diff --git a/services/customer_manager_link_service.pb.go b/services/customer_manager_link_service.pb.go index 92644121..3f1042bb 100644 --- a/services/customer_manager_link_service.pb.go +++ b/services/customer_manager_link_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_manager_link_service.proto +// source: google/ads/googleads/v17/services/customer_manager_link_service.proto package services @@ -38,7 +38,7 @@ const ( ) // Request message for -// [CustomerManagerLinkService.MutateCustomerManagerLink][google.ads.googleads.v16.services.CustomerManagerLinkService.MutateCustomerManagerLink]. +// [CustomerManagerLinkService.MutateCustomerManagerLink][google.ads.googleads.v17.services.CustomerManagerLinkService.MutateCustomerManagerLink]. type MutateCustomerManagerLinkRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -58,7 +58,7 @@ type MutateCustomerManagerLinkRequest struct { func (x *MutateCustomerManagerLinkRequest) Reset() { *x = MutateCustomerManagerLinkRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_manager_link_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_manager_link_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -71,7 +71,7 @@ func (x *MutateCustomerManagerLinkRequest) String() string { func (*MutateCustomerManagerLinkRequest) ProtoMessage() {} func (x *MutateCustomerManagerLinkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_manager_link_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_manager_link_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84,7 +84,7 @@ func (x *MutateCustomerManagerLinkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerManagerLinkRequest.ProtoReflect.Descriptor instead. func (*MutateCustomerManagerLinkRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_manager_link_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_customer_manager_link_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomerManagerLinkRequest) GetCustomerId() string { @@ -109,7 +109,7 @@ func (x *MutateCustomerManagerLinkRequest) GetValidateOnly() bool { } // Request message for -// [CustomerManagerLinkService.MoveManagerLink][google.ads.googleads.v16.services.CustomerManagerLinkService.MoveManagerLink]. +// [CustomerManagerLinkService.MoveManagerLink][google.ads.googleads.v17.services.CustomerManagerLinkService.MoveManagerLink]. type MoveManagerLinkRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -133,7 +133,7 @@ type MoveManagerLinkRequest struct { func (x *MoveManagerLinkRequest) Reset() { *x = MoveManagerLinkRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_manager_link_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_manager_link_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -146,7 +146,7 @@ func (x *MoveManagerLinkRequest) String() string { func (*MoveManagerLinkRequest) ProtoMessage() {} func (x *MoveManagerLinkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_manager_link_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_manager_link_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -159,7 +159,7 @@ func (x *MoveManagerLinkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MoveManagerLinkRequest.ProtoReflect.Descriptor instead. func (*MoveManagerLinkRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_manager_link_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_customer_manager_link_service_proto_rawDescGZIP(), []int{1} } func (x *MoveManagerLinkRequest) GetCustomerId() string { @@ -213,7 +213,7 @@ type CustomerManagerLinkOperation struct { func (x *CustomerManagerLinkOperation) Reset() { *x = CustomerManagerLinkOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_manager_link_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_manager_link_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -226,7 +226,7 @@ func (x *CustomerManagerLinkOperation) String() string { func (*CustomerManagerLinkOperation) ProtoMessage() {} func (x *CustomerManagerLinkOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_manager_link_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_manager_link_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -239,7 +239,7 @@ func (x *CustomerManagerLinkOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerManagerLinkOperation.ProtoReflect.Descriptor instead. func (*CustomerManagerLinkOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_manager_link_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_customer_manager_link_service_proto_rawDescGZIP(), []int{2} } func (x *CustomerManagerLinkOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -287,7 +287,7 @@ type MutateCustomerManagerLinkResponse struct { func (x *MutateCustomerManagerLinkResponse) Reset() { *x = MutateCustomerManagerLinkResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_manager_link_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_manager_link_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -300,7 +300,7 @@ func (x *MutateCustomerManagerLinkResponse) String() string { func (*MutateCustomerManagerLinkResponse) ProtoMessage() {} func (x *MutateCustomerManagerLinkResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_manager_link_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_manager_link_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -313,7 +313,7 @@ func (x *MutateCustomerManagerLinkResponse) ProtoReflect() protoreflect.Message // Deprecated: Use MutateCustomerManagerLinkResponse.ProtoReflect.Descriptor instead. func (*MutateCustomerManagerLinkResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_manager_link_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_customer_manager_link_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomerManagerLinkResponse) GetResults() []*MutateCustomerManagerLinkResult { @@ -338,7 +338,7 @@ type MoveManagerLinkResponse struct { func (x *MoveManagerLinkResponse) Reset() { *x = MoveManagerLinkResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_manager_link_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_customer_manager_link_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -351,7 +351,7 @@ func (x *MoveManagerLinkResponse) String() string { func (*MoveManagerLinkResponse) ProtoMessage() {} func (x *MoveManagerLinkResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_manager_link_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_customer_manager_link_service_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -364,7 +364,7 @@ func (x *MoveManagerLinkResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MoveManagerLinkResponse.ProtoReflect.Descriptor instead. func (*MoveManagerLinkResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_manager_link_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v17_services_customer_manager_link_service_proto_rawDescGZIP(), []int{4} } func (x *MoveManagerLinkResponse) GetResourceName() string { @@ -387,7 +387,7 @@ type MutateCustomerManagerLinkResult struct { func (x *MutateCustomerManagerLinkResult) Reset() { *x = MutateCustomerManagerLinkResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_manager_link_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_customer_manager_link_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -400,7 +400,7 @@ func (x *MutateCustomerManagerLinkResult) String() string { func (*MutateCustomerManagerLinkResult) ProtoMessage() {} func (x *MutateCustomerManagerLinkResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_manager_link_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_customer_manager_link_service_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -413,7 +413,7 @@ func (x *MutateCustomerManagerLinkResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerManagerLinkResult.ProtoReflect.Descriptor instead. func (*MutateCustomerManagerLinkResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_manager_link_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v17_services_customer_manager_link_service_proto_rawDescGZIP(), []int{5} } func (x *MutateCustomerManagerLinkResult) GetResourceName() string { @@ -423,18 +423,18 @@ func (x *MutateCustomerManagerLinkResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_customer_manager_link_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_customer_manager_link_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_customer_manager_link_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_customer_manager_link_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, + 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, @@ -453,7 +453,7 @@ var file_google_ads_googleads_v16_services_customer_manager_link_service_proto_r 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x64, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, @@ -481,7 +481,7 @@ var file_google_ads_googleads_v16_services_customer_manager_link_service_proto_r 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x51, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x81, 0x01, 0x0a, 0x21, 0x4d, 0x75, @@ -489,7 +489,7 @@ var file_google_ads_googleads_v16_services_customer_manager_link_service_proto_r 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5c, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 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, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x71, 0x0a, @@ -513,33 +513,33 @@ var file_google_ads_googleads_v16_services_customer_manager_link_service_proto_r 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5e, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, - 0xe4, 0x93, 0x02, 0x3f, 0x3a, 0x01, 0x2a, 0x22, 0x3a, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, + 0xe4, 0x93, 0x02, 0x3f, 0x3a, 0x01, 0x2a, 0x22, 0x3a, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x12, 0x92, 0x02, 0x0a, 0x0f, 0x4d, 0x6f, 0x76, 0x65, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x6f, 0x76, 0x65, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x6f, 0x76, 0x65, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x6f, 0x76, 0x65, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x87, 0x01, 0xda, 0x41, 0x36, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x2c, 0x6e, 0x65, 0x77, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x48, - 0x3a, 0x01, 0x2a, 0x22, 0x43, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x3a, 0x01, 0x2a, 0x22, 0x43, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x73, 0x3a, 0x6d, 0x6f, 0x76, 0x65, 0x4d, 0x61, 0x6e, @@ -549,57 +549,57 @@ var file_google_ads_googleads_v16_services_customer_manager_link_service_proto_r 0x77, 0x77, 0x77, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x8b, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1f, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, + 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, + 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_customer_manager_link_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_customer_manager_link_service_proto_rawDescData = file_google_ads_googleads_v16_services_customer_manager_link_service_proto_rawDesc + file_google_ads_googleads_v17_services_customer_manager_link_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_customer_manager_link_service_proto_rawDescData = file_google_ads_googleads_v17_services_customer_manager_link_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_customer_manager_link_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_customer_manager_link_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_customer_manager_link_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_customer_manager_link_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_customer_manager_link_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_customer_manager_link_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_customer_manager_link_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_customer_manager_link_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_customer_manager_link_service_proto_rawDescData + return file_google_ads_googleads_v17_services_customer_manager_link_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_customer_manager_link_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) -var file_google_ads_googleads_v16_services_customer_manager_link_service_proto_goTypes = []interface{}{ - (*MutateCustomerManagerLinkRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCustomerManagerLinkRequest - (*MoveManagerLinkRequest)(nil), // 1: google.ads.googleads.v16.services.MoveManagerLinkRequest - (*CustomerManagerLinkOperation)(nil), // 2: google.ads.googleads.v16.services.CustomerManagerLinkOperation - (*MutateCustomerManagerLinkResponse)(nil), // 3: google.ads.googleads.v16.services.MutateCustomerManagerLinkResponse - (*MoveManagerLinkResponse)(nil), // 4: google.ads.googleads.v16.services.MoveManagerLinkResponse - (*MutateCustomerManagerLinkResult)(nil), // 5: google.ads.googleads.v16.services.MutateCustomerManagerLinkResult +var file_google_ads_googleads_v17_services_customer_manager_link_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) +var file_google_ads_googleads_v17_services_customer_manager_link_service_proto_goTypes = []interface{}{ + (*MutateCustomerManagerLinkRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCustomerManagerLinkRequest + (*MoveManagerLinkRequest)(nil), // 1: google.ads.googleads.v17.services.MoveManagerLinkRequest + (*CustomerManagerLinkOperation)(nil), // 2: google.ads.googleads.v17.services.CustomerManagerLinkOperation + (*MutateCustomerManagerLinkResponse)(nil), // 3: google.ads.googleads.v17.services.MutateCustomerManagerLinkResponse + (*MoveManagerLinkResponse)(nil), // 4: google.ads.googleads.v17.services.MoveManagerLinkResponse + (*MutateCustomerManagerLinkResult)(nil), // 5: google.ads.googleads.v17.services.MutateCustomerManagerLinkResult (*fieldmaskpb.FieldMask)(nil), // 6: google.protobuf.FieldMask - (*resources.CustomerManagerLink)(nil), // 7: google.ads.googleads.v16.resources.CustomerManagerLink -} -var file_google_ads_googleads_v16_services_customer_manager_link_service_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v16.services.MutateCustomerManagerLinkRequest.operations:type_name -> google.ads.googleads.v16.services.CustomerManagerLinkOperation - 6, // 1: google.ads.googleads.v16.services.CustomerManagerLinkOperation.update_mask:type_name -> google.protobuf.FieldMask - 7, // 2: google.ads.googleads.v16.services.CustomerManagerLinkOperation.update:type_name -> google.ads.googleads.v16.resources.CustomerManagerLink - 5, // 3: google.ads.googleads.v16.services.MutateCustomerManagerLinkResponse.results:type_name -> google.ads.googleads.v16.services.MutateCustomerManagerLinkResult - 0, // 4: google.ads.googleads.v16.services.CustomerManagerLinkService.MutateCustomerManagerLink:input_type -> google.ads.googleads.v16.services.MutateCustomerManagerLinkRequest - 1, // 5: google.ads.googleads.v16.services.CustomerManagerLinkService.MoveManagerLink:input_type -> google.ads.googleads.v16.services.MoveManagerLinkRequest - 3, // 6: google.ads.googleads.v16.services.CustomerManagerLinkService.MutateCustomerManagerLink:output_type -> google.ads.googleads.v16.services.MutateCustomerManagerLinkResponse - 4, // 7: google.ads.googleads.v16.services.CustomerManagerLinkService.MoveManagerLink:output_type -> google.ads.googleads.v16.services.MoveManagerLinkResponse + (*resources.CustomerManagerLink)(nil), // 7: google.ads.googleads.v17.resources.CustomerManagerLink +} +var file_google_ads_googleads_v17_services_customer_manager_link_service_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v17.services.MutateCustomerManagerLinkRequest.operations:type_name -> google.ads.googleads.v17.services.CustomerManagerLinkOperation + 6, // 1: google.ads.googleads.v17.services.CustomerManagerLinkOperation.update_mask:type_name -> google.protobuf.FieldMask + 7, // 2: google.ads.googleads.v17.services.CustomerManagerLinkOperation.update:type_name -> google.ads.googleads.v17.resources.CustomerManagerLink + 5, // 3: google.ads.googleads.v17.services.MutateCustomerManagerLinkResponse.results:type_name -> google.ads.googleads.v17.services.MutateCustomerManagerLinkResult + 0, // 4: google.ads.googleads.v17.services.CustomerManagerLinkService.MutateCustomerManagerLink:input_type -> google.ads.googleads.v17.services.MutateCustomerManagerLinkRequest + 1, // 5: google.ads.googleads.v17.services.CustomerManagerLinkService.MoveManagerLink:input_type -> google.ads.googleads.v17.services.MoveManagerLinkRequest + 3, // 6: google.ads.googleads.v17.services.CustomerManagerLinkService.MutateCustomerManagerLink:output_type -> google.ads.googleads.v17.services.MutateCustomerManagerLinkResponse + 4, // 7: google.ads.googleads.v17.services.CustomerManagerLinkService.MoveManagerLink:output_type -> google.ads.googleads.v17.services.MoveManagerLinkResponse 6, // [6:8] is the sub-list for method output_type 4, // [4:6] is the sub-list for method input_type 4, // [4:4] is the sub-list for extension type_name @@ -607,13 +607,13 @@ var file_google_ads_googleads_v16_services_customer_manager_link_service_proto_d 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_customer_manager_link_service_proto_init() } -func file_google_ads_googleads_v16_services_customer_manager_link_service_proto_init() { - if File_google_ads_googleads_v16_services_customer_manager_link_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_customer_manager_link_service_proto_init() } +func file_google_ads_googleads_v17_services_customer_manager_link_service_proto_init() { + if File_google_ads_googleads_v17_services_customer_manager_link_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_customer_manager_link_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_manager_link_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerManagerLinkRequest); i { case 0: return &v.state @@ -625,7 +625,7 @@ func file_google_ads_googleads_v16_services_customer_manager_link_service_proto_ return nil } } - file_google_ads_googleads_v16_services_customer_manager_link_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_manager_link_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MoveManagerLinkRequest); i { case 0: return &v.state @@ -637,7 +637,7 @@ func file_google_ads_googleads_v16_services_customer_manager_link_service_proto_ return nil } } - file_google_ads_googleads_v16_services_customer_manager_link_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_manager_link_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerManagerLinkOperation); i { case 0: return &v.state @@ -649,7 +649,7 @@ func file_google_ads_googleads_v16_services_customer_manager_link_service_proto_ return nil } } - file_google_ads_googleads_v16_services_customer_manager_link_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_manager_link_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerManagerLinkResponse); i { case 0: return &v.state @@ -661,7 +661,7 @@ func file_google_ads_googleads_v16_services_customer_manager_link_service_proto_ return nil } } - file_google_ads_googleads_v16_services_customer_manager_link_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_manager_link_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MoveManagerLinkResponse); i { case 0: return &v.state @@ -673,7 +673,7 @@ func file_google_ads_googleads_v16_services_customer_manager_link_service_proto_ return nil } } - file_google_ads_googleads_v16_services_customer_manager_link_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_manager_link_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerManagerLinkResult); i { case 0: return &v.state @@ -686,25 +686,25 @@ func file_google_ads_googleads_v16_services_customer_manager_link_service_proto_ } } } - file_google_ads_googleads_v16_services_customer_manager_link_service_proto_msgTypes[2].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_customer_manager_link_service_proto_msgTypes[2].OneofWrappers = []interface{}{ (*CustomerManagerLinkOperation_Update)(nil), } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_customer_manager_link_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_customer_manager_link_service_proto_rawDesc, NumEnums: 0, NumMessages: 6, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_customer_manager_link_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_customer_manager_link_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_customer_manager_link_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_customer_manager_link_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_customer_manager_link_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_customer_manager_link_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_customer_manager_link_service_proto = out.File - file_google_ads_googleads_v16_services_customer_manager_link_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_customer_manager_link_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_customer_manager_link_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_customer_manager_link_service_proto = out.File + file_google_ads_googleads_v17_services_customer_manager_link_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_customer_manager_link_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_customer_manager_link_service_proto_depIdxs = nil } diff --git a/services/customer_manager_link_service_grpc.pb.go b/services/customer_manager_link_service_grpc.pb.go index 53d2486d..6c312e94 100644 --- a/services/customer_manager_link_service_grpc.pb.go +++ b/services/customer_manager_link_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_manager_link_service.proto +// source: google/ads/googleads/v17/services/customer_manager_link_service.proto package services @@ -29,17 +29,19 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CustomerManagerLinkService_MutateCustomerManagerLink_FullMethodName = "/google.ads.googleads.v16.services.CustomerManagerLinkService/MutateCustomerManagerLink" - CustomerManagerLinkService_MoveManagerLink_FullMethodName = "/google.ads.googleads.v16.services.CustomerManagerLinkService/MoveManagerLink" + CustomerManagerLinkService_MutateCustomerManagerLink_FullMethodName = "/google.ads.googleads.v17.services.CustomerManagerLinkService/MutateCustomerManagerLink" + CustomerManagerLinkService_MoveManagerLink_FullMethodName = "/google.ads.googleads.v17.services.CustomerManagerLinkService/MoveManagerLink" ) // CustomerManagerLinkServiceClient is the client API for CustomerManagerLinkService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage customer-manager links. type CustomerManagerLinkServiceClient interface { // Updates customer manager links. Operation statuses are returned. // @@ -86,8 +88,9 @@ func NewCustomerManagerLinkServiceClient(cc grpc.ClientConnInterface) CustomerMa } func (c *customerManagerLinkServiceClient) MutateCustomerManagerLink(ctx context.Context, in *MutateCustomerManagerLinkRequest, opts ...grpc.CallOption) (*MutateCustomerManagerLinkResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCustomerManagerLinkResponse) - err := c.cc.Invoke(ctx, CustomerManagerLinkService_MutateCustomerManagerLink_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CustomerManagerLinkService_MutateCustomerManagerLink_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -95,8 +98,9 @@ func (c *customerManagerLinkServiceClient) MutateCustomerManagerLink(ctx context } func (c *customerManagerLinkServiceClient) MoveManagerLink(ctx context.Context, in *MoveManagerLinkRequest, opts ...grpc.CallOption) (*MoveManagerLinkResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MoveManagerLinkResponse) - err := c.cc.Invoke(ctx, CustomerManagerLinkService_MoveManagerLink_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CustomerManagerLinkService_MoveManagerLink_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -106,6 +110,8 @@ func (c *customerManagerLinkServiceClient) MoveManagerLink(ctx context.Context, // CustomerManagerLinkServiceServer is the server API for CustomerManagerLinkService service. // All implementations must embed UnimplementedCustomerManagerLinkServiceServer // for forward compatibility +// +// Service to manage customer-manager links. type CustomerManagerLinkServiceServer interface { // Updates customer manager links. Operation statuses are returned. // @@ -208,7 +214,7 @@ func _CustomerManagerLinkService_MoveManagerLink_Handler(srv interface{}, ctx co // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CustomerManagerLinkService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CustomerManagerLinkService", + ServiceName: "google.ads.googleads.v17.services.CustomerManagerLinkService", HandlerType: (*CustomerManagerLinkServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -221,5 +227,5 @@ var CustomerManagerLinkService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/customer_manager_link_service.proto", + Metadata: "google/ads/googleads/v17/services/customer_manager_link_service.proto", } diff --git a/services/customer_negative_criterion_service.pb.go b/services/customer_negative_criterion_service.pb.go index 5904b174..b1fb3f4d 100644 --- a/services/customer_negative_criterion_service.pb.go +++ b/services/customer_negative_criterion_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_negative_criterion_service.proto +// source: google/ads/googleads/v17/services/customer_negative_criterion_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [CustomerNegativeCriterionService.MutateCustomerNegativeCriteria][google.ads.googleads.v16.services.CustomerNegativeCriterionService.MutateCustomerNegativeCriteria]. +// [CustomerNegativeCriterionService.MutateCustomerNegativeCriteria][google.ads.googleads.v17.services.CustomerNegativeCriterionService.MutateCustomerNegativeCriteria]. type MutateCustomerNegativeCriteriaRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -59,13 +59,13 @@ type MutateCustomerNegativeCriteriaRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateCustomerNegativeCriteriaRequest) Reset() { *x = MutateCustomerNegativeCriteriaRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *MutateCustomerNegativeCriteriaRequest) String() string { func (*MutateCustomerNegativeCriteriaRequest) ProtoMessage() {} func (x *MutateCustomerNegativeCriteriaRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_negative_criterion_service_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 *MutateCustomerNegativeCriteriaRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use MutateCustomerNegativeCriteriaRequest.ProtoReflect.Descriptor instead. func (*MutateCustomerNegativeCriteriaRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomerNegativeCriteriaRequest) GetCustomerId() string { @@ -147,7 +147,7 @@ type CustomerNegativeCriterionOperation struct { func (x *CustomerNegativeCriterionOperation) Reset() { *x = CustomerNegativeCriterionOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160,7 +160,7 @@ func (x *CustomerNegativeCriterionOperation) String() string { func (*CustomerNegativeCriterionOperation) ProtoMessage() {} func (x *CustomerNegativeCriterionOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -173,7 +173,7 @@ func (x *CustomerNegativeCriterionOperation) ProtoReflect() protoreflect.Message // Deprecated: Use CustomerNegativeCriterionOperation.ProtoReflect.Descriptor instead. func (*CustomerNegativeCriterionOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_rawDescGZIP(), []int{1} } func (m *CustomerNegativeCriterionOperation) GetOperation() isCustomerNegativeCriterionOperation_Operation { @@ -236,7 +236,7 @@ type MutateCustomerNegativeCriteriaResponse struct { func (x *MutateCustomerNegativeCriteriaResponse) Reset() { *x = MutateCustomerNegativeCriteriaResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -249,7 +249,7 @@ func (x *MutateCustomerNegativeCriteriaResponse) String() string { func (*MutateCustomerNegativeCriteriaResponse) ProtoMessage() {} func (x *MutateCustomerNegativeCriteriaResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -262,7 +262,7 @@ func (x *MutateCustomerNegativeCriteriaResponse) ProtoReflect() protoreflect.Mes // Deprecated: Use MutateCustomerNegativeCriteriaResponse.ProtoReflect.Descriptor instead. func (*MutateCustomerNegativeCriteriaResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomerNegativeCriteriaResponse) GetPartialFailureError() *status.Status { @@ -295,7 +295,7 @@ type MutateCustomerNegativeCriteriaResult struct { func (x *MutateCustomerNegativeCriteriaResult) Reset() { *x = MutateCustomerNegativeCriteriaResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -308,7 +308,7 @@ func (x *MutateCustomerNegativeCriteriaResult) String() string { func (*MutateCustomerNegativeCriteriaResult) ProtoMessage() {} func (x *MutateCustomerNegativeCriteriaResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -321,7 +321,7 @@ func (x *MutateCustomerNegativeCriteriaResult) ProtoReflect() protoreflect.Messa // Deprecated: Use MutateCustomerNegativeCriteriaResult.ProtoReflect.Descriptor instead. func (*MutateCustomerNegativeCriteriaResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomerNegativeCriteriaResult) GetResourceName() string { @@ -338,22 +338,22 @@ func (x *MutateCustomerNegativeCriteriaResult) GetCustomerNegativeCriterion() *r return nil } -var File_google_ads_googleads_v16_services_customer_negative_criterion_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_customer_negative_criterion_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_customer_negative_criterion_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 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, 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, 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, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, @@ -372,7 +372,7 @@ var file_google_ads_googleads_v16_services_customer_negative_criterion_service_p 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x6a, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, @@ -385,7 +385,7 @@ var file_google_ads_googleads_v16_services_customer_negative_criterion_service_p 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, @@ -394,7 +394,7 @@ var file_google_ads_googleads_v16_services_customer_negative_criterion_service_p 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x57, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 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, 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, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x51, 0x0a, 0x06, 0x72, 0x65, 0x6d, @@ -413,7 +413,7 @@ var file_google_ads_googleads_v16_services_customer_negative_criterion_service_p 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x61, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, @@ -429,7 +429,7 @@ var file_google_ads_googleads_v16_services_customer_negative_criterion_service_p 0x65, 0x72, 0x5f, 0x6e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x52, 0x19, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x43, 0x72, 0x69, 0x74, @@ -439,17 +439,17 @@ var file_google_ads_googleads_v16_services_customer_negative_criterion_service_p 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x62, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, - 0x93, 0x02, 0x43, 0x3a, 0x01, 0x2a, 0x22, 0x3e, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, + 0x93, 0x02, 0x43, 0x3a, 0x01, 0x2a, 0x22, 0x3e, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x3a, @@ -459,56 +459,56 @@ var file_google_ads_googleads_v16_services_customer_negative_criterion_service_p 0x77, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x91, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x25, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_rawDescData = file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_rawDesc + file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_rawDescData = file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_rawDescData + return file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_goTypes = []interface{}{ - (*MutateCustomerNegativeCriteriaRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCustomerNegativeCriteriaRequest - (*CustomerNegativeCriterionOperation)(nil), // 1: google.ads.googleads.v16.services.CustomerNegativeCriterionOperation - (*MutateCustomerNegativeCriteriaResponse)(nil), // 2: google.ads.googleads.v16.services.MutateCustomerNegativeCriteriaResponse - (*MutateCustomerNegativeCriteriaResult)(nil), // 3: google.ads.googleads.v16.services.MutateCustomerNegativeCriteriaResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - (*resources.CustomerNegativeCriterion)(nil), // 5: google.ads.googleads.v16.resources.CustomerNegativeCriterion +var file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_goTypes = []interface{}{ + (*MutateCustomerNegativeCriteriaRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCustomerNegativeCriteriaRequest + (*CustomerNegativeCriterionOperation)(nil), // 1: google.ads.googleads.v17.services.CustomerNegativeCriterionOperation + (*MutateCustomerNegativeCriteriaResponse)(nil), // 2: google.ads.googleads.v17.services.MutateCustomerNegativeCriteriaResponse + (*MutateCustomerNegativeCriteriaResult)(nil), // 3: google.ads.googleads.v17.services.MutateCustomerNegativeCriteriaResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + (*resources.CustomerNegativeCriterion)(nil), // 5: google.ads.googleads.v17.resources.CustomerNegativeCriterion (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateCustomerNegativeCriteriaRequest.operations:type_name -> google.ads.googleads.v16.services.CustomerNegativeCriterionOperation - 4, // 1: google.ads.googleads.v16.services.MutateCustomerNegativeCriteriaRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.CustomerNegativeCriterionOperation.create:type_name -> google.ads.googleads.v16.resources.CustomerNegativeCriterion - 6, // 3: google.ads.googleads.v16.services.MutateCustomerNegativeCriteriaResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 4: google.ads.googleads.v16.services.MutateCustomerNegativeCriteriaResponse.results:type_name -> google.ads.googleads.v16.services.MutateCustomerNegativeCriteriaResult - 5, // 5: google.ads.googleads.v16.services.MutateCustomerNegativeCriteriaResult.customer_negative_criterion:type_name -> google.ads.googleads.v16.resources.CustomerNegativeCriterion - 0, // 6: google.ads.googleads.v16.services.CustomerNegativeCriterionService.MutateCustomerNegativeCriteria:input_type -> google.ads.googleads.v16.services.MutateCustomerNegativeCriteriaRequest - 2, // 7: google.ads.googleads.v16.services.CustomerNegativeCriterionService.MutateCustomerNegativeCriteria:output_type -> google.ads.googleads.v16.services.MutateCustomerNegativeCriteriaResponse +var file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateCustomerNegativeCriteriaRequest.operations:type_name -> google.ads.googleads.v17.services.CustomerNegativeCriterionOperation + 4, // 1: google.ads.googleads.v17.services.MutateCustomerNegativeCriteriaRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.CustomerNegativeCriterionOperation.create:type_name -> google.ads.googleads.v17.resources.CustomerNegativeCriterion + 6, // 3: google.ads.googleads.v17.services.MutateCustomerNegativeCriteriaResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 4: google.ads.googleads.v17.services.MutateCustomerNegativeCriteriaResponse.results:type_name -> google.ads.googleads.v17.services.MutateCustomerNegativeCriteriaResult + 5, // 5: google.ads.googleads.v17.services.MutateCustomerNegativeCriteriaResult.customer_negative_criterion:type_name -> google.ads.googleads.v17.resources.CustomerNegativeCriterion + 0, // 6: google.ads.googleads.v17.services.CustomerNegativeCriterionService.MutateCustomerNegativeCriteria:input_type -> google.ads.googleads.v17.services.MutateCustomerNegativeCriteriaRequest + 2, // 7: google.ads.googleads.v17.services.CustomerNegativeCriterionService.MutateCustomerNegativeCriteria:output_type -> google.ads.googleads.v17.services.MutateCustomerNegativeCriteriaResponse 7, // [7:8] is the sub-list for method output_type 6, // [6:7] is the sub-list for method input_type 6, // [6:6] is the sub-list for extension type_name @@ -516,13 +516,13 @@ var file_google_ads_googleads_v16_services_customer_negative_criterion_service_p 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_init() } -func file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_init() { - if File_google_ads_googleads_v16_services_customer_negative_criterion_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_init() } +func file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_init() { + if File_google_ads_googleads_v17_services_customer_negative_criterion_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerNegativeCriteriaRequest); i { case 0: return &v.state @@ -534,7 +534,7 @@ func file_google_ads_googleads_v16_services_customer_negative_criterion_service_ return nil } } - file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerNegativeCriterionOperation); i { case 0: return &v.state @@ -546,7 +546,7 @@ func file_google_ads_googleads_v16_services_customer_negative_criterion_service_ return nil } } - file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerNegativeCriteriaResponse); i { case 0: return &v.state @@ -558,7 +558,7 @@ func file_google_ads_googleads_v16_services_customer_negative_criterion_service_ return nil } } - file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerNegativeCriteriaResult); i { case 0: return &v.state @@ -571,7 +571,7 @@ func file_google_ads_googleads_v16_services_customer_negative_criterion_service_ } } } - file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CustomerNegativeCriterionOperation_Create)(nil), (*CustomerNegativeCriterionOperation_Remove)(nil), } @@ -579,18 +579,18 @@ func file_google_ads_googleads_v16_services_customer_negative_criterion_service_ out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_customer_negative_criterion_service_proto = out.File - file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_customer_negative_criterion_service_proto = out.File + file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_depIdxs = nil } diff --git a/services/customer_negative_criterion_service_grpc.pb.go b/services/customer_negative_criterion_service_grpc.pb.go index c782de27..e04c782c 100644 --- a/services/customer_negative_criterion_service_grpc.pb.go +++ b/services/customer_negative_criterion_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_negative_criterion_service.proto +// source: google/ads/googleads/v17/services/customer_negative_criterion_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CustomerNegativeCriterionService_MutateCustomerNegativeCriteria_FullMethodName = "/google.ads.googleads.v16.services.CustomerNegativeCriterionService/MutateCustomerNegativeCriteria" + CustomerNegativeCriterionService_MutateCustomerNegativeCriteria_FullMethodName = "/google.ads.googleads.v17.services.CustomerNegativeCriterionService/MutateCustomerNegativeCriteria" ) // CustomerNegativeCriterionServiceClient is the client API for CustomerNegativeCriterionService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage customer negative criteria. type CustomerNegativeCriterionServiceClient interface { // Creates or removes criteria. Operation statuses are returned. // @@ -66,8 +68,9 @@ func NewCustomerNegativeCriterionServiceClient(cc grpc.ClientConnInterface) Cust } func (c *customerNegativeCriterionServiceClient) MutateCustomerNegativeCriteria(ctx context.Context, in *MutateCustomerNegativeCriteriaRequest, opts ...grpc.CallOption) (*MutateCustomerNegativeCriteriaResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCustomerNegativeCriteriaResponse) - err := c.cc.Invoke(ctx, CustomerNegativeCriterionService_MutateCustomerNegativeCriteria_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CustomerNegativeCriterionService_MutateCustomerNegativeCriteria_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -77,6 +80,8 @@ func (c *customerNegativeCriterionServiceClient) MutateCustomerNegativeCriteria( // CustomerNegativeCriterionServiceServer is the server API for CustomerNegativeCriterionService service. // All implementations must embed UnimplementedCustomerNegativeCriterionServiceServer // for forward compatibility +// +// Service to manage customer negative criteria. type CustomerNegativeCriterionServiceServer interface { // Creates or removes criteria. Operation statuses are returned. // @@ -139,7 +144,7 @@ func _CustomerNegativeCriterionService_MutateCustomerNegativeCriteria_Handler(sr // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CustomerNegativeCriterionService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CustomerNegativeCriterionService", + ServiceName: "google.ads.googleads.v17.services.CustomerNegativeCriterionService", HandlerType: (*CustomerNegativeCriterionServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -148,5 +153,5 @@ var CustomerNegativeCriterionService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/customer_negative_criterion_service.proto", + Metadata: "google/ads/googleads/v17/services/customer_negative_criterion_service.proto", } diff --git a/services/customer_service.pb.go b/services/customer_service.pb.go index a8929c79..ca5a01ff 100644 --- a/services/customer_service.pb.go +++ b/services/customer_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_service.proto +// source: google/ads/googleads/v17/services/customer_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [CustomerService.MutateCustomer][google.ads.googleads.v16.services.CustomerService.MutateCustomer]. +// [CustomerService.MutateCustomer][google.ads.googleads.v17.services.CustomerService.MutateCustomer]. type MutateCustomerRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -54,13 +54,13 @@ type MutateCustomerRequest struct { ValidateOnly bool `protobuf:"varint,5,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,6,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,6,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateCustomerRequest) Reset() { *x = MutateCustomerRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73,7 +73,7 @@ func (x *MutateCustomerRequest) String() string { func (*MutateCustomerRequest) ProtoMessage() {} func (x *MutateCustomerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_service_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 *MutateCustomerRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerRequest.ProtoReflect.Descriptor instead. func (*MutateCustomerRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_customer_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomerRequest) GetCustomerId() string { @@ -118,7 +118,7 @@ func (x *MutateCustomerRequest) GetResponseContentType() enums.ResponseContentTy } // Request message for -// [CustomerService.CreateCustomerClient][google.ads.googleads.v16.services.CustomerService.CreateCustomerClient]. +// [CustomerService.CreateCustomerClient][google.ads.googleads.v17.services.CustomerService.CreateCustomerClient]. type CreateCustomerClientRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -135,7 +135,7 @@ type CreateCustomerClientRequest struct { EmailAddress *string `protobuf:"bytes,5,opt,name=email_address,json=emailAddress,proto3,oneof" json:"email_address,omitempty"` // The proposed role of user on the created client customer. // Accessible only to customers on the allow-list. - AccessRole enums.AccessRoleEnum_AccessRole `protobuf:"varint,4,opt,name=access_role,json=accessRole,proto3,enum=google.ads.googleads.v16.enums.AccessRoleEnum_AccessRole" json:"access_role,omitempty"` + AccessRole enums.AccessRoleEnum_AccessRole `protobuf:"varint,4,opt,name=access_role,json=accessRole,proto3,enum=google.ads.googleads.v17.enums.AccessRoleEnum_AccessRole" json:"access_role,omitempty"` // If true, the request is validated but not executed. Only errors are // returned, not results. ValidateOnly bool `protobuf:"varint,6,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` @@ -144,7 +144,7 @@ type CreateCustomerClientRequest struct { func (x *CreateCustomerClientRequest) Reset() { *x = CreateCustomerClientRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -157,7 +157,7 @@ func (x *CreateCustomerClientRequest) String() string { func (*CreateCustomerClientRequest) ProtoMessage() {} func (x *CreateCustomerClientRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -170,7 +170,7 @@ func (x *CreateCustomerClientRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateCustomerClientRequest.ProtoReflect.Descriptor instead. func (*CreateCustomerClientRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_customer_service_proto_rawDescGZIP(), []int{1} } func (x *CreateCustomerClientRequest) GetCustomerId() string { @@ -223,7 +223,7 @@ type CustomerOperation struct { func (x *CustomerOperation) Reset() { *x = CustomerOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -236,7 +236,7 @@ func (x *CustomerOperation) String() string { func (*CustomerOperation) ProtoMessage() {} func (x *CustomerOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -249,7 +249,7 @@ func (x *CustomerOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerOperation.ProtoReflect.Descriptor instead. func (*CustomerOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_customer_service_proto_rawDescGZIP(), []int{2} } func (x *CustomerOperation) GetUpdate() *resources.Customer { @@ -283,7 +283,7 @@ type CreateCustomerClientResponse struct { func (x *CreateCustomerClientResponse) Reset() { *x = CreateCustomerClientResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -296,7 +296,7 @@ func (x *CreateCustomerClientResponse) String() string { func (*CreateCustomerClientResponse) ProtoMessage() {} func (x *CreateCustomerClientResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -309,7 +309,7 @@ func (x *CreateCustomerClientResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateCustomerClientResponse.ProtoReflect.Descriptor instead. func (*CreateCustomerClientResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_customer_service_proto_rawDescGZIP(), []int{3} } func (x *CreateCustomerClientResponse) GetResourceName() string { @@ -339,7 +339,7 @@ type MutateCustomerResponse struct { func (x *MutateCustomerResponse) Reset() { *x = MutateCustomerResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_customer_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -352,7 +352,7 @@ func (x *MutateCustomerResponse) String() string { func (*MutateCustomerResponse) ProtoMessage() {} func (x *MutateCustomerResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_customer_service_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -365,7 +365,7 @@ func (x *MutateCustomerResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerResponse.ProtoReflect.Descriptor instead. func (*MutateCustomerResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v17_services_customer_service_proto_rawDescGZIP(), []int{4} } func (x *MutateCustomerResponse) GetResult() *MutateCustomerResult { @@ -391,7 +391,7 @@ type MutateCustomerResult struct { func (x *MutateCustomerResult) Reset() { *x = MutateCustomerResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_customer_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -404,7 +404,7 @@ func (x *MutateCustomerResult) String() string { func (*MutateCustomerResult) ProtoMessage() {} func (x *MutateCustomerResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_customer_service_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -417,7 +417,7 @@ func (x *MutateCustomerResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerResult.ProtoReflect.Descriptor instead. func (*MutateCustomerResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v17_services_customer_service_proto_rawDescGZIP(), []int{5} } func (x *MutateCustomerResult) GetResourceName() string { @@ -435,7 +435,7 @@ func (x *MutateCustomerResult) GetCustomer() *resources.Customer { } // Request message for -// [CustomerService.ListAccessibleCustomers][google.ads.googleads.v16.services.CustomerService.ListAccessibleCustomers]. +// [CustomerService.ListAccessibleCustomers][google.ads.googleads.v17.services.CustomerService.ListAccessibleCustomers]. type ListAccessibleCustomersRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -445,7 +445,7 @@ type ListAccessibleCustomersRequest struct { func (x *ListAccessibleCustomersRequest) Reset() { *x = ListAccessibleCustomersRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_services_customer_service_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -458,7 +458,7 @@ func (x *ListAccessibleCustomersRequest) String() string { func (*ListAccessibleCustomersRequest) ProtoMessage() {} func (x *ListAccessibleCustomersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_services_customer_service_proto_msgTypes[6] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -471,11 +471,11 @@ func (x *ListAccessibleCustomersRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListAccessibleCustomersRequest.ProtoReflect.Descriptor instead. func (*ListAccessibleCustomersRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_service_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v17_services_customer_service_proto_rawDescGZIP(), []int{6} } // Response message for -// [CustomerService.ListAccessibleCustomers][google.ads.googleads.v16.services.CustomerService.ListAccessibleCustomers]. +// [CustomerService.ListAccessibleCustomers][google.ads.googleads.v17.services.CustomerService.ListAccessibleCustomers]. type ListAccessibleCustomersResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -489,7 +489,7 @@ type ListAccessibleCustomersResponse struct { func (x *ListAccessibleCustomersResponse) Reset() { *x = ListAccessibleCustomersResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_services_customer_service_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -502,7 +502,7 @@ func (x *ListAccessibleCustomersResponse) String() string { func (*ListAccessibleCustomersResponse) ProtoMessage() {} func (x *ListAccessibleCustomersResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_services_customer_service_proto_msgTypes[7] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -515,7 +515,7 @@ func (x *ListAccessibleCustomersResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListAccessibleCustomersResponse.ProtoReflect.Descriptor instead. func (*ListAccessibleCustomersResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_service_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v17_services_customer_service_proto_rawDescGZIP(), []int{7} } func (x *ListAccessibleCustomersResponse) GetResourceNames() []string { @@ -525,24 +525,24 @@ func (x *ListAccessibleCustomersResponse) GetResourceNames() []string { return nil } -var File_google_ads_googleads_v16_services_customer_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_customer_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_customer_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_customer_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x30, 0x67, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 0x63, + 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, 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, + 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, + 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x67, 0x6f, @@ -560,7 +560,7 @@ var file_google_ads_googleads_v16_services_customer_service_proto_rawDesc = []by 0x72, 0x49, 0x64, 0x12, 0x57, 0x0a, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x23, 0x0a, 0x0d, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x05, 0x20, @@ -568,7 +568,7 @@ var file_google_ads_googleads_v16_services_customer_service_proto_rawDesc = []by 0x79, 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x06, 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, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, @@ -580,7 +580,7 @@ var file_google_ads_googleads_v16_services_customer_service_proto_rawDesc = []by 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5a, 0x0a, 0x0f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 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, 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, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x12, 0x28, 0x0a, 0x0d, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x5f, 0x61, 0x64, @@ -588,7 +588,7 @@ var file_google_ads_googleads_v16_services_customer_service_proto_rawDesc = []by 0x6d, 0x61, 0x69, 0x6c, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x88, 0x01, 0x01, 0x12, 0x5a, 0x0a, 0x0b, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x72, 0x6f, 0x6c, 0x65, 0x18, 0x04, 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, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x52, 0x6f, 0x6c, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x0a, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x52, 0x6f, 0x6c, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x76, 0x61, @@ -599,7 +599,7 @@ var file_google_ads_googleads_v16_services_customer_service_proto_rawDesc = []by 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x44, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, @@ -618,7 +618,7 @@ var file_google_ads_googleads_v16_services_customer_service_proto_rawDesc = []by 0x6d, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4f, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0xad, 0x01, 0x0a, 0x14, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, @@ -629,7 +629,7 @@ var file_google_ads_googleads_v16_services_customer_service_proto_rawDesc = []by 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x48, 0x0a, 0x08, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 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, + 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x08, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x22, 0x20, 0x0a, 0x1e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x43, 0x75, @@ -642,43 +642,43 @@ var file_google_ads_googleads_v16_services_customer_service_proto_rawDesc = []by 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xcf, 0x01, 0x0a, 0x0e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x12, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x48, 0xda, 0x41, 0x15, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x82, 0xd3, - 0xe4, 0x93, 0x02, 0x2a, 0x3a, 0x01, 0x2a, 0x22, 0x25, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, + 0xe4, 0x93, 0x02, 0x2a, 0x3a, 0x01, 0x2a, 0x22, 0x25, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x12, 0xd0, 0x01, 0x0a, 0x17, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, - 0x65, 0x22, 0x2e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x28, 0x12, 0x26, 0x2f, 0x76, 0x31, 0x36, 0x2f, + 0x65, 0x22, 0x2e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x28, 0x12, 0x26, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x3a, 0x6c, 0x69, 0x73, 0x74, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x12, 0xf5, 0x01, 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5c, 0xda, 0x41, 0x1b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x82, 0xd3, 0xe4, 0x93, 0x02, - 0x38, 0x3a, 0x01, 0x2a, 0x22, 0x33, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x38, 0x3a, 0x01, 0x2a, 0x22, 0x33, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x3a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, @@ -688,65 +688,65 @@ var file_google_ads_googleads_v16_services_customer_service_proto_rawDesc = []by 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x80, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x14, 0x43, 0x75, 0x73, 0x74, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x14, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, - 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, + 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_customer_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_customer_service_proto_rawDescData = file_google_ads_googleads_v16_services_customer_service_proto_rawDesc + file_google_ads_googleads_v17_services_customer_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_customer_service_proto_rawDescData = file_google_ads_googleads_v17_services_customer_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_customer_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_customer_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_customer_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_customer_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_customer_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_customer_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_customer_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_customer_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_customer_service_proto_rawDescData -} - -var file_google_ads_googleads_v16_services_customer_service_proto_msgTypes = make([]protoimpl.MessageInfo, 8) -var file_google_ads_googleads_v16_services_customer_service_proto_goTypes = []interface{}{ - (*MutateCustomerRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCustomerRequest - (*CreateCustomerClientRequest)(nil), // 1: google.ads.googleads.v16.services.CreateCustomerClientRequest - (*CustomerOperation)(nil), // 2: google.ads.googleads.v16.services.CustomerOperation - (*CreateCustomerClientResponse)(nil), // 3: google.ads.googleads.v16.services.CreateCustomerClientResponse - (*MutateCustomerResponse)(nil), // 4: google.ads.googleads.v16.services.MutateCustomerResponse - (*MutateCustomerResult)(nil), // 5: google.ads.googleads.v16.services.MutateCustomerResult - (*ListAccessibleCustomersRequest)(nil), // 6: google.ads.googleads.v16.services.ListAccessibleCustomersRequest - (*ListAccessibleCustomersResponse)(nil), // 7: google.ads.googleads.v16.services.ListAccessibleCustomersResponse - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 8: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - (*resources.Customer)(nil), // 9: google.ads.googleads.v16.resources.Customer - (enums.AccessRoleEnum_AccessRole)(0), // 10: google.ads.googleads.v16.enums.AccessRoleEnum.AccessRole + return file_google_ads_googleads_v17_services_customer_service_proto_rawDescData +} + +var file_google_ads_googleads_v17_services_customer_service_proto_msgTypes = make([]protoimpl.MessageInfo, 8) +var file_google_ads_googleads_v17_services_customer_service_proto_goTypes = []interface{}{ + (*MutateCustomerRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCustomerRequest + (*CreateCustomerClientRequest)(nil), // 1: google.ads.googleads.v17.services.CreateCustomerClientRequest + (*CustomerOperation)(nil), // 2: google.ads.googleads.v17.services.CustomerOperation + (*CreateCustomerClientResponse)(nil), // 3: google.ads.googleads.v17.services.CreateCustomerClientResponse + (*MutateCustomerResponse)(nil), // 4: google.ads.googleads.v17.services.MutateCustomerResponse + (*MutateCustomerResult)(nil), // 5: google.ads.googleads.v17.services.MutateCustomerResult + (*ListAccessibleCustomersRequest)(nil), // 6: google.ads.googleads.v17.services.ListAccessibleCustomersRequest + (*ListAccessibleCustomersResponse)(nil), // 7: google.ads.googleads.v17.services.ListAccessibleCustomersResponse + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 8: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + (*resources.Customer)(nil), // 9: google.ads.googleads.v17.resources.Customer + (enums.AccessRoleEnum_AccessRole)(0), // 10: google.ads.googleads.v17.enums.AccessRoleEnum.AccessRole (*fieldmaskpb.FieldMask)(nil), // 11: google.protobuf.FieldMask } -var file_google_ads_googleads_v16_services_customer_service_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v16.services.MutateCustomerRequest.operation:type_name -> google.ads.googleads.v16.services.CustomerOperation - 8, // 1: google.ads.googleads.v16.services.MutateCustomerRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 9, // 2: google.ads.googleads.v16.services.CreateCustomerClientRequest.customer_client:type_name -> google.ads.googleads.v16.resources.Customer - 10, // 3: google.ads.googleads.v16.services.CreateCustomerClientRequest.access_role:type_name -> google.ads.googleads.v16.enums.AccessRoleEnum.AccessRole - 9, // 4: google.ads.googleads.v16.services.CustomerOperation.update:type_name -> google.ads.googleads.v16.resources.Customer - 11, // 5: google.ads.googleads.v16.services.CustomerOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 6: google.ads.googleads.v16.services.MutateCustomerResponse.result:type_name -> google.ads.googleads.v16.services.MutateCustomerResult - 9, // 7: google.ads.googleads.v16.services.MutateCustomerResult.customer:type_name -> google.ads.googleads.v16.resources.Customer - 0, // 8: google.ads.googleads.v16.services.CustomerService.MutateCustomer:input_type -> google.ads.googleads.v16.services.MutateCustomerRequest - 6, // 9: google.ads.googleads.v16.services.CustomerService.ListAccessibleCustomers:input_type -> google.ads.googleads.v16.services.ListAccessibleCustomersRequest - 1, // 10: google.ads.googleads.v16.services.CustomerService.CreateCustomerClient:input_type -> google.ads.googleads.v16.services.CreateCustomerClientRequest - 4, // 11: google.ads.googleads.v16.services.CustomerService.MutateCustomer:output_type -> google.ads.googleads.v16.services.MutateCustomerResponse - 7, // 12: google.ads.googleads.v16.services.CustomerService.ListAccessibleCustomers:output_type -> google.ads.googleads.v16.services.ListAccessibleCustomersResponse - 3, // 13: google.ads.googleads.v16.services.CustomerService.CreateCustomerClient:output_type -> google.ads.googleads.v16.services.CreateCustomerClientResponse +var file_google_ads_googleads_v17_services_customer_service_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v17.services.MutateCustomerRequest.operation:type_name -> google.ads.googleads.v17.services.CustomerOperation + 8, // 1: google.ads.googleads.v17.services.MutateCustomerRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 9, // 2: google.ads.googleads.v17.services.CreateCustomerClientRequest.customer_client:type_name -> google.ads.googleads.v17.resources.Customer + 10, // 3: google.ads.googleads.v17.services.CreateCustomerClientRequest.access_role:type_name -> google.ads.googleads.v17.enums.AccessRoleEnum.AccessRole + 9, // 4: google.ads.googleads.v17.services.CustomerOperation.update:type_name -> google.ads.googleads.v17.resources.Customer + 11, // 5: google.ads.googleads.v17.services.CustomerOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 6: google.ads.googleads.v17.services.MutateCustomerResponse.result:type_name -> google.ads.googleads.v17.services.MutateCustomerResult + 9, // 7: google.ads.googleads.v17.services.MutateCustomerResult.customer:type_name -> google.ads.googleads.v17.resources.Customer + 0, // 8: google.ads.googleads.v17.services.CustomerService.MutateCustomer:input_type -> google.ads.googleads.v17.services.MutateCustomerRequest + 6, // 9: google.ads.googleads.v17.services.CustomerService.ListAccessibleCustomers:input_type -> google.ads.googleads.v17.services.ListAccessibleCustomersRequest + 1, // 10: google.ads.googleads.v17.services.CustomerService.CreateCustomerClient:input_type -> google.ads.googleads.v17.services.CreateCustomerClientRequest + 4, // 11: google.ads.googleads.v17.services.CustomerService.MutateCustomer:output_type -> google.ads.googleads.v17.services.MutateCustomerResponse + 7, // 12: google.ads.googleads.v17.services.CustomerService.ListAccessibleCustomers:output_type -> google.ads.googleads.v17.services.ListAccessibleCustomersResponse + 3, // 13: google.ads.googleads.v17.services.CustomerService.CreateCustomerClient:output_type -> google.ads.googleads.v17.services.CreateCustomerClientResponse 11, // [11:14] is the sub-list for method output_type 8, // [8:11] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -754,13 +754,13 @@ var file_google_ads_googleads_v16_services_customer_service_proto_depIdxs = []in 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_customer_service_proto_init() } -func file_google_ads_googleads_v16_services_customer_service_proto_init() { - if File_google_ads_googleads_v16_services_customer_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_customer_service_proto_init() } +func file_google_ads_googleads_v17_services_customer_service_proto_init() { + if File_google_ads_googleads_v17_services_customer_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_customer_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerRequest); i { case 0: return &v.state @@ -772,7 +772,7 @@ func file_google_ads_googleads_v16_services_customer_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_customer_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateCustomerClientRequest); i { case 0: return &v.state @@ -784,7 +784,7 @@ func file_google_ads_googleads_v16_services_customer_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_customer_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerOperation); i { case 0: return &v.state @@ -796,7 +796,7 @@ func file_google_ads_googleads_v16_services_customer_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_customer_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateCustomerClientResponse); i { case 0: return &v.state @@ -808,7 +808,7 @@ func file_google_ads_googleads_v16_services_customer_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_customer_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerResponse); i { case 0: return &v.state @@ -820,7 +820,7 @@ func file_google_ads_googleads_v16_services_customer_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_customer_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerResult); i { case 0: return &v.state @@ -832,7 +832,7 @@ func file_google_ads_googleads_v16_services_customer_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_customer_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListAccessibleCustomersRequest); i { case 0: return &v.state @@ -844,7 +844,7 @@ func file_google_ads_googleads_v16_services_customer_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_customer_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListAccessibleCustomersResponse); i { case 0: return &v.state @@ -857,23 +857,23 @@ func file_google_ads_googleads_v16_services_customer_service_proto_init() { } } } - file_google_ads_googleads_v16_services_customer_service_proto_msgTypes[1].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_customer_service_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_services_customer_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_customer_service_proto_rawDesc, NumEnums: 0, NumMessages: 8, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_customer_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_customer_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_customer_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_customer_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_customer_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_customer_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_customer_service_proto = out.File - file_google_ads_googleads_v16_services_customer_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_customer_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_customer_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_customer_service_proto = out.File + file_google_ads_googleads_v17_services_customer_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_customer_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_customer_service_proto_depIdxs = nil } diff --git a/services/customer_service_grpc.pb.go b/services/customer_service_grpc.pb.go index ade6f554..26b90d0a 100644 --- a/services/customer_service_grpc.pb.go +++ b/services/customer_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_service.proto +// source: google/ads/googleads/v17/services/customer_service.proto package services @@ -29,18 +29,20 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CustomerService_MutateCustomer_FullMethodName = "/google.ads.googleads.v16.services.CustomerService/MutateCustomer" - CustomerService_ListAccessibleCustomers_FullMethodName = "/google.ads.googleads.v16.services.CustomerService/ListAccessibleCustomers" - CustomerService_CreateCustomerClient_FullMethodName = "/google.ads.googleads.v16.services.CustomerService/CreateCustomerClient" + CustomerService_MutateCustomer_FullMethodName = "/google.ads.googleads.v17.services.CustomerService/MutateCustomer" + CustomerService_ListAccessibleCustomers_FullMethodName = "/google.ads.googleads.v17.services.CustomerService/ListAccessibleCustomers" + CustomerService_CreateCustomerClient_FullMethodName = "/google.ads.googleads.v17.services.CustomerService/CreateCustomerClient" ) // CustomerServiceClient is the client API for CustomerService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage customers. type CustomerServiceClient interface { // Updates a customer. Operation statuses are returned. // @@ -95,8 +97,9 @@ func NewCustomerServiceClient(cc grpc.ClientConnInterface) CustomerServiceClient } func (c *customerServiceClient) MutateCustomer(ctx context.Context, in *MutateCustomerRequest, opts ...grpc.CallOption) (*MutateCustomerResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCustomerResponse) - err := c.cc.Invoke(ctx, CustomerService_MutateCustomer_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CustomerService_MutateCustomer_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -104,8 +107,9 @@ func (c *customerServiceClient) MutateCustomer(ctx context.Context, in *MutateCu } func (c *customerServiceClient) ListAccessibleCustomers(ctx context.Context, in *ListAccessibleCustomersRequest, opts ...grpc.CallOption) (*ListAccessibleCustomersResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(ListAccessibleCustomersResponse) - err := c.cc.Invoke(ctx, CustomerService_ListAccessibleCustomers_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CustomerService_ListAccessibleCustomers_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -113,8 +117,9 @@ func (c *customerServiceClient) ListAccessibleCustomers(ctx context.Context, in } func (c *customerServiceClient) CreateCustomerClient(ctx context.Context, in *CreateCustomerClientRequest, opts ...grpc.CallOption) (*CreateCustomerClientResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(CreateCustomerClientResponse) - err := c.cc.Invoke(ctx, CustomerService_CreateCustomerClient_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CustomerService_CreateCustomerClient_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -124,6 +129,8 @@ func (c *customerServiceClient) CreateCustomerClient(ctx context.Context, in *Cr // CustomerServiceServer is the server API for CustomerService service. // All implementations must embed UnimplementedCustomerServiceServer // for forward compatibility +// +// Service to manage customers. type CustomerServiceServer interface { // Updates a customer. Operation statuses are returned. // @@ -254,7 +261,7 @@ func _CustomerService_CreateCustomerClient_Handler(srv interface{}, ctx context. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CustomerService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CustomerService", + ServiceName: "google.ads.googleads.v17.services.CustomerService", HandlerType: (*CustomerServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -271,5 +278,5 @@ var CustomerService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/customer_service.proto", + Metadata: "google/ads/googleads/v17/services/customer_service.proto", } diff --git a/services/customer_sk_ad_network_conversion_value_schema_service.pb.go b/services/customer_sk_ad_network_conversion_value_schema_service.pb.go index 3372c436..a2f7ca9f 100644 --- a/services/customer_sk_ad_network_conversion_value_schema_service.pb.go +++ b/services/customer_sk_ad_network_conversion_value_schema_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_sk_ad_network_conversion_value_schema_service.proto +// source: google/ads/googleads/v17/services/customer_sk_ad_network_conversion_value_schema_service.proto package services @@ -50,7 +50,7 @@ type CustomerSkAdNetworkConversionValueSchemaOperation struct { func (x *CustomerSkAdNetworkConversionValueSchemaOperation) Reset() { *x = CustomerSkAdNetworkConversionValueSchemaOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -63,7 +63,7 @@ func (x *CustomerSkAdNetworkConversionValueSchemaOperation) String() string { func (*CustomerSkAdNetworkConversionValueSchemaOperation) ProtoMessage() {} func (x *CustomerSkAdNetworkConversionValueSchemaOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_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 *CustomerSkAdNetworkConversionValueSchemaOperation) ProtoReflect() proto // Deprecated: Use CustomerSkAdNetworkConversionValueSchemaOperation.ProtoReflect.Descriptor instead. func (*CustomerSkAdNetworkConversionValueSchemaOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescGZIP(), []int{0} } func (x *CustomerSkAdNetworkConversionValueSchemaOperation) GetUpdate() *resources.CustomerSkAdNetworkConversionValueSchema { @@ -87,7 +87,7 @@ func (x *CustomerSkAdNetworkConversionValueSchemaOperation) GetUpdate() *resourc } // Request message for -// [CustomerSkAdNetworkConversionValueSchemaService.MutateCustomerSkAdNetworkConversionValueSchema][google.ads.googleads.v16.services.CustomerSkAdNetworkConversionValueSchemaService.MutateCustomerSkAdNetworkConversionValueSchema]. +// [CustomerSkAdNetworkConversionValueSchemaService.MutateCustomerSkAdNetworkConversionValueSchema][google.ads.googleads.v17.services.CustomerSkAdNetworkConversionValueSchemaService.MutateCustomerSkAdNetworkConversionValueSchema]. type MutateCustomerSkAdNetworkConversionValueSchemaRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -109,7 +109,7 @@ type MutateCustomerSkAdNetworkConversionValueSchemaRequest struct { func (x *MutateCustomerSkAdNetworkConversionValueSchemaRequest) Reset() { *x = MutateCustomerSkAdNetworkConversionValueSchemaRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -122,7 +122,7 @@ func (x *MutateCustomerSkAdNetworkConversionValueSchemaRequest) String() string func (*MutateCustomerSkAdNetworkConversionValueSchemaRequest) ProtoMessage() {} func (x *MutateCustomerSkAdNetworkConversionValueSchemaRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_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 *MutateCustomerSkAdNetworkConversionValueSchemaRequest) ProtoReflect() p // Deprecated: Use MutateCustomerSkAdNetworkConversionValueSchemaRequest.ProtoReflect.Descriptor instead. func (*MutateCustomerSkAdNetworkConversionValueSchemaRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescGZIP(), []int{1} } func (x *MutateCustomerSkAdNetworkConversionValueSchemaRequest) GetCustomerId() string { @@ -181,7 +181,7 @@ type MutateCustomerSkAdNetworkConversionValueSchemaResult struct { func (x *MutateCustomerSkAdNetworkConversionValueSchemaResult) Reset() { *x = MutateCustomerSkAdNetworkConversionValueSchemaResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -194,7 +194,7 @@ func (x *MutateCustomerSkAdNetworkConversionValueSchemaResult) String() string { func (*MutateCustomerSkAdNetworkConversionValueSchemaResult) ProtoMessage() {} func (x *MutateCustomerSkAdNetworkConversionValueSchemaResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -207,7 +207,7 @@ func (x *MutateCustomerSkAdNetworkConversionValueSchemaResult) ProtoReflect() pr // Deprecated: Use MutateCustomerSkAdNetworkConversionValueSchemaResult.ProtoReflect.Descriptor instead. func (*MutateCustomerSkAdNetworkConversionValueSchemaResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomerSkAdNetworkConversionValueSchemaResult) GetResourceName() string { @@ -240,7 +240,7 @@ type MutateCustomerSkAdNetworkConversionValueSchemaResponse struct { func (x *MutateCustomerSkAdNetworkConversionValueSchemaResponse) Reset() { *x = MutateCustomerSkAdNetworkConversionValueSchemaResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -253,7 +253,7 @@ func (x *MutateCustomerSkAdNetworkConversionValueSchemaResponse) String() string func (*MutateCustomerSkAdNetworkConversionValueSchemaResponse) ProtoMessage() {} func (x *MutateCustomerSkAdNetworkConversionValueSchemaResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_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 *MutateCustomerSkAdNetworkConversionValueSchemaResponse) ProtoReflect() // Deprecated: Use MutateCustomerSkAdNetworkConversionValueSchemaResponse.ProtoReflect.Descriptor instead. func (*MutateCustomerSkAdNetworkConversionValueSchemaResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomerSkAdNetworkConversionValueSchemaResponse) GetResult() *MutateCustomerSkAdNetworkConversionValueSchemaResult { @@ -283,19 +283,19 @@ func (x *MutateCustomerSkAdNetworkConversionValueSchemaResponse) GetWarning() *s return nil } -var File_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDesc = []byte{ 0x0a, 0x5e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x57, 0x67, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, @@ -314,7 +314,7 @@ var file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_val 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x64, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 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, 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, 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, 0x52, 0x06, 0x75, 0x70, @@ -326,7 +326,7 @@ var file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_val 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x72, 0x0a, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x4f, @@ -354,7 +354,7 @@ var file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_val 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x6f, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, @@ -369,18 +369,18 @@ var file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_val 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, 0x12, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5a, 0x82, 0xd3, 0xe4, 0x93, 0x02, - 0x54, 0x3a, 0x01, 0x2a, 0x22, 0x4f, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x54, 0x3a, 0x01, 0x2a, 0x22, 0x4f, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 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, @@ -391,7 +391,7 @@ var file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_val 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0xa0, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x34, 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, @@ -399,46 +399,46 @@ var file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_val 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescData = file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDesc + file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescData = file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescData + return file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_goTypes = []interface{}{ - (*CustomerSkAdNetworkConversionValueSchemaOperation)(nil), // 0: google.ads.googleads.v16.services.CustomerSkAdNetworkConversionValueSchemaOperation - (*MutateCustomerSkAdNetworkConversionValueSchemaRequest)(nil), // 1: google.ads.googleads.v16.services.MutateCustomerSkAdNetworkConversionValueSchemaRequest - (*MutateCustomerSkAdNetworkConversionValueSchemaResult)(nil), // 2: google.ads.googleads.v16.services.MutateCustomerSkAdNetworkConversionValueSchemaResult - (*MutateCustomerSkAdNetworkConversionValueSchemaResponse)(nil), // 3: google.ads.googleads.v16.services.MutateCustomerSkAdNetworkConversionValueSchemaResponse - (*resources.CustomerSkAdNetworkConversionValueSchema)(nil), // 4: google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema +var file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_goTypes = []interface{}{ + (*CustomerSkAdNetworkConversionValueSchemaOperation)(nil), // 0: google.ads.googleads.v17.services.CustomerSkAdNetworkConversionValueSchemaOperation + (*MutateCustomerSkAdNetworkConversionValueSchemaRequest)(nil), // 1: google.ads.googleads.v17.services.MutateCustomerSkAdNetworkConversionValueSchemaRequest + (*MutateCustomerSkAdNetworkConversionValueSchemaResult)(nil), // 2: google.ads.googleads.v17.services.MutateCustomerSkAdNetworkConversionValueSchemaResult + (*MutateCustomerSkAdNetworkConversionValueSchemaResponse)(nil), // 3: google.ads.googleads.v17.services.MutateCustomerSkAdNetworkConversionValueSchemaResponse + (*resources.CustomerSkAdNetworkConversionValueSchema)(nil), // 4: google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema (*status.Status)(nil), // 5: google.rpc.Status } -var file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_depIdxs = []int32{ - 4, // 0: google.ads.googleads.v16.services.CustomerSkAdNetworkConversionValueSchemaOperation.update:type_name -> google.ads.googleads.v16.resources.CustomerSkAdNetworkConversionValueSchema - 0, // 1: google.ads.googleads.v16.services.MutateCustomerSkAdNetworkConversionValueSchemaRequest.operation:type_name -> google.ads.googleads.v16.services.CustomerSkAdNetworkConversionValueSchemaOperation - 2, // 2: google.ads.googleads.v16.services.MutateCustomerSkAdNetworkConversionValueSchemaResponse.result:type_name -> google.ads.googleads.v16.services.MutateCustomerSkAdNetworkConversionValueSchemaResult - 5, // 3: google.ads.googleads.v16.services.MutateCustomerSkAdNetworkConversionValueSchemaResponse.warning:type_name -> google.rpc.Status - 1, // 4: google.ads.googleads.v16.services.CustomerSkAdNetworkConversionValueSchemaService.MutateCustomerSkAdNetworkConversionValueSchema:input_type -> google.ads.googleads.v16.services.MutateCustomerSkAdNetworkConversionValueSchemaRequest - 3, // 5: google.ads.googleads.v16.services.CustomerSkAdNetworkConversionValueSchemaService.MutateCustomerSkAdNetworkConversionValueSchema:output_type -> google.ads.googleads.v16.services.MutateCustomerSkAdNetworkConversionValueSchemaResponse +var file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_depIdxs = []int32{ + 4, // 0: google.ads.googleads.v17.services.CustomerSkAdNetworkConversionValueSchemaOperation.update:type_name -> google.ads.googleads.v17.resources.CustomerSkAdNetworkConversionValueSchema + 0, // 1: google.ads.googleads.v17.services.MutateCustomerSkAdNetworkConversionValueSchemaRequest.operation:type_name -> google.ads.googleads.v17.services.CustomerSkAdNetworkConversionValueSchemaOperation + 2, // 2: google.ads.googleads.v17.services.MutateCustomerSkAdNetworkConversionValueSchemaResponse.result:type_name -> google.ads.googleads.v17.services.MutateCustomerSkAdNetworkConversionValueSchemaResult + 5, // 3: google.ads.googleads.v17.services.MutateCustomerSkAdNetworkConversionValueSchemaResponse.warning:type_name -> google.rpc.Status + 1, // 4: google.ads.googleads.v17.services.CustomerSkAdNetworkConversionValueSchemaService.MutateCustomerSkAdNetworkConversionValueSchema:input_type -> google.ads.googleads.v17.services.MutateCustomerSkAdNetworkConversionValueSchemaRequest + 3, // 5: google.ads.googleads.v17.services.CustomerSkAdNetworkConversionValueSchemaService.MutateCustomerSkAdNetworkConversionValueSchema:output_type -> google.ads.googleads.v17.services.MutateCustomerSkAdNetworkConversionValueSchemaResponse 5, // [5:6] is the sub-list for method output_type 4, // [4:5] is the sub-list for method input_type 4, // [4:4] is the sub-list for extension type_name @@ -447,14 +447,14 @@ var file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_val } func init() { - file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_init() + file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_init() } -func file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_init() { - if File_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto != nil { +func file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_init() { + if File_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerSkAdNetworkConversionValueSchemaOperation); i { case 0: return &v.state @@ -466,7 +466,7 @@ func file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_va return nil } } - file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerSkAdNetworkConversionValueSchemaRequest); i { case 0: return &v.state @@ -478,7 +478,7 @@ func file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_va return nil } } - file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerSkAdNetworkConversionValueSchemaResult); i { case 0: return &v.state @@ -490,7 +490,7 @@ func file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_va return nil } } - file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerSkAdNetworkConversionValueSchemaResponse); i { case 0: return &v.state @@ -507,18 +507,18 @@ func file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_va out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto = out.File - file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_customer_sk_ad_network_conversion_value_schema_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto = out.File + file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_customer_sk_ad_network_conversion_value_schema_service_proto_depIdxs = nil } diff --git a/services/customer_sk_ad_network_conversion_value_schema_service_grpc.pb.go b/services/customer_sk_ad_network_conversion_value_schema_service_grpc.pb.go index ca168821..554185a8 100644 --- a/services/customer_sk_ad_network_conversion_value_schema_service_grpc.pb.go +++ b/services/customer_sk_ad_network_conversion_value_schema_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_sk_ad_network_conversion_value_schema_service.proto +// source: google/ads/googleads/v17/services/customer_sk_ad_network_conversion_value_schema_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CustomerSkAdNetworkConversionValueSchemaService_MutateCustomerSkAdNetworkConversionValueSchema_FullMethodName = "/google.ads.googleads.v16.services.CustomerSkAdNetworkConversionValueSchemaService/MutateCustomerSkAdNetworkConversionValueSchema" + CustomerSkAdNetworkConversionValueSchemaService_MutateCustomerSkAdNetworkConversionValueSchema_FullMethodName = "/google.ads.googleads.v17.services.CustomerSkAdNetworkConversionValueSchemaService/MutateCustomerSkAdNetworkConversionValueSchema" ) // CustomerSkAdNetworkConversionValueSchemaServiceClient is the client API for CustomerSkAdNetworkConversionValueSchemaService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage CustomerSkAdNetworkConversionValueSchema. type CustomerSkAdNetworkConversionValueSchemaServiceClient interface { // Creates or updates the CustomerSkAdNetworkConversionValueSchema. // @@ -61,8 +63,9 @@ func NewCustomerSkAdNetworkConversionValueSchemaServiceClient(cc grpc.ClientConn } func (c *customerSkAdNetworkConversionValueSchemaServiceClient) MutateCustomerSkAdNetworkConversionValueSchema(ctx context.Context, in *MutateCustomerSkAdNetworkConversionValueSchemaRequest, opts ...grpc.CallOption) (*MutateCustomerSkAdNetworkConversionValueSchemaResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCustomerSkAdNetworkConversionValueSchemaResponse) - err := c.cc.Invoke(ctx, CustomerSkAdNetworkConversionValueSchemaService_MutateCustomerSkAdNetworkConversionValueSchema_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CustomerSkAdNetworkConversionValueSchemaService_MutateCustomerSkAdNetworkConversionValueSchema_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -72,6 +75,8 @@ func (c *customerSkAdNetworkConversionValueSchemaServiceClient) MutateCustomerSk // CustomerSkAdNetworkConversionValueSchemaServiceServer is the server API for CustomerSkAdNetworkConversionValueSchemaService service. // All implementations must embed UnimplementedCustomerSkAdNetworkConversionValueSchemaServiceServer // for forward compatibility +// +// Service to manage CustomerSkAdNetworkConversionValueSchema. type CustomerSkAdNetworkConversionValueSchemaServiceServer interface { // Creates or updates the CustomerSkAdNetworkConversionValueSchema. // @@ -129,7 +134,7 @@ func _CustomerSkAdNetworkConversionValueSchemaService_MutateCustomerSkAdNetworkC // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CustomerSkAdNetworkConversionValueSchemaService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CustomerSkAdNetworkConversionValueSchemaService", + ServiceName: "google.ads.googleads.v17.services.CustomerSkAdNetworkConversionValueSchemaService", HandlerType: (*CustomerSkAdNetworkConversionValueSchemaServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -138,5 +143,5 @@ var CustomerSkAdNetworkConversionValueSchemaService_ServiceDesc = grpc.ServiceDe }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/customer_sk_ad_network_conversion_value_schema_service.proto", + Metadata: "google/ads/googleads/v17/services/customer_sk_ad_network_conversion_value_schema_service.proto", } diff --git a/services/customer_user_access_invitation_service.pb.go b/services/customer_user_access_invitation_service.pb.go index 504d6e47..45460234 100644 --- a/services/customer_user_access_invitation_service.pb.go +++ b/services/customer_user_access_invitation_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_user_access_invitation_service.proto +// source: google/ads/googleads/v17/services/customer_user_access_invitation_service.proto package services @@ -37,7 +37,7 @@ const ( ) // Request message for -// [CustomerUserAccessInvitationService.MutateCustomerUserAccessInvitation][google.ads.googleads.v16.services.CustomerUserAccessInvitationService.MutateCustomerUserAccessInvitation] +// [CustomerUserAccessInvitationService.MutateCustomerUserAccessInvitation][google.ads.googleads.v17.services.CustomerUserAccessInvitationService.MutateCustomerUserAccessInvitation] type MutateCustomerUserAccessInvitationRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -52,7 +52,7 @@ type MutateCustomerUserAccessInvitationRequest struct { func (x *MutateCustomerUserAccessInvitationRequest) Reset() { *x = MutateCustomerUserAccessInvitationRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65,7 +65,7 @@ func (x *MutateCustomerUserAccessInvitationRequest) String() string { func (*MutateCustomerUserAccessInvitationRequest) ProtoMessage() {} func (x *MutateCustomerUserAccessInvitationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_user_access_invitation_service_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 *MutateCustomerUserAccessInvitationRequest) ProtoReflect() protoreflect. // Deprecated: Use MutateCustomerUserAccessInvitationRequest.ProtoReflect.Descriptor instead. func (*MutateCustomerUserAccessInvitationRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomerUserAccessInvitationRequest) GetCustomerId() string { @@ -113,7 +113,7 @@ type CustomerUserAccessInvitationOperation struct { func (x *CustomerUserAccessInvitationOperation) Reset() { *x = CustomerUserAccessInvitationOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -126,7 +126,7 @@ func (x *CustomerUserAccessInvitationOperation) String() string { func (*CustomerUserAccessInvitationOperation) ProtoMessage() {} func (x *CustomerUserAccessInvitationOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139,7 +139,7 @@ func (x *CustomerUserAccessInvitationOperation) ProtoReflect() protoreflect.Mess // Deprecated: Use CustomerUserAccessInvitationOperation.ProtoReflect.Descriptor instead. func (*CustomerUserAccessInvitationOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_rawDescGZIP(), []int{1} } func (m *CustomerUserAccessInvitationOperation) GetOperation() isCustomerUserAccessInvitationOperation_Operation { @@ -200,7 +200,7 @@ type MutateCustomerUserAccessInvitationResponse struct { func (x *MutateCustomerUserAccessInvitationResponse) Reset() { *x = MutateCustomerUserAccessInvitationResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -213,7 +213,7 @@ func (x *MutateCustomerUserAccessInvitationResponse) String() string { func (*MutateCustomerUserAccessInvitationResponse) ProtoMessage() {} func (x *MutateCustomerUserAccessInvitationResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -226,7 +226,7 @@ func (x *MutateCustomerUserAccessInvitationResponse) ProtoReflect() protoreflect // Deprecated: Use MutateCustomerUserAccessInvitationResponse.ProtoReflect.Descriptor instead. func (*MutateCustomerUserAccessInvitationResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomerUserAccessInvitationResponse) GetResult() *MutateCustomerUserAccessInvitationResult { @@ -249,7 +249,7 @@ type MutateCustomerUserAccessInvitationResult struct { func (x *MutateCustomerUserAccessInvitationResult) Reset() { *x = MutateCustomerUserAccessInvitationResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -262,7 +262,7 @@ func (x *MutateCustomerUserAccessInvitationResult) String() string { func (*MutateCustomerUserAccessInvitationResult) ProtoMessage() {} func (x *MutateCustomerUserAccessInvitationResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -275,7 +275,7 @@ func (x *MutateCustomerUserAccessInvitationResult) ProtoReflect() protoreflect.M // Deprecated: Use MutateCustomerUserAccessInvitationResult.ProtoReflect.Descriptor instead. func (*MutateCustomerUserAccessInvitationResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomerUserAccessInvitationResult) GetResourceName() string { @@ -285,18 +285,18 @@ func (x *MutateCustomerUserAccessInvitationResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_rawDesc = []byte{ 0x0a, 0x4f, 0x67, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 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, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, @@ -315,7 +315,7 @@ var file_google_ads_googleads_v16_services_customer_user_access_invitation_servi 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x6b, 0x0a, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, @@ -324,7 +324,7 @@ var file_google_ads_googleads_v16_services_customer_user_access_invitation_servi 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x5a, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 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, 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x54, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, @@ -339,7 +339,7 @@ var file_google_ads_googleads_v16_services_customer_user_access_invitation_servi 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x63, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, @@ -358,18 +358,18 @@ var file_google_ads_googleads_v16_services_customer_user_access_invitation_servi 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x66, 0xda, 0x41, 0x15, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x48, 0x3a, 0x01, 0x2a, 0x22, 0x43, 0x2f, 0x76, - 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, + 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, @@ -379,51 +379,51 @@ var file_google_ads_googleads_v16_services_customer_user_access_invitation_servi 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x94, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x28, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_rawDescData = file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_rawDesc + file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_rawDescData = file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_rawDescData -} - -var file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_goTypes = []interface{}{ - (*MutateCustomerUserAccessInvitationRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCustomerUserAccessInvitationRequest - (*CustomerUserAccessInvitationOperation)(nil), // 1: google.ads.googleads.v16.services.CustomerUserAccessInvitationOperation - (*MutateCustomerUserAccessInvitationResponse)(nil), // 2: google.ads.googleads.v16.services.MutateCustomerUserAccessInvitationResponse - (*MutateCustomerUserAccessInvitationResult)(nil), // 3: google.ads.googleads.v16.services.MutateCustomerUserAccessInvitationResult - (*resources.CustomerUserAccessInvitation)(nil), // 4: google.ads.googleads.v16.resources.CustomerUserAccessInvitation -} -var file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateCustomerUserAccessInvitationRequest.operation:type_name -> google.ads.googleads.v16.services.CustomerUserAccessInvitationOperation - 4, // 1: google.ads.googleads.v16.services.CustomerUserAccessInvitationOperation.create:type_name -> google.ads.googleads.v16.resources.CustomerUserAccessInvitation - 3, // 2: google.ads.googleads.v16.services.MutateCustomerUserAccessInvitationResponse.result:type_name -> google.ads.googleads.v16.services.MutateCustomerUserAccessInvitationResult - 0, // 3: google.ads.googleads.v16.services.CustomerUserAccessInvitationService.MutateCustomerUserAccessInvitation:input_type -> google.ads.googleads.v16.services.MutateCustomerUserAccessInvitationRequest - 2, // 4: google.ads.googleads.v16.services.CustomerUserAccessInvitationService.MutateCustomerUserAccessInvitation:output_type -> google.ads.googleads.v16.services.MutateCustomerUserAccessInvitationResponse + return file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_rawDescData +} + +var file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_goTypes = []interface{}{ + (*MutateCustomerUserAccessInvitationRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCustomerUserAccessInvitationRequest + (*CustomerUserAccessInvitationOperation)(nil), // 1: google.ads.googleads.v17.services.CustomerUserAccessInvitationOperation + (*MutateCustomerUserAccessInvitationResponse)(nil), // 2: google.ads.googleads.v17.services.MutateCustomerUserAccessInvitationResponse + (*MutateCustomerUserAccessInvitationResult)(nil), // 3: google.ads.googleads.v17.services.MutateCustomerUserAccessInvitationResult + (*resources.CustomerUserAccessInvitation)(nil), // 4: google.ads.googleads.v17.resources.CustomerUserAccessInvitation +} +var file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateCustomerUserAccessInvitationRequest.operation:type_name -> google.ads.googleads.v17.services.CustomerUserAccessInvitationOperation + 4, // 1: google.ads.googleads.v17.services.CustomerUserAccessInvitationOperation.create:type_name -> google.ads.googleads.v17.resources.CustomerUserAccessInvitation + 3, // 2: google.ads.googleads.v17.services.MutateCustomerUserAccessInvitationResponse.result:type_name -> google.ads.googleads.v17.services.MutateCustomerUserAccessInvitationResult + 0, // 3: google.ads.googleads.v17.services.CustomerUserAccessInvitationService.MutateCustomerUserAccessInvitation:input_type -> google.ads.googleads.v17.services.MutateCustomerUserAccessInvitationRequest + 2, // 4: google.ads.googleads.v17.services.CustomerUserAccessInvitationService.MutateCustomerUserAccessInvitation:output_type -> google.ads.googleads.v17.services.MutateCustomerUserAccessInvitationResponse 4, // [4:5] is the sub-list for method output_type 3, // [3:4] is the sub-list for method input_type 3, // [3:3] is the sub-list for extension type_name @@ -432,14 +432,14 @@ var file_google_ads_googleads_v16_services_customer_user_access_invitation_servi } func init() { - file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_init() + file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_init() } -func file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_init() { - if File_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto != nil { +func file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_init() { + if File_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerUserAccessInvitationRequest); i { case 0: return &v.state @@ -451,7 +451,7 @@ func file_google_ads_googleads_v16_services_customer_user_access_invitation_serv return nil } } - file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerUserAccessInvitationOperation); i { case 0: return &v.state @@ -463,7 +463,7 @@ func file_google_ads_googleads_v16_services_customer_user_access_invitation_serv return nil } } - file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerUserAccessInvitationResponse); i { case 0: return &v.state @@ -475,7 +475,7 @@ func file_google_ads_googleads_v16_services_customer_user_access_invitation_serv return nil } } - file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerUserAccessInvitationResult); i { case 0: return &v.state @@ -488,7 +488,7 @@ func file_google_ads_googleads_v16_services_customer_user_access_invitation_serv } } } - file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CustomerUserAccessInvitationOperation_Create)(nil), (*CustomerUserAccessInvitationOperation_Remove)(nil), } @@ -496,18 +496,18 @@ func file_google_ads_googleads_v16_services_customer_user_access_invitation_serv out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto = out.File - file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_customer_user_access_invitation_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto = out.File + file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_customer_user_access_invitation_service_proto_depIdxs = nil } diff --git a/services/customer_user_access_invitation_service_grpc.pb.go b/services/customer_user_access_invitation_service_grpc.pb.go index 8064e70e..548b0eac 100644 --- a/services/customer_user_access_invitation_service_grpc.pb.go +++ b/services/customer_user_access_invitation_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_user_access_invitation_service.proto +// source: google/ads/googleads/v17/services/customer_user_access_invitation_service.proto package services @@ -29,16 +29,19 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CustomerUserAccessInvitationService_MutateCustomerUserAccessInvitation_FullMethodName = "/google.ads.googleads.v16.services.CustomerUserAccessInvitationService/MutateCustomerUserAccessInvitation" + CustomerUserAccessInvitationService_MutateCustomerUserAccessInvitation_FullMethodName = "/google.ads.googleads.v17.services.CustomerUserAccessInvitationService/MutateCustomerUserAccessInvitation" ) // CustomerUserAccessInvitationServiceClient is the client API for CustomerUserAccessInvitationService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// This service manages the access invitation extended to users for a given +// customer. type CustomerUserAccessInvitationServiceClient interface { // Creates or removes an access invitation. // @@ -63,8 +66,9 @@ func NewCustomerUserAccessInvitationServiceClient(cc grpc.ClientConnInterface) C } func (c *customerUserAccessInvitationServiceClient) MutateCustomerUserAccessInvitation(ctx context.Context, in *MutateCustomerUserAccessInvitationRequest, opts ...grpc.CallOption) (*MutateCustomerUserAccessInvitationResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCustomerUserAccessInvitationResponse) - err := c.cc.Invoke(ctx, CustomerUserAccessInvitationService_MutateCustomerUserAccessInvitation_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CustomerUserAccessInvitationService_MutateCustomerUserAccessInvitation_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -74,6 +78,9 @@ func (c *customerUserAccessInvitationServiceClient) MutateCustomerUserAccessInvi // CustomerUserAccessInvitationServiceServer is the server API for CustomerUserAccessInvitationService service. // All implementations must embed UnimplementedCustomerUserAccessInvitationServiceServer // for forward compatibility +// +// This service manages the access invitation extended to users for a given +// customer. type CustomerUserAccessInvitationServiceServer interface { // Creates or removes an access invitation. // @@ -133,7 +140,7 @@ func _CustomerUserAccessInvitationService_MutateCustomerUserAccessInvitation_Han // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CustomerUserAccessInvitationService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CustomerUserAccessInvitationService", + ServiceName: "google.ads.googleads.v17.services.CustomerUserAccessInvitationService", HandlerType: (*CustomerUserAccessInvitationServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -142,5 +149,5 @@ var CustomerUserAccessInvitationService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/customer_user_access_invitation_service.proto", + Metadata: "google/ads/googleads/v17/services/customer_user_access_invitation_service.proto", } diff --git a/services/customer_user_access_service.pb.go b/services/customer_user_access_service.pb.go index a022e101..936b4ef5 100644 --- a/services/customer_user_access_service.pb.go +++ b/services/customer_user_access_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_user_access_service.proto +// source: google/ads/googleads/v17/services/customer_user_access_service.proto package services @@ -38,7 +38,7 @@ const ( ) // Mutate Request for -// [CustomerUserAccessService.MutateCustomerUserAccess][google.ads.googleads.v16.services.CustomerUserAccessService.MutateCustomerUserAccess]. +// [CustomerUserAccessService.MutateCustomerUserAccess][google.ads.googleads.v17.services.CustomerUserAccessService.MutateCustomerUserAccess]. type MutateCustomerUserAccessRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -53,7 +53,7 @@ type MutateCustomerUserAccessRequest struct { func (x *MutateCustomerUserAccessRequest) Reset() { *x = MutateCustomerUserAccessRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_user_access_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_user_access_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -66,7 +66,7 @@ func (x *MutateCustomerUserAccessRequest) String() string { func (*MutateCustomerUserAccessRequest) ProtoMessage() {} func (x *MutateCustomerUserAccessRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_user_access_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customer_user_access_service_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 *MutateCustomerUserAccessRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerUserAccessRequest.ProtoReflect.Descriptor instead. func (*MutateCustomerUserAccessRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_user_access_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_customer_user_access_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomerUserAccessRequest) GetCustomerId() string { @@ -116,7 +116,7 @@ type CustomerUserAccessOperation struct { func (x *CustomerUserAccessOperation) Reset() { *x = CustomerUserAccessOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_user_access_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_user_access_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -129,7 +129,7 @@ func (x *CustomerUserAccessOperation) String() string { func (*CustomerUserAccessOperation) ProtoMessage() {} func (x *CustomerUserAccessOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_user_access_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customer_user_access_service_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 *CustomerUserAccessOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerUserAccessOperation.ProtoReflect.Descriptor instead. func (*CustomerUserAccessOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_user_access_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_customer_user_access_service_proto_rawDescGZIP(), []int{1} } func (x *CustomerUserAccessOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -208,7 +208,7 @@ type MutateCustomerUserAccessResponse struct { func (x *MutateCustomerUserAccessResponse) Reset() { *x = MutateCustomerUserAccessResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_user_access_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_user_access_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -221,7 +221,7 @@ func (x *MutateCustomerUserAccessResponse) String() string { func (*MutateCustomerUserAccessResponse) ProtoMessage() {} func (x *MutateCustomerUserAccessResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_user_access_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customer_user_access_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -234,7 +234,7 @@ func (x *MutateCustomerUserAccessResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerUserAccessResponse.ProtoReflect.Descriptor instead. func (*MutateCustomerUserAccessResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_user_access_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_customer_user_access_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomerUserAccessResponse) GetResult() *MutateCustomerUserAccessResult { @@ -257,7 +257,7 @@ type MutateCustomerUserAccessResult struct { func (x *MutateCustomerUserAccessResult) Reset() { *x = MutateCustomerUserAccessResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customer_user_access_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_user_access_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -270,7 +270,7 @@ func (x *MutateCustomerUserAccessResult) String() string { func (*MutateCustomerUserAccessResult) ProtoMessage() {} func (x *MutateCustomerUserAccessResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customer_user_access_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customer_user_access_service_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 *MutateCustomerUserAccessResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerUserAccessResult.ProtoReflect.Descriptor instead. func (*MutateCustomerUserAccessResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customer_user_access_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_customer_user_access_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomerUserAccessResult) GetResourceName() string { @@ -293,18 +293,18 @@ func (x *MutateCustomerUserAccessResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_customer_user_access_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_customer_user_access_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_customer_user_access_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_customer_user_access_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, + 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, @@ -323,7 +323,7 @@ var file_google_ads_googleads_v16_services_customer_user_access_service_proto_ra 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x61, 0x0a, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x85, 0x02, 0x0a, 0x1b, 0x43, @@ -335,7 +335,7 @@ var file_google_ads_googleads_v16_services_customer_user_access_service_proto_ra 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x50, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x4a, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x30, 0xfa, 0x41, 0x2d, 0x0a, 0x2b, @@ -348,7 +348,7 @@ var file_google_ads_googleads_v16_services_customer_user_access_service_proto_ra 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x59, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 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, - 0x36, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x77, 0x0a, 0x1e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, @@ -363,17 +363,17 @@ var file_google_ads_googleads_v16_services_customer_user_access_service_proto_ra 0x73, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x82, 0x02, 0x0a, 0x18, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5d, 0xda, 0x41, 0x15, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3f, 0x3a, 0x01, - 0x2a, 0x22, 0x3a, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x2a, 0x22, 0x3a, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x65, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, @@ -383,52 +383,52 @@ var file_google_ads_googleads_v16_services_customer_user_access_service_proto_ra 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x8a, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1e, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_customer_user_access_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_customer_user_access_service_proto_rawDescData = file_google_ads_googleads_v16_services_customer_user_access_service_proto_rawDesc + file_google_ads_googleads_v17_services_customer_user_access_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_customer_user_access_service_proto_rawDescData = file_google_ads_googleads_v17_services_customer_user_access_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_customer_user_access_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_customer_user_access_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_customer_user_access_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_customer_user_access_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_customer_user_access_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_customer_user_access_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_customer_user_access_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_customer_user_access_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_customer_user_access_service_proto_rawDescData + return file_google_ads_googleads_v17_services_customer_user_access_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_customer_user_access_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_customer_user_access_service_proto_goTypes = []interface{}{ - (*MutateCustomerUserAccessRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCustomerUserAccessRequest - (*CustomerUserAccessOperation)(nil), // 1: google.ads.googleads.v16.services.CustomerUserAccessOperation - (*MutateCustomerUserAccessResponse)(nil), // 2: google.ads.googleads.v16.services.MutateCustomerUserAccessResponse - (*MutateCustomerUserAccessResult)(nil), // 3: google.ads.googleads.v16.services.MutateCustomerUserAccessResult +var file_google_ads_googleads_v17_services_customer_user_access_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_customer_user_access_service_proto_goTypes = []interface{}{ + (*MutateCustomerUserAccessRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCustomerUserAccessRequest + (*CustomerUserAccessOperation)(nil), // 1: google.ads.googleads.v17.services.CustomerUserAccessOperation + (*MutateCustomerUserAccessResponse)(nil), // 2: google.ads.googleads.v17.services.MutateCustomerUserAccessResponse + (*MutateCustomerUserAccessResult)(nil), // 3: google.ads.googleads.v17.services.MutateCustomerUserAccessResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.CustomerUserAccess)(nil), // 5: google.ads.googleads.v16.resources.CustomerUserAccess -} -var file_google_ads_googleads_v16_services_customer_user_access_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateCustomerUserAccessRequest.operation:type_name -> google.ads.googleads.v16.services.CustomerUserAccessOperation - 4, // 1: google.ads.googleads.v16.services.CustomerUserAccessOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v16.services.CustomerUserAccessOperation.update:type_name -> google.ads.googleads.v16.resources.CustomerUserAccess - 3, // 3: google.ads.googleads.v16.services.MutateCustomerUserAccessResponse.result:type_name -> google.ads.googleads.v16.services.MutateCustomerUserAccessResult - 0, // 4: google.ads.googleads.v16.services.CustomerUserAccessService.MutateCustomerUserAccess:input_type -> google.ads.googleads.v16.services.MutateCustomerUserAccessRequest - 2, // 5: google.ads.googleads.v16.services.CustomerUserAccessService.MutateCustomerUserAccess:output_type -> google.ads.googleads.v16.services.MutateCustomerUserAccessResponse + (*resources.CustomerUserAccess)(nil), // 5: google.ads.googleads.v17.resources.CustomerUserAccess +} +var file_google_ads_googleads_v17_services_customer_user_access_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateCustomerUserAccessRequest.operation:type_name -> google.ads.googleads.v17.services.CustomerUserAccessOperation + 4, // 1: google.ads.googleads.v17.services.CustomerUserAccessOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v17.services.CustomerUserAccessOperation.update:type_name -> google.ads.googleads.v17.resources.CustomerUserAccess + 3, // 3: google.ads.googleads.v17.services.MutateCustomerUserAccessResponse.result:type_name -> google.ads.googleads.v17.services.MutateCustomerUserAccessResult + 0, // 4: google.ads.googleads.v17.services.CustomerUserAccessService.MutateCustomerUserAccess:input_type -> google.ads.googleads.v17.services.MutateCustomerUserAccessRequest + 2, // 5: google.ads.googleads.v17.services.CustomerUserAccessService.MutateCustomerUserAccess:output_type -> google.ads.googleads.v17.services.MutateCustomerUserAccessResponse 5, // [5:6] is the sub-list for method output_type 4, // [4:5] is the sub-list for method input_type 4, // [4:4] is the sub-list for extension type_name @@ -436,13 +436,13 @@ var file_google_ads_googleads_v16_services_customer_user_access_service_proto_de 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_customer_user_access_service_proto_init() } -func file_google_ads_googleads_v16_services_customer_user_access_service_proto_init() { - if File_google_ads_googleads_v16_services_customer_user_access_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_customer_user_access_service_proto_init() } +func file_google_ads_googleads_v17_services_customer_user_access_service_proto_init() { + if File_google_ads_googleads_v17_services_customer_user_access_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_customer_user_access_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_user_access_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerUserAccessRequest); i { case 0: return &v.state @@ -454,7 +454,7 @@ func file_google_ads_googleads_v16_services_customer_user_access_service_proto_i return nil } } - file_google_ads_googleads_v16_services_customer_user_access_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_user_access_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomerUserAccessOperation); i { case 0: return &v.state @@ -466,7 +466,7 @@ func file_google_ads_googleads_v16_services_customer_user_access_service_proto_i return nil } } - file_google_ads_googleads_v16_services_customer_user_access_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_user_access_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerUserAccessResponse); i { case 0: return &v.state @@ -478,7 +478,7 @@ func file_google_ads_googleads_v16_services_customer_user_access_service_proto_i return nil } } - file_google_ads_googleads_v16_services_customer_user_access_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customer_user_access_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomerUserAccessResult); i { case 0: return &v.state @@ -491,7 +491,7 @@ func file_google_ads_googleads_v16_services_customer_user_access_service_proto_i } } } - file_google_ads_googleads_v16_services_customer_user_access_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_customer_user_access_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CustomerUserAccessOperation_Update)(nil), (*CustomerUserAccessOperation_Remove)(nil), } @@ -499,18 +499,18 @@ func file_google_ads_googleads_v16_services_customer_user_access_service_proto_i out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_customer_user_access_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_customer_user_access_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_customer_user_access_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_customer_user_access_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_customer_user_access_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_customer_user_access_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_customer_user_access_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_customer_user_access_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_customer_user_access_service_proto = out.File - file_google_ads_googleads_v16_services_customer_user_access_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_customer_user_access_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_customer_user_access_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_customer_user_access_service_proto = out.File + file_google_ads_googleads_v17_services_customer_user_access_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_customer_user_access_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_customer_user_access_service_proto_depIdxs = nil } diff --git a/services/customer_user_access_service_grpc.pb.go b/services/customer_user_access_service_grpc.pb.go index 948bde16..ab3eb304 100644 --- a/services/customer_user_access_service_grpc.pb.go +++ b/services/customer_user_access_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/customer_user_access_service.proto +// source: google/ads/googleads/v17/services/customer_user_access_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CustomerUserAccessService_MutateCustomerUserAccess_FullMethodName = "/google.ads.googleads.v16.services.CustomerUserAccessService/MutateCustomerUserAccess" + CustomerUserAccessService_MutateCustomerUserAccess_FullMethodName = "/google.ads.googleads.v17.services.CustomerUserAccessService/MutateCustomerUserAccess" ) // CustomerUserAccessServiceClient is the client API for CustomerUserAccessService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// This service manages the permissions of a user on a given customer. type CustomerUserAccessServiceClient interface { // Updates, removes permission of a user on a given customer. Operation // statuses are returned. @@ -66,8 +68,9 @@ func NewCustomerUserAccessServiceClient(cc grpc.ClientConnInterface) CustomerUse } func (c *customerUserAccessServiceClient) MutateCustomerUserAccess(ctx context.Context, in *MutateCustomerUserAccessRequest, opts ...grpc.CallOption) (*MutateCustomerUserAccessResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCustomerUserAccessResponse) - err := c.cc.Invoke(ctx, CustomerUserAccessService_MutateCustomerUserAccess_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CustomerUserAccessService_MutateCustomerUserAccess_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -77,6 +80,8 @@ func (c *customerUserAccessServiceClient) MutateCustomerUserAccess(ctx context.C // CustomerUserAccessServiceServer is the server API for CustomerUserAccessService service. // All implementations must embed UnimplementedCustomerUserAccessServiceServer // for forward compatibility +// +// This service manages the permissions of a user on a given customer. type CustomerUserAccessServiceServer interface { // Updates, removes permission of a user on a given customer. Operation // statuses are returned. @@ -139,7 +144,7 @@ func _CustomerUserAccessService_MutateCustomerUserAccess_Handler(srv interface{} // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CustomerUserAccessService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CustomerUserAccessService", + ServiceName: "google.ads.googleads.v17.services.CustomerUserAccessService", HandlerType: (*CustomerUserAccessServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -148,5 +153,5 @@ var CustomerUserAccessService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/customer_user_access_service.proto", + Metadata: "google/ads/googleads/v17/services/customer_user_access_service.proto", } diff --git a/services/customizer_attribute_service.pb.go b/services/customizer_attribute_service.pb.go index 852f711c..3c93d8c1 100644 --- a/services/customizer_attribute_service.pb.go +++ b/services/customizer_attribute_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/customizer_attribute_service.proto +// source: google/ads/googleads/v17/services/customizer_attribute_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [CustomizerAttributeService.MutateCustomizerAttributes][google.ads.googleads.v16.services.CustomizerAttributeService.MutateCustomizerAttributes]. +// [CustomizerAttributeService.MutateCustomizerAttributes][google.ads.googleads.v17.services.CustomizerAttributeService.MutateCustomizerAttributes]. type MutateCustomizerAttributesRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -62,13 +62,13 @@ type MutateCustomizerAttributesRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateCustomizerAttributesRequest) Reset() { *x = MutateCustomizerAttributesRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customizer_attribute_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customizer_attribute_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81,7 +81,7 @@ func (x *MutateCustomizerAttributesRequest) String() string { func (*MutateCustomizerAttributesRequest) ProtoMessage() {} func (x *MutateCustomizerAttributesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customizer_attribute_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_customizer_attribute_service_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 *MutateCustomizerAttributesRequest) ProtoReflect() protoreflect.Message // Deprecated: Use MutateCustomizerAttributesRequest.ProtoReflect.Descriptor instead. func (*MutateCustomizerAttributesRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customizer_attribute_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_customizer_attribute_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomizerAttributesRequest) GetCustomerId() string { @@ -152,7 +152,7 @@ type CustomizerAttributeOperation struct { func (x *CustomizerAttributeOperation) Reset() { *x = CustomizerAttributeOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customizer_attribute_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customizer_attribute_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -165,7 +165,7 @@ func (x *CustomizerAttributeOperation) String() string { func (*CustomizerAttributeOperation) ProtoMessage() {} func (x *CustomizerAttributeOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customizer_attribute_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_customizer_attribute_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -178,7 +178,7 @@ func (x *CustomizerAttributeOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomizerAttributeOperation.ProtoReflect.Descriptor instead. func (*CustomizerAttributeOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customizer_attribute_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_customizer_attribute_service_proto_rawDescGZIP(), []int{1} } func (x *CustomizerAttributeOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -248,7 +248,7 @@ type MutateCustomizerAttributesResponse struct { func (x *MutateCustomizerAttributesResponse) Reset() { *x = MutateCustomizerAttributesResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customizer_attribute_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customizer_attribute_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -261,7 +261,7 @@ func (x *MutateCustomizerAttributesResponse) String() string { func (*MutateCustomizerAttributesResponse) ProtoMessage() {} func (x *MutateCustomizerAttributesResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customizer_attribute_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_customizer_attribute_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -274,7 +274,7 @@ func (x *MutateCustomizerAttributesResponse) ProtoReflect() protoreflect.Message // Deprecated: Use MutateCustomizerAttributesResponse.ProtoReflect.Descriptor instead. func (*MutateCustomizerAttributesResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customizer_attribute_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_customizer_attribute_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomizerAttributesResponse) GetResults() []*MutateCustomizerAttributeResult { @@ -308,7 +308,7 @@ type MutateCustomizerAttributeResult struct { func (x *MutateCustomizerAttributeResult) Reset() { *x = MutateCustomizerAttributeResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_customizer_attribute_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customizer_attribute_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -321,7 +321,7 @@ func (x *MutateCustomizerAttributeResult) String() string { func (*MutateCustomizerAttributeResult) ProtoMessage() {} func (x *MutateCustomizerAttributeResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_customizer_attribute_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_customizer_attribute_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -334,7 +334,7 @@ func (x *MutateCustomizerAttributeResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomizerAttributeResult.ProtoReflect.Descriptor instead. func (*MutateCustomizerAttributeResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_customizer_attribute_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_customizer_attribute_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomizerAttributeResult) GetResourceName() string { @@ -351,21 +351,21 @@ func (x *MutateCustomizerAttributeResult) GetCustomizerAttribute() *resources.Cu return nil } -var File_google_ads_googleads_v16_services_customizer_attribute_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_customizer_attribute_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_customizer_attribute_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_customizer_attribute_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 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, 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, + 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, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, @@ -386,7 +386,7 @@ var file_google_ads_googleads_v16_services_customizer_attribute_service_proto_ra 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x64, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, @@ -398,7 +398,7 @@ var file_google_ads_googleads_v16_services_customizer_attribute_service_proto_ra 0x6c, 0x79, 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, @@ -411,7 +411,7 @@ var file_google_ads_googleads_v16_services_customizer_attribute_service_proto_ra 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x51, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 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, 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, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x4b, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x02, @@ -425,7 +425,7 @@ var file_google_ads_googleads_v16_services_customizer_attribute_service_proto_ra 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5c, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x46, 0x0a, 0x15, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x66, @@ -443,7 +443,7 @@ var file_google_ads_googleads_v16_services_customizer_attribute_service_proto_ra 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x6a, 0x0a, 0x14, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 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, + 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x52, 0x13, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, @@ -452,17 +452,17 @@ var file_google_ads_googleads_v16_services_customizer_attribute_service_proto_ra 0x63, 0x65, 0x12, 0x89, 0x02, 0x0a, 0x1a, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x12, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5e, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3f, 0x3a, - 0x01, 0x2a, 0x22, 0x3a, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x01, 0x2a, 0x22, 0x3a, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, @@ -472,57 +472,57 @@ var file_google_ads_googleads_v16_services_customizer_attribute_service_proto_ra 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x8b, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1f, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, - 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, + 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_customizer_attribute_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_customizer_attribute_service_proto_rawDescData = file_google_ads_googleads_v16_services_customizer_attribute_service_proto_rawDesc + file_google_ads_googleads_v17_services_customizer_attribute_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_customizer_attribute_service_proto_rawDescData = file_google_ads_googleads_v17_services_customizer_attribute_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_customizer_attribute_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_customizer_attribute_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_customizer_attribute_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_customizer_attribute_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_customizer_attribute_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_customizer_attribute_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_customizer_attribute_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_customizer_attribute_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_customizer_attribute_service_proto_rawDescData + return file_google_ads_googleads_v17_services_customizer_attribute_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_customizer_attribute_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_customizer_attribute_service_proto_goTypes = []interface{}{ - (*MutateCustomizerAttributesRequest)(nil), // 0: google.ads.googleads.v16.services.MutateCustomizerAttributesRequest - (*CustomizerAttributeOperation)(nil), // 1: google.ads.googleads.v16.services.CustomizerAttributeOperation - (*MutateCustomizerAttributesResponse)(nil), // 2: google.ads.googleads.v16.services.MutateCustomizerAttributesResponse - (*MutateCustomizerAttributeResult)(nil), // 3: google.ads.googleads.v16.services.MutateCustomizerAttributeResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_customizer_attribute_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_customizer_attribute_service_proto_goTypes = []interface{}{ + (*MutateCustomizerAttributesRequest)(nil), // 0: google.ads.googleads.v17.services.MutateCustomizerAttributesRequest + (*CustomizerAttributeOperation)(nil), // 1: google.ads.googleads.v17.services.CustomizerAttributeOperation + (*MutateCustomizerAttributesResponse)(nil), // 2: google.ads.googleads.v17.services.MutateCustomizerAttributesResponse + (*MutateCustomizerAttributeResult)(nil), // 3: google.ads.googleads.v17.services.MutateCustomizerAttributeResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.CustomizerAttribute)(nil), // 6: google.ads.googleads.v16.resources.CustomizerAttribute + (*resources.CustomizerAttribute)(nil), // 6: google.ads.googleads.v17.resources.CustomizerAttribute (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_customizer_attribute_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateCustomizerAttributesRequest.operations:type_name -> google.ads.googleads.v16.services.CustomizerAttributeOperation - 4, // 1: google.ads.googleads.v16.services.MutateCustomizerAttributesRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.CustomizerAttributeOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.CustomizerAttributeOperation.create:type_name -> google.ads.googleads.v16.resources.CustomizerAttribute - 3, // 4: google.ads.googleads.v16.services.MutateCustomizerAttributesResponse.results:type_name -> google.ads.googleads.v16.services.MutateCustomizerAttributeResult - 7, // 5: google.ads.googleads.v16.services.MutateCustomizerAttributesResponse.partial_failure_error:type_name -> google.rpc.Status - 6, // 6: google.ads.googleads.v16.services.MutateCustomizerAttributeResult.customizer_attribute:type_name -> google.ads.googleads.v16.resources.CustomizerAttribute - 0, // 7: google.ads.googleads.v16.services.CustomizerAttributeService.MutateCustomizerAttributes:input_type -> google.ads.googleads.v16.services.MutateCustomizerAttributesRequest - 2, // 8: google.ads.googleads.v16.services.CustomizerAttributeService.MutateCustomizerAttributes:output_type -> google.ads.googleads.v16.services.MutateCustomizerAttributesResponse +var file_google_ads_googleads_v17_services_customizer_attribute_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateCustomizerAttributesRequest.operations:type_name -> google.ads.googleads.v17.services.CustomizerAttributeOperation + 4, // 1: google.ads.googleads.v17.services.MutateCustomizerAttributesRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.CustomizerAttributeOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.CustomizerAttributeOperation.create:type_name -> google.ads.googleads.v17.resources.CustomizerAttribute + 3, // 4: google.ads.googleads.v17.services.MutateCustomizerAttributesResponse.results:type_name -> google.ads.googleads.v17.services.MutateCustomizerAttributeResult + 7, // 5: google.ads.googleads.v17.services.MutateCustomizerAttributesResponse.partial_failure_error:type_name -> google.rpc.Status + 6, // 6: google.ads.googleads.v17.services.MutateCustomizerAttributeResult.customizer_attribute:type_name -> google.ads.googleads.v17.resources.CustomizerAttribute + 0, // 7: google.ads.googleads.v17.services.CustomizerAttributeService.MutateCustomizerAttributes:input_type -> google.ads.googleads.v17.services.MutateCustomizerAttributesRequest + 2, // 8: google.ads.googleads.v17.services.CustomizerAttributeService.MutateCustomizerAttributes:output_type -> google.ads.googleads.v17.services.MutateCustomizerAttributesResponse 8, // [8:9] is the sub-list for method output_type 7, // [7:8] is the sub-list for method input_type 7, // [7:7] is the sub-list for extension type_name @@ -530,13 +530,13 @@ var file_google_ads_googleads_v16_services_customizer_attribute_service_proto_de 0, // [0:7] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_customizer_attribute_service_proto_init() } -func file_google_ads_googleads_v16_services_customizer_attribute_service_proto_init() { - if File_google_ads_googleads_v16_services_customizer_attribute_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_customizer_attribute_service_proto_init() } +func file_google_ads_googleads_v17_services_customizer_attribute_service_proto_init() { + if File_google_ads_googleads_v17_services_customizer_attribute_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_customizer_attribute_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customizer_attribute_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomizerAttributesRequest); i { case 0: return &v.state @@ -548,7 +548,7 @@ func file_google_ads_googleads_v16_services_customizer_attribute_service_proto_i return nil } } - file_google_ads_googleads_v16_services_customizer_attribute_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customizer_attribute_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomizerAttributeOperation); i { case 0: return &v.state @@ -560,7 +560,7 @@ func file_google_ads_googleads_v16_services_customizer_attribute_service_proto_i return nil } } - file_google_ads_googleads_v16_services_customizer_attribute_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customizer_attribute_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomizerAttributesResponse); i { case 0: return &v.state @@ -572,7 +572,7 @@ func file_google_ads_googleads_v16_services_customizer_attribute_service_proto_i return nil } } - file_google_ads_googleads_v16_services_customizer_attribute_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_customizer_attribute_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateCustomizerAttributeResult); i { case 0: return &v.state @@ -585,7 +585,7 @@ func file_google_ads_googleads_v16_services_customizer_attribute_service_proto_i } } } - file_google_ads_googleads_v16_services_customizer_attribute_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_customizer_attribute_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CustomizerAttributeOperation_Create)(nil), (*CustomizerAttributeOperation_Remove)(nil), } @@ -593,18 +593,18 @@ func file_google_ads_googleads_v16_services_customizer_attribute_service_proto_i out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_customizer_attribute_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_customizer_attribute_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_customizer_attribute_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_customizer_attribute_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_customizer_attribute_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_customizer_attribute_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_customizer_attribute_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_customizer_attribute_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_customizer_attribute_service_proto = out.File - file_google_ads_googleads_v16_services_customizer_attribute_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_customizer_attribute_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_customizer_attribute_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_customizer_attribute_service_proto = out.File + file_google_ads_googleads_v17_services_customizer_attribute_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_customizer_attribute_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_customizer_attribute_service_proto_depIdxs = nil } diff --git a/services/customizer_attribute_service_grpc.pb.go b/services/customizer_attribute_service_grpc.pb.go index 3392d64e..1ef01f8f 100644 --- a/services/customizer_attribute_service_grpc.pb.go +++ b/services/customizer_attribute_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/customizer_attribute_service.proto +// source: google/ads/googleads/v17/services/customizer_attribute_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - CustomizerAttributeService_MutateCustomizerAttributes_FullMethodName = "/google.ads.googleads.v16.services.CustomizerAttributeService/MutateCustomizerAttributes" + CustomizerAttributeService_MutateCustomizerAttributes_FullMethodName = "/google.ads.googleads.v17.services.CustomizerAttributeService/MutateCustomizerAttributes" ) // CustomizerAttributeServiceClient is the client API for CustomizerAttributeService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage customizer attribute type CustomizerAttributeServiceClient interface { // Creates, updates or removes customizer attributes. Operation statuses are // returned. @@ -54,8 +56,9 @@ func NewCustomizerAttributeServiceClient(cc grpc.ClientConnInterface) Customizer } func (c *customizerAttributeServiceClient) MutateCustomizerAttributes(ctx context.Context, in *MutateCustomizerAttributesRequest, opts ...grpc.CallOption) (*MutateCustomizerAttributesResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateCustomizerAttributesResponse) - err := c.cc.Invoke(ctx, CustomizerAttributeService_MutateCustomizerAttributes_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, CustomizerAttributeService_MutateCustomizerAttributes_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -65,6 +68,8 @@ func (c *customizerAttributeServiceClient) MutateCustomizerAttributes(ctx contex // CustomizerAttributeServiceServer is the server API for CustomizerAttributeService service. // All implementations must embed UnimplementedCustomizerAttributeServiceServer // for forward compatibility +// +// Service to manage customizer attribute type CustomizerAttributeServiceServer interface { // Creates, updates or removes customizer attributes. Operation statuses are // returned. @@ -115,7 +120,7 @@ func _CustomizerAttributeService_MutateCustomizerAttributes_Handler(srv interfac // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CustomizerAttributeService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.CustomizerAttributeService", + ServiceName: "google.ads.googleads.v17.services.CustomizerAttributeService", HandlerType: (*CustomizerAttributeServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -124,5 +129,5 @@ var CustomizerAttributeService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/customizer_attribute_service.proto", + Metadata: "google/ads/googleads/v17/services/customizer_attribute_service.proto", } diff --git a/services/experiment_arm_service.pb.go b/services/experiment_arm_service.pb.go index 29dfeca4..5ef8d812 100644 --- a/services/experiment_arm_service.pb.go +++ b/services/experiment_arm_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/experiment_arm_service.proto +// source: google/ads/googleads/v17/services/experiment_arm_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [ExperimentArmService.MutateExperimentArms][google.ads.googleads.v16.services.ExperimentArmService.MutateExperimentArms]. +// [ExperimentArmService.MutateExperimentArms][google.ads.googleads.v17.services.ExperimentArmService.MutateExperimentArms]. type MutateExperimentArmsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -60,13 +60,13 @@ type MutateExperimentArmsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateExperimentArmsRequest) Reset() { *x = MutateExperimentArmsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_experiment_arm_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_experiment_arm_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateExperimentArmsRequest) String() string { func (*MutateExperimentArmsRequest) ProtoMessage() {} func (x *MutateExperimentArmsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_experiment_arm_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_experiment_arm_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateExperimentArmsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateExperimentArmsRequest.ProtoReflect.Descriptor instead. func (*MutateExperimentArmsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_experiment_arm_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_experiment_arm_service_proto_rawDescGZIP(), []int{0} } func (x *MutateExperimentArmsRequest) GetCustomerId() string { @@ -151,7 +151,7 @@ type ExperimentArmOperation struct { func (x *ExperimentArmOperation) Reset() { *x = ExperimentArmOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_experiment_arm_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_experiment_arm_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164,7 +164,7 @@ func (x *ExperimentArmOperation) String() string { func (*ExperimentArmOperation) ProtoMessage() {} func (x *ExperimentArmOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_experiment_arm_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_experiment_arm_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177,7 +177,7 @@ func (x *ExperimentArmOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use ExperimentArmOperation.ProtoReflect.Descriptor instead. func (*ExperimentArmOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_experiment_arm_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_experiment_arm_service_proto_rawDescGZIP(), []int{1} } func (x *ExperimentArmOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -262,7 +262,7 @@ type MutateExperimentArmsResponse struct { func (x *MutateExperimentArmsResponse) Reset() { *x = MutateExperimentArmsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_experiment_arm_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_experiment_arm_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -275,7 +275,7 @@ func (x *MutateExperimentArmsResponse) String() string { func (*MutateExperimentArmsResponse) ProtoMessage() {} func (x *MutateExperimentArmsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_experiment_arm_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_experiment_arm_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -288,7 +288,7 @@ func (x *MutateExperimentArmsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateExperimentArmsResponse.ProtoReflect.Descriptor instead. func (*MutateExperimentArmsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_experiment_arm_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_experiment_arm_service_proto_rawDescGZIP(), []int{2} } func (x *MutateExperimentArmsResponse) GetPartialFailureError() *status.Status { @@ -322,7 +322,7 @@ type MutateExperimentArmResult struct { func (x *MutateExperimentArmResult) Reset() { *x = MutateExperimentArmResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_experiment_arm_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_experiment_arm_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -335,7 +335,7 @@ func (x *MutateExperimentArmResult) String() string { func (*MutateExperimentArmResult) ProtoMessage() {} func (x *MutateExperimentArmResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_experiment_arm_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_experiment_arm_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -348,7 +348,7 @@ func (x *MutateExperimentArmResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateExperimentArmResult.ProtoReflect.Descriptor instead. func (*MutateExperimentArmResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_experiment_arm_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_experiment_arm_service_proto_rawDescGZIP(), []int{3} } func (x *MutateExperimentArmResult) GetResourceName() string { @@ -365,21 +365,21 @@ func (x *MutateExperimentArmResult) GetExperimentArm() *resources.ExperimentArm return nil } -var File_google_ads_googleads_v16_services_experiment_arm_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_experiment_arm_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_experiment_arm_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_experiment_arm_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x72, 0x6d, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 0x67, 0x6f, 0x6f, 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x72, 0x6d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, @@ -399,7 +399,7 @@ var file_google_ads_googleads_v16_services_experiment_arm_service_proto_rawDesc 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5e, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x72, 0x6d, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, @@ -411,7 +411,7 @@ var file_google_ads_googleads_v16_services_experiment_arm_service_proto_rawDesc 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, @@ -423,12 +423,12 @@ var file_google_ads_googleads_v16_services_experiment_arm_service_proto_rawDesc 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x4b, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 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, 0x72, + 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, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x72, 0x6d, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x4b, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x02, 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, 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, 0x2e, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x72, 0x6d, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x45, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2b, 0xfa, @@ -445,7 +445,7 @@ var file_google_ads_googleads_v16_services_experiment_arm_service_proto_rawDesc 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x56, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x72, 0x6d, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xc7, 0x01, 0x0a, 0x19, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x45, 0x78, 0x70, @@ -458,23 +458,23 @@ var file_google_ads_googleads_v16_services_experiment_arm_service_proto_rawDesc 0x6d, 0x65, 0x12, 0x58, 0x0a, 0x0e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x72, 0x6d, 0x18, 0x02, 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, 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, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x72, 0x6d, 0x52, 0x0d, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x72, 0x6d, 0x32, 0xd1, 0x02, 0x0a, 0x14, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x72, 0x6d, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xf1, 0x01, 0x0a, 0x14, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x72, 0x6d, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x72, 0x6d, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x72, 0x6d, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x58, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x39, - 0x3a, 0x01, 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x3a, 0x01, 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x72, 0x6d, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, @@ -484,57 +484,57 @@ var file_google_ads_googleads_v16_services_experiment_arm_service_proto_rawDesc 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x85, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x19, 0x45, 0x78, 0x70, 0x65, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x19, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x72, 0x6d, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, + 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_experiment_arm_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_experiment_arm_service_proto_rawDescData = file_google_ads_googleads_v16_services_experiment_arm_service_proto_rawDesc + file_google_ads_googleads_v17_services_experiment_arm_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_experiment_arm_service_proto_rawDescData = file_google_ads_googleads_v17_services_experiment_arm_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_experiment_arm_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_experiment_arm_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_experiment_arm_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_experiment_arm_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_experiment_arm_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_experiment_arm_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_experiment_arm_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_experiment_arm_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_experiment_arm_service_proto_rawDescData + return file_google_ads_googleads_v17_services_experiment_arm_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_experiment_arm_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_experiment_arm_service_proto_goTypes = []interface{}{ - (*MutateExperimentArmsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateExperimentArmsRequest - (*ExperimentArmOperation)(nil), // 1: google.ads.googleads.v16.services.ExperimentArmOperation - (*MutateExperimentArmsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateExperimentArmsResponse - (*MutateExperimentArmResult)(nil), // 3: google.ads.googleads.v16.services.MutateExperimentArmResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_experiment_arm_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_experiment_arm_service_proto_goTypes = []interface{}{ + (*MutateExperimentArmsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateExperimentArmsRequest + (*ExperimentArmOperation)(nil), // 1: google.ads.googleads.v17.services.ExperimentArmOperation + (*MutateExperimentArmsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateExperimentArmsResponse + (*MutateExperimentArmResult)(nil), // 3: google.ads.googleads.v17.services.MutateExperimentArmResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.ExperimentArm)(nil), // 6: google.ads.googleads.v16.resources.ExperimentArm + (*resources.ExperimentArm)(nil), // 6: google.ads.googleads.v17.resources.ExperimentArm (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_experiment_arm_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateExperimentArmsRequest.operations:type_name -> google.ads.googleads.v16.services.ExperimentArmOperation - 4, // 1: google.ads.googleads.v16.services.MutateExperimentArmsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.ExperimentArmOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.ExperimentArmOperation.create:type_name -> google.ads.googleads.v16.resources.ExperimentArm - 6, // 4: google.ads.googleads.v16.services.ExperimentArmOperation.update:type_name -> google.ads.googleads.v16.resources.ExperimentArm - 7, // 5: google.ads.googleads.v16.services.MutateExperimentArmsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v16.services.MutateExperimentArmsResponse.results:type_name -> google.ads.googleads.v16.services.MutateExperimentArmResult - 6, // 7: google.ads.googleads.v16.services.MutateExperimentArmResult.experiment_arm:type_name -> google.ads.googleads.v16.resources.ExperimentArm - 0, // 8: google.ads.googleads.v16.services.ExperimentArmService.MutateExperimentArms:input_type -> google.ads.googleads.v16.services.MutateExperimentArmsRequest - 2, // 9: google.ads.googleads.v16.services.ExperimentArmService.MutateExperimentArms:output_type -> google.ads.googleads.v16.services.MutateExperimentArmsResponse +var file_google_ads_googleads_v17_services_experiment_arm_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateExperimentArmsRequest.operations:type_name -> google.ads.googleads.v17.services.ExperimentArmOperation + 4, // 1: google.ads.googleads.v17.services.MutateExperimentArmsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.ExperimentArmOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.ExperimentArmOperation.create:type_name -> google.ads.googleads.v17.resources.ExperimentArm + 6, // 4: google.ads.googleads.v17.services.ExperimentArmOperation.update:type_name -> google.ads.googleads.v17.resources.ExperimentArm + 7, // 5: google.ads.googleads.v17.services.MutateExperimentArmsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v17.services.MutateExperimentArmsResponse.results:type_name -> google.ads.googleads.v17.services.MutateExperimentArmResult + 6, // 7: google.ads.googleads.v17.services.MutateExperimentArmResult.experiment_arm:type_name -> google.ads.googleads.v17.resources.ExperimentArm + 0, // 8: google.ads.googleads.v17.services.ExperimentArmService.MutateExperimentArms:input_type -> google.ads.googleads.v17.services.MutateExperimentArmsRequest + 2, // 9: google.ads.googleads.v17.services.ExperimentArmService.MutateExperimentArms:output_type -> google.ads.googleads.v17.services.MutateExperimentArmsResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -542,13 +542,13 @@ var file_google_ads_googleads_v16_services_experiment_arm_service_proto_depIdxs 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_experiment_arm_service_proto_init() } -func file_google_ads_googleads_v16_services_experiment_arm_service_proto_init() { - if File_google_ads_googleads_v16_services_experiment_arm_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_experiment_arm_service_proto_init() } +func file_google_ads_googleads_v17_services_experiment_arm_service_proto_init() { + if File_google_ads_googleads_v17_services_experiment_arm_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_experiment_arm_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_experiment_arm_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateExperimentArmsRequest); i { case 0: return &v.state @@ -560,7 +560,7 @@ func file_google_ads_googleads_v16_services_experiment_arm_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_experiment_arm_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_experiment_arm_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ExperimentArmOperation); i { case 0: return &v.state @@ -572,7 +572,7 @@ func file_google_ads_googleads_v16_services_experiment_arm_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_experiment_arm_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_experiment_arm_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateExperimentArmsResponse); i { case 0: return &v.state @@ -584,7 +584,7 @@ func file_google_ads_googleads_v16_services_experiment_arm_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_experiment_arm_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_experiment_arm_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateExperimentArmResult); i { case 0: return &v.state @@ -597,7 +597,7 @@ func file_google_ads_googleads_v16_services_experiment_arm_service_proto_init() } } } - file_google_ads_googleads_v16_services_experiment_arm_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_experiment_arm_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*ExperimentArmOperation_Create)(nil), (*ExperimentArmOperation_Update)(nil), (*ExperimentArmOperation_Remove)(nil), @@ -606,18 +606,18 @@ func file_google_ads_googleads_v16_services_experiment_arm_service_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_experiment_arm_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_experiment_arm_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_experiment_arm_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_experiment_arm_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_experiment_arm_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_experiment_arm_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_experiment_arm_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_experiment_arm_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_experiment_arm_service_proto = out.File - file_google_ads_googleads_v16_services_experiment_arm_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_experiment_arm_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_experiment_arm_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_experiment_arm_service_proto = out.File + file_google_ads_googleads_v17_services_experiment_arm_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_experiment_arm_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_experiment_arm_service_proto_depIdxs = nil } diff --git a/services/experiment_arm_service_grpc.pb.go b/services/experiment_arm_service_grpc.pb.go index ca91adcb..8aeaaa3a 100644 --- a/services/experiment_arm_service_grpc.pb.go +++ b/services/experiment_arm_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/experiment_arm_service.proto +// source: google/ads/googleads/v17/services/experiment_arm_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - ExperimentArmService_MutateExperimentArms_FullMethodName = "/google.ads.googleads.v16.services.ExperimentArmService/MutateExperimentArms" + ExperimentArmService_MutateExperimentArms_FullMethodName = "/google.ads.googleads.v17.services.ExperimentArmService/MutateExperimentArms" ) // ExperimentArmServiceClient is the client API for ExperimentArmService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage experiment arms. type ExperimentArmServiceClient interface { // Creates, updates, or removes experiment arms. Operation statuses are // returned. @@ -64,8 +66,9 @@ func NewExperimentArmServiceClient(cc grpc.ClientConnInterface) ExperimentArmSer } func (c *experimentArmServiceClient) MutateExperimentArms(ctx context.Context, in *MutateExperimentArmsRequest, opts ...grpc.CallOption) (*MutateExperimentArmsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateExperimentArmsResponse) - err := c.cc.Invoke(ctx, ExperimentArmService_MutateExperimentArms_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, ExperimentArmService_MutateExperimentArms_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -75,6 +78,8 @@ func (c *experimentArmServiceClient) MutateExperimentArms(ctx context.Context, i // ExperimentArmServiceServer is the server API for ExperimentArmService service. // All implementations must embed UnimplementedExperimentArmServiceServer // for forward compatibility +// +// Service to manage experiment arms. type ExperimentArmServiceServer interface { // Creates, updates, or removes experiment arms. Operation statuses are // returned. @@ -134,7 +139,7 @@ func _ExperimentArmService_MutateExperimentArms_Handler(srv interface{}, ctx con // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var ExperimentArmService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.ExperimentArmService", + ServiceName: "google.ads.googleads.v17.services.ExperimentArmService", HandlerType: (*ExperimentArmServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -143,5 +148,5 @@ var ExperimentArmService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/experiment_arm_service.proto", + Metadata: "google/ads/googleads/v17/services/experiment_arm_service.proto", } diff --git a/services/experiment_service.pb.go b/services/experiment_service.pb.go index 51fe0b58..99b64e03 100644 --- a/services/experiment_service.pb.go +++ b/services/experiment_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/experiment_service.proto +// source: google/ads/googleads/v17/services/experiment_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [ExperimentService.MutateExperiments][google.ads.googleads.v16.services.ExperimentService.MutateExperiments]. +// [ExperimentService.MutateExperiments][google.ads.googleads.v17.services.ExperimentService.MutateExperiments]. type MutateExperimentsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -64,7 +64,7 @@ type MutateExperimentsRequest struct { func (x *MutateExperimentsRequest) Reset() { *x = MutateExperimentsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *MutateExperimentsRequest) String() string { func (*MutateExperimentsRequest) ProtoMessage() {} func (x *MutateExperimentsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *MutateExperimentsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateExperimentsRequest.ProtoReflect.Descriptor instead. func (*MutateExperimentsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_experiment_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_experiment_service_proto_rawDescGZIP(), []int{0} } func (x *MutateExperimentsRequest) GetCustomerId() string { @@ -142,7 +142,7 @@ type ExperimentOperation struct { func (x *ExperimentOperation) Reset() { *x = ExperimentOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -155,7 +155,7 @@ func (x *ExperimentOperation) String() string { func (*ExperimentOperation) ProtoMessage() {} func (x *ExperimentOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -168,7 +168,7 @@ func (x *ExperimentOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use ExperimentOperation.ProtoReflect.Descriptor instead. func (*ExperimentOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_experiment_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_experiment_service_proto_rawDescGZIP(), []int{1} } func (x *ExperimentOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -253,7 +253,7 @@ type MutateExperimentsResponse struct { func (x *MutateExperimentsResponse) Reset() { *x = MutateExperimentsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -266,7 +266,7 @@ func (x *MutateExperimentsResponse) String() string { func (*MutateExperimentsResponse) ProtoMessage() {} func (x *MutateExperimentsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -279,7 +279,7 @@ func (x *MutateExperimentsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateExperimentsResponse.ProtoReflect.Descriptor instead. func (*MutateExperimentsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_experiment_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_experiment_service_proto_rawDescGZIP(), []int{2} } func (x *MutateExperimentsResponse) GetPartialFailureError() *status.Status { @@ -309,7 +309,7 @@ type MutateExperimentResult struct { func (x *MutateExperimentResult) Reset() { *x = MutateExperimentResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -322,7 +322,7 @@ func (x *MutateExperimentResult) String() string { func (*MutateExperimentResult) ProtoMessage() {} func (x *MutateExperimentResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -335,7 +335,7 @@ func (x *MutateExperimentResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateExperimentResult.ProtoReflect.Descriptor instead. func (*MutateExperimentResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_experiment_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_experiment_service_proto_rawDescGZIP(), []int{3} } func (x *MutateExperimentResult) GetResourceName() string { @@ -346,7 +346,7 @@ func (x *MutateExperimentResult) GetResourceName() string { } // Request message for -// [ExperimentService.EndExperiment][google.ads.googleads.v16.services.ExperimentService.EndExperiment]. +// [ExperimentService.EndExperiment][google.ads.googleads.v17.services.ExperimentService.EndExperiment]. type EndExperimentRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -362,7 +362,7 @@ type EndExperimentRequest struct { func (x *EndExperimentRequest) Reset() { *x = EndExperimentRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -375,7 +375,7 @@ func (x *EndExperimentRequest) String() string { func (*EndExperimentRequest) ProtoMessage() {} func (x *EndExperimentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -388,7 +388,7 @@ func (x *EndExperimentRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use EndExperimentRequest.ProtoReflect.Descriptor instead. func (*EndExperimentRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_experiment_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v17_services_experiment_service_proto_rawDescGZIP(), []int{4} } func (x *EndExperimentRequest) GetExperiment() string { @@ -406,7 +406,7 @@ func (x *EndExperimentRequest) GetValidateOnly() bool { } // Request message for -// [ExperimentService.ListExperimentAsyncErrors][google.ads.googleads.v16.services.ExperimentService.ListExperimentAsyncErrors]. +// [ExperimentService.ListExperimentAsyncErrors][google.ads.googleads.v17.services.ExperimentService.ListExperimentAsyncErrors]. type ListExperimentAsyncErrorsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -430,7 +430,7 @@ type ListExperimentAsyncErrorsRequest struct { func (x *ListExperimentAsyncErrorsRequest) Reset() { *x = ListExperimentAsyncErrorsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -443,7 +443,7 @@ func (x *ListExperimentAsyncErrorsRequest) String() string { func (*ListExperimentAsyncErrorsRequest) ProtoMessage() {} func (x *ListExperimentAsyncErrorsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -456,7 +456,7 @@ func (x *ListExperimentAsyncErrorsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListExperimentAsyncErrorsRequest.ProtoReflect.Descriptor instead. func (*ListExperimentAsyncErrorsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_experiment_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v17_services_experiment_service_proto_rawDescGZIP(), []int{5} } func (x *ListExperimentAsyncErrorsRequest) GetResourceName() string { @@ -481,7 +481,7 @@ func (x *ListExperimentAsyncErrorsRequest) GetPageSize() int32 { } // Response message for -// [ExperimentService.ListExperimentAsyncErrors][google.ads.googleads.v16.services.ExperimentService.ListExperimentAsyncErrors]. +// [ExperimentService.ListExperimentAsyncErrors][google.ads.googleads.v17.services.ExperimentService.ListExperimentAsyncErrors]. type ListExperimentAsyncErrorsResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -499,7 +499,7 @@ type ListExperimentAsyncErrorsResponse struct { func (x *ListExperimentAsyncErrorsResponse) Reset() { *x = ListExperimentAsyncErrorsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -512,7 +512,7 @@ func (x *ListExperimentAsyncErrorsResponse) String() string { func (*ListExperimentAsyncErrorsResponse) ProtoMessage() {} func (x *ListExperimentAsyncErrorsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[6] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -525,7 +525,7 @@ func (x *ListExperimentAsyncErrorsResponse) ProtoReflect() protoreflect.Message // Deprecated: Use ListExperimentAsyncErrorsResponse.ProtoReflect.Descriptor instead. func (*ListExperimentAsyncErrorsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_experiment_service_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v17_services_experiment_service_proto_rawDescGZIP(), []int{6} } func (x *ListExperimentAsyncErrorsResponse) GetErrors() []*status.Status { @@ -543,7 +543,7 @@ func (x *ListExperimentAsyncErrorsResponse) GetNextPageToken() string { } // Request message for -// [ExperimentService.GraduateExperiment][google.ads.googleads.v16.services.ExperimentService.GraduateExperiment]. +// [ExperimentService.GraduateExperiment][google.ads.googleads.v17.services.ExperimentService.GraduateExperiment]. type GraduateExperimentRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -563,7 +563,7 @@ type GraduateExperimentRequest struct { func (x *GraduateExperimentRequest) Reset() { *x = GraduateExperimentRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -576,7 +576,7 @@ func (x *GraduateExperimentRequest) String() string { func (*GraduateExperimentRequest) ProtoMessage() {} func (x *GraduateExperimentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[7] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -589,7 +589,7 @@ func (x *GraduateExperimentRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GraduateExperimentRequest.ProtoReflect.Descriptor instead. func (*GraduateExperimentRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_experiment_service_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v17_services_experiment_service_proto_rawDescGZIP(), []int{7} } func (x *GraduateExperimentRequest) GetExperiment() string { @@ -629,7 +629,7 @@ type CampaignBudgetMapping struct { func (x *CampaignBudgetMapping) Reset() { *x = CampaignBudgetMapping{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -642,7 +642,7 @@ func (x *CampaignBudgetMapping) String() string { func (*CampaignBudgetMapping) ProtoMessage() {} func (x *CampaignBudgetMapping) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[8] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -655,7 +655,7 @@ func (x *CampaignBudgetMapping) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignBudgetMapping.ProtoReflect.Descriptor instead. func (*CampaignBudgetMapping) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_experiment_service_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v17_services_experiment_service_proto_rawDescGZIP(), []int{8} } func (x *CampaignBudgetMapping) GetExperimentCampaign() string { @@ -673,7 +673,7 @@ func (x *CampaignBudgetMapping) GetCampaignBudget() string { } // Request message for -// [ExperimentService.ScheduleExperiment][google.ads.googleads.v16.services.ExperimentService.ScheduleExperiment]. +// [ExperimentService.ScheduleExperiment][google.ads.googleads.v17.services.ExperimentService.ScheduleExperiment]. type ScheduleExperimentRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -689,7 +689,7 @@ type ScheduleExperimentRequest struct { func (x *ScheduleExperimentRequest) Reset() { *x = ScheduleExperimentRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -702,7 +702,7 @@ func (x *ScheduleExperimentRequest) String() string { func (*ScheduleExperimentRequest) ProtoMessage() {} func (x *ScheduleExperimentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[9] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -715,7 +715,7 @@ func (x *ScheduleExperimentRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ScheduleExperimentRequest.ProtoReflect.Descriptor instead. func (*ScheduleExperimentRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_experiment_service_proto_rawDescGZIP(), []int{9} + return file_google_ads_googleads_v17_services_experiment_service_proto_rawDescGZIP(), []int{9} } func (x *ScheduleExperimentRequest) GetResourceName() string { @@ -745,7 +745,7 @@ type ScheduleExperimentMetadata struct { func (x *ScheduleExperimentMetadata) Reset() { *x = ScheduleExperimentMetadata{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -758,7 +758,7 @@ func (x *ScheduleExperimentMetadata) String() string { func (*ScheduleExperimentMetadata) ProtoMessage() {} func (x *ScheduleExperimentMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[10] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -771,7 +771,7 @@ func (x *ScheduleExperimentMetadata) ProtoReflect() protoreflect.Message { // Deprecated: Use ScheduleExperimentMetadata.ProtoReflect.Descriptor instead. func (*ScheduleExperimentMetadata) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_experiment_service_proto_rawDescGZIP(), []int{10} + return file_google_ads_googleads_v17_services_experiment_service_proto_rawDescGZIP(), []int{10} } func (x *ScheduleExperimentMetadata) GetExperiment() string { @@ -782,7 +782,7 @@ func (x *ScheduleExperimentMetadata) GetExperiment() string { } // Request message for -// [ExperimentService.PromoteExperiment][google.ads.googleads.v16.services.ExperimentService.PromoteExperiment]. +// [ExperimentService.PromoteExperiment][google.ads.googleads.v17.services.ExperimentService.PromoteExperiment]. type PromoteExperimentRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -798,7 +798,7 @@ type PromoteExperimentRequest struct { func (x *PromoteExperimentRequest) Reset() { *x = PromoteExperimentRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -811,7 +811,7 @@ func (x *PromoteExperimentRequest) String() string { func (*PromoteExperimentRequest) ProtoMessage() {} func (x *PromoteExperimentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[11] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -824,7 +824,7 @@ func (x *PromoteExperimentRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PromoteExperimentRequest.ProtoReflect.Descriptor instead. func (*PromoteExperimentRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_experiment_service_proto_rawDescGZIP(), []int{11} + return file_google_ads_googleads_v17_services_experiment_service_proto_rawDescGZIP(), []int{11} } func (x *PromoteExperimentRequest) GetResourceName() string { @@ -854,7 +854,7 @@ type PromoteExperimentMetadata struct { func (x *PromoteExperimentMetadata) Reset() { *x = PromoteExperimentMetadata{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[12] + mi := &file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -867,7 +867,7 @@ func (x *PromoteExperimentMetadata) String() string { func (*PromoteExperimentMetadata) ProtoMessage() {} func (x *PromoteExperimentMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[12] + mi := &file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[12] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -880,7 +880,7 @@ func (x *PromoteExperimentMetadata) ProtoReflect() protoreflect.Message { // Deprecated: Use PromoteExperimentMetadata.ProtoReflect.Descriptor instead. func (*PromoteExperimentMetadata) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_experiment_service_proto_rawDescGZIP(), []int{12} + return file_google_ads_googleads_v17_services_experiment_service_proto_rawDescGZIP(), []int{12} } func (x *PromoteExperimentMetadata) GetExperiment() string { @@ -890,17 +890,17 @@ func (x *PromoteExperimentMetadata) GetExperiment() string { return "" } -var File_google_ads_googleads_v16_services_experiment_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_experiment_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_experiment_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_experiment_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, @@ -924,7 +924,7 @@ var file_google_ads_googleads_v16_services_experiment_service_proto_rawDesc = [] 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5b, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, @@ -940,11 +940,11 @@ var file_google_ads_googleads_v16_services_experiment_service_proto_rawDesc = [] 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x48, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x45, 0x78, 0x70, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x48, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x02, 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, 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, 0x2e, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x42, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x28, 0xfa, 0x41, 0x25, @@ -960,7 +960,7 @@ var file_google_ads_googleads_v16_services_experiment_service_proto_rawDesc = [] 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x53, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x67, 0x0a, 0x16, 0x4d, 0x75, 0x74, 0x61, 0x74, @@ -1007,7 +1007,7 @@ var file_google_ads_googleads_v16_services_experiment_service_proto_rawDesc = [] 0x6e, 0x74, 0x12, 0x77, 0x0a, 0x18, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x16, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, @@ -1063,49 +1063,49 @@ var file_google_ads_googleads_v16_services_experiment_service_proto_rawDesc = [] 0x76, 0x69, 0x63, 0x65, 0x12, 0xe5, 0x01, 0x0a, 0x11, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x55, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, - 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x36, 0x3a, 0x01, 0x2a, 0x22, 0x31, 0x2f, 0x76, 0x31, 0x36, 0x2f, + 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x36, 0x3a, 0x01, 0x2a, 0x22, 0x31, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x12, 0xb3, 0x01, 0x0a, 0x0d, 0x45, 0x6e, 0x64, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x45, 0x6e, 0x64, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x51, 0xda, 0x41, 0x0a, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x82, 0xd3, - 0xe4, 0x93, 0x02, 0x3e, 0x3a, 0x01, 0x2a, 0x22, 0x39, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x7b, 0x65, + 0xe4, 0x93, 0x02, 0x3e, 0x3a, 0x01, 0x2a, 0x22, 0x39, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x7b, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x3d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x2a, 0x2f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x2a, 0x7d, 0x3a, 0x65, 0x6e, 0x64, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x88, 0x02, 0x0a, 0x19, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x73, 0x79, 0x6e, 0x63, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x12, 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, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x73, 0x79, 0x6e, 0x63, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x73, 0x79, 0x6e, 0x63, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x60, 0xda, 0x41, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x82, 0xd3, 0xe4, - 0x93, 0x02, 0x4a, 0x12, 0x48, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x93, 0x02, 0x4a, 0x12, 0x48, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x2a, 0x2f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x2a, 0x7d, 0x3a, 0x6c, 0x69, 0x73, 0x74, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x73, 0x79, 0x6e, 0x63, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x12, 0xdb, 0x01, 0x0a, 0x12, 0x47, 0x72, 0x61, 0x64, 0x75, 0x61, 0x74, 0x65, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x12, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x72, 0x61, 0x64, 0x75, 0x61, 0x74, 0x65, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, @@ -1113,13 +1113,13 @@ var file_google_ads_googleads_v16_services_experiment_service_proto_rawDesc = [] 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x2c, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x43, 0x3a, 0x01, 0x2a, 0x22, 0x3e, 0x2f, 0x76, 0x31, - 0x36, 0x2f, 0x7b, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x3d, 0x63, 0x75, + 0x37, 0x2f, 0x7b, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x3d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x2a, 0x2f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x2a, 0x7d, 0x3a, 0x67, 0x72, 0x61, 0x64, 0x75, 0x61, 0x74, 0x65, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0xa8, 0x02, 0x0a, 0x12, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x12, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x6e, 0x67, 0x72, 0x75, @@ -1127,30 +1127,30 @@ var file_google_ads_googleads_v16_services_experiment_service_proto_rawDesc = [] 0xb4, 0x01, 0xca, 0x41, 0x55, 0x0a, 0x15, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x3c, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xda, 0x41, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x46, - 0x3a, 0x01, 0x2a, 0x22, 0x41, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x3a, 0x01, 0x2a, 0x22, 0x41, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x2a, 0x2f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x2a, 0x7d, 0x3a, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0xa4, 0x02, 0x0a, 0x11, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x6e, 0x67, 0x72, 0x75, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xb2, 0x01, 0xca, 0x41, 0x54, 0x0a, 0x15, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x3b, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xda, 0x41, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x45, 0x3a, 0x01, 0x2a, 0x22, 0x40, 0x2f, 0x76, 0x31, - 0x36, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, + 0x37, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x2a, 0x2f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x2a, 0x7d, 0x3a, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x1a, 0x45, 0xca, @@ -1160,78 +1160,78 @@ var file_google_ads_googleads_v16_services_experiment_service_proto_rawDesc = [] 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x82, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x16, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x16, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, + 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_experiment_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_experiment_service_proto_rawDescData = file_google_ads_googleads_v16_services_experiment_service_proto_rawDesc + file_google_ads_googleads_v17_services_experiment_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_experiment_service_proto_rawDescData = file_google_ads_googleads_v17_services_experiment_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_experiment_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_experiment_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_experiment_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_experiment_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_experiment_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_experiment_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_experiment_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_experiment_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_experiment_service_proto_rawDescData -} - -var file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes = make([]protoimpl.MessageInfo, 13) -var file_google_ads_googleads_v16_services_experiment_service_proto_goTypes = []interface{}{ - (*MutateExperimentsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateExperimentsRequest - (*ExperimentOperation)(nil), // 1: google.ads.googleads.v16.services.ExperimentOperation - (*MutateExperimentsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateExperimentsResponse - (*MutateExperimentResult)(nil), // 3: google.ads.googleads.v16.services.MutateExperimentResult - (*EndExperimentRequest)(nil), // 4: google.ads.googleads.v16.services.EndExperimentRequest - (*ListExperimentAsyncErrorsRequest)(nil), // 5: google.ads.googleads.v16.services.ListExperimentAsyncErrorsRequest - (*ListExperimentAsyncErrorsResponse)(nil), // 6: google.ads.googleads.v16.services.ListExperimentAsyncErrorsResponse - (*GraduateExperimentRequest)(nil), // 7: google.ads.googleads.v16.services.GraduateExperimentRequest - (*CampaignBudgetMapping)(nil), // 8: google.ads.googleads.v16.services.CampaignBudgetMapping - (*ScheduleExperimentRequest)(nil), // 9: google.ads.googleads.v16.services.ScheduleExperimentRequest - (*ScheduleExperimentMetadata)(nil), // 10: google.ads.googleads.v16.services.ScheduleExperimentMetadata - (*PromoteExperimentRequest)(nil), // 11: google.ads.googleads.v16.services.PromoteExperimentRequest - (*PromoteExperimentMetadata)(nil), // 12: google.ads.googleads.v16.services.PromoteExperimentMetadata + return file_google_ads_googleads_v17_services_experiment_service_proto_rawDescData +} + +var file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes = make([]protoimpl.MessageInfo, 13) +var file_google_ads_googleads_v17_services_experiment_service_proto_goTypes = []interface{}{ + (*MutateExperimentsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateExperimentsRequest + (*ExperimentOperation)(nil), // 1: google.ads.googleads.v17.services.ExperimentOperation + (*MutateExperimentsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateExperimentsResponse + (*MutateExperimentResult)(nil), // 3: google.ads.googleads.v17.services.MutateExperimentResult + (*EndExperimentRequest)(nil), // 4: google.ads.googleads.v17.services.EndExperimentRequest + (*ListExperimentAsyncErrorsRequest)(nil), // 5: google.ads.googleads.v17.services.ListExperimentAsyncErrorsRequest + (*ListExperimentAsyncErrorsResponse)(nil), // 6: google.ads.googleads.v17.services.ListExperimentAsyncErrorsResponse + (*GraduateExperimentRequest)(nil), // 7: google.ads.googleads.v17.services.GraduateExperimentRequest + (*CampaignBudgetMapping)(nil), // 8: google.ads.googleads.v17.services.CampaignBudgetMapping + (*ScheduleExperimentRequest)(nil), // 9: google.ads.googleads.v17.services.ScheduleExperimentRequest + (*ScheduleExperimentMetadata)(nil), // 10: google.ads.googleads.v17.services.ScheduleExperimentMetadata + (*PromoteExperimentRequest)(nil), // 11: google.ads.googleads.v17.services.PromoteExperimentRequest + (*PromoteExperimentMetadata)(nil), // 12: google.ads.googleads.v17.services.PromoteExperimentMetadata (*fieldmaskpb.FieldMask)(nil), // 13: google.protobuf.FieldMask - (*resources.Experiment)(nil), // 14: google.ads.googleads.v16.resources.Experiment + (*resources.Experiment)(nil), // 14: google.ads.googleads.v17.resources.Experiment (*status.Status)(nil), // 15: google.rpc.Status (*emptypb.Empty)(nil), // 16: google.protobuf.Empty (*longrunningpb.Operation)(nil), // 17: google.longrunning.Operation } -var file_google_ads_googleads_v16_services_experiment_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateExperimentsRequest.operations:type_name -> google.ads.googleads.v16.services.ExperimentOperation - 13, // 1: google.ads.googleads.v16.services.ExperimentOperation.update_mask:type_name -> google.protobuf.FieldMask - 14, // 2: google.ads.googleads.v16.services.ExperimentOperation.create:type_name -> google.ads.googleads.v16.resources.Experiment - 14, // 3: google.ads.googleads.v16.services.ExperimentOperation.update:type_name -> google.ads.googleads.v16.resources.Experiment - 15, // 4: google.ads.googleads.v16.services.MutateExperimentsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 5: google.ads.googleads.v16.services.MutateExperimentsResponse.results:type_name -> google.ads.googleads.v16.services.MutateExperimentResult - 15, // 6: google.ads.googleads.v16.services.ListExperimentAsyncErrorsResponse.errors:type_name -> google.rpc.Status - 8, // 7: google.ads.googleads.v16.services.GraduateExperimentRequest.campaign_budget_mappings:type_name -> google.ads.googleads.v16.services.CampaignBudgetMapping - 0, // 8: google.ads.googleads.v16.services.ExperimentService.MutateExperiments:input_type -> google.ads.googleads.v16.services.MutateExperimentsRequest - 4, // 9: google.ads.googleads.v16.services.ExperimentService.EndExperiment:input_type -> google.ads.googleads.v16.services.EndExperimentRequest - 5, // 10: google.ads.googleads.v16.services.ExperimentService.ListExperimentAsyncErrors:input_type -> google.ads.googleads.v16.services.ListExperimentAsyncErrorsRequest - 7, // 11: google.ads.googleads.v16.services.ExperimentService.GraduateExperiment:input_type -> google.ads.googleads.v16.services.GraduateExperimentRequest - 9, // 12: google.ads.googleads.v16.services.ExperimentService.ScheduleExperiment:input_type -> google.ads.googleads.v16.services.ScheduleExperimentRequest - 11, // 13: google.ads.googleads.v16.services.ExperimentService.PromoteExperiment:input_type -> google.ads.googleads.v16.services.PromoteExperimentRequest - 2, // 14: google.ads.googleads.v16.services.ExperimentService.MutateExperiments:output_type -> google.ads.googleads.v16.services.MutateExperimentsResponse - 16, // 15: google.ads.googleads.v16.services.ExperimentService.EndExperiment:output_type -> google.protobuf.Empty - 6, // 16: google.ads.googleads.v16.services.ExperimentService.ListExperimentAsyncErrors:output_type -> google.ads.googleads.v16.services.ListExperimentAsyncErrorsResponse - 16, // 17: google.ads.googleads.v16.services.ExperimentService.GraduateExperiment:output_type -> google.protobuf.Empty - 17, // 18: google.ads.googleads.v16.services.ExperimentService.ScheduleExperiment:output_type -> google.longrunning.Operation - 17, // 19: google.ads.googleads.v16.services.ExperimentService.PromoteExperiment:output_type -> google.longrunning.Operation +var file_google_ads_googleads_v17_services_experiment_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateExperimentsRequest.operations:type_name -> google.ads.googleads.v17.services.ExperimentOperation + 13, // 1: google.ads.googleads.v17.services.ExperimentOperation.update_mask:type_name -> google.protobuf.FieldMask + 14, // 2: google.ads.googleads.v17.services.ExperimentOperation.create:type_name -> google.ads.googleads.v17.resources.Experiment + 14, // 3: google.ads.googleads.v17.services.ExperimentOperation.update:type_name -> google.ads.googleads.v17.resources.Experiment + 15, // 4: google.ads.googleads.v17.services.MutateExperimentsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 5: google.ads.googleads.v17.services.MutateExperimentsResponse.results:type_name -> google.ads.googleads.v17.services.MutateExperimentResult + 15, // 6: google.ads.googleads.v17.services.ListExperimentAsyncErrorsResponse.errors:type_name -> google.rpc.Status + 8, // 7: google.ads.googleads.v17.services.GraduateExperimentRequest.campaign_budget_mappings:type_name -> google.ads.googleads.v17.services.CampaignBudgetMapping + 0, // 8: google.ads.googleads.v17.services.ExperimentService.MutateExperiments:input_type -> google.ads.googleads.v17.services.MutateExperimentsRequest + 4, // 9: google.ads.googleads.v17.services.ExperimentService.EndExperiment:input_type -> google.ads.googleads.v17.services.EndExperimentRequest + 5, // 10: google.ads.googleads.v17.services.ExperimentService.ListExperimentAsyncErrors:input_type -> google.ads.googleads.v17.services.ListExperimentAsyncErrorsRequest + 7, // 11: google.ads.googleads.v17.services.ExperimentService.GraduateExperiment:input_type -> google.ads.googleads.v17.services.GraduateExperimentRequest + 9, // 12: google.ads.googleads.v17.services.ExperimentService.ScheduleExperiment:input_type -> google.ads.googleads.v17.services.ScheduleExperimentRequest + 11, // 13: google.ads.googleads.v17.services.ExperimentService.PromoteExperiment:input_type -> google.ads.googleads.v17.services.PromoteExperimentRequest + 2, // 14: google.ads.googleads.v17.services.ExperimentService.MutateExperiments:output_type -> google.ads.googleads.v17.services.MutateExperimentsResponse + 16, // 15: google.ads.googleads.v17.services.ExperimentService.EndExperiment:output_type -> google.protobuf.Empty + 6, // 16: google.ads.googleads.v17.services.ExperimentService.ListExperimentAsyncErrors:output_type -> google.ads.googleads.v17.services.ListExperimentAsyncErrorsResponse + 16, // 17: google.ads.googleads.v17.services.ExperimentService.GraduateExperiment:output_type -> google.protobuf.Empty + 17, // 18: google.ads.googleads.v17.services.ExperimentService.ScheduleExperiment:output_type -> google.longrunning.Operation + 17, // 19: google.ads.googleads.v17.services.ExperimentService.PromoteExperiment:output_type -> google.longrunning.Operation 14, // [14:20] is the sub-list for method output_type 8, // [8:14] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -1239,13 +1239,13 @@ var file_google_ads_googleads_v16_services_experiment_service_proto_depIdxs = [] 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_experiment_service_proto_init() } -func file_google_ads_googleads_v16_services_experiment_service_proto_init() { - if File_google_ads_googleads_v16_services_experiment_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_experiment_service_proto_init() } +func file_google_ads_googleads_v17_services_experiment_service_proto_init() { + if File_google_ads_googleads_v17_services_experiment_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateExperimentsRequest); i { case 0: return &v.state @@ -1257,7 +1257,7 @@ func file_google_ads_googleads_v16_services_experiment_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ExperimentOperation); i { case 0: return &v.state @@ -1269,7 +1269,7 @@ func file_google_ads_googleads_v16_services_experiment_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateExperimentsResponse); i { case 0: return &v.state @@ -1281,7 +1281,7 @@ func file_google_ads_googleads_v16_services_experiment_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateExperimentResult); i { case 0: return &v.state @@ -1293,7 +1293,7 @@ func file_google_ads_googleads_v16_services_experiment_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*EndExperimentRequest); i { case 0: return &v.state @@ -1305,7 +1305,7 @@ func file_google_ads_googleads_v16_services_experiment_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListExperimentAsyncErrorsRequest); i { case 0: return &v.state @@ -1317,7 +1317,7 @@ func file_google_ads_googleads_v16_services_experiment_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListExperimentAsyncErrorsResponse); i { case 0: return &v.state @@ -1329,7 +1329,7 @@ func file_google_ads_googleads_v16_services_experiment_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GraduateExperimentRequest); i { case 0: return &v.state @@ -1341,7 +1341,7 @@ func file_google_ads_googleads_v16_services_experiment_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignBudgetMapping); i { case 0: return &v.state @@ -1353,7 +1353,7 @@ func file_google_ads_googleads_v16_services_experiment_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ScheduleExperimentRequest); i { case 0: return &v.state @@ -1365,7 +1365,7 @@ func file_google_ads_googleads_v16_services_experiment_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ScheduleExperimentMetadata); i { case 0: return &v.state @@ -1377,7 +1377,7 @@ func file_google_ads_googleads_v16_services_experiment_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*PromoteExperimentRequest); i { case 0: return &v.state @@ -1389,7 +1389,7 @@ func file_google_ads_googleads_v16_services_experiment_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*PromoteExperimentMetadata); i { case 0: return &v.state @@ -1402,7 +1402,7 @@ func file_google_ads_googleads_v16_services_experiment_service_proto_init() { } } } - file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*ExperimentOperation_Create)(nil), (*ExperimentOperation_Update)(nil), (*ExperimentOperation_Remove)(nil), @@ -1411,18 +1411,18 @@ func file_google_ads_googleads_v16_services_experiment_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_experiment_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_experiment_service_proto_rawDesc, NumEnums: 0, NumMessages: 13, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_experiment_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_experiment_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_experiment_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_experiment_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_experiment_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_experiment_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_experiment_service_proto = out.File - file_google_ads_googleads_v16_services_experiment_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_experiment_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_experiment_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_experiment_service_proto = out.File + file_google_ads_googleads_v17_services_experiment_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_experiment_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_experiment_service_proto_depIdxs = nil } diff --git a/services/experiment_service_grpc.pb.go b/services/experiment_service_grpc.pb.go index f6a3ed35..c6ddd254 100644 --- a/services/experiment_service_grpc.pb.go +++ b/services/experiment_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/experiment_service.proto +// source: google/ads/googleads/v17/services/experiment_service.proto package services @@ -31,21 +31,23 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - ExperimentService_MutateExperiments_FullMethodName = "/google.ads.googleads.v16.services.ExperimentService/MutateExperiments" - ExperimentService_EndExperiment_FullMethodName = "/google.ads.googleads.v16.services.ExperimentService/EndExperiment" - ExperimentService_ListExperimentAsyncErrors_FullMethodName = "/google.ads.googleads.v16.services.ExperimentService/ListExperimentAsyncErrors" - ExperimentService_GraduateExperiment_FullMethodName = "/google.ads.googleads.v16.services.ExperimentService/GraduateExperiment" - ExperimentService_ScheduleExperiment_FullMethodName = "/google.ads.googleads.v16.services.ExperimentService/ScheduleExperiment" - ExperimentService_PromoteExperiment_FullMethodName = "/google.ads.googleads.v16.services.ExperimentService/PromoteExperiment" + ExperimentService_MutateExperiments_FullMethodName = "/google.ads.googleads.v17.services.ExperimentService/MutateExperiments" + ExperimentService_EndExperiment_FullMethodName = "/google.ads.googleads.v17.services.ExperimentService/EndExperiment" + ExperimentService_ListExperimentAsyncErrors_FullMethodName = "/google.ads.googleads.v17.services.ExperimentService/ListExperimentAsyncErrors" + ExperimentService_GraduateExperiment_FullMethodName = "/google.ads.googleads.v17.services.ExperimentService/GraduateExperiment" + ExperimentService_ScheduleExperiment_FullMethodName = "/google.ads.googleads.v17.services.ExperimentService/ScheduleExperiment" + ExperimentService_PromoteExperiment_FullMethodName = "/google.ads.googleads.v17.services.ExperimentService/PromoteExperiment" ) // ExperimentServiceClient is the client API for ExperimentService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage experiments. type ExperimentServiceClient interface { // Creates, updates, or removes experiments. Operation statuses are returned. // @@ -154,8 +156,9 @@ func NewExperimentServiceClient(cc grpc.ClientConnInterface) ExperimentServiceCl } func (c *experimentServiceClient) MutateExperiments(ctx context.Context, in *MutateExperimentsRequest, opts ...grpc.CallOption) (*MutateExperimentsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateExperimentsResponse) - err := c.cc.Invoke(ctx, ExperimentService_MutateExperiments_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, ExperimentService_MutateExperiments_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -163,8 +166,9 @@ func (c *experimentServiceClient) MutateExperiments(ctx context.Context, in *Mut } func (c *experimentServiceClient) EndExperiment(ctx context.Context, in *EndExperimentRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(emptypb.Empty) - err := c.cc.Invoke(ctx, ExperimentService_EndExperiment_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, ExperimentService_EndExperiment_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -172,8 +176,9 @@ func (c *experimentServiceClient) EndExperiment(ctx context.Context, in *EndExpe } func (c *experimentServiceClient) ListExperimentAsyncErrors(ctx context.Context, in *ListExperimentAsyncErrorsRequest, opts ...grpc.CallOption) (*ListExperimentAsyncErrorsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(ListExperimentAsyncErrorsResponse) - err := c.cc.Invoke(ctx, ExperimentService_ListExperimentAsyncErrors_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, ExperimentService_ListExperimentAsyncErrors_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -181,8 +186,9 @@ func (c *experimentServiceClient) ListExperimentAsyncErrors(ctx context.Context, } func (c *experimentServiceClient) GraduateExperiment(ctx context.Context, in *GraduateExperimentRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(emptypb.Empty) - err := c.cc.Invoke(ctx, ExperimentService_GraduateExperiment_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, ExperimentService_GraduateExperiment_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -190,8 +196,9 @@ func (c *experimentServiceClient) GraduateExperiment(ctx context.Context, in *Gr } func (c *experimentServiceClient) ScheduleExperiment(ctx context.Context, in *ScheduleExperimentRequest, opts ...grpc.CallOption) (*longrunningpb.Operation, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(longrunningpb.Operation) - err := c.cc.Invoke(ctx, ExperimentService_ScheduleExperiment_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, ExperimentService_ScheduleExperiment_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -199,8 +206,9 @@ func (c *experimentServiceClient) ScheduleExperiment(ctx context.Context, in *Sc } func (c *experimentServiceClient) PromoteExperiment(ctx context.Context, in *PromoteExperimentRequest, opts ...grpc.CallOption) (*longrunningpb.Operation, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(longrunningpb.Operation) - err := c.cc.Invoke(ctx, ExperimentService_PromoteExperiment_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, ExperimentService_PromoteExperiment_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -210,6 +218,8 @@ func (c *experimentServiceClient) PromoteExperiment(ctx context.Context, in *Pro // ExperimentServiceServer is the server API for ExperimentService service. // All implementations must embed UnimplementedExperimentServiceServer // for forward compatibility +// +// Service to manage experiments. type ExperimentServiceServer interface { // Creates, updates, or removes experiments. Operation statuses are returned. // @@ -457,7 +467,7 @@ func _ExperimentService_PromoteExperiment_Handler(srv interface{}, ctx context.C // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var ExperimentService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.ExperimentService", + ServiceName: "google.ads.googleads.v17.services.ExperimentService", HandlerType: (*ExperimentServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -486,5 +496,5 @@ var ExperimentService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/experiment_service.proto", + Metadata: "google/ads/googleads/v17/services/experiment_service.proto", } diff --git a/services/extension_feed_item_service.pb.go b/services/extension_feed_item_service.pb.go index a84ba3de..3a99753a 100644 --- a/services/extension_feed_item_service.pb.go +++ b/services/extension_feed_item_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/extension_feed_item_service.proto +// source: google/ads/googleads/v17/services/extension_feed_item_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [ExtensionFeedItemService.MutateExtensionFeedItems][google.ads.googleads.v16.services.ExtensionFeedItemService.MutateExtensionFeedItems]. +// [ExtensionFeedItemService.MutateExtensionFeedItems][google.ads.googleads.v17.services.ExtensionFeedItemService.MutateExtensionFeedItems]. type MutateExtensionFeedItemsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -62,13 +62,13 @@ type MutateExtensionFeedItemsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateExtensionFeedItemsRequest) Reset() { *x = MutateExtensionFeedItemsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_extension_feed_item_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_extension_feed_item_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81,7 +81,7 @@ func (x *MutateExtensionFeedItemsRequest) String() string { func (*MutateExtensionFeedItemsRequest) ProtoMessage() {} func (x *MutateExtensionFeedItemsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_extension_feed_item_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_extension_feed_item_service_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 *MutateExtensionFeedItemsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateExtensionFeedItemsRequest.ProtoReflect.Descriptor instead. func (*MutateExtensionFeedItemsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_extension_feed_item_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_extension_feed_item_service_proto_rawDescGZIP(), []int{0} } func (x *MutateExtensionFeedItemsRequest) GetCustomerId() string { @@ -153,7 +153,7 @@ type ExtensionFeedItemOperation struct { func (x *ExtensionFeedItemOperation) Reset() { *x = ExtensionFeedItemOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_extension_feed_item_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_extension_feed_item_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -166,7 +166,7 @@ func (x *ExtensionFeedItemOperation) String() string { func (*ExtensionFeedItemOperation) ProtoMessage() {} func (x *ExtensionFeedItemOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_extension_feed_item_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_extension_feed_item_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -179,7 +179,7 @@ func (x *ExtensionFeedItemOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use ExtensionFeedItemOperation.ProtoReflect.Descriptor instead. func (*ExtensionFeedItemOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_extension_feed_item_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_extension_feed_item_service_proto_rawDescGZIP(), []int{1} } func (x *ExtensionFeedItemOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -265,7 +265,7 @@ type MutateExtensionFeedItemsResponse struct { func (x *MutateExtensionFeedItemsResponse) Reset() { *x = MutateExtensionFeedItemsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_extension_feed_item_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_extension_feed_item_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -278,7 +278,7 @@ func (x *MutateExtensionFeedItemsResponse) String() string { func (*MutateExtensionFeedItemsResponse) ProtoMessage() {} func (x *MutateExtensionFeedItemsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_extension_feed_item_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_extension_feed_item_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -291,7 +291,7 @@ func (x *MutateExtensionFeedItemsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateExtensionFeedItemsResponse.ProtoReflect.Descriptor instead. func (*MutateExtensionFeedItemsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_extension_feed_item_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_extension_feed_item_service_proto_rawDescGZIP(), []int{2} } func (x *MutateExtensionFeedItemsResponse) GetPartialFailureError() *status.Status { @@ -325,7 +325,7 @@ type MutateExtensionFeedItemResult struct { func (x *MutateExtensionFeedItemResult) Reset() { *x = MutateExtensionFeedItemResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_extension_feed_item_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_extension_feed_item_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -338,7 +338,7 @@ func (x *MutateExtensionFeedItemResult) String() string { func (*MutateExtensionFeedItemResult) ProtoMessage() {} func (x *MutateExtensionFeedItemResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_extension_feed_item_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_extension_feed_item_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -351,7 +351,7 @@ func (x *MutateExtensionFeedItemResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateExtensionFeedItemResult.ProtoReflect.Descriptor instead. func (*MutateExtensionFeedItemResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_extension_feed_item_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_extension_feed_item_service_proto_rawDescGZIP(), []int{3} } func (x *MutateExtensionFeedItemResult) GetResourceName() string { @@ -368,21 +368,21 @@ func (x *MutateExtensionFeedItemResult) GetExtensionFeedItem() *resources.Extens return nil } -var File_google_ads_googleads_v16_services_extension_feed_item_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_extension_feed_item_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_extension_feed_item_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_extension_feed_item_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 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, 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, 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, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, @@ -403,7 +403,7 @@ var file_google_ads_googleads_v16_services_extension_feed_item_service_proto_raw 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x62, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, @@ -415,7 +415,7 @@ var file_google_ads_googleads_v16_services_extension_feed_item_service_proto_raw 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, @@ -428,12 +428,12 @@ var file_google_ads_googleads_v16_services_extension_feed_item_service_proto_raw 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x4f, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x45, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x4f, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 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, 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, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x49, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2f, 0xfa, 0x41, 0x2c, @@ -450,7 +450,7 @@ var file_google_ads_googleads_v16_services_extension_feed_item_service_proto_raw 0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x5a, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xdc, 0x01, 0x0a, @@ -464,7 +464,7 @@ var file_google_ads_googleads_v16_services_extension_feed_item_service_proto_raw 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x65, 0x0a, 0x13, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 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, 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, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x11, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x32, 0xe5, 0x02, 0x0a, 0x18, @@ -472,17 +472,17 @@ var file_google_ads_googleads_v16_services_extension_feed_item_service_proto_raw 0x6d, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x81, 0x02, 0x0a, 0x18, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x12, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5c, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3d, 0x3a, - 0x01, 0x2a, 0x22, 0x38, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x01, 0x2a, 0x22, 0x38, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, @@ -492,58 +492,58 @@ var file_google_ads_googleads_v16_services_extension_feed_item_service_proto_raw 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x89, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1d, 0x45, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1d, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_extension_feed_item_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_extension_feed_item_service_proto_rawDescData = file_google_ads_googleads_v16_services_extension_feed_item_service_proto_rawDesc + file_google_ads_googleads_v17_services_extension_feed_item_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_extension_feed_item_service_proto_rawDescData = file_google_ads_googleads_v17_services_extension_feed_item_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_extension_feed_item_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_extension_feed_item_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_extension_feed_item_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_extension_feed_item_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_extension_feed_item_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_extension_feed_item_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_extension_feed_item_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_extension_feed_item_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_extension_feed_item_service_proto_rawDescData + return file_google_ads_googleads_v17_services_extension_feed_item_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_extension_feed_item_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_extension_feed_item_service_proto_goTypes = []interface{}{ - (*MutateExtensionFeedItemsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateExtensionFeedItemsRequest - (*ExtensionFeedItemOperation)(nil), // 1: google.ads.googleads.v16.services.ExtensionFeedItemOperation - (*MutateExtensionFeedItemsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateExtensionFeedItemsResponse - (*MutateExtensionFeedItemResult)(nil), // 3: google.ads.googleads.v16.services.MutateExtensionFeedItemResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_extension_feed_item_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_extension_feed_item_service_proto_goTypes = []interface{}{ + (*MutateExtensionFeedItemsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateExtensionFeedItemsRequest + (*ExtensionFeedItemOperation)(nil), // 1: google.ads.googleads.v17.services.ExtensionFeedItemOperation + (*MutateExtensionFeedItemsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateExtensionFeedItemsResponse + (*MutateExtensionFeedItemResult)(nil), // 3: google.ads.googleads.v17.services.MutateExtensionFeedItemResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.ExtensionFeedItem)(nil), // 6: google.ads.googleads.v16.resources.ExtensionFeedItem + (*resources.ExtensionFeedItem)(nil), // 6: google.ads.googleads.v17.resources.ExtensionFeedItem (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_extension_feed_item_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateExtensionFeedItemsRequest.operations:type_name -> google.ads.googleads.v16.services.ExtensionFeedItemOperation - 4, // 1: google.ads.googleads.v16.services.MutateExtensionFeedItemsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.ExtensionFeedItemOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.ExtensionFeedItemOperation.create:type_name -> google.ads.googleads.v16.resources.ExtensionFeedItem - 6, // 4: google.ads.googleads.v16.services.ExtensionFeedItemOperation.update:type_name -> google.ads.googleads.v16.resources.ExtensionFeedItem - 7, // 5: google.ads.googleads.v16.services.MutateExtensionFeedItemsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v16.services.MutateExtensionFeedItemsResponse.results:type_name -> google.ads.googleads.v16.services.MutateExtensionFeedItemResult - 6, // 7: google.ads.googleads.v16.services.MutateExtensionFeedItemResult.extension_feed_item:type_name -> google.ads.googleads.v16.resources.ExtensionFeedItem - 0, // 8: google.ads.googleads.v16.services.ExtensionFeedItemService.MutateExtensionFeedItems:input_type -> google.ads.googleads.v16.services.MutateExtensionFeedItemsRequest - 2, // 9: google.ads.googleads.v16.services.ExtensionFeedItemService.MutateExtensionFeedItems:output_type -> google.ads.googleads.v16.services.MutateExtensionFeedItemsResponse +var file_google_ads_googleads_v17_services_extension_feed_item_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateExtensionFeedItemsRequest.operations:type_name -> google.ads.googleads.v17.services.ExtensionFeedItemOperation + 4, // 1: google.ads.googleads.v17.services.MutateExtensionFeedItemsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.ExtensionFeedItemOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.ExtensionFeedItemOperation.create:type_name -> google.ads.googleads.v17.resources.ExtensionFeedItem + 6, // 4: google.ads.googleads.v17.services.ExtensionFeedItemOperation.update:type_name -> google.ads.googleads.v17.resources.ExtensionFeedItem + 7, // 5: google.ads.googleads.v17.services.MutateExtensionFeedItemsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v17.services.MutateExtensionFeedItemsResponse.results:type_name -> google.ads.googleads.v17.services.MutateExtensionFeedItemResult + 6, // 7: google.ads.googleads.v17.services.MutateExtensionFeedItemResult.extension_feed_item:type_name -> google.ads.googleads.v17.resources.ExtensionFeedItem + 0, // 8: google.ads.googleads.v17.services.ExtensionFeedItemService.MutateExtensionFeedItems:input_type -> google.ads.googleads.v17.services.MutateExtensionFeedItemsRequest + 2, // 9: google.ads.googleads.v17.services.ExtensionFeedItemService.MutateExtensionFeedItems:output_type -> google.ads.googleads.v17.services.MutateExtensionFeedItemsResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -551,13 +551,13 @@ var file_google_ads_googleads_v16_services_extension_feed_item_service_proto_dep 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_extension_feed_item_service_proto_init() } -func file_google_ads_googleads_v16_services_extension_feed_item_service_proto_init() { - if File_google_ads_googleads_v16_services_extension_feed_item_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_extension_feed_item_service_proto_init() } +func file_google_ads_googleads_v17_services_extension_feed_item_service_proto_init() { + if File_google_ads_googleads_v17_services_extension_feed_item_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_extension_feed_item_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_extension_feed_item_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateExtensionFeedItemsRequest); i { case 0: return &v.state @@ -569,7 +569,7 @@ func file_google_ads_googleads_v16_services_extension_feed_item_service_proto_in return nil } } - file_google_ads_googleads_v16_services_extension_feed_item_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_extension_feed_item_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ExtensionFeedItemOperation); i { case 0: return &v.state @@ -581,7 +581,7 @@ func file_google_ads_googleads_v16_services_extension_feed_item_service_proto_in return nil } } - file_google_ads_googleads_v16_services_extension_feed_item_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_extension_feed_item_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateExtensionFeedItemsResponse); i { case 0: return &v.state @@ -593,7 +593,7 @@ func file_google_ads_googleads_v16_services_extension_feed_item_service_proto_in return nil } } - file_google_ads_googleads_v16_services_extension_feed_item_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_extension_feed_item_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateExtensionFeedItemResult); i { case 0: return &v.state @@ -606,7 +606,7 @@ func file_google_ads_googleads_v16_services_extension_feed_item_service_proto_in } } } - file_google_ads_googleads_v16_services_extension_feed_item_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_extension_feed_item_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*ExtensionFeedItemOperation_Create)(nil), (*ExtensionFeedItemOperation_Update)(nil), (*ExtensionFeedItemOperation_Remove)(nil), @@ -615,18 +615,18 @@ func file_google_ads_googleads_v16_services_extension_feed_item_service_proto_in out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_extension_feed_item_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_extension_feed_item_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_extension_feed_item_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_extension_feed_item_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_extension_feed_item_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_extension_feed_item_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_extension_feed_item_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_extension_feed_item_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_extension_feed_item_service_proto = out.File - file_google_ads_googleads_v16_services_extension_feed_item_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_extension_feed_item_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_extension_feed_item_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_extension_feed_item_service_proto = out.File + file_google_ads_googleads_v17_services_extension_feed_item_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_extension_feed_item_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_extension_feed_item_service_proto_depIdxs = nil } diff --git a/services/extension_feed_item_service_grpc.pb.go b/services/extension_feed_item_service_grpc.pb.go index d578d1e2..bb24d809 100644 --- a/services/extension_feed_item_service_grpc.pb.go +++ b/services/extension_feed_item_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/extension_feed_item_service.proto +// source: google/ads/googleads/v17/services/extension_feed_item_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - ExtensionFeedItemService_MutateExtensionFeedItems_FullMethodName = "/google.ads.googleads.v16.services.ExtensionFeedItemService/MutateExtensionFeedItems" + ExtensionFeedItemService_MutateExtensionFeedItems_FullMethodName = "/google.ads.googleads.v17.services.ExtensionFeedItemService/MutateExtensionFeedItems" ) // ExtensionFeedItemServiceClient is the client API for ExtensionFeedItemService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage extension feed items. type ExtensionFeedItemServiceClient interface { // Creates, updates, or removes extension feed items. Operation // statuses are returned. @@ -80,8 +82,9 @@ func NewExtensionFeedItemServiceClient(cc grpc.ClientConnInterface) ExtensionFee } func (c *extensionFeedItemServiceClient) MutateExtensionFeedItems(ctx context.Context, in *MutateExtensionFeedItemsRequest, opts ...grpc.CallOption) (*MutateExtensionFeedItemsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateExtensionFeedItemsResponse) - err := c.cc.Invoke(ctx, ExtensionFeedItemService_MutateExtensionFeedItems_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, ExtensionFeedItemService_MutateExtensionFeedItems_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -91,6 +94,8 @@ func (c *extensionFeedItemServiceClient) MutateExtensionFeedItems(ctx context.Co // ExtensionFeedItemServiceServer is the server API for ExtensionFeedItemService service. // All implementations must embed UnimplementedExtensionFeedItemServiceServer // for forward compatibility +// +// Service to manage extension feed items. type ExtensionFeedItemServiceServer interface { // Creates, updates, or removes extension feed items. Operation // statuses are returned. @@ -167,7 +172,7 @@ func _ExtensionFeedItemService_MutateExtensionFeedItems_Handler(srv interface{}, // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var ExtensionFeedItemService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.ExtensionFeedItemService", + ServiceName: "google.ads.googleads.v17.services.ExtensionFeedItemService", HandlerType: (*ExtensionFeedItemServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -176,5 +181,5 @@ var ExtensionFeedItemService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/extension_feed_item_service.proto", + Metadata: "google/ads/googleads/v17/services/extension_feed_item_service.proto", } diff --git a/services/feed_item_service.pb.go b/services/feed_item_service.pb.go index dce93ff5..886b06e3 100644 --- a/services/feed_item_service.pb.go +++ b/services/feed_item_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/feed_item_service.proto +// source: google/ads/googleads/v17/services/feed_item_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [FeedItemService.MutateFeedItems][google.ads.googleads.v16.services.FeedItemService.MutateFeedItems]. +// [FeedItemService.MutateFeedItems][google.ads.googleads.v17.services.FeedItemService.MutateFeedItems]. type MutateFeedItemsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -60,13 +60,13 @@ type MutateFeedItemsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateFeedItemsRequest) Reset() { *x = MutateFeedItemsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_feed_item_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_feed_item_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateFeedItemsRequest) String() string { func (*MutateFeedItemsRequest) ProtoMessage() {} func (x *MutateFeedItemsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_feed_item_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_feed_item_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateFeedItemsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateFeedItemsRequest.ProtoReflect.Descriptor instead. func (*MutateFeedItemsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_feed_item_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_feed_item_service_proto_rawDescGZIP(), []int{0} } func (x *MutateFeedItemsRequest) GetCustomerId() string { @@ -151,7 +151,7 @@ type FeedItemOperation struct { func (x *FeedItemOperation) Reset() { *x = FeedItemOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_feed_item_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_feed_item_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164,7 +164,7 @@ func (x *FeedItemOperation) String() string { func (*FeedItemOperation) ProtoMessage() {} func (x *FeedItemOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_feed_item_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_feed_item_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177,7 +177,7 @@ func (x *FeedItemOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use FeedItemOperation.ProtoReflect.Descriptor instead. func (*FeedItemOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_feed_item_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_feed_item_service_proto_rawDescGZIP(), []int{1} } func (x *FeedItemOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -262,7 +262,7 @@ type MutateFeedItemsResponse struct { func (x *MutateFeedItemsResponse) Reset() { *x = MutateFeedItemsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_feed_item_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_feed_item_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -275,7 +275,7 @@ func (x *MutateFeedItemsResponse) String() string { func (*MutateFeedItemsResponse) ProtoMessage() {} func (x *MutateFeedItemsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_feed_item_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_feed_item_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -288,7 +288,7 @@ func (x *MutateFeedItemsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateFeedItemsResponse.ProtoReflect.Descriptor instead. func (*MutateFeedItemsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_feed_item_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_feed_item_service_proto_rawDescGZIP(), []int{2} } func (x *MutateFeedItemsResponse) GetPartialFailureError() *status.Status { @@ -321,7 +321,7 @@ type MutateFeedItemResult struct { func (x *MutateFeedItemResult) Reset() { *x = MutateFeedItemResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_feed_item_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_feed_item_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -334,7 +334,7 @@ func (x *MutateFeedItemResult) String() string { func (*MutateFeedItemResult) ProtoMessage() {} func (x *MutateFeedItemResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_feed_item_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_feed_item_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -347,7 +347,7 @@ func (x *MutateFeedItemResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateFeedItemResult.ProtoReflect.Descriptor instead. func (*MutateFeedItemResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_feed_item_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_feed_item_service_proto_rawDescGZIP(), []int{3} } func (x *MutateFeedItemResult) GetResourceName() string { @@ -364,21 +364,21 @@ func (x *MutateFeedItemResult) GetFeedItem() *resources.FeedItem { return nil } -var File_google_ads_googleads_v16_services_feed_item_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_feed_item_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_feed_item_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_feed_item_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3a, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, + 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x66, + 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x67, 0x6f, @@ -397,7 +397,7 @@ var file_google_ads_googleads_v16_services_feed_item_service_proto_rawDesc = []b 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x59, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, @@ -408,7 +408,7 @@ var file_google_ads_googleads_v16_services_feed_item_service_proto_rawDesc = []b 0x74, 0x65, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, + 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, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, @@ -421,11 +421,11 @@ var file_google_ads_googleads_v16_services_feed_item_service_proto_rawDesc = []b 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x46, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 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, 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, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x46, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 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, 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, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x40, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x26, 0xfa, 0x41, 0x23, 0x0a, @@ -441,7 +441,7 @@ var file_google_ads_googleads_v16_services_feed_item_service_proto_rawDesc = []b 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x51, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xae, 0x01, 0x0a, 0x14, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x49, @@ -453,21 +453,21 @@ var file_google_ads_googleads_v16_services_feed_item_service_proto_rawDesc = []b 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x49, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x46, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x32, 0xb8, 0x02, 0x0a, 0x0f, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xdd, 0x01, 0x0a, 0x0f, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x53, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, - 0x34, 0x3a, 0x01, 0x2a, 0x22, 0x2f, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x34, 0x3a, 0x01, 0x2a, 0x22, 0x2f, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, @@ -476,58 +476,58 @@ var file_google_ads_googleads_v16_services_feed_item_service_proto_rawDesc = []b 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x80, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x14, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_feed_item_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_feed_item_service_proto_rawDescData = file_google_ads_googleads_v16_services_feed_item_service_proto_rawDesc + file_google_ads_googleads_v17_services_feed_item_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_feed_item_service_proto_rawDescData = file_google_ads_googleads_v17_services_feed_item_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_feed_item_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_feed_item_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_feed_item_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_feed_item_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_feed_item_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_feed_item_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_feed_item_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_feed_item_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_feed_item_service_proto_rawDescData + return file_google_ads_googleads_v17_services_feed_item_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_feed_item_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_feed_item_service_proto_goTypes = []interface{}{ - (*MutateFeedItemsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateFeedItemsRequest - (*FeedItemOperation)(nil), // 1: google.ads.googleads.v16.services.FeedItemOperation - (*MutateFeedItemsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateFeedItemsResponse - (*MutateFeedItemResult)(nil), // 3: google.ads.googleads.v16.services.MutateFeedItemResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_feed_item_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_feed_item_service_proto_goTypes = []interface{}{ + (*MutateFeedItemsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateFeedItemsRequest + (*FeedItemOperation)(nil), // 1: google.ads.googleads.v17.services.FeedItemOperation + (*MutateFeedItemsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateFeedItemsResponse + (*MutateFeedItemResult)(nil), // 3: google.ads.googleads.v17.services.MutateFeedItemResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.FeedItem)(nil), // 6: google.ads.googleads.v16.resources.FeedItem + (*resources.FeedItem)(nil), // 6: google.ads.googleads.v17.resources.FeedItem (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_feed_item_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateFeedItemsRequest.operations:type_name -> google.ads.googleads.v16.services.FeedItemOperation - 4, // 1: google.ads.googleads.v16.services.MutateFeedItemsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.FeedItemOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.FeedItemOperation.create:type_name -> google.ads.googleads.v16.resources.FeedItem - 6, // 4: google.ads.googleads.v16.services.FeedItemOperation.update:type_name -> google.ads.googleads.v16.resources.FeedItem - 7, // 5: google.ads.googleads.v16.services.MutateFeedItemsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v16.services.MutateFeedItemsResponse.results:type_name -> google.ads.googleads.v16.services.MutateFeedItemResult - 6, // 7: google.ads.googleads.v16.services.MutateFeedItemResult.feed_item:type_name -> google.ads.googleads.v16.resources.FeedItem - 0, // 8: google.ads.googleads.v16.services.FeedItemService.MutateFeedItems:input_type -> google.ads.googleads.v16.services.MutateFeedItemsRequest - 2, // 9: google.ads.googleads.v16.services.FeedItemService.MutateFeedItems:output_type -> google.ads.googleads.v16.services.MutateFeedItemsResponse +var file_google_ads_googleads_v17_services_feed_item_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateFeedItemsRequest.operations:type_name -> google.ads.googleads.v17.services.FeedItemOperation + 4, // 1: google.ads.googleads.v17.services.MutateFeedItemsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.FeedItemOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.FeedItemOperation.create:type_name -> google.ads.googleads.v17.resources.FeedItem + 6, // 4: google.ads.googleads.v17.services.FeedItemOperation.update:type_name -> google.ads.googleads.v17.resources.FeedItem + 7, // 5: google.ads.googleads.v17.services.MutateFeedItemsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v17.services.MutateFeedItemsResponse.results:type_name -> google.ads.googleads.v17.services.MutateFeedItemResult + 6, // 7: google.ads.googleads.v17.services.MutateFeedItemResult.feed_item:type_name -> google.ads.googleads.v17.resources.FeedItem + 0, // 8: google.ads.googleads.v17.services.FeedItemService.MutateFeedItems:input_type -> google.ads.googleads.v17.services.MutateFeedItemsRequest + 2, // 9: google.ads.googleads.v17.services.FeedItemService.MutateFeedItems:output_type -> google.ads.googleads.v17.services.MutateFeedItemsResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -535,13 +535,13 @@ var file_google_ads_googleads_v16_services_feed_item_service_proto_depIdxs = []i 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_feed_item_service_proto_init() } -func file_google_ads_googleads_v16_services_feed_item_service_proto_init() { - if File_google_ads_googleads_v16_services_feed_item_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_feed_item_service_proto_init() } +func file_google_ads_googleads_v17_services_feed_item_service_proto_init() { + if File_google_ads_googleads_v17_services_feed_item_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_feed_item_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_feed_item_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateFeedItemsRequest); i { case 0: return &v.state @@ -553,7 +553,7 @@ func file_google_ads_googleads_v16_services_feed_item_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_feed_item_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_feed_item_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*FeedItemOperation); i { case 0: return &v.state @@ -565,7 +565,7 @@ func file_google_ads_googleads_v16_services_feed_item_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_feed_item_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_feed_item_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateFeedItemsResponse); i { case 0: return &v.state @@ -577,7 +577,7 @@ func file_google_ads_googleads_v16_services_feed_item_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_feed_item_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_feed_item_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateFeedItemResult); i { case 0: return &v.state @@ -590,7 +590,7 @@ func file_google_ads_googleads_v16_services_feed_item_service_proto_init() { } } } - file_google_ads_googleads_v16_services_feed_item_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_feed_item_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*FeedItemOperation_Create)(nil), (*FeedItemOperation_Update)(nil), (*FeedItemOperation_Remove)(nil), @@ -599,18 +599,18 @@ func file_google_ads_googleads_v16_services_feed_item_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_feed_item_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_feed_item_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_feed_item_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_feed_item_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_feed_item_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_feed_item_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_feed_item_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_feed_item_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_feed_item_service_proto = out.File - file_google_ads_googleads_v16_services_feed_item_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_feed_item_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_feed_item_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_feed_item_service_proto = out.File + file_google_ads_googleads_v17_services_feed_item_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_feed_item_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_feed_item_service_proto_depIdxs = nil } diff --git a/services/feed_item_service_grpc.pb.go b/services/feed_item_service_grpc.pb.go index 2abd76f7..c426bece 100644 --- a/services/feed_item_service_grpc.pb.go +++ b/services/feed_item_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/feed_item_service.proto +// source: google/ads/googleads/v17/services/feed_item_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - FeedItemService_MutateFeedItems_FullMethodName = "/google.ads.googleads.v16.services.FeedItemService/MutateFeedItems" + FeedItemService_MutateFeedItems_FullMethodName = "/google.ads.googleads.v17.services.FeedItemService/MutateFeedItems" ) // FeedItemServiceClient is the client API for FeedItemService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage feed items. type FeedItemServiceClient interface { // Creates, updates, or removes feed items. Operation statuses are // returned. @@ -82,8 +84,9 @@ func NewFeedItemServiceClient(cc grpc.ClientConnInterface) FeedItemServiceClient } func (c *feedItemServiceClient) MutateFeedItems(ctx context.Context, in *MutateFeedItemsRequest, opts ...grpc.CallOption) (*MutateFeedItemsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateFeedItemsResponse) - err := c.cc.Invoke(ctx, FeedItemService_MutateFeedItems_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, FeedItemService_MutateFeedItems_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -93,6 +96,8 @@ func (c *feedItemServiceClient) MutateFeedItems(ctx context.Context, in *MutateF // FeedItemServiceServer is the server API for FeedItemService service. // All implementations must embed UnimplementedFeedItemServiceServer // for forward compatibility +// +// Service to manage feed items. type FeedItemServiceServer interface { // Creates, updates, or removes feed items. Operation statuses are // returned. @@ -170,7 +175,7 @@ func _FeedItemService_MutateFeedItems_Handler(srv interface{}, ctx context.Conte // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var FeedItemService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.FeedItemService", + ServiceName: "google.ads.googleads.v17.services.FeedItemService", HandlerType: (*FeedItemServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -179,5 +184,5 @@ var FeedItemService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/feed_item_service.proto", + Metadata: "google/ads/googleads/v17/services/feed_item_service.proto", } diff --git a/services/feed_item_set_link_service.pb.go b/services/feed_item_set_link_service.pb.go index f86e25b7..f5a8e468 100644 --- a/services/feed_item_set_link_service.pb.go +++ b/services/feed_item_set_link_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/feed_item_set_link_service.proto +// source: google/ads/googleads/v17/services/feed_item_set_link_service.proto package services @@ -38,7 +38,7 @@ const ( ) // Request message for -// [FeedItemSetLinkService.MutateFeedItemSetLinks][google.ads.googleads.v16.services.FeedItemSetLinkService.MutateFeedItemSetLinks]. +// [FeedItemSetLinkService.MutateFeedItemSetLinks][google.ads.googleads.v17.services.FeedItemSetLinkService.MutateFeedItemSetLinks]. type MutateFeedItemSetLinksRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -63,7 +63,7 @@ type MutateFeedItemSetLinksRequest struct { func (x *MutateFeedItemSetLinksRequest) Reset() { *x = MutateFeedItemSetLinksRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76,7 +76,7 @@ func (x *MutateFeedItemSetLinksRequest) String() string { func (*MutateFeedItemSetLinksRequest) ProtoMessage() {} func (x *MutateFeedItemSetLinksRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_feed_item_set_link_service_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 *MutateFeedItemSetLinksRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateFeedItemSetLinksRequest.ProtoReflect.Descriptor instead. func (*MutateFeedItemSetLinksRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_rawDescGZIP(), []int{0} } func (x *MutateFeedItemSetLinksRequest) GetCustomerId() string { @@ -138,7 +138,7 @@ type FeedItemSetLinkOperation struct { func (x *FeedItemSetLinkOperation) Reset() { *x = FeedItemSetLinkOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -151,7 +151,7 @@ func (x *FeedItemSetLinkOperation) String() string { func (*FeedItemSetLinkOperation) ProtoMessage() {} func (x *FeedItemSetLinkOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -164,7 +164,7 @@ func (x *FeedItemSetLinkOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use FeedItemSetLinkOperation.ProtoReflect.Descriptor instead. func (*FeedItemSetLinkOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_rawDescGZIP(), []int{1} } func (m *FeedItemSetLinkOperation) GetOperation() isFeedItemSetLinkOperation_Operation { @@ -228,7 +228,7 @@ type MutateFeedItemSetLinksResponse struct { func (x *MutateFeedItemSetLinksResponse) Reset() { *x = MutateFeedItemSetLinksResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -241,7 +241,7 @@ func (x *MutateFeedItemSetLinksResponse) String() string { func (*MutateFeedItemSetLinksResponse) ProtoMessage() {} func (x *MutateFeedItemSetLinksResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_feed_item_set_link_service_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 *MutateFeedItemSetLinksResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateFeedItemSetLinksResponse.ProtoReflect.Descriptor instead. func (*MutateFeedItemSetLinksResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_rawDescGZIP(), []int{2} } func (x *MutateFeedItemSetLinksResponse) GetResults() []*MutateFeedItemSetLinkResult { @@ -284,7 +284,7 @@ type MutateFeedItemSetLinkResult struct { func (x *MutateFeedItemSetLinkResult) Reset() { *x = MutateFeedItemSetLinkResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -297,7 +297,7 @@ func (x *MutateFeedItemSetLinkResult) String() string { func (*MutateFeedItemSetLinkResult) ProtoMessage() {} func (x *MutateFeedItemSetLinkResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -310,7 +310,7 @@ func (x *MutateFeedItemSetLinkResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateFeedItemSetLinkResult.ProtoReflect.Descriptor instead. func (*MutateFeedItemSetLinkResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_rawDescGZIP(), []int{3} } func (x *MutateFeedItemSetLinkResult) GetResourceName() string { @@ -320,18 +320,18 @@ func (x *MutateFeedItemSetLinkResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_feed_item_set_link_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_feed_item_set_link_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_feed_item_set_link_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, + 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, @@ -349,7 +349,7 @@ var file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_rawD 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x60, 0x0a, 0x0a, 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, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, @@ -361,7 +361,7 @@ var file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_rawD 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4d, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, + 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, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x47, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x02, @@ -374,7 +374,7 @@ var file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_rawD 0x4c, 0x69, 0x6e, 0x6b, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x58, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x46, 0x0a, 0x15, 0x70, 0x61, 0x72, 0x74, 0x69, @@ -394,16 +394,16 @@ var file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_rawD 0x0a, 0x16, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5a, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3b, 0x3a, 0x01, - 0x2a, 0x22, 0x36, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x2a, 0x22, 0x36, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, @@ -413,52 +413,52 @@ var file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_rawD 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x87, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1b, 0x46, 0x65, 0x65, 0x64, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1b, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, + 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, + 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_rawDescData = file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_rawDesc + file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_rawDescData = file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_rawDescData + return file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_goTypes = []interface{}{ - (*MutateFeedItemSetLinksRequest)(nil), // 0: google.ads.googleads.v16.services.MutateFeedItemSetLinksRequest - (*FeedItemSetLinkOperation)(nil), // 1: google.ads.googleads.v16.services.FeedItemSetLinkOperation - (*MutateFeedItemSetLinksResponse)(nil), // 2: google.ads.googleads.v16.services.MutateFeedItemSetLinksResponse - (*MutateFeedItemSetLinkResult)(nil), // 3: google.ads.googleads.v16.services.MutateFeedItemSetLinkResult - (*resources.FeedItemSetLink)(nil), // 4: google.ads.googleads.v16.resources.FeedItemSetLink +var file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_goTypes = []interface{}{ + (*MutateFeedItemSetLinksRequest)(nil), // 0: google.ads.googleads.v17.services.MutateFeedItemSetLinksRequest + (*FeedItemSetLinkOperation)(nil), // 1: google.ads.googleads.v17.services.FeedItemSetLinkOperation + (*MutateFeedItemSetLinksResponse)(nil), // 2: google.ads.googleads.v17.services.MutateFeedItemSetLinksResponse + (*MutateFeedItemSetLinkResult)(nil), // 3: google.ads.googleads.v17.services.MutateFeedItemSetLinkResult + (*resources.FeedItemSetLink)(nil), // 4: google.ads.googleads.v17.resources.FeedItemSetLink (*status.Status)(nil), // 5: google.rpc.Status } -var file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateFeedItemSetLinksRequest.operations:type_name -> google.ads.googleads.v16.services.FeedItemSetLinkOperation - 4, // 1: google.ads.googleads.v16.services.FeedItemSetLinkOperation.create:type_name -> google.ads.googleads.v16.resources.FeedItemSetLink - 3, // 2: google.ads.googleads.v16.services.MutateFeedItemSetLinksResponse.results:type_name -> google.ads.googleads.v16.services.MutateFeedItemSetLinkResult - 5, // 3: google.ads.googleads.v16.services.MutateFeedItemSetLinksResponse.partial_failure_error:type_name -> google.rpc.Status - 0, // 4: google.ads.googleads.v16.services.FeedItemSetLinkService.MutateFeedItemSetLinks:input_type -> google.ads.googleads.v16.services.MutateFeedItemSetLinksRequest - 2, // 5: google.ads.googleads.v16.services.FeedItemSetLinkService.MutateFeedItemSetLinks:output_type -> google.ads.googleads.v16.services.MutateFeedItemSetLinksResponse +var file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateFeedItemSetLinksRequest.operations:type_name -> google.ads.googleads.v17.services.FeedItemSetLinkOperation + 4, // 1: google.ads.googleads.v17.services.FeedItemSetLinkOperation.create:type_name -> google.ads.googleads.v17.resources.FeedItemSetLink + 3, // 2: google.ads.googleads.v17.services.MutateFeedItemSetLinksResponse.results:type_name -> google.ads.googleads.v17.services.MutateFeedItemSetLinkResult + 5, // 3: google.ads.googleads.v17.services.MutateFeedItemSetLinksResponse.partial_failure_error:type_name -> google.rpc.Status + 0, // 4: google.ads.googleads.v17.services.FeedItemSetLinkService.MutateFeedItemSetLinks:input_type -> google.ads.googleads.v17.services.MutateFeedItemSetLinksRequest + 2, // 5: google.ads.googleads.v17.services.FeedItemSetLinkService.MutateFeedItemSetLinks:output_type -> google.ads.googleads.v17.services.MutateFeedItemSetLinksResponse 5, // [5:6] is the sub-list for method output_type 4, // [4:5] is the sub-list for method input_type 4, // [4:4] is the sub-list for extension type_name @@ -466,13 +466,13 @@ var file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_depI 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_init() } -func file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_init() { - if File_google_ads_googleads_v16_services_feed_item_set_link_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_init() } +func file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_init() { + if File_google_ads_googleads_v17_services_feed_item_set_link_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateFeedItemSetLinksRequest); i { case 0: return &v.state @@ -484,7 +484,7 @@ func file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_ini return nil } } - file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*FeedItemSetLinkOperation); i { case 0: return &v.state @@ -496,7 +496,7 @@ func file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_ini return nil } } - file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateFeedItemSetLinksResponse); i { case 0: return &v.state @@ -508,7 +508,7 @@ func file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_ini return nil } } - file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateFeedItemSetLinkResult); i { case 0: return &v.state @@ -521,7 +521,7 @@ func file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_ini } } } - file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*FeedItemSetLinkOperation_Create)(nil), (*FeedItemSetLinkOperation_Remove)(nil), } @@ -529,18 +529,18 @@ func file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_ini out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_feed_item_set_link_service_proto = out.File - file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_feed_item_set_link_service_proto = out.File + file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_depIdxs = nil } diff --git a/services/feed_item_set_link_service_grpc.pb.go b/services/feed_item_set_link_service_grpc.pb.go index b2ff60b7..10b3fa11 100644 --- a/services/feed_item_set_link_service_grpc.pb.go +++ b/services/feed_item_set_link_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/feed_item_set_link_service.proto +// source: google/ads/googleads/v17/services/feed_item_set_link_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - FeedItemSetLinkService_MutateFeedItemSetLinks_FullMethodName = "/google.ads.googleads.v16.services.FeedItemSetLinkService/MutateFeedItemSetLinks" + FeedItemSetLinkService_MutateFeedItemSetLinks_FullMethodName = "/google.ads.googleads.v17.services.FeedItemSetLinkService/MutateFeedItemSetLinks" ) // FeedItemSetLinkServiceClient is the client API for FeedItemSetLinkService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage feed item set links. type FeedItemSetLinkServiceClient interface { // Creates, updates, or removes feed item set links. // @@ -62,8 +64,9 @@ func NewFeedItemSetLinkServiceClient(cc grpc.ClientConnInterface) FeedItemSetLin } func (c *feedItemSetLinkServiceClient) MutateFeedItemSetLinks(ctx context.Context, in *MutateFeedItemSetLinksRequest, opts ...grpc.CallOption) (*MutateFeedItemSetLinksResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateFeedItemSetLinksResponse) - err := c.cc.Invoke(ctx, FeedItemSetLinkService_MutateFeedItemSetLinks_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, FeedItemSetLinkService_MutateFeedItemSetLinks_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -73,6 +76,8 @@ func (c *feedItemSetLinkServiceClient) MutateFeedItemSetLinks(ctx context.Contex // FeedItemSetLinkServiceServer is the server API for FeedItemSetLinkService service. // All implementations must embed UnimplementedFeedItemSetLinkServiceServer // for forward compatibility +// +// Service to manage feed item set links. type FeedItemSetLinkServiceServer interface { // Creates, updates, or removes feed item set links. // @@ -131,7 +136,7 @@ func _FeedItemSetLinkService_MutateFeedItemSetLinks_Handler(srv interface{}, ctx // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var FeedItemSetLinkService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.FeedItemSetLinkService", + ServiceName: "google.ads.googleads.v17.services.FeedItemSetLinkService", HandlerType: (*FeedItemSetLinkServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -140,5 +145,5 @@ var FeedItemSetLinkService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/feed_item_set_link_service.proto", + Metadata: "google/ads/googleads/v17/services/feed_item_set_link_service.proto", } diff --git a/services/feed_item_set_service.pb.go b/services/feed_item_set_service.pb.go index 67f2f959..adcce3e6 100644 --- a/services/feed_item_set_service.pb.go +++ b/services/feed_item_set_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/feed_item_set_service.proto +// source: google/ads/googleads/v17/services/feed_item_set_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [FeedItemSetService.MutateFeedItemSets][google.ads.googleads.v16.services.FeedItemSetService.MutateFeedItemSets]. +// [FeedItemSetService.MutateFeedItemSets][google.ads.googleads.v17.services.FeedItemSetService.MutateFeedItemSets]. type MutateFeedItemSetsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -62,7 +62,7 @@ type MutateFeedItemSetsRequest struct { func (x *MutateFeedItemSetsRequest) Reset() { *x = MutateFeedItemSetsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_feed_item_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_feed_item_set_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75,7 +75,7 @@ func (x *MutateFeedItemSetsRequest) String() string { func (*MutateFeedItemSetsRequest) ProtoMessage() {} func (x *MutateFeedItemSetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_feed_item_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_feed_item_set_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88,7 +88,7 @@ func (x *MutateFeedItemSetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateFeedItemSetsRequest.ProtoReflect.Descriptor instead. func (*MutateFeedItemSetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_feed_item_set_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_feed_item_set_service_proto_rawDescGZIP(), []int{0} } func (x *MutateFeedItemSetsRequest) GetCustomerId() string { @@ -140,7 +140,7 @@ type FeedItemSetOperation struct { func (x *FeedItemSetOperation) Reset() { *x = FeedItemSetOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_feed_item_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_feed_item_set_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -153,7 +153,7 @@ func (x *FeedItemSetOperation) String() string { func (*FeedItemSetOperation) ProtoMessage() {} func (x *FeedItemSetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_feed_item_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_feed_item_set_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -166,7 +166,7 @@ func (x *FeedItemSetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use FeedItemSetOperation.ProtoReflect.Descriptor instead. func (*FeedItemSetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_feed_item_set_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_feed_item_set_service_proto_rawDescGZIP(), []int{1} } func (x *FeedItemSetOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -250,7 +250,7 @@ type MutateFeedItemSetsResponse struct { func (x *MutateFeedItemSetsResponse) Reset() { *x = MutateFeedItemSetsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_feed_item_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_feed_item_set_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -263,7 +263,7 @@ func (x *MutateFeedItemSetsResponse) String() string { func (*MutateFeedItemSetsResponse) ProtoMessage() {} func (x *MutateFeedItemSetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_feed_item_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_feed_item_set_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -276,7 +276,7 @@ func (x *MutateFeedItemSetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateFeedItemSetsResponse.ProtoReflect.Descriptor instead. func (*MutateFeedItemSetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_feed_item_set_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_feed_item_set_service_proto_rawDescGZIP(), []int{2} } func (x *MutateFeedItemSetsResponse) GetResults() []*MutateFeedItemSetResult { @@ -306,7 +306,7 @@ type MutateFeedItemSetResult struct { func (x *MutateFeedItemSetResult) Reset() { *x = MutateFeedItemSetResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_feed_item_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_feed_item_set_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -319,7 +319,7 @@ func (x *MutateFeedItemSetResult) String() string { func (*MutateFeedItemSetResult) ProtoMessage() {} func (x *MutateFeedItemSetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_feed_item_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_feed_item_set_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -332,7 +332,7 @@ func (x *MutateFeedItemSetResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateFeedItemSetResult.ProtoReflect.Descriptor instead. func (*MutateFeedItemSetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_feed_item_set_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_feed_item_set_service_proto_rawDescGZIP(), []int{3} } func (x *MutateFeedItemSetResult) GetResourceName() string { @@ -342,17 +342,17 @@ func (x *MutateFeedItemSetResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_feed_item_set_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_feed_item_set_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_feed_item_set_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_feed_item_set_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, @@ -372,7 +372,7 @@ var file_google_ads_googleads_v16_services_feed_item_set_service_proto_rawDesc = 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5c, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, @@ -388,12 +388,12 @@ var file_google_ads_googleads_v16_services_feed_item_set_service_proto_rawDesc = 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x49, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 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, 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, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x49, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x02, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x46, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x43, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x29, 0xfa, 0x41, 0x26, 0x0a, 0x24, 0x67, 0x6f, 0x6f, 0x67, 0x6c, @@ -405,7 +405,7 @@ var file_google_ads_googleads_v16_services_feed_item_set_service_proto_rawDesc = 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x54, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x46, 0x0a, 0x15, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x5f, 0x65, @@ -423,16 +423,16 @@ var file_google_ads_googleads_v16_services_feed_item_set_service_proto_rawDesc = 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xe9, 0x01, 0x0a, 0x12, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x56, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x37, 0x3a, 0x01, 0x2a, 0x22, 0x32, 0x2f, - 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, + 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, @@ -441,55 +441,55 @@ var file_google_ads_googleads_v16_services_feed_item_set_service_proto_rawDesc = 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x83, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x17, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, + 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_feed_item_set_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_feed_item_set_service_proto_rawDescData = file_google_ads_googleads_v16_services_feed_item_set_service_proto_rawDesc + file_google_ads_googleads_v17_services_feed_item_set_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_feed_item_set_service_proto_rawDescData = file_google_ads_googleads_v17_services_feed_item_set_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_feed_item_set_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_feed_item_set_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_feed_item_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_feed_item_set_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_feed_item_set_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_feed_item_set_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_feed_item_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_feed_item_set_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_feed_item_set_service_proto_rawDescData + return file_google_ads_googleads_v17_services_feed_item_set_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_feed_item_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_feed_item_set_service_proto_goTypes = []interface{}{ - (*MutateFeedItemSetsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateFeedItemSetsRequest - (*FeedItemSetOperation)(nil), // 1: google.ads.googleads.v16.services.FeedItemSetOperation - (*MutateFeedItemSetsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateFeedItemSetsResponse - (*MutateFeedItemSetResult)(nil), // 3: google.ads.googleads.v16.services.MutateFeedItemSetResult +var file_google_ads_googleads_v17_services_feed_item_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_feed_item_set_service_proto_goTypes = []interface{}{ + (*MutateFeedItemSetsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateFeedItemSetsRequest + (*FeedItemSetOperation)(nil), // 1: google.ads.googleads.v17.services.FeedItemSetOperation + (*MutateFeedItemSetsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateFeedItemSetsResponse + (*MutateFeedItemSetResult)(nil), // 3: google.ads.googleads.v17.services.MutateFeedItemSetResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.FeedItemSet)(nil), // 5: google.ads.googleads.v16.resources.FeedItemSet + (*resources.FeedItemSet)(nil), // 5: google.ads.googleads.v17.resources.FeedItemSet (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v16_services_feed_item_set_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateFeedItemSetsRequest.operations:type_name -> google.ads.googleads.v16.services.FeedItemSetOperation - 4, // 1: google.ads.googleads.v16.services.FeedItemSetOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v16.services.FeedItemSetOperation.create:type_name -> google.ads.googleads.v16.resources.FeedItemSet - 5, // 3: google.ads.googleads.v16.services.FeedItemSetOperation.update:type_name -> google.ads.googleads.v16.resources.FeedItemSet - 3, // 4: google.ads.googleads.v16.services.MutateFeedItemSetsResponse.results:type_name -> google.ads.googleads.v16.services.MutateFeedItemSetResult - 6, // 5: google.ads.googleads.v16.services.MutateFeedItemSetsResponse.partial_failure_error:type_name -> google.rpc.Status - 0, // 6: google.ads.googleads.v16.services.FeedItemSetService.MutateFeedItemSets:input_type -> google.ads.googleads.v16.services.MutateFeedItemSetsRequest - 2, // 7: google.ads.googleads.v16.services.FeedItemSetService.MutateFeedItemSets:output_type -> google.ads.googleads.v16.services.MutateFeedItemSetsResponse +var file_google_ads_googleads_v17_services_feed_item_set_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateFeedItemSetsRequest.operations:type_name -> google.ads.googleads.v17.services.FeedItemSetOperation + 4, // 1: google.ads.googleads.v17.services.FeedItemSetOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v17.services.FeedItemSetOperation.create:type_name -> google.ads.googleads.v17.resources.FeedItemSet + 5, // 3: google.ads.googleads.v17.services.FeedItemSetOperation.update:type_name -> google.ads.googleads.v17.resources.FeedItemSet + 3, // 4: google.ads.googleads.v17.services.MutateFeedItemSetsResponse.results:type_name -> google.ads.googleads.v17.services.MutateFeedItemSetResult + 6, // 5: google.ads.googleads.v17.services.MutateFeedItemSetsResponse.partial_failure_error:type_name -> google.rpc.Status + 0, // 6: google.ads.googleads.v17.services.FeedItemSetService.MutateFeedItemSets:input_type -> google.ads.googleads.v17.services.MutateFeedItemSetsRequest + 2, // 7: google.ads.googleads.v17.services.FeedItemSetService.MutateFeedItemSets:output_type -> google.ads.googleads.v17.services.MutateFeedItemSetsResponse 7, // [7:8] is the sub-list for method output_type 6, // [6:7] is the sub-list for method input_type 6, // [6:6] is the sub-list for extension type_name @@ -497,13 +497,13 @@ var file_google_ads_googleads_v16_services_feed_item_set_service_proto_depIdxs = 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_feed_item_set_service_proto_init() } -func file_google_ads_googleads_v16_services_feed_item_set_service_proto_init() { - if File_google_ads_googleads_v16_services_feed_item_set_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_feed_item_set_service_proto_init() } +func file_google_ads_googleads_v17_services_feed_item_set_service_proto_init() { + if File_google_ads_googleads_v17_services_feed_item_set_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_feed_item_set_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_feed_item_set_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateFeedItemSetsRequest); i { case 0: return &v.state @@ -515,7 +515,7 @@ func file_google_ads_googleads_v16_services_feed_item_set_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_feed_item_set_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_feed_item_set_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*FeedItemSetOperation); i { case 0: return &v.state @@ -527,7 +527,7 @@ func file_google_ads_googleads_v16_services_feed_item_set_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_feed_item_set_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_feed_item_set_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateFeedItemSetsResponse); i { case 0: return &v.state @@ -539,7 +539,7 @@ func file_google_ads_googleads_v16_services_feed_item_set_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_feed_item_set_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_feed_item_set_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateFeedItemSetResult); i { case 0: return &v.state @@ -552,7 +552,7 @@ func file_google_ads_googleads_v16_services_feed_item_set_service_proto_init() { } } } - file_google_ads_googleads_v16_services_feed_item_set_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_feed_item_set_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*FeedItemSetOperation_Create)(nil), (*FeedItemSetOperation_Update)(nil), (*FeedItemSetOperation_Remove)(nil), @@ -561,18 +561,18 @@ func file_google_ads_googleads_v16_services_feed_item_set_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_feed_item_set_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_feed_item_set_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_feed_item_set_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_feed_item_set_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_feed_item_set_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_feed_item_set_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_feed_item_set_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_feed_item_set_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_feed_item_set_service_proto = out.File - file_google_ads_googleads_v16_services_feed_item_set_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_feed_item_set_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_feed_item_set_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_feed_item_set_service_proto = out.File + file_google_ads_googleads_v17_services_feed_item_set_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_feed_item_set_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_feed_item_set_service_proto_depIdxs = nil } diff --git a/services/feed_item_set_service_grpc.pb.go b/services/feed_item_set_service_grpc.pb.go index bcae04ce..6751c8f2 100644 --- a/services/feed_item_set_service_grpc.pb.go +++ b/services/feed_item_set_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/feed_item_set_service.proto +// source: google/ads/googleads/v17/services/feed_item_set_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - FeedItemSetService_MutateFeedItemSets_FullMethodName = "/google.ads.googleads.v16.services.FeedItemSetService/MutateFeedItemSets" + FeedItemSetService_MutateFeedItemSets_FullMethodName = "/google.ads.googleads.v17.services.FeedItemSetService/MutateFeedItemSets" ) // FeedItemSetServiceClient is the client API for FeedItemSetService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage feed Item Set type FeedItemSetServiceClient interface { // Creates, updates or removes feed item sets. Operation statuses are // returned. @@ -64,8 +66,9 @@ func NewFeedItemSetServiceClient(cc grpc.ClientConnInterface) FeedItemSetService } func (c *feedItemSetServiceClient) MutateFeedItemSets(ctx context.Context, in *MutateFeedItemSetsRequest, opts ...grpc.CallOption) (*MutateFeedItemSetsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateFeedItemSetsResponse) - err := c.cc.Invoke(ctx, FeedItemSetService_MutateFeedItemSets_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, FeedItemSetService_MutateFeedItemSets_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -75,6 +78,8 @@ func (c *feedItemSetServiceClient) MutateFeedItemSets(ctx context.Context, in *M // FeedItemSetServiceServer is the server API for FeedItemSetService service. // All implementations must embed UnimplementedFeedItemSetServiceServer // for forward compatibility +// +// Service to manage feed Item Set type FeedItemSetServiceServer interface { // Creates, updates or removes feed item sets. Operation statuses are // returned. @@ -134,7 +139,7 @@ func _FeedItemSetService_MutateFeedItemSets_Handler(srv interface{}, ctx context // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var FeedItemSetService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.FeedItemSetService", + ServiceName: "google.ads.googleads.v17.services.FeedItemSetService", HandlerType: (*FeedItemSetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -143,5 +148,5 @@ var FeedItemSetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/feed_item_set_service.proto", + Metadata: "google/ads/googleads/v17/services/feed_item_set_service.proto", } diff --git a/services/feed_item_target_service.pb.go b/services/feed_item_target_service.pb.go index bcda1807..7e24db4c 100644 --- a/services/feed_item_target_service.pb.go +++ b/services/feed_item_target_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/feed_item_target_service.proto +// source: google/ads/googleads/v17/services/feed_item_target_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [FeedItemTargetService.MutateFeedItemTargets][google.ads.googleads.v16.services.FeedItemTargetService.MutateFeedItemTargets]. +// [FeedItemTargetService.MutateFeedItemTargets][google.ads.googleads.v17.services.FeedItemTargetService.MutateFeedItemTargets]. type MutateFeedItemTargetsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -58,7 +58,7 @@ type MutateFeedItemTargetsRequest struct { PartialFailure bool `protobuf:"varint,4,opt,name=partial_failure,json=partialFailure,proto3" json:"partial_failure,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` // If true, the request is validated but not executed. Only errors are // returned, not results. ValidateOnly bool `protobuf:"varint,3,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` @@ -67,7 +67,7 @@ type MutateFeedItemTargetsRequest struct { func (x *MutateFeedItemTargetsRequest) Reset() { *x = MutateFeedItemTargetsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_feed_item_target_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_feed_item_target_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80,7 +80,7 @@ func (x *MutateFeedItemTargetsRequest) String() string { func (*MutateFeedItemTargetsRequest) ProtoMessage() {} func (x *MutateFeedItemTargetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_feed_item_target_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_feed_item_target_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93,7 +93,7 @@ func (x *MutateFeedItemTargetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateFeedItemTargetsRequest.ProtoReflect.Descriptor instead. func (*MutateFeedItemTargetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_feed_item_target_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_feed_item_target_service_proto_rawDescGZIP(), []int{0} } func (x *MutateFeedItemTargetsRequest) GetCustomerId() string { @@ -149,7 +149,7 @@ type FeedItemTargetOperation struct { func (x *FeedItemTargetOperation) Reset() { *x = FeedItemTargetOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_feed_item_target_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_feed_item_target_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -162,7 +162,7 @@ func (x *FeedItemTargetOperation) String() string { func (*FeedItemTargetOperation) ProtoMessage() {} func (x *FeedItemTargetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_feed_item_target_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_feed_item_target_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -175,7 +175,7 @@ func (x *FeedItemTargetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use FeedItemTargetOperation.ProtoReflect.Descriptor instead. func (*FeedItemTargetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_feed_item_target_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_feed_item_target_service_proto_rawDescGZIP(), []int{1} } func (m *FeedItemTargetOperation) GetOperation() isFeedItemTargetOperation_Operation { @@ -239,7 +239,7 @@ type MutateFeedItemTargetsResponse struct { func (x *MutateFeedItemTargetsResponse) Reset() { *x = MutateFeedItemTargetsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_feed_item_target_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_feed_item_target_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -252,7 +252,7 @@ func (x *MutateFeedItemTargetsResponse) String() string { func (*MutateFeedItemTargetsResponse) ProtoMessage() {} func (x *MutateFeedItemTargetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_feed_item_target_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_feed_item_target_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -265,7 +265,7 @@ func (x *MutateFeedItemTargetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateFeedItemTargetsResponse.ProtoReflect.Descriptor instead. func (*MutateFeedItemTargetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_feed_item_target_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_feed_item_target_service_proto_rawDescGZIP(), []int{2} } func (x *MutateFeedItemTargetsResponse) GetPartialFailureError() *status.Status { @@ -299,7 +299,7 @@ type MutateFeedItemTargetResult struct { func (x *MutateFeedItemTargetResult) Reset() { *x = MutateFeedItemTargetResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_feed_item_target_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_feed_item_target_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -312,7 +312,7 @@ func (x *MutateFeedItemTargetResult) String() string { func (*MutateFeedItemTargetResult) ProtoMessage() {} func (x *MutateFeedItemTargetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_feed_item_target_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_feed_item_target_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -325,7 +325,7 @@ func (x *MutateFeedItemTargetResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateFeedItemTargetResult.ProtoReflect.Descriptor instead. func (*MutateFeedItemTargetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_feed_item_target_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_feed_item_target_service_proto_rawDescGZIP(), []int{3} } func (x *MutateFeedItemTargetResult) GetResourceName() string { @@ -342,21 +342,21 @@ func (x *MutateFeedItemTargetResult) GetFeedItemTarget() *resources.FeedItemTarg return nil } -var File_google_ads_googleads_v16_services_feed_item_target_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_feed_item_target_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_feed_item_target_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_feed_item_target_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 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, 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, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, @@ -374,7 +374,7 @@ var file_google_ads_googleads_v16_services_feed_item_target_service_proto_rawDes 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5f, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, @@ -384,7 +384,7 @@ var file_google_ads_googleads_v16_services_feed_item_target_service_proto_rawDes 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, @@ -395,7 +395,7 @@ var file_google_ads_googleads_v16_services_feed_item_target_service_proto_rawDes 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4c, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x46, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2c, 0xfa, 0x41, 0x29, 0x0a, 0x27, @@ -412,7 +412,7 @@ var file_google_ads_googleads_v16_services_feed_item_target_service_proto_rawDes 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x57, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xcd, 0x01, 0x0a, 0x1a, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, @@ -425,24 +425,24 @@ var file_google_ads_googleads_v16_services_feed_item_target_service_proto_rawDes 0x61, 0x6d, 0x65, 0x12, 0x5c, 0x0a, 0x10, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 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, 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, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x0e, 0x66, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x32, 0xd6, 0x02, 0x0a, 0x15, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xf5, 0x01, 0x0a, 0x15, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x59, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3a, 0x3a, 0x01, 0x2a, 0x22, 0x35, 0x2f, 0x76, - 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, + 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, @@ -451,55 +451,55 @@ var file_google_ads_googleads_v16_services_feed_item_target_service_proto_rawDes 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x86, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1a, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, - 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, + 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_feed_item_target_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_feed_item_target_service_proto_rawDescData = file_google_ads_googleads_v16_services_feed_item_target_service_proto_rawDesc + file_google_ads_googleads_v17_services_feed_item_target_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_feed_item_target_service_proto_rawDescData = file_google_ads_googleads_v17_services_feed_item_target_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_feed_item_target_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_feed_item_target_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_feed_item_target_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_feed_item_target_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_feed_item_target_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_feed_item_target_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_feed_item_target_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_feed_item_target_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_feed_item_target_service_proto_rawDescData + return file_google_ads_googleads_v17_services_feed_item_target_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_feed_item_target_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_feed_item_target_service_proto_goTypes = []interface{}{ - (*MutateFeedItemTargetsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateFeedItemTargetsRequest - (*FeedItemTargetOperation)(nil), // 1: google.ads.googleads.v16.services.FeedItemTargetOperation - (*MutateFeedItemTargetsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateFeedItemTargetsResponse - (*MutateFeedItemTargetResult)(nil), // 3: google.ads.googleads.v16.services.MutateFeedItemTargetResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - (*resources.FeedItemTarget)(nil), // 5: google.ads.googleads.v16.resources.FeedItemTarget +var file_google_ads_googleads_v17_services_feed_item_target_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_feed_item_target_service_proto_goTypes = []interface{}{ + (*MutateFeedItemTargetsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateFeedItemTargetsRequest + (*FeedItemTargetOperation)(nil), // 1: google.ads.googleads.v17.services.FeedItemTargetOperation + (*MutateFeedItemTargetsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateFeedItemTargetsResponse + (*MutateFeedItemTargetResult)(nil), // 3: google.ads.googleads.v17.services.MutateFeedItemTargetResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + (*resources.FeedItemTarget)(nil), // 5: google.ads.googleads.v17.resources.FeedItemTarget (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v16_services_feed_item_target_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateFeedItemTargetsRequest.operations:type_name -> google.ads.googleads.v16.services.FeedItemTargetOperation - 4, // 1: google.ads.googleads.v16.services.MutateFeedItemTargetsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.FeedItemTargetOperation.create:type_name -> google.ads.googleads.v16.resources.FeedItemTarget - 6, // 3: google.ads.googleads.v16.services.MutateFeedItemTargetsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 4: google.ads.googleads.v16.services.MutateFeedItemTargetsResponse.results:type_name -> google.ads.googleads.v16.services.MutateFeedItemTargetResult - 5, // 5: google.ads.googleads.v16.services.MutateFeedItemTargetResult.feed_item_target:type_name -> google.ads.googleads.v16.resources.FeedItemTarget - 0, // 6: google.ads.googleads.v16.services.FeedItemTargetService.MutateFeedItemTargets:input_type -> google.ads.googleads.v16.services.MutateFeedItemTargetsRequest - 2, // 7: google.ads.googleads.v16.services.FeedItemTargetService.MutateFeedItemTargets:output_type -> google.ads.googleads.v16.services.MutateFeedItemTargetsResponse +var file_google_ads_googleads_v17_services_feed_item_target_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateFeedItemTargetsRequest.operations:type_name -> google.ads.googleads.v17.services.FeedItemTargetOperation + 4, // 1: google.ads.googleads.v17.services.MutateFeedItemTargetsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.FeedItemTargetOperation.create:type_name -> google.ads.googleads.v17.resources.FeedItemTarget + 6, // 3: google.ads.googleads.v17.services.MutateFeedItemTargetsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 4: google.ads.googleads.v17.services.MutateFeedItemTargetsResponse.results:type_name -> google.ads.googleads.v17.services.MutateFeedItemTargetResult + 5, // 5: google.ads.googleads.v17.services.MutateFeedItemTargetResult.feed_item_target:type_name -> google.ads.googleads.v17.resources.FeedItemTarget + 0, // 6: google.ads.googleads.v17.services.FeedItemTargetService.MutateFeedItemTargets:input_type -> google.ads.googleads.v17.services.MutateFeedItemTargetsRequest + 2, // 7: google.ads.googleads.v17.services.FeedItemTargetService.MutateFeedItemTargets:output_type -> google.ads.googleads.v17.services.MutateFeedItemTargetsResponse 7, // [7:8] is the sub-list for method output_type 6, // [6:7] is the sub-list for method input_type 6, // [6:6] is the sub-list for extension type_name @@ -507,13 +507,13 @@ var file_google_ads_googleads_v16_services_feed_item_target_service_proto_depIdx 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_feed_item_target_service_proto_init() } -func file_google_ads_googleads_v16_services_feed_item_target_service_proto_init() { - if File_google_ads_googleads_v16_services_feed_item_target_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_feed_item_target_service_proto_init() } +func file_google_ads_googleads_v17_services_feed_item_target_service_proto_init() { + if File_google_ads_googleads_v17_services_feed_item_target_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_feed_item_target_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_feed_item_target_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateFeedItemTargetsRequest); i { case 0: return &v.state @@ -525,7 +525,7 @@ func file_google_ads_googleads_v16_services_feed_item_target_service_proto_init( return nil } } - file_google_ads_googleads_v16_services_feed_item_target_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_feed_item_target_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*FeedItemTargetOperation); i { case 0: return &v.state @@ -537,7 +537,7 @@ func file_google_ads_googleads_v16_services_feed_item_target_service_proto_init( return nil } } - file_google_ads_googleads_v16_services_feed_item_target_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_feed_item_target_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateFeedItemTargetsResponse); i { case 0: return &v.state @@ -549,7 +549,7 @@ func file_google_ads_googleads_v16_services_feed_item_target_service_proto_init( return nil } } - file_google_ads_googleads_v16_services_feed_item_target_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_feed_item_target_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateFeedItemTargetResult); i { case 0: return &v.state @@ -562,7 +562,7 @@ func file_google_ads_googleads_v16_services_feed_item_target_service_proto_init( } } } - file_google_ads_googleads_v16_services_feed_item_target_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_feed_item_target_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*FeedItemTargetOperation_Create)(nil), (*FeedItemTargetOperation_Remove)(nil), } @@ -570,18 +570,18 @@ func file_google_ads_googleads_v16_services_feed_item_target_service_proto_init( out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_feed_item_target_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_feed_item_target_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_feed_item_target_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_feed_item_target_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_feed_item_target_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_feed_item_target_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_feed_item_target_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_feed_item_target_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_feed_item_target_service_proto = out.File - file_google_ads_googleads_v16_services_feed_item_target_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_feed_item_target_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_feed_item_target_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_feed_item_target_service_proto = out.File + file_google_ads_googleads_v17_services_feed_item_target_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_feed_item_target_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_feed_item_target_service_proto_depIdxs = nil } diff --git a/services/feed_item_target_service_grpc.pb.go b/services/feed_item_target_service_grpc.pb.go index a4d48897..8c96fe13 100644 --- a/services/feed_item_target_service_grpc.pb.go +++ b/services/feed_item_target_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/feed_item_target_service.proto +// source: google/ads/googleads/v17/services/feed_item_target_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - FeedItemTargetService_MutateFeedItemTargets_FullMethodName = "/google.ads.googleads.v16.services.FeedItemTargetService/MutateFeedItemTargets" + FeedItemTargetService_MutateFeedItemTargets_FullMethodName = "/google.ads.googleads.v17.services.FeedItemTargetService/MutateFeedItemTargets" ) // FeedItemTargetServiceClient is the client API for FeedItemTargetService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage feed item targets. type FeedItemTargetServiceClient interface { // Creates or removes feed item targets. Operation statuses are returned. // @@ -75,8 +77,9 @@ func NewFeedItemTargetServiceClient(cc grpc.ClientConnInterface) FeedItemTargetS } func (c *feedItemTargetServiceClient) MutateFeedItemTargets(ctx context.Context, in *MutateFeedItemTargetsRequest, opts ...grpc.CallOption) (*MutateFeedItemTargetsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateFeedItemTargetsResponse) - err := c.cc.Invoke(ctx, FeedItemTargetService_MutateFeedItemTargets_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, FeedItemTargetService_MutateFeedItemTargets_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -86,6 +89,8 @@ func (c *feedItemTargetServiceClient) MutateFeedItemTargets(ctx context.Context, // FeedItemTargetServiceServer is the server API for FeedItemTargetService service. // All implementations must embed UnimplementedFeedItemTargetServiceServer // for forward compatibility +// +// Service to manage feed item targets. type FeedItemTargetServiceServer interface { // Creates or removes feed item targets. Operation statuses are returned. // @@ -156,7 +161,7 @@ func _FeedItemTargetService_MutateFeedItemTargets_Handler(srv interface{}, ctx c // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var FeedItemTargetService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.FeedItemTargetService", + ServiceName: "google.ads.googleads.v17.services.FeedItemTargetService", HandlerType: (*FeedItemTargetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -165,5 +170,5 @@ var FeedItemTargetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/feed_item_target_service.proto", + Metadata: "google/ads/googleads/v17/services/feed_item_target_service.proto", } diff --git a/services/feed_mapping_service.pb.go b/services/feed_mapping_service.pb.go index 7dc31cff..c14c19ee 100644 --- a/services/feed_mapping_service.pb.go +++ b/services/feed_mapping_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/feed_mapping_service.proto +// source: google/ads/googleads/v17/services/feed_mapping_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [FeedMappingService.MutateFeedMappings][google.ads.googleads.v16.services.FeedMappingService.MutateFeedMappings]. +// [FeedMappingService.MutateFeedMappings][google.ads.googleads.v17.services.FeedMappingService.MutateFeedMappings]. type MutateFeedMappingsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -59,13 +59,13 @@ type MutateFeedMappingsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateFeedMappingsRequest) Reset() { *x = MutateFeedMappingsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_feed_mapping_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_feed_mapping_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *MutateFeedMappingsRequest) String() string { func (*MutateFeedMappingsRequest) ProtoMessage() {} func (x *MutateFeedMappingsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_feed_mapping_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_feed_mapping_service_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 *MutateFeedMappingsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateFeedMappingsRequest.ProtoReflect.Descriptor instead. func (*MutateFeedMappingsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_feed_mapping_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_feed_mapping_service_proto_rawDescGZIP(), []int{0} } func (x *MutateFeedMappingsRequest) GetCustomerId() string { @@ -147,7 +147,7 @@ type FeedMappingOperation struct { func (x *FeedMappingOperation) Reset() { *x = FeedMappingOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_feed_mapping_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_feed_mapping_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160,7 +160,7 @@ func (x *FeedMappingOperation) String() string { func (*FeedMappingOperation) ProtoMessage() {} func (x *FeedMappingOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_feed_mapping_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_feed_mapping_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -173,7 +173,7 @@ func (x *FeedMappingOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use FeedMappingOperation.ProtoReflect.Descriptor instead. func (*FeedMappingOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_feed_mapping_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_feed_mapping_service_proto_rawDescGZIP(), []int{1} } func (m *FeedMappingOperation) GetOperation() isFeedMappingOperation_Operation { @@ -236,7 +236,7 @@ type MutateFeedMappingsResponse struct { func (x *MutateFeedMappingsResponse) Reset() { *x = MutateFeedMappingsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_feed_mapping_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_feed_mapping_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -249,7 +249,7 @@ func (x *MutateFeedMappingsResponse) String() string { func (*MutateFeedMappingsResponse) ProtoMessage() {} func (x *MutateFeedMappingsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_feed_mapping_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_feed_mapping_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -262,7 +262,7 @@ func (x *MutateFeedMappingsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateFeedMappingsResponse.ProtoReflect.Descriptor instead. func (*MutateFeedMappingsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_feed_mapping_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_feed_mapping_service_proto_rawDescGZIP(), []int{2} } func (x *MutateFeedMappingsResponse) GetPartialFailureError() *status.Status { @@ -296,7 +296,7 @@ type MutateFeedMappingResult struct { func (x *MutateFeedMappingResult) Reset() { *x = MutateFeedMappingResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_feed_mapping_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_feed_mapping_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -309,7 +309,7 @@ func (x *MutateFeedMappingResult) String() string { func (*MutateFeedMappingResult) ProtoMessage() {} func (x *MutateFeedMappingResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_feed_mapping_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_feed_mapping_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -322,7 +322,7 @@ func (x *MutateFeedMappingResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateFeedMappingResult.ProtoReflect.Descriptor instead. func (*MutateFeedMappingResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_feed_mapping_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_feed_mapping_service_proto_rawDescGZIP(), []int{3} } func (x *MutateFeedMappingResult) GetResourceName() string { @@ -339,21 +339,21 @@ func (x *MutateFeedMappingResult) GetFeedMapping() *resources.FeedMapping { return nil } -var File_google_ads_googleads_v16_services_feed_mapping_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_feed_mapping_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_feed_mapping_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_feed_mapping_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 0x6f, 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, @@ -371,7 +371,7 @@ var file_google_ads_googleads_v16_services_feed_mapping_service_proto_rawDesc = 0x65, 0x72, 0x49, 0x64, 0x12, 0x5c, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x66, 0x61, @@ -382,7 +382,7 @@ var file_google_ads_googleads_v16_services_feed_mapping_service_proto_rawDesc = 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, @@ -391,7 +391,7 @@ var file_google_ads_googleads_v16_services_feed_mapping_service_proto_rawDesc = 0x67, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x49, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 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, 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, 0x46, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x43, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x29, 0xfa, 0x41, 0x26, 0x0a, 0x24, 0x67, 0x6f, 0x6f, 0x67, @@ -407,7 +407,7 @@ var file_google_ads_googleads_v16_services_feed_mapping_service_proto_rawDesc = 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x54, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xbd, 0x01, 0x0a, 0x17, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, @@ -420,22 +420,22 @@ var file_google_ads_googleads_v16_services_feed_mapping_service_proto_rawDesc = 0x12, 0x52, 0x0a, 0x0c, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x18, 0x02, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x52, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x32, 0xc7, 0x02, 0x0a, 0x12, 0x46, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xe9, 0x01, 0x0a, 0x12, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x73, 0x12, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x56, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x37, - 0x3a, 0x01, 0x2a, 0x22, 0x32, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x3a, 0x01, 0x2a, 0x22, 0x32, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, @@ -444,55 +444,55 @@ var file_google_ads_googleads_v16_services_feed_mapping_service_proto_rawDesc = 0x77, 0x77, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x83, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x17, 0x46, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, + 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_feed_mapping_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_feed_mapping_service_proto_rawDescData = file_google_ads_googleads_v16_services_feed_mapping_service_proto_rawDesc + file_google_ads_googleads_v17_services_feed_mapping_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_feed_mapping_service_proto_rawDescData = file_google_ads_googleads_v17_services_feed_mapping_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_feed_mapping_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_feed_mapping_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_feed_mapping_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_feed_mapping_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_feed_mapping_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_feed_mapping_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_feed_mapping_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_feed_mapping_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_feed_mapping_service_proto_rawDescData + return file_google_ads_googleads_v17_services_feed_mapping_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_feed_mapping_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_feed_mapping_service_proto_goTypes = []interface{}{ - (*MutateFeedMappingsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateFeedMappingsRequest - (*FeedMappingOperation)(nil), // 1: google.ads.googleads.v16.services.FeedMappingOperation - (*MutateFeedMappingsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateFeedMappingsResponse - (*MutateFeedMappingResult)(nil), // 3: google.ads.googleads.v16.services.MutateFeedMappingResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - (*resources.FeedMapping)(nil), // 5: google.ads.googleads.v16.resources.FeedMapping +var file_google_ads_googleads_v17_services_feed_mapping_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_feed_mapping_service_proto_goTypes = []interface{}{ + (*MutateFeedMappingsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateFeedMappingsRequest + (*FeedMappingOperation)(nil), // 1: google.ads.googleads.v17.services.FeedMappingOperation + (*MutateFeedMappingsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateFeedMappingsResponse + (*MutateFeedMappingResult)(nil), // 3: google.ads.googleads.v17.services.MutateFeedMappingResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + (*resources.FeedMapping)(nil), // 5: google.ads.googleads.v17.resources.FeedMapping (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v16_services_feed_mapping_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateFeedMappingsRequest.operations:type_name -> google.ads.googleads.v16.services.FeedMappingOperation - 4, // 1: google.ads.googleads.v16.services.MutateFeedMappingsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.FeedMappingOperation.create:type_name -> google.ads.googleads.v16.resources.FeedMapping - 6, // 3: google.ads.googleads.v16.services.MutateFeedMappingsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 4: google.ads.googleads.v16.services.MutateFeedMappingsResponse.results:type_name -> google.ads.googleads.v16.services.MutateFeedMappingResult - 5, // 5: google.ads.googleads.v16.services.MutateFeedMappingResult.feed_mapping:type_name -> google.ads.googleads.v16.resources.FeedMapping - 0, // 6: google.ads.googleads.v16.services.FeedMappingService.MutateFeedMappings:input_type -> google.ads.googleads.v16.services.MutateFeedMappingsRequest - 2, // 7: google.ads.googleads.v16.services.FeedMappingService.MutateFeedMappings:output_type -> google.ads.googleads.v16.services.MutateFeedMappingsResponse +var file_google_ads_googleads_v17_services_feed_mapping_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateFeedMappingsRequest.operations:type_name -> google.ads.googleads.v17.services.FeedMappingOperation + 4, // 1: google.ads.googleads.v17.services.MutateFeedMappingsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.FeedMappingOperation.create:type_name -> google.ads.googleads.v17.resources.FeedMapping + 6, // 3: google.ads.googleads.v17.services.MutateFeedMappingsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 4: google.ads.googleads.v17.services.MutateFeedMappingsResponse.results:type_name -> google.ads.googleads.v17.services.MutateFeedMappingResult + 5, // 5: google.ads.googleads.v17.services.MutateFeedMappingResult.feed_mapping:type_name -> google.ads.googleads.v17.resources.FeedMapping + 0, // 6: google.ads.googleads.v17.services.FeedMappingService.MutateFeedMappings:input_type -> google.ads.googleads.v17.services.MutateFeedMappingsRequest + 2, // 7: google.ads.googleads.v17.services.FeedMappingService.MutateFeedMappings:output_type -> google.ads.googleads.v17.services.MutateFeedMappingsResponse 7, // [7:8] is the sub-list for method output_type 6, // [6:7] is the sub-list for method input_type 6, // [6:6] is the sub-list for extension type_name @@ -500,13 +500,13 @@ var file_google_ads_googleads_v16_services_feed_mapping_service_proto_depIdxs = 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_feed_mapping_service_proto_init() } -func file_google_ads_googleads_v16_services_feed_mapping_service_proto_init() { - if File_google_ads_googleads_v16_services_feed_mapping_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_feed_mapping_service_proto_init() } +func file_google_ads_googleads_v17_services_feed_mapping_service_proto_init() { + if File_google_ads_googleads_v17_services_feed_mapping_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_feed_mapping_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_feed_mapping_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateFeedMappingsRequest); i { case 0: return &v.state @@ -518,7 +518,7 @@ func file_google_ads_googleads_v16_services_feed_mapping_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_feed_mapping_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_feed_mapping_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*FeedMappingOperation); i { case 0: return &v.state @@ -530,7 +530,7 @@ func file_google_ads_googleads_v16_services_feed_mapping_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_feed_mapping_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_feed_mapping_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateFeedMappingsResponse); i { case 0: return &v.state @@ -542,7 +542,7 @@ func file_google_ads_googleads_v16_services_feed_mapping_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_feed_mapping_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_feed_mapping_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateFeedMappingResult); i { case 0: return &v.state @@ -555,7 +555,7 @@ func file_google_ads_googleads_v16_services_feed_mapping_service_proto_init() { } } } - file_google_ads_googleads_v16_services_feed_mapping_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_feed_mapping_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*FeedMappingOperation_Create)(nil), (*FeedMappingOperation_Remove)(nil), } @@ -563,18 +563,18 @@ func file_google_ads_googleads_v16_services_feed_mapping_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_feed_mapping_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_feed_mapping_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_feed_mapping_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_feed_mapping_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_feed_mapping_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_feed_mapping_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_feed_mapping_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_feed_mapping_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_feed_mapping_service_proto = out.File - file_google_ads_googleads_v16_services_feed_mapping_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_feed_mapping_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_feed_mapping_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_feed_mapping_service_proto = out.File + file_google_ads_googleads_v17_services_feed_mapping_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_feed_mapping_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_feed_mapping_service_proto_depIdxs = nil } diff --git a/services/feed_mapping_service_grpc.pb.go b/services/feed_mapping_service_grpc.pb.go index 4bd017ad..f152b66b 100644 --- a/services/feed_mapping_service_grpc.pb.go +++ b/services/feed_mapping_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/feed_mapping_service.proto +// source: google/ads/googleads/v17/services/feed_mapping_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - FeedMappingService_MutateFeedMappings_FullMethodName = "/google.ads.googleads.v16.services.FeedMappingService/MutateFeedMappings" + FeedMappingService_MutateFeedMappings_FullMethodName = "/google.ads.googleads.v17.services.FeedMappingService/MutateFeedMappings" ) // FeedMappingServiceClient is the client API for FeedMappingService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage feed mappings. type FeedMappingServiceClient interface { // Creates or removes feed mappings. Operation statuses are // returned. @@ -76,8 +78,9 @@ func NewFeedMappingServiceClient(cc grpc.ClientConnInterface) FeedMappingService } func (c *feedMappingServiceClient) MutateFeedMappings(ctx context.Context, in *MutateFeedMappingsRequest, opts ...grpc.CallOption) (*MutateFeedMappingsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateFeedMappingsResponse) - err := c.cc.Invoke(ctx, FeedMappingService_MutateFeedMappings_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, FeedMappingService_MutateFeedMappings_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -87,6 +90,8 @@ func (c *feedMappingServiceClient) MutateFeedMappings(ctx context.Context, in *M // FeedMappingServiceServer is the server API for FeedMappingService service. // All implementations must embed UnimplementedFeedMappingServiceServer // for forward compatibility +// +// Service to manage feed mappings. type FeedMappingServiceServer interface { // Creates or removes feed mappings. Operation statuses are // returned. @@ -158,7 +163,7 @@ func _FeedMappingService_MutateFeedMappings_Handler(srv interface{}, ctx context // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var FeedMappingService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.FeedMappingService", + ServiceName: "google.ads.googleads.v17.services.FeedMappingService", HandlerType: (*FeedMappingServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -167,5 +172,5 @@ var FeedMappingService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/feed_mapping_service.proto", + Metadata: "google/ads/googleads/v17/services/feed_mapping_service.proto", } diff --git a/services/feed_service.pb.go b/services/feed_service.pb.go index bfc8af98..6c6e5db4 100644 --- a/services/feed_service.pb.go +++ b/services/feed_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/feed_service.proto +// source: google/ads/googleads/v17/services/feed_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [FeedService.MutateFeeds][google.ads.googleads.v16.services.FeedService.MutateFeeds]. +// [FeedService.MutateFeeds][google.ads.googleads.v17.services.FeedService.MutateFeeds]. type MutateFeedsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -60,13 +60,13 @@ type MutateFeedsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateFeedsRequest) Reset() { *x = MutateFeedsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_feed_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_feed_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateFeedsRequest) String() string { func (*MutateFeedsRequest) ProtoMessage() {} func (x *MutateFeedsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_feed_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_feed_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateFeedsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateFeedsRequest.ProtoReflect.Descriptor instead. func (*MutateFeedsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_feed_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_feed_service_proto_rawDescGZIP(), []int{0} } func (x *MutateFeedsRequest) GetCustomerId() string { @@ -151,7 +151,7 @@ type FeedOperation struct { func (x *FeedOperation) Reset() { *x = FeedOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_feed_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_feed_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164,7 +164,7 @@ func (x *FeedOperation) String() string { func (*FeedOperation) ProtoMessage() {} func (x *FeedOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_feed_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_feed_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177,7 +177,7 @@ func (x *FeedOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use FeedOperation.ProtoReflect.Descriptor instead. func (*FeedOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_feed_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_feed_service_proto_rawDescGZIP(), []int{1} } func (x *FeedOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -262,7 +262,7 @@ type MutateFeedsResponse struct { func (x *MutateFeedsResponse) Reset() { *x = MutateFeedsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_feed_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_feed_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -275,7 +275,7 @@ func (x *MutateFeedsResponse) String() string { func (*MutateFeedsResponse) ProtoMessage() {} func (x *MutateFeedsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_feed_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_feed_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -288,7 +288,7 @@ func (x *MutateFeedsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateFeedsResponse.ProtoReflect.Descriptor instead. func (*MutateFeedsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_feed_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_feed_service_proto_rawDescGZIP(), []int{2} } func (x *MutateFeedsResponse) GetPartialFailureError() *status.Status { @@ -321,7 +321,7 @@ type MutateFeedResult struct { func (x *MutateFeedResult) Reset() { *x = MutateFeedResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_feed_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_feed_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -334,7 +334,7 @@ func (x *MutateFeedResult) String() string { func (*MutateFeedResult) ProtoMessage() {} func (x *MutateFeedResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_feed_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_feed_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -347,7 +347,7 @@ func (x *MutateFeedResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateFeedResult.ProtoReflect.Descriptor instead. func (*MutateFeedResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_feed_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_feed_service_proto_rawDescGZIP(), []int{3} } func (x *MutateFeedResult) GetResourceName() string { @@ -364,20 +364,20 @@ func (x *MutateFeedResult) GetFeed() *resources.Feed { return nil } -var File_google_ads_googleads_v16_services_feed_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_feed_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_feed_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_feed_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 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, 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, + 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, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, @@ -396,7 +396,7 @@ var file_google_ads_googleads_v16_services_feed_service_proto_rawDesc = []byte{ 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x55, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, @@ -407,7 +407,7 @@ var file_google_ads_googleads_v16_services_feed_service_proto_rawDesc = []byte{ 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, @@ -419,12 +419,12 @@ var file_google_ads_googleads_v16_services_feed_service_proto_rawDesc = []byte{ 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x42, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, + 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, 0x46, 0x65, 0x65, 0x64, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x42, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x02, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x3c, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x22, 0xfa, 0x41, 0x1f, 0x0a, 0x1d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, @@ -439,7 +439,7 @@ var file_google_ads_googleads_v16_services_feed_service_proto_rawDesc = []byte{ 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x4d, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x99, 0x01, 0x0a, 0x10, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x47, 0x0a, 0x0d, 0x72, @@ -449,20 +449,20 @@ var file_google_ads_googleads_v16_services_feed_service_proto_rawDesc = []byte{ 0x6d, 0x2f, 0x46, 0x65, 0x65, 0x64, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x3c, 0x0a, 0x04, 0x66, 0x65, 0x65, 0x64, 0x18, 0x02, 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, 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, 0x46, 0x65, 0x65, 0x64, 0x52, 0x04, 0x66, 0x65, 0x65, 0x64, 0x32, 0xa4, 0x02, 0x0a, 0x0b, 0x46, 0x65, 0x65, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xcd, 0x01, 0x0a, 0x0b, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x73, 0x12, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x4f, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, - 0x02, 0x30, 0x3a, 0x01, 0x2a, 0x22, 0x2b, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, + 0x02, 0x30, 0x3a, 0x01, 0x2a, 0x22, 0x2b, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, @@ -471,57 +471,57 @@ var file_google_ads_googleads_v16_services_feed_service_proto_rawDesc = []byte{ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0xfc, 0x01, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x10, 0x46, 0x65, 0x65, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, + 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_feed_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_feed_service_proto_rawDescData = file_google_ads_googleads_v16_services_feed_service_proto_rawDesc + file_google_ads_googleads_v17_services_feed_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_feed_service_proto_rawDescData = file_google_ads_googleads_v17_services_feed_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_feed_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_feed_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_feed_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_feed_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_feed_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_feed_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_feed_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_feed_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_feed_service_proto_rawDescData + return file_google_ads_googleads_v17_services_feed_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_feed_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_feed_service_proto_goTypes = []interface{}{ - (*MutateFeedsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateFeedsRequest - (*FeedOperation)(nil), // 1: google.ads.googleads.v16.services.FeedOperation - (*MutateFeedsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateFeedsResponse - (*MutateFeedResult)(nil), // 3: google.ads.googleads.v16.services.MutateFeedResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_feed_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_feed_service_proto_goTypes = []interface{}{ + (*MutateFeedsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateFeedsRequest + (*FeedOperation)(nil), // 1: google.ads.googleads.v17.services.FeedOperation + (*MutateFeedsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateFeedsResponse + (*MutateFeedResult)(nil), // 3: google.ads.googleads.v17.services.MutateFeedResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.Feed)(nil), // 6: google.ads.googleads.v16.resources.Feed + (*resources.Feed)(nil), // 6: google.ads.googleads.v17.resources.Feed (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_feed_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateFeedsRequest.operations:type_name -> google.ads.googleads.v16.services.FeedOperation - 4, // 1: google.ads.googleads.v16.services.MutateFeedsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.FeedOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.FeedOperation.create:type_name -> google.ads.googleads.v16.resources.Feed - 6, // 4: google.ads.googleads.v16.services.FeedOperation.update:type_name -> google.ads.googleads.v16.resources.Feed - 7, // 5: google.ads.googleads.v16.services.MutateFeedsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v16.services.MutateFeedsResponse.results:type_name -> google.ads.googleads.v16.services.MutateFeedResult - 6, // 7: google.ads.googleads.v16.services.MutateFeedResult.feed:type_name -> google.ads.googleads.v16.resources.Feed - 0, // 8: google.ads.googleads.v16.services.FeedService.MutateFeeds:input_type -> google.ads.googleads.v16.services.MutateFeedsRequest - 2, // 9: google.ads.googleads.v16.services.FeedService.MutateFeeds:output_type -> google.ads.googleads.v16.services.MutateFeedsResponse +var file_google_ads_googleads_v17_services_feed_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateFeedsRequest.operations:type_name -> google.ads.googleads.v17.services.FeedOperation + 4, // 1: google.ads.googleads.v17.services.MutateFeedsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.FeedOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.FeedOperation.create:type_name -> google.ads.googleads.v17.resources.Feed + 6, // 4: google.ads.googleads.v17.services.FeedOperation.update:type_name -> google.ads.googleads.v17.resources.Feed + 7, // 5: google.ads.googleads.v17.services.MutateFeedsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v17.services.MutateFeedsResponse.results:type_name -> google.ads.googleads.v17.services.MutateFeedResult + 6, // 7: google.ads.googleads.v17.services.MutateFeedResult.feed:type_name -> google.ads.googleads.v17.resources.Feed + 0, // 8: google.ads.googleads.v17.services.FeedService.MutateFeeds:input_type -> google.ads.googleads.v17.services.MutateFeedsRequest + 2, // 9: google.ads.googleads.v17.services.FeedService.MutateFeeds:output_type -> google.ads.googleads.v17.services.MutateFeedsResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -529,13 +529,13 @@ var file_google_ads_googleads_v16_services_feed_service_proto_depIdxs = []int32{ 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_feed_service_proto_init() } -func file_google_ads_googleads_v16_services_feed_service_proto_init() { - if File_google_ads_googleads_v16_services_feed_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_feed_service_proto_init() } +func file_google_ads_googleads_v17_services_feed_service_proto_init() { + if File_google_ads_googleads_v17_services_feed_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_feed_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_feed_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateFeedsRequest); i { case 0: return &v.state @@ -547,7 +547,7 @@ func file_google_ads_googleads_v16_services_feed_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_feed_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_feed_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*FeedOperation); i { case 0: return &v.state @@ -559,7 +559,7 @@ func file_google_ads_googleads_v16_services_feed_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_feed_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_feed_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateFeedsResponse); i { case 0: return &v.state @@ -571,7 +571,7 @@ func file_google_ads_googleads_v16_services_feed_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_feed_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_feed_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateFeedResult); i { case 0: return &v.state @@ -584,7 +584,7 @@ func file_google_ads_googleads_v16_services_feed_service_proto_init() { } } } - file_google_ads_googleads_v16_services_feed_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_feed_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*FeedOperation_Create)(nil), (*FeedOperation_Update)(nil), (*FeedOperation_Remove)(nil), @@ -593,18 +593,18 @@ func file_google_ads_googleads_v16_services_feed_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_feed_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_feed_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_feed_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_feed_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_feed_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_feed_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_feed_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_feed_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_feed_service_proto = out.File - file_google_ads_googleads_v16_services_feed_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_feed_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_feed_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_feed_service_proto = out.File + file_google_ads_googleads_v17_services_feed_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_feed_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_feed_service_proto_depIdxs = nil } diff --git a/services/feed_service_grpc.pb.go b/services/feed_service_grpc.pb.go index b5a96ea0..3234f3e1 100644 --- a/services/feed_service_grpc.pb.go +++ b/services/feed_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/feed_service.proto +// source: google/ads/googleads/v17/services/feed_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - FeedService_MutateFeeds_FullMethodName = "/google.ads.googleads.v16.services.FeedService/MutateFeeds" + FeedService_MutateFeeds_FullMethodName = "/google.ads.googleads.v17.services.FeedService/MutateFeeds" ) // FeedServiceClient is the client API for FeedService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage feeds. type FeedServiceClient interface { // Creates, updates, or removes feeds. Operation statuses are // returned. @@ -81,8 +83,9 @@ func NewFeedServiceClient(cc grpc.ClientConnInterface) FeedServiceClient { } func (c *feedServiceClient) MutateFeeds(ctx context.Context, in *MutateFeedsRequest, opts ...grpc.CallOption) (*MutateFeedsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateFeedsResponse) - err := c.cc.Invoke(ctx, FeedService_MutateFeeds_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, FeedService_MutateFeeds_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -92,6 +95,8 @@ func (c *feedServiceClient) MutateFeeds(ctx context.Context, in *MutateFeedsRequ // FeedServiceServer is the server API for FeedService service. // All implementations must embed UnimplementedFeedServiceServer // for forward compatibility +// +// Service to manage feeds. type FeedServiceServer interface { // Creates, updates, or removes feeds. Operation statuses are // returned. @@ -168,7 +173,7 @@ func _FeedService_MutateFeeds_Handler(srv interface{}, ctx context.Context, dec // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var FeedService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.FeedService", + ServiceName: "google.ads.googleads.v17.services.FeedService", HandlerType: (*FeedServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -177,5 +182,5 @@ var FeedService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/feed_service.proto", + Metadata: "google/ads/googleads/v17/services/feed_service.proto", } diff --git a/services/geo_target_constant_service.pb.go b/services/geo_target_constant_service.pb.go index d06f2071..b84d79d9 100644 --- a/services/geo_target_constant_service.pb.go +++ b/services/geo_target_constant_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/geo_target_constant_service.proto +// source: google/ads/googleads/v17/services/geo_target_constant_service.proto package services @@ -37,7 +37,7 @@ const ( ) // Request message for -// [GeoTargetConstantService.SuggestGeoTargetConstants][google.ads.googleads.v16.services.GeoTargetConstantService.SuggestGeoTargetConstants]. +// [GeoTargetConstantService.SuggestGeoTargetConstants][google.ads.googleads.v17.services.GeoTargetConstantService.SuggestGeoTargetConstants]. type SuggestGeoTargetConstantsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -61,7 +61,7 @@ type SuggestGeoTargetConstantsRequest struct { func (x *SuggestGeoTargetConstantsRequest) Reset() { *x = SuggestGeoTargetConstantsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_geo_target_constant_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_geo_target_constant_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74,7 +74,7 @@ func (x *SuggestGeoTargetConstantsRequest) String() string { func (*SuggestGeoTargetConstantsRequest) ProtoMessage() {} func (x *SuggestGeoTargetConstantsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_geo_target_constant_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_geo_target_constant_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -87,7 +87,7 @@ func (x *SuggestGeoTargetConstantsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SuggestGeoTargetConstantsRequest.ProtoReflect.Descriptor instead. func (*SuggestGeoTargetConstantsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_geo_target_constant_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_geo_target_constant_service_proto_rawDescGZIP(), []int{0} } func (x *SuggestGeoTargetConstantsRequest) GetLocale() string { @@ -144,7 +144,7 @@ func (*SuggestGeoTargetConstantsRequest_LocationNames_) isSuggestGeoTargetConsta func (*SuggestGeoTargetConstantsRequest_GeoTargets_) isSuggestGeoTargetConstantsRequest_Query() {} // Response message for -// [GeoTargetConstantService.SuggestGeoTargetConstants][google.ads.googleads.v16.services.GeoTargetConstantService.SuggestGeoTargetConstants]. +// [GeoTargetConstantService.SuggestGeoTargetConstants][google.ads.googleads.v17.services.GeoTargetConstantService.SuggestGeoTargetConstants]. type SuggestGeoTargetConstantsResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -157,7 +157,7 @@ type SuggestGeoTargetConstantsResponse struct { func (x *SuggestGeoTargetConstantsResponse) Reset() { *x = SuggestGeoTargetConstantsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_geo_target_constant_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_geo_target_constant_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -170,7 +170,7 @@ func (x *SuggestGeoTargetConstantsResponse) String() string { func (*SuggestGeoTargetConstantsResponse) ProtoMessage() {} func (x *SuggestGeoTargetConstantsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_geo_target_constant_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_geo_target_constant_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -183,7 +183,7 @@ func (x *SuggestGeoTargetConstantsResponse) ProtoReflect() protoreflect.Message // Deprecated: Use SuggestGeoTargetConstantsResponse.ProtoReflect.Descriptor instead. func (*SuggestGeoTargetConstantsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_geo_target_constant_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_geo_target_constant_service_proto_rawDescGZIP(), []int{1} } func (x *SuggestGeoTargetConstantsResponse) GetGeoTargetConstantSuggestions() []*GeoTargetConstantSuggestion { @@ -219,7 +219,7 @@ type GeoTargetConstantSuggestion struct { func (x *GeoTargetConstantSuggestion) Reset() { *x = GeoTargetConstantSuggestion{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_geo_target_constant_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_geo_target_constant_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -232,7 +232,7 @@ func (x *GeoTargetConstantSuggestion) String() string { func (*GeoTargetConstantSuggestion) ProtoMessage() {} func (x *GeoTargetConstantSuggestion) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_geo_target_constant_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_geo_target_constant_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -245,7 +245,7 @@ func (x *GeoTargetConstantSuggestion) ProtoReflect() protoreflect.Message { // Deprecated: Use GeoTargetConstantSuggestion.ProtoReflect.Descriptor instead. func (*GeoTargetConstantSuggestion) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_geo_target_constant_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_geo_target_constant_service_proto_rawDescGZIP(), []int{2} } func (x *GeoTargetConstantSuggestion) GetLocale() string { @@ -296,7 +296,7 @@ type SuggestGeoTargetConstantsRequest_LocationNames struct { func (x *SuggestGeoTargetConstantsRequest_LocationNames) Reset() { *x = SuggestGeoTargetConstantsRequest_LocationNames{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_geo_target_constant_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_geo_target_constant_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -309,7 +309,7 @@ func (x *SuggestGeoTargetConstantsRequest_LocationNames) String() string { func (*SuggestGeoTargetConstantsRequest_LocationNames) ProtoMessage() {} func (x *SuggestGeoTargetConstantsRequest_LocationNames) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_geo_target_constant_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_geo_target_constant_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -322,7 +322,7 @@ func (x *SuggestGeoTargetConstantsRequest_LocationNames) ProtoReflect() protoref // Deprecated: Use SuggestGeoTargetConstantsRequest_LocationNames.ProtoReflect.Descriptor instead. func (*SuggestGeoTargetConstantsRequest_LocationNames) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_geo_target_constant_service_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v17_services_geo_target_constant_service_proto_rawDescGZIP(), []int{0, 0} } func (x *SuggestGeoTargetConstantsRequest_LocationNames) GetNames() []string { @@ -345,7 +345,7 @@ type SuggestGeoTargetConstantsRequest_GeoTargets struct { func (x *SuggestGeoTargetConstantsRequest_GeoTargets) Reset() { *x = SuggestGeoTargetConstantsRequest_GeoTargets{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_geo_target_constant_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_geo_target_constant_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -358,7 +358,7 @@ func (x *SuggestGeoTargetConstantsRequest_GeoTargets) String() string { func (*SuggestGeoTargetConstantsRequest_GeoTargets) ProtoMessage() {} func (x *SuggestGeoTargetConstantsRequest_GeoTargets) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_geo_target_constant_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_geo_target_constant_service_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 *SuggestGeoTargetConstantsRequest_GeoTargets) ProtoReflect() protoreflec // Deprecated: Use SuggestGeoTargetConstantsRequest_GeoTargets.ProtoReflect.Descriptor instead. func (*SuggestGeoTargetConstantsRequest_GeoTargets) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_geo_target_constant_service_proto_rawDescGZIP(), []int{0, 1} + return file_google_ads_googleads_v17_services_geo_target_constant_service_proto_rawDescGZIP(), []int{0, 1} } func (x *SuggestGeoTargetConstantsRequest_GeoTargets) GetGeoTargetConstants() []string { @@ -381,18 +381,18 @@ func (x *SuggestGeoTargetConstantsRequest_GeoTargets) GetGeoTargetConstants() [] return nil } -var File_google_ads_googleads_v16_services_geo_target_constant_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_geo_target_constant_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_geo_target_constant_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_geo_target_constant_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x67, 0x65, 0x6f, + 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, @@ -407,7 +407,7 @@ var file_google_ads_googleads_v16_services_geo_target_constant_service_proto_raw 0x43, 0x6f, 0x64, 0x65, 0x88, 0x01, 0x01, 0x12, 0x7a, 0x0a, 0x0e, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x01, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x61, 0x6d, @@ -415,7 +415,7 @@ var file_google_ads_googleads_v16_services_geo_target_constant_service_proto_raw 0x6d, 0x65, 0x73, 0x12, 0x71, 0x0a, 0x0b, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x48, 0x00, 0x52, 0x0a, 0x67, 0x65, 0x6f, 0x54, @@ -434,7 +434,7 @@ var file_google_ads_googleads_v16_services_geo_target_constant_service_proto_raw 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, 0x73, 0x18, 0x01, 0x20, 0x03, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x52, 0x1c, 0x67, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6e, @@ -450,14 +450,14 @@ var file_google_ads_googleads_v16_services_geo_target_constant_service_proto_raw 0x0a, 0x13, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x52, 0x11, 0x67, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x12, 0x74, 0x0a, 0x1b, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x5f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x05, 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, 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, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x52, 0x18, 0x67, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x73, 0x42, 0x09, 0x0a, 0x07, 0x5f, @@ -468,15 +468,15 @@ var file_google_ads_googleads_v16_services_geo_target_constant_service_proto_raw 0x0a, 0x19, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x24, 0x3a, 0x01, - 0x2a, 0x22, 0x1f, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x67, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, + 0x2a, 0x22, 0x1f, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x67, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x73, 0x3a, 0x73, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0xd2, @@ -484,53 +484,53 @@ var file_google_ads_googleads_v16_services_geo_target_constant_service_proto_raw 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x89, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1d, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, + 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_geo_target_constant_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_geo_target_constant_service_proto_rawDescData = file_google_ads_googleads_v16_services_geo_target_constant_service_proto_rawDesc + file_google_ads_googleads_v17_services_geo_target_constant_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_geo_target_constant_service_proto_rawDescData = file_google_ads_googleads_v17_services_geo_target_constant_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_geo_target_constant_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_geo_target_constant_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_geo_target_constant_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_geo_target_constant_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_geo_target_constant_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_geo_target_constant_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_geo_target_constant_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_geo_target_constant_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_geo_target_constant_service_proto_rawDescData -} - -var file_google_ads_googleads_v16_services_geo_target_constant_service_proto_msgTypes = make([]protoimpl.MessageInfo, 5) -var file_google_ads_googleads_v16_services_geo_target_constant_service_proto_goTypes = []interface{}{ - (*SuggestGeoTargetConstantsRequest)(nil), // 0: google.ads.googleads.v16.services.SuggestGeoTargetConstantsRequest - (*SuggestGeoTargetConstantsResponse)(nil), // 1: google.ads.googleads.v16.services.SuggestGeoTargetConstantsResponse - (*GeoTargetConstantSuggestion)(nil), // 2: google.ads.googleads.v16.services.GeoTargetConstantSuggestion - (*SuggestGeoTargetConstantsRequest_LocationNames)(nil), // 3: google.ads.googleads.v16.services.SuggestGeoTargetConstantsRequest.LocationNames - (*SuggestGeoTargetConstantsRequest_GeoTargets)(nil), // 4: google.ads.googleads.v16.services.SuggestGeoTargetConstantsRequest.GeoTargets - (*resources.GeoTargetConstant)(nil), // 5: google.ads.googleads.v16.resources.GeoTargetConstant -} -var file_google_ads_googleads_v16_services_geo_target_constant_service_proto_depIdxs = []int32{ - 3, // 0: google.ads.googleads.v16.services.SuggestGeoTargetConstantsRequest.location_names:type_name -> google.ads.googleads.v16.services.SuggestGeoTargetConstantsRequest.LocationNames - 4, // 1: google.ads.googleads.v16.services.SuggestGeoTargetConstantsRequest.geo_targets:type_name -> google.ads.googleads.v16.services.SuggestGeoTargetConstantsRequest.GeoTargets - 2, // 2: google.ads.googleads.v16.services.SuggestGeoTargetConstantsResponse.geo_target_constant_suggestions:type_name -> google.ads.googleads.v16.services.GeoTargetConstantSuggestion - 5, // 3: google.ads.googleads.v16.services.GeoTargetConstantSuggestion.geo_target_constant:type_name -> google.ads.googleads.v16.resources.GeoTargetConstant - 5, // 4: google.ads.googleads.v16.services.GeoTargetConstantSuggestion.geo_target_constant_parents:type_name -> google.ads.googleads.v16.resources.GeoTargetConstant - 0, // 5: google.ads.googleads.v16.services.GeoTargetConstantService.SuggestGeoTargetConstants:input_type -> google.ads.googleads.v16.services.SuggestGeoTargetConstantsRequest - 1, // 6: google.ads.googleads.v16.services.GeoTargetConstantService.SuggestGeoTargetConstants:output_type -> google.ads.googleads.v16.services.SuggestGeoTargetConstantsResponse + return file_google_ads_googleads_v17_services_geo_target_constant_service_proto_rawDescData +} + +var file_google_ads_googleads_v17_services_geo_target_constant_service_proto_msgTypes = make([]protoimpl.MessageInfo, 5) +var file_google_ads_googleads_v17_services_geo_target_constant_service_proto_goTypes = []interface{}{ + (*SuggestGeoTargetConstantsRequest)(nil), // 0: google.ads.googleads.v17.services.SuggestGeoTargetConstantsRequest + (*SuggestGeoTargetConstantsResponse)(nil), // 1: google.ads.googleads.v17.services.SuggestGeoTargetConstantsResponse + (*GeoTargetConstantSuggestion)(nil), // 2: google.ads.googleads.v17.services.GeoTargetConstantSuggestion + (*SuggestGeoTargetConstantsRequest_LocationNames)(nil), // 3: google.ads.googleads.v17.services.SuggestGeoTargetConstantsRequest.LocationNames + (*SuggestGeoTargetConstantsRequest_GeoTargets)(nil), // 4: google.ads.googleads.v17.services.SuggestGeoTargetConstantsRequest.GeoTargets + (*resources.GeoTargetConstant)(nil), // 5: google.ads.googleads.v17.resources.GeoTargetConstant +} +var file_google_ads_googleads_v17_services_geo_target_constant_service_proto_depIdxs = []int32{ + 3, // 0: google.ads.googleads.v17.services.SuggestGeoTargetConstantsRequest.location_names:type_name -> google.ads.googleads.v17.services.SuggestGeoTargetConstantsRequest.LocationNames + 4, // 1: google.ads.googleads.v17.services.SuggestGeoTargetConstantsRequest.geo_targets:type_name -> google.ads.googleads.v17.services.SuggestGeoTargetConstantsRequest.GeoTargets + 2, // 2: google.ads.googleads.v17.services.SuggestGeoTargetConstantsResponse.geo_target_constant_suggestions:type_name -> google.ads.googleads.v17.services.GeoTargetConstantSuggestion + 5, // 3: google.ads.googleads.v17.services.GeoTargetConstantSuggestion.geo_target_constant:type_name -> google.ads.googleads.v17.resources.GeoTargetConstant + 5, // 4: google.ads.googleads.v17.services.GeoTargetConstantSuggestion.geo_target_constant_parents:type_name -> google.ads.googleads.v17.resources.GeoTargetConstant + 0, // 5: google.ads.googleads.v17.services.GeoTargetConstantService.SuggestGeoTargetConstants:input_type -> google.ads.googleads.v17.services.SuggestGeoTargetConstantsRequest + 1, // 6: google.ads.googleads.v17.services.GeoTargetConstantService.SuggestGeoTargetConstants:output_type -> google.ads.googleads.v17.services.SuggestGeoTargetConstantsResponse 6, // [6:7] is the sub-list for method output_type 5, // [5:6] is the sub-list for method input_type 5, // [5:5] is the sub-list for extension type_name @@ -538,13 +538,13 @@ var file_google_ads_googleads_v16_services_geo_target_constant_service_proto_dep 0, // [0:5] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_geo_target_constant_service_proto_init() } -func file_google_ads_googleads_v16_services_geo_target_constant_service_proto_init() { - if File_google_ads_googleads_v16_services_geo_target_constant_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_geo_target_constant_service_proto_init() } +func file_google_ads_googleads_v17_services_geo_target_constant_service_proto_init() { + if File_google_ads_googleads_v17_services_geo_target_constant_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_geo_target_constant_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_geo_target_constant_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SuggestGeoTargetConstantsRequest); i { case 0: return &v.state @@ -556,7 +556,7 @@ func file_google_ads_googleads_v16_services_geo_target_constant_service_proto_in return nil } } - file_google_ads_googleads_v16_services_geo_target_constant_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_geo_target_constant_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SuggestGeoTargetConstantsResponse); i { case 0: return &v.state @@ -568,7 +568,7 @@ func file_google_ads_googleads_v16_services_geo_target_constant_service_proto_in return nil } } - file_google_ads_googleads_v16_services_geo_target_constant_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_geo_target_constant_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GeoTargetConstantSuggestion); i { case 0: return &v.state @@ -580,7 +580,7 @@ func file_google_ads_googleads_v16_services_geo_target_constant_service_proto_in return nil } } - file_google_ads_googleads_v16_services_geo_target_constant_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_geo_target_constant_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SuggestGeoTargetConstantsRequest_LocationNames); i { case 0: return &v.state @@ -592,7 +592,7 @@ func file_google_ads_googleads_v16_services_geo_target_constant_service_proto_in return nil } } - file_google_ads_googleads_v16_services_geo_target_constant_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_geo_target_constant_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SuggestGeoTargetConstantsRequest_GeoTargets); i { case 0: return &v.state @@ -605,27 +605,27 @@ func file_google_ads_googleads_v16_services_geo_target_constant_service_proto_in } } } - file_google_ads_googleads_v16_services_geo_target_constant_service_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_geo_target_constant_service_proto_msgTypes[0].OneofWrappers = []interface{}{ (*SuggestGeoTargetConstantsRequest_LocationNames_)(nil), (*SuggestGeoTargetConstantsRequest_GeoTargets_)(nil), } - file_google_ads_googleads_v16_services_geo_target_constant_service_proto_msgTypes[2].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_geo_target_constant_service_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_services_geo_target_constant_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_geo_target_constant_service_proto_rawDesc, NumEnums: 0, NumMessages: 5, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_geo_target_constant_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_geo_target_constant_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_geo_target_constant_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_geo_target_constant_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_geo_target_constant_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_geo_target_constant_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_geo_target_constant_service_proto = out.File - file_google_ads_googleads_v16_services_geo_target_constant_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_geo_target_constant_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_geo_target_constant_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_geo_target_constant_service_proto = out.File + file_google_ads_googleads_v17_services_geo_target_constant_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_geo_target_constant_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_geo_target_constant_service_proto_depIdxs = nil } diff --git a/services/geo_target_constant_service_grpc.pb.go b/services/geo_target_constant_service_grpc.pb.go index 658c7c16..6efd7109 100644 --- a/services/geo_target_constant_service_grpc.pb.go +++ b/services/geo_target_constant_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/geo_target_constant_service.proto +// source: google/ads/googleads/v17/services/geo_target_constant_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - GeoTargetConstantService_SuggestGeoTargetConstants_FullMethodName = "/google.ads.googleads.v16.services.GeoTargetConstantService/SuggestGeoTargetConstants" + GeoTargetConstantService_SuggestGeoTargetConstants_FullMethodName = "/google.ads.googleads.v17.services.GeoTargetConstantService/SuggestGeoTargetConstants" ) // GeoTargetConstantServiceClient is the client API for GeoTargetConstantService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to fetch geo target constants. type GeoTargetConstantServiceClient interface { // Returns GeoTargetConstant suggestions by location name or by resource name. // @@ -63,8 +65,9 @@ func NewGeoTargetConstantServiceClient(cc grpc.ClientConnInterface) GeoTargetCon } func (c *geoTargetConstantServiceClient) SuggestGeoTargetConstants(ctx context.Context, in *SuggestGeoTargetConstantsRequest, opts ...grpc.CallOption) (*SuggestGeoTargetConstantsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(SuggestGeoTargetConstantsResponse) - err := c.cc.Invoke(ctx, GeoTargetConstantService_SuggestGeoTargetConstants_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, GeoTargetConstantService_SuggestGeoTargetConstants_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -74,6 +77,8 @@ func (c *geoTargetConstantServiceClient) SuggestGeoTargetConstants(ctx context.C // GeoTargetConstantServiceServer is the server API for GeoTargetConstantService service. // All implementations must embed UnimplementedGeoTargetConstantServiceServer // for forward compatibility +// +// Service to fetch geo target constants. type GeoTargetConstantServiceServer interface { // Returns GeoTargetConstant suggestions by location name or by resource name. // @@ -133,7 +138,7 @@ func _GeoTargetConstantService_SuggestGeoTargetConstants_Handler(srv interface{} // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var GeoTargetConstantService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.GeoTargetConstantService", + ServiceName: "google.ads.googleads.v17.services.GeoTargetConstantService", HandlerType: (*GeoTargetConstantServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -142,5 +147,5 @@ var GeoTargetConstantService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/geo_target_constant_service.proto", + Metadata: "google/ads/googleads/v17/services/geo_target_constant_service.proto", } diff --git a/services/google_ads_field_service.pb.go b/services/google_ads_field_service.pb.go index 78e5d2f9..aa6f930b 100644 --- a/services/google_ads_field_service.pb.go +++ b/services/google_ads_field_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/google_ads_field_service.proto +// source: google/ads/googleads/v17/services/google_ads_field_service.proto package services @@ -37,7 +37,7 @@ const ( ) // Request message for -// [GoogleAdsFieldService.GetGoogleAdsField][google.ads.googleads.v16.services.GoogleAdsFieldService.GetGoogleAdsField]. +// [GoogleAdsFieldService.GetGoogleAdsField][google.ads.googleads.v17.services.GoogleAdsFieldService.GetGoogleAdsField]. type GetGoogleAdsFieldRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -50,7 +50,7 @@ type GetGoogleAdsFieldRequest struct { func (x *GetGoogleAdsFieldRequest) Reset() { *x = GetGoogleAdsFieldRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_google_ads_field_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_google_ads_field_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -63,7 +63,7 @@ func (x *GetGoogleAdsFieldRequest) String() string { func (*GetGoogleAdsFieldRequest) ProtoMessage() {} func (x *GetGoogleAdsFieldRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_google_ads_field_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_google_ads_field_service_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 *GetGoogleAdsFieldRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetGoogleAdsFieldRequest.ProtoReflect.Descriptor instead. func (*GetGoogleAdsFieldRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_google_ads_field_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_google_ads_field_service_proto_rawDescGZIP(), []int{0} } func (x *GetGoogleAdsFieldRequest) GetResourceName() string { @@ -87,7 +87,7 @@ func (x *GetGoogleAdsFieldRequest) GetResourceName() string { } // Request message for -// [GoogleAdsFieldService.SearchGoogleAdsFields][google.ads.googleads.v16.services.GoogleAdsFieldService.SearchGoogleAdsFields]. +// [GoogleAdsFieldService.SearchGoogleAdsFields][google.ads.googleads.v17.services.GoogleAdsFieldService.SearchGoogleAdsFields]. type SearchGoogleAdsFieldsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -108,7 +108,7 @@ type SearchGoogleAdsFieldsRequest struct { func (x *SearchGoogleAdsFieldsRequest) Reset() { *x = SearchGoogleAdsFieldsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_google_ads_field_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_google_ads_field_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -121,7 +121,7 @@ func (x *SearchGoogleAdsFieldsRequest) String() string { func (*SearchGoogleAdsFieldsRequest) ProtoMessage() {} func (x *SearchGoogleAdsFieldsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_google_ads_field_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_google_ads_field_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -134,7 +134,7 @@ func (x *SearchGoogleAdsFieldsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SearchGoogleAdsFieldsRequest.ProtoReflect.Descriptor instead. func (*SearchGoogleAdsFieldsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_google_ads_field_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_google_ads_field_service_proto_rawDescGZIP(), []int{1} } func (x *SearchGoogleAdsFieldsRequest) GetQuery() string { @@ -159,7 +159,7 @@ func (x *SearchGoogleAdsFieldsRequest) GetPageSize() int32 { } // Response message for -// [GoogleAdsFieldService.SearchGoogleAdsFields][google.ads.googleads.v16.services.GoogleAdsFieldService.SearchGoogleAdsFields]. +// [GoogleAdsFieldService.SearchGoogleAdsFields][google.ads.googleads.v17.services.GoogleAdsFieldService.SearchGoogleAdsFields]. type SearchGoogleAdsFieldsResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -178,7 +178,7 @@ type SearchGoogleAdsFieldsResponse struct { func (x *SearchGoogleAdsFieldsResponse) Reset() { *x = SearchGoogleAdsFieldsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_google_ads_field_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_google_ads_field_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -191,7 +191,7 @@ func (x *SearchGoogleAdsFieldsResponse) String() string { func (*SearchGoogleAdsFieldsResponse) ProtoMessage() {} func (x *SearchGoogleAdsFieldsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_google_ads_field_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_google_ads_field_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -204,7 +204,7 @@ func (x *SearchGoogleAdsFieldsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use SearchGoogleAdsFieldsResponse.ProtoReflect.Descriptor instead. func (*SearchGoogleAdsFieldsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_google_ads_field_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_google_ads_field_service_proto_rawDescGZIP(), []int{2} } func (x *SearchGoogleAdsFieldsResponse) GetResults() []*resources.GoogleAdsField { @@ -228,17 +228,17 @@ func (x *SearchGoogleAdsFieldsResponse) GetTotalResultsCount() int64 { return 0 } -var File_google_ads_googleads_v16_services_google_ads_field_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_google_ads_field_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_google_ads_field_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_google_ads_field_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5f, 0x61, 0x64, 0x73, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5f, 0x61, 0x64, 0x73, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, @@ -267,7 +267,7 @@ var file_google_ads_googleads_v16_services_google_ads_field_service_proto_rawDes 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4c, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 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, 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, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x26, 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, @@ -279,28 +279,28 @@ var file_google_ads_googleads_v16_services_google_ads_field_service_proto_rawDes 0x64, 0x73, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xc4, 0x01, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x74, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 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, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x22, 0x3e, 0xda, 0x41, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x28, 0x12, 0x26, 0x2f, - 0x76, 0x31, 0x36, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, + 0x76, 0x31, 0x37, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x2f, 0x2a, 0x7d, 0x12, 0xca, 0x01, 0x0a, 0x15, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x2e, 0xda, 0x41, 0x05, 0x71, 0x75, 0x65, 0x72, 0x79, 0x82, 0xd3, 0xe4, 0x93, - 0x02, 0x20, 0x3a, 0x01, 0x2a, 0x22, 0x1b, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x67, 0x6f, 0x6f, 0x67, + 0x02, 0x20, 0x3a, 0x01, 0x2a, 0x22, 0x1b, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x3a, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0xd2, @@ -308,49 +308,49 @@ var file_google_ads_googleads_v16_services_google_ads_field_service_proto_rawDes 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x86, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, - 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, + 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_google_ads_field_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_google_ads_field_service_proto_rawDescData = file_google_ads_googleads_v16_services_google_ads_field_service_proto_rawDesc + file_google_ads_googleads_v17_services_google_ads_field_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_google_ads_field_service_proto_rawDescData = file_google_ads_googleads_v17_services_google_ads_field_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_google_ads_field_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_google_ads_field_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_google_ads_field_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_google_ads_field_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_google_ads_field_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_google_ads_field_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_google_ads_field_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_google_ads_field_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_google_ads_field_service_proto_rawDescData + return file_google_ads_googleads_v17_services_google_ads_field_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_google_ads_field_service_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_google_ads_googleads_v16_services_google_ads_field_service_proto_goTypes = []interface{}{ - (*GetGoogleAdsFieldRequest)(nil), // 0: google.ads.googleads.v16.services.GetGoogleAdsFieldRequest - (*SearchGoogleAdsFieldsRequest)(nil), // 1: google.ads.googleads.v16.services.SearchGoogleAdsFieldsRequest - (*SearchGoogleAdsFieldsResponse)(nil), // 2: google.ads.googleads.v16.services.SearchGoogleAdsFieldsResponse - (*resources.GoogleAdsField)(nil), // 3: google.ads.googleads.v16.resources.GoogleAdsField +var file_google_ads_googleads_v17_services_google_ads_field_service_proto_msgTypes = make([]protoimpl.MessageInfo, 3) +var file_google_ads_googleads_v17_services_google_ads_field_service_proto_goTypes = []interface{}{ + (*GetGoogleAdsFieldRequest)(nil), // 0: google.ads.googleads.v17.services.GetGoogleAdsFieldRequest + (*SearchGoogleAdsFieldsRequest)(nil), // 1: google.ads.googleads.v17.services.SearchGoogleAdsFieldsRequest + (*SearchGoogleAdsFieldsResponse)(nil), // 2: google.ads.googleads.v17.services.SearchGoogleAdsFieldsResponse + (*resources.GoogleAdsField)(nil), // 3: google.ads.googleads.v17.resources.GoogleAdsField } -var file_google_ads_googleads_v16_services_google_ads_field_service_proto_depIdxs = []int32{ - 3, // 0: google.ads.googleads.v16.services.SearchGoogleAdsFieldsResponse.results:type_name -> google.ads.googleads.v16.resources.GoogleAdsField - 0, // 1: google.ads.googleads.v16.services.GoogleAdsFieldService.GetGoogleAdsField:input_type -> google.ads.googleads.v16.services.GetGoogleAdsFieldRequest - 1, // 2: google.ads.googleads.v16.services.GoogleAdsFieldService.SearchGoogleAdsFields:input_type -> google.ads.googleads.v16.services.SearchGoogleAdsFieldsRequest - 3, // 3: google.ads.googleads.v16.services.GoogleAdsFieldService.GetGoogleAdsField:output_type -> google.ads.googleads.v16.resources.GoogleAdsField - 2, // 4: google.ads.googleads.v16.services.GoogleAdsFieldService.SearchGoogleAdsFields:output_type -> google.ads.googleads.v16.services.SearchGoogleAdsFieldsResponse +var file_google_ads_googleads_v17_services_google_ads_field_service_proto_depIdxs = []int32{ + 3, // 0: google.ads.googleads.v17.services.SearchGoogleAdsFieldsResponse.results:type_name -> google.ads.googleads.v17.resources.GoogleAdsField + 0, // 1: google.ads.googleads.v17.services.GoogleAdsFieldService.GetGoogleAdsField:input_type -> google.ads.googleads.v17.services.GetGoogleAdsFieldRequest + 1, // 2: google.ads.googleads.v17.services.GoogleAdsFieldService.SearchGoogleAdsFields:input_type -> google.ads.googleads.v17.services.SearchGoogleAdsFieldsRequest + 3, // 3: google.ads.googleads.v17.services.GoogleAdsFieldService.GetGoogleAdsField:output_type -> google.ads.googleads.v17.resources.GoogleAdsField + 2, // 4: google.ads.googleads.v17.services.GoogleAdsFieldService.SearchGoogleAdsFields:output_type -> google.ads.googleads.v17.services.SearchGoogleAdsFieldsResponse 3, // [3:5] is the sub-list for method output_type 1, // [1:3] is the sub-list for method input_type 1, // [1:1] is the sub-list for extension type_name @@ -358,13 +358,13 @@ var file_google_ads_googleads_v16_services_google_ads_field_service_proto_depIdx 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_google_ads_field_service_proto_init() } -func file_google_ads_googleads_v16_services_google_ads_field_service_proto_init() { - if File_google_ads_googleads_v16_services_google_ads_field_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_google_ads_field_service_proto_init() } +func file_google_ads_googleads_v17_services_google_ads_field_service_proto_init() { + if File_google_ads_googleads_v17_services_google_ads_field_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_google_ads_field_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_google_ads_field_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetGoogleAdsFieldRequest); i { case 0: return &v.state @@ -376,7 +376,7 @@ func file_google_ads_googleads_v16_services_google_ads_field_service_proto_init( return nil } } - file_google_ads_googleads_v16_services_google_ads_field_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_google_ads_field_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SearchGoogleAdsFieldsRequest); i { case 0: return &v.state @@ -388,7 +388,7 @@ func file_google_ads_googleads_v16_services_google_ads_field_service_proto_init( return nil } } - file_google_ads_googleads_v16_services_google_ads_field_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_google_ads_field_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SearchGoogleAdsFieldsResponse); i { case 0: return &v.state @@ -405,18 +405,18 @@ func file_google_ads_googleads_v16_services_google_ads_field_service_proto_init( out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_google_ads_field_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_google_ads_field_service_proto_rawDesc, NumEnums: 0, NumMessages: 3, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_google_ads_field_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_google_ads_field_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_google_ads_field_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_google_ads_field_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_google_ads_field_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_google_ads_field_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_google_ads_field_service_proto = out.File - file_google_ads_googleads_v16_services_google_ads_field_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_google_ads_field_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_google_ads_field_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_google_ads_field_service_proto = out.File + file_google_ads_googleads_v17_services_google_ads_field_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_google_ads_field_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_google_ads_field_service_proto_depIdxs = nil } diff --git a/services/google_ads_field_service_grpc.pb.go b/services/google_ads_field_service_grpc.pb.go index 51742740..88846d8c 100644 --- a/services/google_ads_field_service_grpc.pb.go +++ b/services/google_ads_field_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/google_ads_field_service.proto +// source: google/ads/googleads/v17/services/google_ads_field_service.proto package services @@ -30,17 +30,19 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - GoogleAdsFieldService_GetGoogleAdsField_FullMethodName = "/google.ads.googleads.v16.services.GoogleAdsFieldService/GetGoogleAdsField" - GoogleAdsFieldService_SearchGoogleAdsFields_FullMethodName = "/google.ads.googleads.v16.services.GoogleAdsFieldService/SearchGoogleAdsFields" + GoogleAdsFieldService_GetGoogleAdsField_FullMethodName = "/google.ads.googleads.v17.services.GoogleAdsFieldService/GetGoogleAdsField" + GoogleAdsFieldService_SearchGoogleAdsFields_FullMethodName = "/google.ads.googleads.v17.services.GoogleAdsFieldService/SearchGoogleAdsFields" ) // GoogleAdsFieldServiceClient is the client API for GoogleAdsFieldService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to fetch Google Ads API fields. type GoogleAdsFieldServiceClient interface { // Returns just the requested field. // @@ -76,8 +78,9 @@ func NewGoogleAdsFieldServiceClient(cc grpc.ClientConnInterface) GoogleAdsFieldS } func (c *googleAdsFieldServiceClient) GetGoogleAdsField(ctx context.Context, in *GetGoogleAdsFieldRequest, opts ...grpc.CallOption) (*resources.GoogleAdsField, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(resources.GoogleAdsField) - err := c.cc.Invoke(ctx, GoogleAdsFieldService_GetGoogleAdsField_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, GoogleAdsFieldService_GetGoogleAdsField_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -85,8 +88,9 @@ func (c *googleAdsFieldServiceClient) GetGoogleAdsField(ctx context.Context, in } func (c *googleAdsFieldServiceClient) SearchGoogleAdsFields(ctx context.Context, in *SearchGoogleAdsFieldsRequest, opts ...grpc.CallOption) (*SearchGoogleAdsFieldsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(SearchGoogleAdsFieldsResponse) - err := c.cc.Invoke(ctx, GoogleAdsFieldService_SearchGoogleAdsFields_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, GoogleAdsFieldService_SearchGoogleAdsFields_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -96,6 +100,8 @@ func (c *googleAdsFieldServiceClient) SearchGoogleAdsFields(ctx context.Context, // GoogleAdsFieldServiceServer is the server API for GoogleAdsFieldService service. // All implementations must embed UnimplementedGoogleAdsFieldServiceServer // for forward compatibility +// +// Service to fetch Google Ads API fields. type GoogleAdsFieldServiceServer interface { // Returns just the requested field. // @@ -186,7 +192,7 @@ func _GoogleAdsFieldService_SearchGoogleAdsFields_Handler(srv interface{}, ctx c // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var GoogleAdsFieldService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.GoogleAdsFieldService", + ServiceName: "google.ads.googleads.v17.services.GoogleAdsFieldService", HandlerType: (*GoogleAdsFieldServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -199,5 +205,5 @@ var GoogleAdsFieldService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/google_ads_field_service.proto", + Metadata: "google/ads/googleads/v17/services/google_ads_field_service.proto", } diff --git a/services/google_ads_service.pb.go b/services/google_ads_service.pb.go index cd79adb6..44c2870f 100644 --- a/services/google_ads_service.pb.go +++ b/services/google_ads_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/google_ads_service.proto +// source: google/ads/googleads/v17/services/google_ads_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [GoogleAdsService.Search][google.ads.googleads.v16.services.GoogleAdsService.Search]. +// [GoogleAdsService.Search][google.ads.googleads.v17.services.GoogleAdsService.Search]. type SearchGoogleAdsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -69,13 +69,13 @@ type SearchGoogleAdsRequest struct { // Determines whether a summary row will be returned. By default, summary row // is not returned. If requested, the summary row will be sent in a response // by itself after all other query results are returned. - SummaryRowSetting enums.SummaryRowSettingEnum_SummaryRowSetting `protobuf:"varint,8,opt,name=summary_row_setting,json=summaryRowSetting,proto3,enum=google.ads.googleads.v16.enums.SummaryRowSettingEnum_SummaryRowSetting" json:"summary_row_setting,omitempty"` + SummaryRowSetting enums.SummaryRowSettingEnum_SummaryRowSetting `protobuf:"varint,8,opt,name=summary_row_setting,json=summaryRowSetting,proto3,enum=google.ads.googleads.v17.enums.SummaryRowSettingEnum_SummaryRowSetting" json:"summary_row_setting,omitempty"` } func (x *SearchGoogleAdsRequest) Reset() { *x = SearchGoogleAdsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -88,7 +88,7 @@ func (x *SearchGoogleAdsRequest) String() string { func (*SearchGoogleAdsRequest) ProtoMessage() {} func (x *SearchGoogleAdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_google_ads_service_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 *SearchGoogleAdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SearchGoogleAdsRequest.ProtoReflect.Descriptor instead. func (*SearchGoogleAdsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_google_ads_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_google_ads_service_proto_rawDescGZIP(), []int{0} } func (x *SearchGoogleAdsRequest) GetCustomerId() string { @@ -154,7 +154,7 @@ func (x *SearchGoogleAdsRequest) GetSummaryRowSetting() enums.SummaryRowSettingE } // Response message for -// [GoogleAdsService.Search][google.ads.googleads.v16.services.GoogleAdsService.Search]. +// [GoogleAdsService.Search][google.ads.googleads.v17.services.GoogleAdsService.Search]. type SearchGoogleAdsResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -183,7 +183,7 @@ type SearchGoogleAdsResponse struct { func (x *SearchGoogleAdsResponse) Reset() { *x = SearchGoogleAdsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -196,7 +196,7 @@ func (x *SearchGoogleAdsResponse) String() string { func (*SearchGoogleAdsResponse) ProtoMessage() {} func (x *SearchGoogleAdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -209,7 +209,7 @@ func (x *SearchGoogleAdsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use SearchGoogleAdsResponse.ProtoReflect.Descriptor instead. func (*SearchGoogleAdsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_google_ads_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_google_ads_service_proto_rawDescGZIP(), []int{1} } func (x *SearchGoogleAdsResponse) GetResults() []*GoogleAdsRow { @@ -255,7 +255,7 @@ func (x *SearchGoogleAdsResponse) GetQueryResourceConsumption() int64 { } // Request message for -// [GoogleAdsService.SearchStream][google.ads.googleads.v16.services.GoogleAdsService.SearchStream]. +// [GoogleAdsService.SearchStream][google.ads.googleads.v17.services.GoogleAdsService.SearchStream]. type SearchGoogleAdsStreamRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -268,13 +268,13 @@ type SearchGoogleAdsStreamRequest struct { // Determines whether a summary row will be returned. By default, summary row // is not returned. If requested, the summary row will be sent in a response // by itself after all other query results are returned. - SummaryRowSetting enums.SummaryRowSettingEnum_SummaryRowSetting `protobuf:"varint,3,opt,name=summary_row_setting,json=summaryRowSetting,proto3,enum=google.ads.googleads.v16.enums.SummaryRowSettingEnum_SummaryRowSetting" json:"summary_row_setting,omitempty"` + SummaryRowSetting enums.SummaryRowSettingEnum_SummaryRowSetting `protobuf:"varint,3,opt,name=summary_row_setting,json=summaryRowSetting,proto3,enum=google.ads.googleads.v17.enums.SummaryRowSettingEnum_SummaryRowSetting" json:"summary_row_setting,omitempty"` } func (x *SearchGoogleAdsStreamRequest) Reset() { *x = SearchGoogleAdsStreamRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -287,7 +287,7 @@ func (x *SearchGoogleAdsStreamRequest) String() string { func (*SearchGoogleAdsStreamRequest) ProtoMessage() {} func (x *SearchGoogleAdsStreamRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -300,7 +300,7 @@ func (x *SearchGoogleAdsStreamRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SearchGoogleAdsStreamRequest.ProtoReflect.Descriptor instead. func (*SearchGoogleAdsStreamRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_google_ads_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_google_ads_service_proto_rawDescGZIP(), []int{2} } func (x *SearchGoogleAdsStreamRequest) GetCustomerId() string { @@ -325,7 +325,7 @@ func (x *SearchGoogleAdsStreamRequest) GetSummaryRowSetting() enums.SummaryRowSe } // Response message for -// [GoogleAdsService.SearchStream][google.ads.googleads.v16.services.GoogleAdsService.SearchStream]. +// [GoogleAdsService.SearchStream][google.ads.googleads.v17.services.GoogleAdsService.SearchStream]. type SearchGoogleAdsStreamResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -352,7 +352,7 @@ type SearchGoogleAdsStreamResponse struct { func (x *SearchGoogleAdsStreamResponse) Reset() { *x = SearchGoogleAdsStreamResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -365,7 +365,7 @@ func (x *SearchGoogleAdsStreamResponse) String() string { func (*SearchGoogleAdsStreamResponse) ProtoMessage() {} func (x *SearchGoogleAdsStreamResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -378,7 +378,7 @@ func (x *SearchGoogleAdsStreamResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use SearchGoogleAdsStreamResponse.ProtoReflect.Descriptor instead. func (*SearchGoogleAdsStreamResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_google_ads_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_google_ads_service_proto_rawDescGZIP(), []int{3} } func (x *SearchGoogleAdsStreamResponse) GetResults() []*GoogleAdsRow { @@ -428,6 +428,8 @@ type GoogleAdsRow struct { AccountBudgetProposal *resources.AccountBudgetProposal `protobuf:"bytes,43,opt,name=account_budget_proposal,json=accountBudgetProposal,proto3" json:"account_budget_proposal,omitempty"` // The AccountLink referenced in the query. AccountLink *resources.AccountLink `protobuf:"bytes,143,opt,name=account_link,json=accountLink,proto3" json:"account_link,omitempty"` + // The Ad referenced in the query. + Ad *resources.Ad `protobuf:"bytes,227,opt,name=ad,proto3" json:"ad,omitempty"` // The ad group referenced in the query. AdGroup *resources.AdGroup `protobuf:"bytes,3,opt,name=ad_group,json=adGroup,proto3" json:"ad_group,omitempty"` // The ad referenced in the query. @@ -476,6 +478,10 @@ type GoogleAdsRow struct { Asset *resources.Asset `protobuf:"bytes,105,opt,name=asset,proto3" json:"asset,omitempty"` // The asset field type view referenced in the query. AssetFieldTypeView *resources.AssetFieldTypeView `protobuf:"bytes,168,opt,name=asset_field_type_view,json=assetFieldTypeView,proto3" json:"asset_field_type_view,omitempty"` + // The channel aggregate asset view referenced in the query. + ChannelAggregateAssetView *resources.ChannelAggregateAssetView `protobuf:"bytes,222,opt,name=channel_aggregate_asset_view,json=channelAggregateAssetView,proto3" json:"channel_aggregate_asset_view,omitempty"` + // The campaign aggregate asset view referenced in the query. + CampaignAggregateAssetView *resources.CampaignAggregateAssetView `protobuf:"bytes,224,opt,name=campaign_aggregate_asset_view,json=campaignAggregateAssetView,proto3" json:"campaign_aggregate_asset_view,omitempty"` // The asset group asset referenced in the query. AssetGroupAsset *resources.AssetGroupAsset `protobuf:"bytes,173,opt,name=asset_group_asset,json=assetGroupAsset,proto3" json:"asset_group_asset,omitempty"` // The asset group signal referenced in the query. @@ -724,6 +730,8 @@ type GoogleAdsRow struct { SmartCampaignSetting *resources.SmartCampaignSetting `protobuf:"bytes,167,opt,name=smart_campaign_setting,json=smartCampaignSetting,proto3" json:"smart_campaign_setting,omitempty"` // The shopping performance view referenced in the query. ShoppingPerformanceView *resources.ShoppingPerformanceView `protobuf:"bytes,117,opt,name=shopping_performance_view,json=shoppingPerformanceView,proto3" json:"shopping_performance_view,omitempty"` + // The shopping product referenced in the query. + ShoppingProduct *resources.ShoppingProduct `protobuf:"bytes,226,opt,name=shopping_product,json=shoppingProduct,proto3" json:"shopping_product,omitempty"` // The Smart campaign search term view referenced in the query. SmartCampaignSearchTermView *resources.SmartCampaignSearchTermView `protobuf:"bytes,170,opt,name=smart_campaign_search_term_view,json=smartCampaignSearchTermView,proto3" json:"smart_campaign_search_term_view,omitempty"` // The AccountLink referenced in the query. @@ -744,6 +752,8 @@ type GoogleAdsRow struct { LifeEvent *resources.LifeEvent `protobuf:"bytes,161,opt,name=life_event,json=lifeEvent,proto3" json:"life_event,omitempty"` // The user list referenced in the query. UserList *resources.UserList `protobuf:"bytes,38,opt,name=user_list,json=userList,proto3" json:"user_list,omitempty"` + // The user list customer type in the query. + UserListCustomerType *resources.UserListCustomerType `protobuf:"bytes,225,opt,name=user_list_customer_type,json=userListCustomerType,proto3" json:"user_list_customer_type,omitempty"` // The user location view referenced in the query. UserLocationView *resources.UserLocationView `protobuf:"bytes,135,opt,name=user_location_view,json=userLocationView,proto3" json:"user_location_view,omitempty"` // The remarketing action referenced in the query. @@ -775,7 +785,7 @@ type GoogleAdsRow struct { func (x *GoogleAdsRow) Reset() { *x = GoogleAdsRow{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -788,7 +798,7 @@ func (x *GoogleAdsRow) String() string { func (*GoogleAdsRow) ProtoMessage() {} func (x *GoogleAdsRow) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -801,7 +811,7 @@ func (x *GoogleAdsRow) ProtoReflect() protoreflect.Message { // Deprecated: Use GoogleAdsRow.ProtoReflect.Descriptor instead. func (*GoogleAdsRow) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_google_ads_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v17_services_google_ads_service_proto_rawDescGZIP(), []int{4} } func (x *GoogleAdsRow) GetAccountBudget() *resources.AccountBudget { @@ -825,6 +835,13 @@ func (x *GoogleAdsRow) GetAccountLink() *resources.AccountLink { return nil } +func (x *GoogleAdsRow) GetAd() *resources.Ad { + if x != nil { + return x.Ad + } + return nil +} + func (x *GoogleAdsRow) GetAdGroup() *resources.AdGroup { if x != nil { return x.AdGroup @@ -993,6 +1010,20 @@ func (x *GoogleAdsRow) GetAssetFieldTypeView() *resources.AssetFieldTypeView { return nil } +func (x *GoogleAdsRow) GetChannelAggregateAssetView() *resources.ChannelAggregateAssetView { + if x != nil { + return x.ChannelAggregateAssetView + } + return nil +} + +func (x *GoogleAdsRow) GetCampaignAggregateAssetView() *resources.CampaignAggregateAssetView { + if x != nil { + return x.CampaignAggregateAssetView + } + return nil +} + func (x *GoogleAdsRow) GetAssetGroupAsset() *resources.AssetGroupAsset { if x != nil { return x.AssetGroupAsset @@ -1861,6 +1892,13 @@ func (x *GoogleAdsRow) GetShoppingPerformanceView() *resources.ShoppingPerforman return nil } +func (x *GoogleAdsRow) GetShoppingProduct() *resources.ShoppingProduct { + if x != nil { + return x.ShoppingProduct + } + return nil +} + func (x *GoogleAdsRow) GetSmartCampaignSearchTermView() *resources.SmartCampaignSearchTermView { if x != nil { return x.SmartCampaignSearchTermView @@ -1931,6 +1969,13 @@ func (x *GoogleAdsRow) GetUserList() *resources.UserList { return nil } +func (x *GoogleAdsRow) GetUserListCustomerType() *resources.UserListCustomerType { + if x != nil { + return x.UserListCustomerType + } + return nil +} + func (x *GoogleAdsRow) GetUserLocationView() *resources.UserLocationView { if x != nil { return x.UserLocationView @@ -2023,7 +2068,7 @@ func (x *GoogleAdsRow) GetSegments() *common.Segments { } // Request message for -// [GoogleAdsService.Mutate][google.ads.googleads.v16.services.GoogleAdsService.Mutate]. +// [GoogleAdsService.Mutate][google.ads.googleads.v17.services.GoogleAdsService.Mutate]. type MutateGoogleAdsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -2045,13 +2090,13 @@ type MutateGoogleAdsRequest struct { // or just the resource name should be returned post mutation. The mutable // resource will only be returned if the resource has the appropriate response // field. For example, MutateCampaignResult.campaign. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateGoogleAdsRequest) Reset() { *x = MutateGoogleAdsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2064,7 +2109,7 @@ func (x *MutateGoogleAdsRequest) String() string { func (*MutateGoogleAdsRequest) ProtoMessage() {} func (x *MutateGoogleAdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2077,7 +2122,7 @@ func (x *MutateGoogleAdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateGoogleAdsRequest.ProtoReflect.Descriptor instead. func (*MutateGoogleAdsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_google_ads_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v17_services_google_ads_service_proto_rawDescGZIP(), []int{5} } func (x *MutateGoogleAdsRequest) GetCustomerId() string { @@ -2116,7 +2161,7 @@ func (x *MutateGoogleAdsRequest) GetResponseContentType() enums.ResponseContentT } // Response message for -// [GoogleAdsService.Mutate][google.ads.googleads.v16.services.GoogleAdsService.Mutate]. +// [GoogleAdsService.Mutate][google.ads.googleads.v17.services.GoogleAdsService.Mutate]. type MutateGoogleAdsResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -2134,7 +2179,7 @@ type MutateGoogleAdsResponse struct { func (x *MutateGoogleAdsResponse) Reset() { *x = MutateGoogleAdsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2147,7 +2192,7 @@ func (x *MutateGoogleAdsResponse) String() string { func (*MutateGoogleAdsResponse) ProtoMessage() {} func (x *MutateGoogleAdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes[6] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2160,7 +2205,7 @@ func (x *MutateGoogleAdsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateGoogleAdsResponse.ProtoReflect.Descriptor instead. func (*MutateGoogleAdsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_google_ads_service_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v17_services_google_ads_service_proto_rawDescGZIP(), []int{6} } func (x *MutateGoogleAdsResponse) GetPartialFailureError() *status.Status { @@ -2268,7 +2313,7 @@ type MutateOperation struct { func (x *MutateOperation) Reset() { *x = MutateOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2281,7 +2326,7 @@ func (x *MutateOperation) String() string { func (*MutateOperation) ProtoMessage() {} func (x *MutateOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes[7] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2294,7 +2339,7 @@ func (x *MutateOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateOperation.ProtoReflect.Descriptor instead. func (*MutateOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_google_ads_service_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v17_services_google_ads_service_proto_rawDescGZIP(), []int{7} } func (m *MutateOperation) GetOperation() isMutateOperation_Operation { @@ -3449,7 +3494,7 @@ type MutateOperationResponse struct { func (x *MutateOperationResponse) Reset() { *x = MutateOperationResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3462,7 +3507,7 @@ func (x *MutateOperationResponse) String() string { func (*MutateOperationResponse) ProtoMessage() {} func (x *MutateOperationResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes[8] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3475,7 +3520,7 @@ func (x *MutateOperationResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateOperationResponse.ProtoReflect.Descriptor instead. func (*MutateOperationResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_google_ads_service_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v17_services_google_ads_service_proto_rawDescGZIP(), []int{8} } func (m *MutateOperationResponse) GetResponse() isMutateOperationResponse_Response { @@ -4547,4319 +4592,4382 @@ func (*MutateOperationResponse_SmartCampaignSettingResult) isMutateOperationResp func (*MutateOperationResponse_UserListResult) isMutateOperationResponse_Response() {} -var File_google_ads_googleads_v16_services_google_ads_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_google_ads_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_google_ads_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_google_ads_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5f, 0x61, 0x64, 0x73, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, + 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, 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, 0x6e, 0x2f, + 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, 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, 0x72, + 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, 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, 0x75, 0x6d, 0x6d, 0x61, + 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, 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, 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, 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, + 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, 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, 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, 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, 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, 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, 0x1a, 0x31, 0x67, 0x6f, + 0x74, 0x5f, 0x6c, 0x69, 0x6e, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x2f, 0x61, 0x64, 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, 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, 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, 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, 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, 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, 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, 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, 0x76, 0x69, 0x65, 0x77, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64, + 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, - 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 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, 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, 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, + 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, 0x73, 0x73, 0x65, 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, 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, + 0x75, 0x70, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 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, 0x72, 0x65, 0x73, + 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, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, - 0x61, 0x64, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x72, 0x65, + 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, - 0x5f, 0x61, 0x64, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x73, 0x73, - 0x65, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, - 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 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, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, - 0x75, 0x70, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, - 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, - 0x6f, 0x75, 0x70, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, - 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 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, 0x72, 0x65, + 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x41, 0x67, 0x6f, 0x6f, + 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 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, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, + 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, + 0x6c, 0x61, 0x62, 0x65, 0x6c, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, + 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, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, - 0x6f, 0x6e, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, - 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, - 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 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, + 0x6f, 0x6e, 0x5f, 0x73, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x37, 0x2f, 0x72, 0x65, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, + 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 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, 0x72, 0x65, 0x73, 0x6f, + 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, + 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, + 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, - 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 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, 0x72, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, - 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, - 0x69, 0x6e, 0x67, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, - 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x66, 0x65, 0x65, 0x64, 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, 0x72, 0x65, 0x73, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, - 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, - 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x5f, - 0x76, 0x69, 0x65, 0x77, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, - 0x67, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x1a, 0x53, 0x67, 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, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x5f, - 0x70, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x6b, - 0x65, 0x79, 0x5f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, - 0x75, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x53, 0x67, 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, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x6e, 0x64, - 0x72, 0x6f, 0x69, 0x64, 0x5f, 0x70, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x5f, 0x73, 0x68, 0x61, - 0x72, 0x65, 0x64, 0x5f, 0x6b, 0x65, 0x79, 0x5f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5f, 0x63, - 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x57, 0x67, - 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, 0x72, 0x63, 0x65, - 0x73, 0x2f, 0x61, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x5f, 0x70, 0x72, 0x69, 0x76, 0x61, 0x63, - 0x79, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x6b, 0x65, 0x79, 0x5f, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, - 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, - 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, - 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, - 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3a, 0x67, 0x6f, + 0x6f, 0x75, 0x70, 0x5f, 0x66, 0x65, 0x65, 0x64, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 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, + 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, + 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x70, 0x61, 0x72, + 0x61, 0x6d, 0x65, 0x74, 0x65, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, - 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x73, 0x73, - 0x65, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 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, 0x72, 0x65, + 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x2f, 0x61, 0x64, 0x5f, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x5f, 0x76, 0x69, 0x65, + 0x77, 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, + 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x67, 0x65, 0x5f, + 0x72, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x1a, 0x53, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x5f, 0x70, 0x72, 0x69, + 0x76, 0x61, 0x63, 0x79, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x6b, 0x65, 0x79, 0x5f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x2e, + 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x53, 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, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x6e, 0x64, 0x72, 0x6f, 0x69, + 0x64, 0x5f, 0x70, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, + 0x5f, 0x6b, 0x65, 0x79, 0x5f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5f, 0x63, 0x61, 0x6d, 0x70, + 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x57, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, + 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x5f, 0x70, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x5f, 0x73, + 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x6b, 0x65, 0x79, 0x5f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 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, 0x37, 0x2f, 0x72, 0x65, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 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, 0x37, 0x2f, 0x72, 0x65, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x66, 0x69, + 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, - 0x6f, 0x75, 0x70, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, - 0x70, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, - 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x69, 0x67, - 0x6e, 0x61, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x6f, 0x75, 0x70, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, - 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x63, 0x6f, - 0x6d, 0x62, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x72, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, - 0x65, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, - 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 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, 0x72, 0x65, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, - 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 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, 0x72, 0x65, - 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x62, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x6a, 0x6f, - 0x62, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, + 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, + 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 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, 0x37, 0x2f, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, + 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x76, + 0x69, 0x65, 0x77, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, + 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, + 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, 0x37, + 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, + 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x63, 0x6f, 0x6d, 0x62, 0x69, + 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 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, 0x37, 0x2f, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, + 0x73, 0x65, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x74, 0x79, + 0x70, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2f, 0x62, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x6a, 0x6f, 0x62, 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, 0x37, 0x2f, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, + 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 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, 0x37, 0x2f, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, + 0x67, 0x5f, 0x73, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x61, 0x64, + 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x73, 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, + 0x65, 0x67, 0x79, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x62, 0x69, + 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x5f, 0x73, + 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x73, 0x2f, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x74, 0x75, + 0x70, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x62, 0x69, 0x64, 0x64, - 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, - 0x6f, 0x6e, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x62, 0x69, 0x64, - 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, - 0x5f, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 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, 0x72, 0x65, 0x73, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, - 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, - 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, - 0x79, 0x5f, 0x73, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x72, 0x65, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x73, - 0x65, 0x74, 0x75, 0x70, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, - 0x61, 0x6c, 0x6c, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x31, + 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6c, 0x6c, + 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, + 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, - 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 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, 0x72, 0x65, 0x73, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, - 0x73, 0x73, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x67, 0x67, 0x72, + 0x65, 0x67, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, + 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, 0x37, + 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, + 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x73, 0x73, + 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, + 0x63, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, + 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, + 0x74, 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, + 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, - 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, - 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, + 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, + 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, + 0x6e, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, - 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x76, 0x69, - 0x65, 0x77, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, - 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, - 0x65, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, - 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 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, 0x72, 0x65, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 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, + 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, + 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, - 0x67, 0x6e, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 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, 0x72, 0x65, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, - 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x64, 0x72, - 0x61, 0x66, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, - 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, - 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x36, + 0x67, 0x6e, 0x5f, 0x64, 0x72, 0x61, 0x66, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, - 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, - 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, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x78, 0x74, 0x65, + 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 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, 0x72, 0x65, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, + 0x5f, 0x66, 0x65, 0x65, 0x64, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, + 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 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, 0x37, 0x2f, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, + 0x6e, 0x5f, 0x6c, 0x61, 0x62, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 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, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x61, + 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, + 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, - 0x69, 0x67, 0x6e, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x6c, 0x61, 0x62, - 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, - 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, - 0x65, 0x72, 0x6d, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, - 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x69, 0x6d, - 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x39, 0x67, + 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, 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, 0x37, 0x2f, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, + 0x6e, 0x5f, 0x73, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x72, 0x72, 0x69, 0x65, 0x72, 0x5f, 0x63, + 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x73, 0x2f, 0x63, 0x61, 0x72, 0x72, 0x69, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, - 0x6e, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x68, 0x61, - 0x6e, 0x67, 0x65, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x73, 0x2f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, - 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x6c, 0x69, 0x63, - 0x6b, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3a, 0x67, 0x6f, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x2f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 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, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, - 0x2f, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, - 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x2f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, + 0x74, 0x65, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x37, 0x2f, 0x72, 0x65, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x76, 0x69, + 0x65, 0x77, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x6f, 0x6e, - 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 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, 0x72, + 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x6f, 0x6d, + 0x62, 0x69, 0x6e, 0x65, 0x64, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x48, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 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, 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, 0x37, 0x2f, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, + 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x75, 0x6c, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 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, 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, 0x72, 0x65, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, + 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, + 0x6e, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 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, 0x72, 0x65, - 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, - 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x75, 0x6c, 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, 0x72, 0x65, - 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, + 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, + 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, + 0x67, 0x6f, 0x61, 0x6c, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, + 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 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, 0x37, 0x2f, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x72, 0x72, - 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 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, 0x72, 0x65, - 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, - 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3f, 0x67, + 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, + 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x61, 0x73, 0x73, 0x65, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x61, 0x73, + 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, - 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, - 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, - 0x73, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, - 0x74, 0x6f, 0x6d, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, - 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x61, 0x73, 0x73, 0x65, 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, 0x72, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, + 0x74, 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, + 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, + 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, + 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, 0x37, + 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x67, + 0x6f, 0x61, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, + 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, + 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, + 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, + 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x66, 0x65, 0x65, 0x64, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, - 0x72, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, - 0x6c, 0x69, 0x65, 0x6e, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, - 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, - 0x6c, 0x69, 0x6e, 0x6b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, - 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, - 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3c, 0x67, + 0x72, 0x5f, 0x6c, 0x61, 0x62, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, - 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x43, 0x67, 0x6f, 0x6f, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 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, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6d, 0x61, 0x6e, + 0x61, 0x67, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6e, 0x65, 0x67, + 0x61, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 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, 0x37, 0x2f, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x65, 0x72, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x69, + 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x61, + 0x63, 0x63, 0x65, 0x73, 0x73, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, - 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, - 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x66, 0x65, - 0x65, 0x64, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, - 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6c, 0x61, 0x62, 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, 0x72, 0x65, 0x73, 0x6f, - 0x75, 0x72, 0x63, 0x65, 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, 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, 0x72, 0x65, - 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, - 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 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, 0x72, 0x65, - 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, - 0x5f, 0x6e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, - 0x69, 0x6f, 0x6e, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, - 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, - 0x72, 0x6d, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x75, 0x73, - 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x75, 0x73, 0x65, - 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, - 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, - 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x64, 0x65, 0x74, - 0x61, 0x69, 0x6c, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x69, - 0x65, 0x77, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x64, 0x65, 0x74, - 0x61, 0x69, 0x6c, 0x65, 0x64, 0x5f, 0x64, 0x65, 0x6d, 0x6f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x69, - 0x63, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, + 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, + 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x61, 0x63, + 0x63, 0x65, 0x73, 0x73, 0x5f, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x37, 0x2f, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 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, 0x37, 0x2f, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x5f, + 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x37, 0x2f, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x65, + 0x64, 0x5f, 0x64, 0x65, 0x6d, 0x6f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 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, 0x37, 0x2f, 0x72, 0x65, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, + 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x64, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x5f, + 0x76, 0x69, 0x65, 0x77, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x64, + 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 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, 0x37, 0x2f, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, + 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x61, 0x64, 0x73, 0x5f, 0x73, 0x65, 0x61, 0x72, + 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x65, 0x64, 0x5f, + 0x6c, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x76, 0x69, 0x65, + 0x77, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x64, 0x69, 0x73, 0x70, - 0x6c, 0x61, 0x79, 0x5f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x76, 0x69, 0x65, 0x77, + 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x65, 0x78, 0x70, 0x65, + 0x72, 0x69, 0x6d, 0x65, 0x6e, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x2f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x72, 0x6d, 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, 0x37, 0x2f, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, + 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x2e, 0x70, 0x72, + 0x6f, 0x74, 0x6f, 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, 0x37, 0x2f, 0x72, 0x65, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x64, 0x69, 0x73, 0x74, 0x61, - 0x6e, 0x63, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x38, + 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, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, + 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, - 0x65, 0x73, 0x2f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, - 0x72, 0x79, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x64, 0x79, 0x6e, - 0x61, 0x6d, 0x69, 0x63, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x61, 0x64, 0x73, 0x5f, - 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x76, 0x69, 0x65, 0x77, - 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x65, 0x78, 0x70, 0x61, 0x6e, - 0x64, 0x65, 0x64, 0x5f, 0x6c, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x61, 0x67, 0x65, - 0x5f, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x33, 0x67, 0x6f, 0x6f, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x74, + 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, - 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x73, 0x2f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, - 0x61, 0x72, 0x6d, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x65, 0x78, - 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, - 0x6d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, - 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, + 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, + 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, + 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, - 0x69, 0x74, 0x65, 0x6d, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x66, - 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 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, 0x72, 0x65, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, - 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x74, 0x61, - 0x72, 0x67, 0x65, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x66, - 0x65, 0x65, 0x64, 0x5f, 0x6d, 0x61, 0x70, 0x70, 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, 0x72, 0x65, 0x73, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, - 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x72, 0x65, 0x73, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x5f, 0x76, 0x69, 0x65, - 0x77, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x67, 0x65, 0x6f, 0x5f, - 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 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, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x67, 0x65, 0x6f, 0x67, 0x72, 0x61, - 0x70, 0x68, 0x69, 0x63, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x73, 0x2f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, - 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, - 0x65, 0x73, 0x2f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x76, - 0x69, 0x65, 0x77, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x68, 0x6f, - 0x74, 0x65, 0x6c, 0x5f, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, - 0x76, 0x69, 0x65, 0x77, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, + 0x6d, 0x61, 0x70, 0x70, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, + 0x65, 0x72, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x2f, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x37, 0x2f, 0x72, 0x65, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, + 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x67, 0x65, 0x6f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, + 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, + 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, + 0x76, 0x69, 0x65, 0x77, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x68, - 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x69, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x68, + 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x37, 0x2f, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, + 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, + 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, 0x37, + 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x68, 0x6f, 0x74, 0x65, 0x6c, + 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x69, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x69, 0x6e, 0x63, 0x6f, 0x6d, 0x65, + 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x72, 0x65, 0x73, 0x6f, + 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, + 0x61, 0x6e, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6b, 0x65, 0x79, + 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, + 0x75, 0x70, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, + 0x6e, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 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, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6b, 0x65, 0x79, + 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x74, 0x68, 0x65, 0x6d, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, + 0x61, 0x6e, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x69, 0x6e, - 0x63, 0x6f, 0x6d, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, - 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, - 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x61, 0x64, - 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x46, 0x67, 0x6f, + 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6b, 0x65, + 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6c, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x61, 0x67, + 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 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, 0x72, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, - 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 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, 0x72, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3f, 0x67, 0x6f, + 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x2f, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, + 0x6e, 0x74, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6c, 0x65, 0x61, + 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, + 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x61, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, - 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x74, 0x68, 0x65, 0x6d, 0x65, 0x5f, 0x63, - 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x72, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 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, 0x72, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6c, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, - 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x6f, - 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x42, 0x67, 0x6f, + 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x2f, 0x6c, 0x69, 0x66, 0x65, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x75, 0x72, 0x63, 0x65, 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, 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, 0x37, 0x2f, 0x72, 0x65, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, + 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x5f, 0x6c, 0x65, 0x61, 0x64, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, + 0x69, 0x63, 0x65, 0x73, 0x5f, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, + 0x73, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x4d, 0x67, 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, 0x72, 0x63, 0x65, 0x73, - 0x2f, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x73, 0x75, 0x62, 0x6d, 0x69, - 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x61, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6c, 0x69, 0x66, 0x65, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 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, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6c, 0x6f, 0x63, 0x61, - 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x5f, 0x6c, 0x65, 0x61, 0x64, 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, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, - 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x5f, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x63, 0x6f, - 0x6e, 0x76, 0x65, 0x72, 0x73, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x1a, 0x4d, 0x67, 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, - 0x72, 0x63, 0x65, 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x73, 0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x69, 0x65, - 0x77, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6d, 0x61, 0x6e, 0x61, - 0x67, 0x65, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x69, - 0x65, 0x77, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, + 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x37, 0x2f, 0x72, 0x65, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x64, 0x5f, + 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x37, 0x2f, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x66, + 0x69, 0x6c, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6d, 0x6f, + 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, + 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x64, 0x65, 0x76, 0x69, + 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x63, 0x6f, + 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x5f, + 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 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, 0x37, 0x2f, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, + 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6a, 0x6f, 0x62, 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, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2f, 0x70, 0x61, 0x69, 0x64, 0x5f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, + 0x63, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x76, 0x69, + 0x65, 0x77, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6d, 0x65, 0x64, - 0x69, 0x61, 0x5f, 0x66, 0x69, 0x6c, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x73, 0x2f, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x63, 0x61, 0x74, + 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x70, 0x61, 0x72, + 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x76, 0x69, 0x65, + 0x77, 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, + 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x70, 0x65, 0x72, 0x5f, + 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 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, 0x72, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, - 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 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, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, - 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x75, 0x70, 0x6c, - 0x6f, 0x61, 0x64, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x75, 0x6d, 0x6d, 0x61, - 0x72, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 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, 0x37, 0x2f, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, + 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x72, 0x65, 0x73, 0x6f, + 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x6c, 0x69, + 0x6e, 0x6b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6f, 0x66, 0x66, - 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6a, - 0x6f, 0x62, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x4a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x71, + 0x75, 0x61, 0x6c, 0x69, 0x66, 0x79, 0x69, 0x6e, 0x67, 0x5f, 0x71, 0x75, 0x65, 0x73, 0x74, 0x69, + 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 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, 0x72, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x70, 0x61, 0x69, 0x64, 0x5f, 0x6f, 0x72, - 0x67, 0x61, 0x6e, 0x69, 0x63, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, - 0x6d, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, - 0x2f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, - 0x5f, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x37, 0x67, 0x6f, 0x6f, + 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x72, 0x65, 0x63, + 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x75, 0x72, 0x63, 0x65, 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, 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, + 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x72, 0x65, 0x6d, 0x61, + 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 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, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, + 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x73, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, + 0x72, 0x69, 0x6f, 0x6e, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x73, + 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x73, 0x2f, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x65, 0x72, + 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x72, 0x65, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, + 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x73, 0x2f, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, + 0x6e, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x76, 0x69, + 0x65, 0x77, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x73, 0x6d, 0x61, + 0x72, 0x74, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, + 0x69, 0x6e, 0x67, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x5f, 0x63, 0x6f, 0x6e, + 0x73, 0x74, 0x61, 0x6e, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, - 0x70, 0x65, 0x72, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x72, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, - 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, - 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, + 0x74, 0x6f, 0x70, 0x69, 0x63, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2f, 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x5f, 0x61, 0x63, 0x74, 0x69, + 0x76, 0x69, 0x74, 0x79, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x37, 0x2f, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c, + 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x5f, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, + 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, + 0x73, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x70, 0x72, 0x6f, - 0x64, 0x75, 0x63, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, - 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x40, 0x67, 0x6f, + 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x75, 0x73, 0x65, + 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3c, + 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, - 0x65, 0x73, 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x79, 0x69, 0x6e, 0x67, 0x5f, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x69, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, - 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 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, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3b, 0x67, 0x6f, 0x6f, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x73, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, - 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x61, 0x63, 0x74, 0x69, - 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, + 0x76, 0x69, 0x64, 0x65, 0x6f, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, + 0x77, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, + 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, + 0x64, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x37, 0x2f, + 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, + 0x70, 0x5f, 0x61, 0x64, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, + 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, + 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, + 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x62, + 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x72, 0x76, + 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x73, 0x65, 0x61, - 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x72, 0x65, - 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x63, - 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x33, + 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, + 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, + 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, + 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, + 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x37, + 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, + 0x75, 0x70, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x73, 0x65, + 0x72, 0x76, 0x69, 0x63, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, + 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, + 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 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, + 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, + 0x6f, 0x75, 0x70, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x37, + 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, + 0x75, 0x70, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x37, + 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, + 0x75, 0x70, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, + 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, - 0x65, 0x73, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, 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, 0x72, 0x65, - 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, - 0x5f, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x76, 0x69, 0x65, - 0x77, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x48, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x73, 0x65, 0x72, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, + 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, + 0x70, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x37, 0x2f, + 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x73, 0x6d, 0x61, 0x72, - 0x74, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, - 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x72, 0x65, 0x73, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x5f, 0x63, 0x61, 0x6d, 0x70, - 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 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, 0x72, 0x65, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x37, 0x67, 0x6f, 0x6f, + 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, + 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x37, 0x2f, 0x73, + 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, + 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, + 0x74, 0x5f, 0x73, 0x65, 0x72, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x61, 0x73, 0x73, + 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, + 0x72, 0x76, 0x69, 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, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, - 0x74, 0x6f, 0x70, 0x69, 0x63, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 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, 0x72, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x5f, 0x76, - 0x69, 0x65, 0x77, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, + 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x37, 0x2f, + 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, + 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x5f, + 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, + 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x5f, + 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, + 0x79, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, + 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, + 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x37, 0x2f, 0x73, 0x65, + 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, + 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x72, + 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, + 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x73, 0x65, + 0x72, 0x76, 0x69, 0x63, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x37, 0x2f, + 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, + 0x6e, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, + 0x69, 0x63, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x74, 0x72, - 0x61, 0x76, 0x65, 0x6c, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x5f, 0x67, 0x72, - 0x6f, 0x75, 0x70, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x49, + 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, + 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, + 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, - 0x65, 0x73, 0x2f, 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, - 0x74, 0x79, 0x5f, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x76, - 0x69, 0x65, 0x77, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x75, 0x73, - 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 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, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, - 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x72, 0x65, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x76, 0x69, 0x64, 0x65, 0x6f, 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, 0x72, 0x65, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x77, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x76, - 0x69, 0x65, 0x77, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, - 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, - 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64, 0x5f, 0x73, 0x65, 0x72, 0x76, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x64, 0x72, 0x61, 0x66, 0x74, + 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, + 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x72, + 0x76, 0x69, 0x63, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, + 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, - 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, - 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, + 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x65, 0x72, 0x76, + 0x69, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, - 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, - 0x65, 0x72, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x1a, 0x4d, 0x67, 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, 0x65, 0x72, 0x76, 0x69, - 0x63, 0x65, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, - 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, - 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, - 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x42, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, + 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, + 0x69, 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, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, - 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, - 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, - 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, - 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, - 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, - 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, - 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, - 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, - 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, - 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, - 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, - 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, - 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x70, 0x61, - 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, - 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x73, 0x65, 0x72, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, - 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, - 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x65, - 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x42, 0x67, 0x6f, 0x6f, + 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, + 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x37, 0x2f, 0x73, 0x65, + 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, + 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, + 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, + 0x72, 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, - 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x69, 0x67, 0x6e, 0x61, - 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x65, 0x72, 0x76, 0x69, 0x63, - 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, - 0x73, 0x65, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, - 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, + 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x4f, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, - 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x2f, 0x73, 0x65, 0x72, - 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, - 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x65, 0x78, 0x63, - 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, - 0x73, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x61, 0x64, 0x6a, 0x75, - 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, - 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, - 0x67, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, - 0x67, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, - 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x45, 0x67, 0x6f, 0x6f, 0x67, + 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 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, 0x65, 0x72, + 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, - 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, - 0x69, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x72, 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, 0x73, 0x65, 0x72, 0x76, - 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x75, - 0x64, 0x67, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, + 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x65, 0x72, 0x76, 0x69, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, + 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x61, + 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, - 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, + 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x42, 0x67, 0x6f, + 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, - 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, - 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, 0x76, 0x69, - 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x75, 0x73, - 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 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, - 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, - 0x6e, 0x5f, 0x64, 0x72, 0x61, 0x66, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, - 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, - 0x6e, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, - 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, 0x76, - 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x66, 0x65, - 0x65, 0x64, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x73, 0x65, 0x72, 0x76, 0x69, - 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x67, 0x72, 0x6f, - 0x75, 0x70, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x73, 0x65, 0x72, 0x76, 0x69, - 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x6c, 0x61, 0x62, - 0x65, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, - 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x72, - 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, - 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, - 0x74, 0x5f, 0x73, 0x65, 0x72, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, - 0x65, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, - 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, - 0x76, 0x69, 0x63, 0x65, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x4f, - 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, - 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, - 0x65, 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, 0x72, 0x76, 0x69, 0x63, 0x65, - 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, 0x76, - 0x69, 0x63, 0x65, 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, 0x65, 0x72, 0x76, + 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, + 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, + 0x7a, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, + 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x65, 0x78, + 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x5f, + 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x73, + 0x65, 0x72, 0x76, 0x69, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, + 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x73, + 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, + 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, + 0x65, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, + 0x69, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x37, 0x2f, 0x73, 0x65, + 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, + 0x72, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, - 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, - 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x48, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x65, 0x78, 0x70, + 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x72, 0x6d, 0x5f, 0x73, 0x65, 0x72, 0x76, + 0x69, 0x63, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, - 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, - 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, 0x65, - 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, - 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, - 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x4a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x65, 0x78, 0x70, + 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x37, 0x2f, + 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, + 0x6f, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x72, + 0x76, 0x69, 0x63, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, + 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x37, 0x2f, + 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, + 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x73, 0x65, 0x72, 0x76, + 0x69, 0x63, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, + 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, - 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, - 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, - 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x73, 0x65, - 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, - 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x73, 0x65, - 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, - 0x6e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, - 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, - 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x72, - 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x44, 0x67, 0x6f, 0x6f, 0x67, + 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, + 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, + 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, - 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, - 0x74, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x73, 0x65, 0x72, 0x76, 0x69, - 0x63, 0x65, 0x73, 0x2f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, - 0x72, 0x6d, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, 0x76, 0x69, - 0x63, 0x65, 0x73, 0x2f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, - 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, - 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, 0x76, - 0x69, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, - 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x69, - 0x6e, 0x6b, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, 0x76, 0x69, - 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, - 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x65, 0x72, 0x76, 0x69, 0x63, - 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x74, 0x61, 0x72, - 0x67, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, 0x76, - 0x69, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, - 0x67, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, - 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x4d, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, + 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, + 0x65, 0x64, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, + 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 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, + 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x61, 0x64, + 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, + 0x72, 0x6f, 0x74, 0x6f, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, - 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x65, - 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x4d, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x73, 0x65, 0x72, - 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x45, 0x67, 0x6f, 0x6f, 0x67, + 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x6b, 0x65, + 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x37, 0x2f, 0x73, 0x65, + 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, + 0x6c, 0x61, 0x6e, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x72, + 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x6b, 0x65, - 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, - 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, 0x76, - 0x69, 0x63, 0x65, 0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, - 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x65, 0x72, 0x76, 0x69, 0x63, - 0x65, 0x73, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, - 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, 0x65, - 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, - 0x6e, 0x67, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, - 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, - 0x64, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, - 0x69, 0x63, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x73, 0x68, 0x61, - 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, - 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x5f, 0x63, - 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x5f, - 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, - 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, - 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, - 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, - 0x70, 0x69, 0x2f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 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, 0x20, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, - 0x66, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x1a, 0x17, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x72, 0x70, 0x63, 0x2f, 0x73, - 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xf0, 0x02, 0x0a, 0x16, - 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, - 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, - 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x05, - 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, - 0x52, 0x05, 0x71, 0x75, 0x65, 0x72, 0x79, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x65, 0x5f, - 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x67, - 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, - 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, - 0x69, 0x7a, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x5f, - 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x76, 0x61, 0x6c, 0x69, - 0x64, 0x61, 0x74, 0x65, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x3b, 0x0a, 0x1a, 0x72, 0x65, 0x74, 0x75, - 0x72, 0x6e, 0x5f, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, - 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x17, 0x72, 0x65, - 0x74, 0x75, 0x72, 0x6e, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, - 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x77, 0x0a, 0x13, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, - 0x5f, 0x72, 0x6f, 0x77, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 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, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x6f, 0x77, 0x53, 0x65, - 0x74, 0x74, 0x69, 0x6e, 0x67, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, - 0x79, 0x52, 0x6f, 0x77, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x11, 0x73, 0x75, 0x6d, - 0x6d, 0x61, 0x72, 0x79, 0x52, 0x6f, 0x77, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x22, 0x87, - 0x03, 0x0a, 0x17, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x49, 0x0a, 0x07, 0x72, 0x65, - 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x67, 0x6f, + 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x6b, 0x65, + 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x6c, 0x61, 0x62, 0x65, + 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 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, + 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, + 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x61, 0x63, 0x74, 0x69, + 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x73, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, + 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, + 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, + 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x73, 0x2f, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, + 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 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, 0x37, + 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, + 0x69, 0x73, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, + 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, + 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, + 0x17, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6c, 0x69, 0x65, + 0x6e, 0x74, 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, 0x20, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, + 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x67, 0x6f, 0x6f, + 0x67, 0x6c, 0x65, 0x2f, 0x72, 0x70, 0x63, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, + 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xf0, 0x02, 0x0a, 0x16, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x47, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, + 0x24, 0x0a, 0x0b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x05, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x05, 0x71, 0x75, 0x65, 0x72, 0x79, + 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, + 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, + 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x23, 0x0a, 0x0d, + 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x05, 0x20, + 0x01, 0x28, 0x08, 0x52, 0x0c, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x4f, 0x6e, 0x6c, + 0x79, 0x12, 0x3b, 0x0a, 0x1a, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x5f, 0x74, 0x6f, 0x74, 0x61, + 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, + 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x17, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x54, 0x6f, 0x74, + 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x77, + 0x0a, 0x13, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x72, 0x6f, 0x77, 0x5f, 0x73, 0x65, + 0x74, 0x74, 0x69, 0x6e, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x52, 0x6f, 0x77, 0x52, 0x07, 0x72, 0x65, - 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x26, 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, - 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, - 0x6e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x2e, 0x0a, - 0x13, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x5f, 0x63, - 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x11, 0x74, 0x6f, 0x74, 0x61, - 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x39, 0x0a, - 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x05, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x09, 0x66, - 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x50, 0x0a, 0x0b, 0x73, 0x75, 0x6d, 0x6d, - 0x61, 0x72, 0x79, 0x5f, 0x72, 0x6f, 0x77, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x52, 0x6f, 0x77, 0x52, 0x0a, - 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x6f, 0x77, 0x12, 0x3c, 0x0a, 0x1a, 0x71, 0x75, - 0x65, 0x72, 0x79, 0x5f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x6e, - 0x73, 0x75, 0x6d, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x18, - 0x71, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x6f, 0x6e, - 0x73, 0x75, 0x6d, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xd8, 0x01, 0x0a, 0x1c, 0x53, 0x65, 0x61, - 0x72, 0x63, 0x68, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x53, 0x74, 0x72, 0x65, - 0x61, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0b, 0x63, 0x75, 0x73, - 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, - 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, - 0x19, 0x0a, 0x05, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, - 0xe0, 0x41, 0x02, 0x52, 0x05, 0x71, 0x75, 0x65, 0x72, 0x79, 0x12, 0x77, 0x0a, 0x13, 0x73, 0x75, - 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x72, 0x6f, 0x77, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, - 0x67, 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, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, - 0x52, 0x6f, 0x77, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, - 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x6f, 0x77, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, - 0x52, 0x11, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x6f, 0x77, 0x53, 0x65, 0x74, 0x74, - 0x69, 0x6e, 0x67, 0x22, 0xd4, 0x02, 0x0a, 0x1d, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x49, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, - 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x75, 0x6d, + 0x6d, 0x61, 0x72, 0x79, 0x52, 0x6f, 0x77, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x45, 0x6e, + 0x75, 0x6d, 0x2e, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x6f, 0x77, 0x53, 0x65, 0x74, + 0x74, 0x69, 0x6e, 0x67, 0x52, 0x11, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x6f, 0x77, + 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x22, 0x87, 0x03, 0x0a, 0x17, 0x53, 0x65, 0x61, 0x72, + 0x63, 0x68, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x6e, 0x73, 0x65, 0x12, 0x49, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 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, 0x37, 0x2e, + 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, + 0x64, 0x73, 0x52, 0x6f, 0x77, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x26, + 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, + 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, + 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x2e, 0x0a, 0x13, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, + 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, + 0x01, 0x28, 0x03, 0x52, 0x11, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, + 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x39, 0x0a, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, + 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, + 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, + 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x09, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, + 0x6b, 0x12, 0x50, 0x0a, 0x0b, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x72, 0x6f, 0x77, + 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x52, 0x6f, 0x77, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, - 0x12, 0x39, 0x0a, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x02, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, - 0x52, 0x09, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x50, 0x0a, 0x0b, 0x73, - 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x72, 0x6f, 0x77, 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, 0x73, 0x65, 0x72, 0x76, - 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x52, 0x6f, - 0x77, 0x52, 0x0a, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x6f, 0x77, 0x12, 0x1d, 0x0a, - 0x0a, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x09, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x49, 0x64, 0x12, 0x3c, 0x0a, 0x1a, - 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x63, - 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, - 0x52, 0x18, 0x71, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, - 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x93, 0x8e, 0x01, 0x0a, 0x0c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x52, 0x6f, 0x77, 0x12, 0x58, 0x0a, 0x0e, - 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x18, 0x2a, - 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, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, - 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x52, 0x0d, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, - 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x12, 0x71, 0x0a, 0x17, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, - 0x74, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x70, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, - 0x6c, 0x18, 0x2b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x63, 0x63, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x65, 0x41, 0x64, 0x73, 0x52, 0x6f, 0x77, 0x52, 0x0a, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, + 0x52, 0x6f, 0x77, 0x12, 0x3c, 0x0a, 0x1a, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x70, 0x74, 0x69, 0x6f, + 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x18, 0x71, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x70, 0x74, 0x69, 0x6f, + 0x6e, 0x22, 0xd8, 0x01, 0x0a, 0x1c, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x47, 0x6f, 0x6f, 0x67, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, + 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, + 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x05, 0x71, 0x75, 0x65, 0x72, + 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x05, 0x71, 0x75, + 0x65, 0x72, 0x79, 0x12, 0x77, 0x0a, 0x13, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x72, + 0x6f, 0x77, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 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, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x6f, 0x77, 0x53, 0x65, 0x74, 0x74, + 0x69, 0x6e, 0x67, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x52, + 0x6f, 0x77, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x11, 0x73, 0x75, 0x6d, 0x6d, 0x61, + 0x72, 0x79, 0x52, 0x6f, 0x77, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x22, 0xd4, 0x02, 0x0a, + 0x1d, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, + 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x49, + 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x52, 0x6f, 0x77, + 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x39, 0x0a, 0x0a, 0x66, 0x69, 0x65, + 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, + 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x09, 0x66, 0x69, 0x65, 0x6c, 0x64, + 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x50, 0x0a, 0x0b, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x5f, + 0x72, 0x6f, 0x77, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x52, 0x6f, 0x77, 0x52, 0x0a, 0x73, 0x75, 0x6d, 0x6d, + 0x61, 0x72, 0x79, 0x52, 0x6f, 0x77, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, + 0x74, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x72, 0x65, 0x71, 0x75, + 0x65, 0x73, 0x74, 0x49, 0x64, 0x12, 0x3c, 0x0a, 0x1a, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x70, 0x74, + 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x18, 0x71, 0x75, 0x65, 0x72, 0x79, + 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x70, 0x74, + 0x69, 0x6f, 0x6e, 0x22, 0xa5, 0x92, 0x01, 0x0a, 0x0c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, + 0x64, 0x73, 0x52, 0x6f, 0x77, 0x12, 0x58, 0x0a, 0x0e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, + 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x18, 0x2a, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x73, 0x2e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, + 0x52, 0x0d, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x12, + 0x71, 0x0a, 0x17, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, + 0x74, 0x5f, 0x70, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x18, 0x2b, 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, 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, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x52, 0x15, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73, - 0x61, 0x6c, 0x52, 0x15, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, - 0x74, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x12, 0x53, 0x0a, 0x0c, 0x61, 0x63, 0x63, - 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x18, 0x8f, 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, 0x72, 0x65, 0x73, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6e, - 0x6b, 0x52, 0x0b, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x12, 0x46, - 0x0a, 0x08, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x03, 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, 0x72, 0x65, 0x73, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x07, 0x61, - 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x4d, 0x0a, 0x0b, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, - 0x75, 0x70, 0x5f, 0x61, 0x64, 0x18, 0x10, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, - 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x52, 0x09, 0x61, 0x64, 0x47, 0x72, - 0x6f, 0x75, 0x70, 0x41, 0x64, 0x12, 0x8d, 0x01, 0x0a, 0x22, 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, 0x18, 0xc1, 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, 0x36, 0x2e, 0x72, + 0x61, 0x6c, 0x12, 0x53, 0x0a, 0x0c, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6c, 0x69, + 0x6e, 0x6b, 0x18, 0x8f, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, + 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x0b, 0x61, 0x63, 0x63, 0x6f, + 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x12, 0x37, 0x0a, 0x02, 0x61, 0x64, 0x18, 0xe3, 0x01, + 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, 0x37, 0x2e, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x52, 0x02, 0x61, 0x64, + 0x12, 0x46, 0x0a, 0x08, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x03, 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, 0x37, 0x2e, 0x72, 0x65, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, + 0x07, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x4d, 0x0a, 0x0b, 0x61, 0x64, 0x5f, 0x67, + 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64, 0x18, 0x10, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x52, 0x09, 0x61, 0x64, + 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x12, 0x8d, 0x01, 0x0a, 0x22, 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, 0x18, 0xc1, + 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 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, 0x52, 0x1d, 0x61, 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, 0x12, 0x6b, 0x0a, 0x16, 0x61, 0x64, 0x5f, 0x67, 0x72, + 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x76, 0x69, 0x65, + 0x77, 0x18, 0x83, 0x01, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, + 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x56, 0x69, 0x65, 0x77, + 0x52, 0x12, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, + 0x56, 0x69, 0x65, 0x77, 0x12, 0x5d, 0x0a, 0x11, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, + 0x5f, 0x61, 0x64, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x78, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x4c, 0x61, + 0x62, 0x65, 0x6c, 0x52, 0x0e, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x4c, 0x61, + 0x62, 0x65, 0x6c, 0x12, 0x57, 0x0a, 0x0e, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, + 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x9a, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0c, + 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x61, 0x0a, 0x12, + 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, + 0x65, 0x74, 0x18, 0xc4, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, + 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x52, 0x0f, + 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x12, + 0x6c, 0x0a, 0x16, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x75, 0x64, 0x69, + 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x39, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x75, 0x64, 0x69, + 0x65, 0x6e, 0x63, 0x65, 0x56, 0x69, 0x65, 0x77, 0x52, 0x13, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, + 0x70, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x56, 0x69, 0x65, 0x77, 0x12, 0x69, 0x0a, + 0x15, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, + 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x18, 0x18, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, + 0x66, 0x69, 0x65, 0x72, 0x52, 0x12, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69, 0x64, + 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x12, 0x62, 0x0a, 0x12, 0x61, 0x64, 0x5f, 0x67, + 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 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, 0x37, 0x2e, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, + 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x52, 0x10, 0x61, 0x64, 0x47, 0x72, + 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x12, 0x82, 0x01, 0x0a, + 0x1d, 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, 0x18, 0xbb, + 0x01, 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, 0x37, + 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x52, 0x1a, 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, 0x12, 0x72, 0x0a, 0x18, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, + 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x79, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 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, 0x52, 0x1d, 0x61, 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, 0x12, 0x6b, 0x0a, 0x16, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, - 0x70, 0x5f, 0x61, 0x64, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, - 0x83, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, - 0x6f, 0x75, 0x70, 0x41, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x56, 0x69, 0x65, 0x77, 0x52, 0x12, - 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x56, 0x69, - 0x65, 0x77, 0x12, 0x5d, 0x0a, 0x11, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, - 0x64, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x78, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, + 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x15, + 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, + 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x81, 0x01, 0x0a, 0x1d, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, + 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x69, 0x6d, + 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x6e, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, - 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x4c, 0x61, 0x62, 0x65, - 0x6c, 0x52, 0x0e, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x4c, 0x61, 0x62, 0x65, - 0x6c, 0x12, 0x57, 0x0a, 0x0e, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x73, - 0x73, 0x65, 0x74, 0x18, 0x9a, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, - 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0c, 0x61, 0x64, - 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x61, 0x0a, 0x12, 0x61, 0x64, - 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, - 0x18, 0xc4, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 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, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, + 0x69, 0x6f, 0x6e, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x1a, 0x61, + 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x53, + 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x66, 0x0a, 0x13, 0x61, 0x64, 0x5f, + 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, + 0x18, 0xb9, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, - 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x52, 0x0f, 0x61, 0x64, - 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x12, 0x6c, 0x0a, - 0x16, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, - 0x63, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x39, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, - 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, - 0x63, 0x65, 0x56, 0x69, 0x65, 0x77, 0x52, 0x13, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, - 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x56, 0x69, 0x65, 0x77, 0x12, 0x69, 0x0a, 0x15, 0x61, - 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, - 0x66, 0x69, 0x65, 0x72, 0x18, 0x18, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, - 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, - 0x65, 0x72, 0x52, 0x12, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69, 0x64, 0x4d, 0x6f, - 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x12, 0x62, 0x0a, 0x12, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, - 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 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, 0x72, 0x65, - 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, - 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x52, 0x10, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, - 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x12, 0x82, 0x01, 0x0a, 0x1d, 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, 0x18, 0xbb, 0x01, 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, 0x72, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x52, 0x1a, 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, 0x12, - 0x72, 0x0a, 0x18, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, - 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x79, 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, 0x72, 0x65, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, - 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x15, 0x61, 0x64, - 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4c, 0x61, - 0x62, 0x65, 0x6c, 0x12, 0x81, 0x01, 0x0a, 0x1d, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, - 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x69, 0x6d, 0x75, 0x6c, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x6e, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, - 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, - 0x6e, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x1a, 0x61, 0x64, 0x47, - 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x53, 0x69, 0x6d, - 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x66, 0x0a, 0x13, 0x61, 0x64, 0x5f, 0x67, 0x72, - 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x18, 0xb9, - 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, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, + 0x72, 0x6f, 0x75, 0x70, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x52, 0x11, + 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, + 0x72, 0x12, 0x78, 0x0a, 0x1a, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, + 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, + 0x70, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, - 0x75, 0x70, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x52, 0x11, 0x61, 0x64, - 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x12, - 0x78, 0x0a, 0x1a, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65, - 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x70, 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, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, - 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, - 0x52, 0x17, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, - 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x53, 0x0a, 0x0d, 0x61, 0x64, 0x5f, - 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x18, 0x43, 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, 0x72, 0x65, 0x73, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, - 0x64, 0x52, 0x0b, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 0x64, 0x12, 0x56, - 0x0a, 0x0e, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, - 0x18, 0x73, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, + 0x75, 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, + 0x6e, 0x67, 0x52, 0x17, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, + 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x53, 0x0a, 0x0d, 0x61, + 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x18, 0x43, 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, 0x37, 0x2e, 0x72, 0x65, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, + 0x65, 0x65, 0x64, 0x52, 0x0b, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 0x64, + 0x12, 0x56, 0x0a, 0x0e, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x6c, 0x61, 0x62, + 0x65, 0x6c, 0x18, 0x73, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, + 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x0c, 0x61, 0x64, 0x47, 0x72, + 0x6f, 0x75, 0x70, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x65, 0x0a, 0x13, 0x61, 0x64, 0x5f, 0x67, + 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, + 0x6b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, + 0x75, 0x70, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x11, 0x61, 0x64, + 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, + 0x53, 0x0a, 0x0c, 0x61, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x18, + 0x82, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, - 0x6f, 0x75, 0x70, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x0c, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, - 0x70, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x65, 0x0a, 0x13, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, - 0x75, 0x70, 0x5f, 0x73, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x6b, 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, 0x72, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, - 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x11, 0x61, 0x64, 0x47, 0x72, - 0x6f, 0x75, 0x70, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x53, 0x0a, - 0x0c, 0x61, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x18, 0x82, 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, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x50, 0x61, 0x72, 0x61, - 0x6d, 0x65, 0x74, 0x65, 0x72, 0x52, 0x0b, 0x61, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, - 0x65, 0x72, 0x12, 0x56, 0x0a, 0x0e, 0x61, 0x67, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x5f, - 0x76, 0x69, 0x65, 0x77, 0x18, 0x30, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, - 0x41, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x56, 0x69, 0x65, 0x77, 0x52, 0x0c, 0x61, 0x67, - 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x56, 0x69, 0x65, 0x77, 0x12, 0x5c, 0x0a, 0x10, 0x61, 0x64, - 0x5f, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x59, - 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, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x53, 0x63, 0x68, 0x65, - 0x64, 0x75, 0x6c, 0x65, 0x56, 0x69, 0x65, 0x77, 0x52, 0x0e, 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, - 0x64, 0x75, 0x6c, 0x65, 0x56, 0x69, 0x65, 0x77, 0x12, 0x5b, 0x0a, 0x0f, 0x64, 0x6f, 0x6d, 0x61, - 0x69, 0x6e, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x18, 0x5b, 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, 0x72, 0x65, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x43, 0x61, 0x74, - 0x65, 0x67, 0x6f, 0x72, 0x79, 0x52, 0x0e, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x43, 0x61, 0x74, - 0x65, 0x67, 0x6f, 0x72, 0x79, 0x12, 0x3f, 0x0a, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x69, - 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, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, - 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, 0x12, 0x6a, 0x0a, 0x15, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, - 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, - 0xa8, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x36, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x50, 0x61, + 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x52, 0x0b, 0x61, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, + 0x65, 0x74, 0x65, 0x72, 0x12, 0x56, 0x0a, 0x0e, 0x61, 0x67, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, + 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x30, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x2e, 0x41, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x56, 0x69, 0x65, 0x77, 0x52, 0x0c, + 0x61, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x56, 0x69, 0x65, 0x77, 0x12, 0x5c, 0x0a, 0x10, + 0x61, 0x64, 0x5f, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, + 0x18, 0x59, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, - 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x56, 0x69, 0x65, 0x77, 0x52, 0x12, - 0x61, 0x73, 0x73, 0x65, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x56, 0x69, - 0x65, 0x77, 0x12, 0x60, 0x0a, 0x11, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, - 0x70, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0xad, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x53, 0x63, + 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x56, 0x69, 0x65, 0x77, 0x52, 0x0e, 0x61, 0x64, 0x53, 0x63, + 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x56, 0x69, 0x65, 0x77, 0x12, 0x5b, 0x0a, 0x0f, 0x64, 0x6f, + 0x6d, 0x61, 0x69, 0x6e, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x18, 0x5b, 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, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x43, + 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x52, 0x0e, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x43, + 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x12, 0x3f, 0x0a, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, + 0x18, 0x69, 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, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, + 0x74, 0x52, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, 0x12, 0x6a, 0x0a, 0x15, 0x61, 0x73, 0x73, 0x65, + 0x74, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x76, 0x69, 0x65, + 0x77, 0x18, 0xa8, 0x01, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, + 0x73, 0x65, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x56, 0x69, 0x65, 0x77, + 0x52, 0x12, 0x61, 0x73, 0x73, 0x65, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, + 0x56, 0x69, 0x65, 0x77, 0x12, 0x7f, 0x0a, 0x1c, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, + 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, + 0x76, 0x69, 0x65, 0x77, 0x18, 0xde, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x41, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, + 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x56, 0x69, 0x65, 0x77, 0x52, 0x19, 0x63, 0x68, 0x61, 0x6e, + 0x6e, 0x65, 0x6c, 0x41, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, + 0x74, 0x56, 0x69, 0x65, 0x77, 0x12, 0x82, 0x01, 0x0a, 0x1d, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, + 0x67, 0x6e, 0x5f, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x73, 0x73, + 0x65, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0xe0, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, - 0x73, 0x65, 0x74, 0x52, 0x0f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, - 0x73, 0x73, 0x65, 0x74, 0x12, 0x63, 0x0a, 0x12, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, - 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x18, 0xbf, 0x01, 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, 0x72, 0x65, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, - 0x70, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x52, 0x10, 0x61, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, - 0x6f, 0x75, 0x70, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x12, 0x89, 0x01, 0x0a, 0x20, 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, 0x18, 0xb6, - 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x67, 0x67, 0x72, + 0x65, 0x67, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x56, 0x69, 0x65, 0x77, 0x52, 0x1a, + 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, + 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x56, 0x69, 0x65, 0x77, 0x12, 0x60, 0x0a, 0x11, 0x61, 0x73, + 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, + 0xad, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, + 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0f, 0x61, 0x73, 0x73, + 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x63, 0x0a, 0x12, + 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x69, 0x67, 0x6e, + 0x61, 0x6c, 0x18, 0xbf, 0x01, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, + 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x52, + 0x10, 0x61, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69, 0x67, 0x6e, 0x61, + 0x6c, 0x12, 0x89, 0x01, 0x0a, 0x20, 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, 0x18, 0xb6, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 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, 0x52, + 0x1c, 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, 0x12, 0x83, 0x01, + 0x0a, 0x1e, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x70, 0x72, + 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x76, 0x69, 0x65, 0x77, + 0x18, 0xbd, 0x01, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, + 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x47, 0x72, + 0x6f, 0x75, 0x70, 0x56, 0x69, 0x65, 0x77, 0x52, 0x1a, 0x61, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, + 0x6f, 0x75, 0x70, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x56, + 0x69, 0x65, 0x77, 0x12, 0x89, 0x01, 0x0a, 0x20, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, + 0x6f, 0x75, 0x70, 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0xc7, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x54, + 0x6f, 0x70, 0x43, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x56, 0x69, 0x65, + 0x77, 0x52, 0x1c, 0x61, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x54, 0x6f, 0x70, + 0x43, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x56, 0x69, 0x65, 0x77, 0x12, + 0x50, 0x0a, 0x0b, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0xac, + 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x52, 0x1c, 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, 0x12, 0x83, 0x01, 0x0a, 0x1e, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, - 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x67, 0x72, - 0x6f, 0x75, 0x70, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0xbd, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x50, - 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x56, 0x69, 0x65, 0x77, 0x52, - 0x1a, 0x61, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x50, 0x72, 0x6f, 0x64, 0x75, - 0x63, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x56, 0x69, 0x65, 0x77, 0x12, 0x89, 0x01, 0x0a, 0x20, - 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x74, 0x6f, 0x70, 0x5f, - 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x69, 0x65, 0x77, - 0x18, 0xc7, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x40, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x0a, 0x61, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, + 0x70, 0x12, 0x5a, 0x0a, 0x0f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x61, + 0x73, 0x73, 0x65, 0x74, 0x18, 0xb4, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0d, + 0x61, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x4a, 0x0a, + 0x09, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x18, 0xb3, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x52, + 0x08, 0x61, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x12, 0x64, 0x0a, 0x13, 0x61, 0x73, 0x73, + 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, + 0x18, 0xc5, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, - 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x54, 0x6f, 0x70, 0x43, 0x6f, 0x6d, 0x62, 0x69, 0x6e, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x56, 0x69, 0x65, 0x77, 0x52, 0x1c, 0x61, 0x73, 0x73, 0x65, 0x74, - 0x47, 0x72, 0x6f, 0x75, 0x70, 0x54, 0x6f, 0x70, 0x43, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x56, 0x69, 0x65, 0x77, 0x12, 0x50, 0x0a, 0x0b, 0x61, 0x73, 0x73, 0x65, 0x74, - 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0xac, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, + 0x65, 0x74, 0x53, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x56, 0x69, 0x65, 0x77, 0x52, 0x10, 0x61, + 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x56, 0x69, 0x65, 0x77, 0x12, + 0x4a, 0x0a, 0x09, 0x62, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x6a, 0x6f, 0x62, 0x18, 0x8b, 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, 0x37, 0x2e, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, + 0x62, 0x52, 0x08, 0x62, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x12, 0x6f, 0x0a, 0x16, 0x62, + 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x65, 0x78, 0x63, 0x6c, + 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x9f, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x63, + 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x14, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x44, + 0x61, 0x74, 0x61, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x87, 0x01, 0x0a, + 0x1e, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, + 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x18, + 0xa0, 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, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, + 0x69, 0x6e, 0x67, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x64, + 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x1c, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, + 0x67, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x64, 0x6a, 0x75, + 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x5e, 0x0a, 0x10, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, + 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x18, 0x12, 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, 0x72, 0x65, 0x73, 0x6f, + 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, + 0x61, 0x74, 0x65, 0x67, 0x79, 0x52, 0x0f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, + 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x12, 0x7e, 0x0a, 0x1b, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, + 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x5f, 0x73, 0x69, 0x6d, 0x75, 0x6c, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x9e, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, + 0x79, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x19, 0x62, 0x69, 0x64, + 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x53, 0x69, 0x6d, 0x75, + 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x55, 0x0a, 0x0d, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, + 0x67, 0x5f, 0x73, 0x65, 0x74, 0x75, 0x70, 0x18, 0x29, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, - 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x0a, 0x61, - 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x5a, 0x0a, 0x0f, 0x61, 0x73, 0x73, - 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0xb4, 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, 0x72, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, - 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0d, 0x61, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, - 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x4a, 0x0a, 0x09, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, - 0x65, 0x74, 0x18, 0xb3, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, - 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x52, 0x08, 0x61, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, - 0x74, 0x12, 0x64, 0x0a, 0x13, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x74, - 0x79, 0x70, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0xc5, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x54, 0x79, 0x70, - 0x65, 0x56, 0x69, 0x65, 0x77, 0x52, 0x10, 0x61, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x54, - 0x79, 0x70, 0x65, 0x56, 0x69, 0x65, 0x77, 0x12, 0x4a, 0x0a, 0x09, 0x62, 0x61, 0x74, 0x63, 0x68, - 0x5f, 0x6a, 0x6f, 0x62, 0x18, 0x8b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, - 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x52, 0x08, 0x62, 0x61, 0x74, 0x63, 0x68, - 0x4a, 0x6f, 0x62, 0x12, 0x6f, 0x0a, 0x16, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x64, - 0x61, 0x74, 0x61, 0x5f, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x9f, 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, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, - 0x67, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x14, - 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x63, 0x6c, 0x75, - 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x87, 0x01, 0x0a, 0x1e, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, - 0x5f, 0x73, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x61, 0x64, 0x6a, - 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0xa0, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x61, 0x73, 0x6f, - 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, - 0x52, 0x1c, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, - 0x6c, 0x69, 0x74, 0x79, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x5e, - 0x0a, 0x10, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, - 0x67, 0x79, 0x18, 0x12, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 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, 0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x75, 0x70, 0x52, + 0x0c, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x75, 0x70, 0x12, 0x4a, 0x0a, + 0x09, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x98, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x56, 0x69, 0x65, 0x77, 0x52, + 0x08, 0x63, 0x61, 0x6c, 0x6c, 0x56, 0x69, 0x65, 0x77, 0x12, 0x5b, 0x0a, 0x0f, 0x63, 0x61, 0x6d, + 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x18, 0x13, 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, 0x72, 0x65, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, + 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x52, 0x0e, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, + 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x12, 0x48, 0x0a, 0x08, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, + 0x67, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, - 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x52, 0x0f, 0x62, - 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x12, 0x7e, - 0x0a, 0x1b, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, - 0x67, 0x79, 0x5f, 0x73, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x9e, 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, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, - 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x52, 0x19, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, - 0x74, 0x65, 0x67, 0x79, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x55, - 0x0a, 0x0d, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x74, 0x75, 0x70, 0x18, - 0x29, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, 0x6c, 0x6c, 0x69, - 0x6e, 0x67, 0x53, 0x65, 0x74, 0x75, 0x70, 0x52, 0x0c, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, - 0x53, 0x65, 0x74, 0x75, 0x70, 0x12, 0x4a, 0x0a, 0x09, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x76, 0x69, - 0x65, 0x77, 0x18, 0x98, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, + 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x52, 0x08, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, + 0x12, 0x59, 0x0a, 0x0e, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x73, 0x73, + 0x65, 0x74, 0x18, 0x8e, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, - 0x61, 0x6c, 0x6c, 0x56, 0x69, 0x65, 0x77, 0x52, 0x08, 0x63, 0x61, 0x6c, 0x6c, 0x56, 0x69, 0x65, - 0x77, 0x12, 0x5b, 0x0a, 0x0f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x75, - 0x64, 0x67, 0x65, 0x74, 0x18, 0x13, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, - 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x52, 0x0e, - 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x12, 0x48, - 0x0a, 0x08, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 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, 0x72, 0x65, 0x73, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x52, 0x08, - 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x12, 0x59, 0x0a, 0x0e, 0x63, 0x61, 0x6d, 0x70, - 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x8e, 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, 0x72, 0x65, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, - 0x73, 0x73, 0x65, 0x74, 0x52, 0x0d, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, - 0x73, 0x65, 0x74, 0x12, 0x63, 0x0a, 0x12, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, - 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x18, 0xb5, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, - 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x52, 0x10, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, - 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x12, 0x6e, 0x0a, 0x16, 0x63, 0x61, 0x6d, 0x70, - 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x76, 0x69, - 0x65, 0x77, 0x18, 0x45, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, - 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x56, 0x69, - 0x65, 0x77, 0x52, 0x14, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x75, 0x64, 0x69, - 0x65, 0x6e, 0x63, 0x65, 0x56, 0x69, 0x65, 0x77, 0x12, 0x6b, 0x0a, 0x15, 0x63, 0x61, 0x6d, 0x70, - 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, - 0x72, 0x18, 0x1a, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, - 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, - 0x52, 0x13, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, - 0x69, 0x66, 0x69, 0x65, 0x72, 0x12, 0x75, 0x0a, 0x18, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, - 0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, - 0x6c, 0x18, 0xaf, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0d, 0x63, 0x61, + 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x63, 0x0a, 0x12, 0x63, + 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, + 0x74, 0x18, 0xb5, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, + 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x52, 0x10, + 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, + 0x12, 0x6e, 0x0a, 0x16, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x75, 0x64, + 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x45, 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, 0x72, 0x65, 0x73, 0x6f, + 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x75, + 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x56, 0x69, 0x65, 0x77, 0x52, 0x14, 0x63, 0x61, 0x6d, 0x70, + 0x61, 0x69, 0x67, 0x6e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x56, 0x69, 0x65, 0x77, + 0x12, 0x6b, 0x0a, 0x15, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x69, 0x64, + 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x18, 0x1a, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x69, 0x64, + 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x13, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, + 0x67, 0x6e, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x12, 0x75, 0x0a, + 0x18, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, + 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x18, 0xaf, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, + 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, + 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x52, 0x16, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, - 0x47, 0x6f, 0x61, 0x6c, 0x52, 0x16, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, - 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x12, 0x64, 0x0a, 0x12, - 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, - 0x6f, 0x6e, 0x18, 0x14, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x47, 0x6f, 0x61, 0x6c, 0x12, 0x64, 0x0a, 0x12, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, + 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x18, 0x14, 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, 0x72, 0x65, 0x73, 0x6f, + 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, + 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x52, 0x11, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, + 0x6e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x12, 0x68, 0x0a, 0x13, 0x63, 0x61, + 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, + 0x72, 0x18, 0xba, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, - 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x52, - 0x11, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, - 0x6f, 0x6e, 0x12, 0x68, 0x0a, 0x13, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, - 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x18, 0xba, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x75, - 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x52, 0x12, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, - 0x67, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x12, 0x58, 0x0a, 0x0e, - 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x64, 0x72, 0x61, 0x66, 0x74, 0x18, 0x31, - 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, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, - 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x52, 0x0d, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, - 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x12, 0x7a, 0x0a, 0x1a, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, - 0x67, 0x6e, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, - 0x74, 0x69, 0x6e, 0x67, 0x18, 0x71, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, - 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, - 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x18, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, - 0x67, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, - 0x6e, 0x67, 0x12, 0x55, 0x0a, 0x0d, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x66, - 0x65, 0x65, 0x64, 0x18, 0x3f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x67, 0x6f, 0x6f, 0x67, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, + 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, + 0x52, 0x12, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x69, 0x7a, 0x65, 0x72, 0x12, 0x58, 0x0a, 0x0e, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, + 0x5f, 0x64, 0x72, 0x61, 0x66, 0x74, 0x18, 0x31, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x52, + 0x0d, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x12, 0x7a, + 0x0a, 0x1a, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, + 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x71, 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, 0x37, 0x2e, 0x72, 0x65, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, + 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, + 0x52, 0x18, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, + 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x55, 0x0a, 0x0d, 0x63, 0x61, + 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x18, 0x3f, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, + 0x65, 0x65, 0x64, 0x52, 0x0c, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, 0x65, 0x65, + 0x64, 0x12, 0x58, 0x0a, 0x0e, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x67, 0x72, + 0x6f, 0x75, 0x70, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, - 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x52, 0x0c, 0x63, 0x61, 0x6d, - 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x12, 0x58, 0x0a, 0x0e, 0x63, 0x61, 0x6d, - 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 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, 0x72, 0x65, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, - 0x72, 0x6f, 0x75, 0x70, 0x52, 0x0d, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x72, - 0x6f, 0x75, 0x70, 0x12, 0x58, 0x0a, 0x0e, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, - 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x6c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x67, 0x6f, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x0d, 0x63, 0x61, + 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x58, 0x0a, 0x0e, 0x63, + 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x6c, 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, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, + 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x0d, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, + 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x72, 0x0a, 0x17, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, + 0x6e, 0x5f, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x5f, 0x67, 0x6f, 0x61, 0x6c, + 0x18, 0xd5, 0x01, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, + 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, + 0x61, 0x6c, 0x52, 0x15, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x69, 0x66, 0x65, + 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x12, 0x7f, 0x0a, 0x1c, 0x63, 0x61, 0x6d, + 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, + 0x6d, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x18, 0xcc, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, + 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x52, + 0x19, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, + 0x65, 0x72, 0x6d, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x12, 0x65, 0x0a, 0x13, 0x63, 0x61, + 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, + 0x74, 0x18, 0x1e, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, + 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x52, 0x11, + 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, + 0x74, 0x12, 0x68, 0x0a, 0x13, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x69, + 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x9d, 0x01, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x69, 0x6d, + 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x12, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, + 0x6e, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x5e, 0x0a, 0x10, 0x63, + 0x61, 0x72, 0x72, 0x69, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x18, + 0x42, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x72, 0x72, 0x69, + 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x52, 0x0f, 0x63, 0x61, 0x72, 0x72, + 0x69, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x12, 0x53, 0x0a, 0x0c, 0x63, + 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x91, 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, 0x37, 0x2e, 0x72, 0x65, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x76, + 0x65, 0x6e, 0x74, 0x52, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, + 0x12, 0x55, 0x0a, 0x0d, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, + 0x73, 0x18, 0x25, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x68, 0x61, + 0x6e, 0x67, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0c, 0x63, 0x68, 0x61, 0x6e, 0x67, + 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x62, 0x0a, 0x11, 0x63, 0x6f, 0x6d, 0x62, 0x69, + 0x6e, 0x65, 0x64, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x94, 0x01, 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, 0x37, 0x2e, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, + 0x64, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x52, 0x10, 0x63, 0x6f, 0x6d, 0x62, 0x69, + 0x6e, 0x65, 0x64, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x49, 0x0a, 0x08, 0x61, + 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x18, 0xbe, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x52, 0x08, 0x61, 0x75, + 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x61, 0x0a, 0x11, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, + 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x67, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, + 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x10, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, + 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x7b, 0x0a, 0x1a, 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, 0x18, 0x99, 0x01, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 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, 0x52, 0x18, 0x63, 0x6f, + 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56, 0x61, + 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x88, 0x01, 0x0a, 0x1f, 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, 0x18, 0xb1, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x52, 0x1c, 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, 0x12, 0x6c, 0x0a, 0x15, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, + 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x18, 0xa4, 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, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, + 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x52, 0x13, 0x63, 0x6f, 0x6e, 0x76, + 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x12, + 0x76, 0x0a, 0x19, 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, 0x18, 0xa5, 0x01, 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, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, + 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x52, + 0x16, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, + 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x12, 0x4c, 0x0a, 0x0a, 0x63, 0x6c, 0x69, 0x63, 0x6b, + 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x7a, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, - 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x0d, - 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x72, 0x0a, - 0x17, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, - 0x63, 0x6c, 0x65, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x18, 0xd5, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x69, 0x66, - 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x52, 0x15, 0x63, 0x61, 0x6d, 0x70, - 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, - 0x6c, 0x12, 0x7f, 0x0a, 0x1c, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, - 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, - 0x74, 0x18, 0xcc, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x2e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x56, 0x69, 0x65, 0x77, 0x52, 0x09, 0x63, 0x6c, 0x69, 0x63, + 0x6b, 0x56, 0x69, 0x65, 0x77, 0x12, 0x62, 0x0a, 0x11, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, + 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x18, 0x86, 0x01, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x43, + 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x52, 0x10, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, + 0x79, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x12, 0x5c, 0x0a, 0x0f, 0x63, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x93, 0x01, 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, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, + 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x52, 0x0e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, + 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x6f, 0x0a, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x6d, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, + 0x6c, 0x18, 0xb0, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, - 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, - 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x52, 0x19, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, - 0x6e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x49, 0x6e, 0x73, 0x69, 0x67, - 0x68, 0x74, 0x12, 0x65, 0x0a, 0x13, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, - 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, 0x18, 0x1e, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61, - 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x52, 0x11, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, - 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x12, 0x68, 0x0a, 0x13, 0x63, 0x61, 0x6d, - 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x18, 0x9d, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x36, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, + 0x73, 0x74, 0x6f, 0x6d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, + 0x61, 0x6c, 0x52, 0x14, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, + 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x12, 0x5b, 0x0a, 0x0f, 0x63, 0x75, 0x73, 0x74, + 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x18, 0x68, 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, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, + 0x65, 0x72, 0x65, 0x73, 0x74, 0x52, 0x0e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, + 0x65, 0x72, 0x65, 0x73, 0x74, 0x12, 0x48, 0x0a, 0x08, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x72, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, - 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, - 0x12, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x12, 0x5e, 0x0a, 0x10, 0x63, 0x61, 0x72, 0x72, 0x69, 0x65, 0x72, 0x5f, 0x63, - 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x18, 0x42, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x08, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x12, + 0x59, 0x0a, 0x0e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x61, 0x73, 0x73, 0x65, + 0x74, 0x18, 0x9b, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, + 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0d, 0x63, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x63, 0x0a, 0x12, 0x63, 0x75, + 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, + 0x18, 0xc3, 0x01, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x52, 0x10, 0x63, + 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x12, + 0x7e, 0x0a, 0x1b, 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, 0x18, 0xa9, + 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, 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, 0x52, 0x19, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x69, 0x62, 0x6c, 0x65, + 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x12, + 0x68, 0x0a, 0x13, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x75, 0x73, 0x74, + 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x18, 0xb8, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, - 0x65, 0x73, 0x2e, 0x43, 0x61, 0x72, 0x72, 0x69, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, - 0x6e, 0x74, 0x52, 0x0f, 0x63, 0x61, 0x72, 0x72, 0x69, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x73, 0x74, - 0x61, 0x6e, 0x74, 0x12, 0x53, 0x0a, 0x0c, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x65, 0x76, - 0x65, 0x6e, 0x74, 0x18, 0x91, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x67, 0x6f, 0x6f, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x75, 0x73, 0x74, 0x6f, + 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x52, 0x12, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, + 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x12, 0x6b, 0x0a, 0x15, 0x63, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x6c, 0x69, + 0x6e, 0x6b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, + 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, + 0x6b, 0x52, 0x13, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4d, 0x61, 0x6e, 0x61, 0x67, + 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x12, 0x68, 0x0a, 0x14, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x65, 0x72, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x18, 0x3e, + 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, 0x37, 0x2e, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x65, 0x72, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x12, 0x63, 0x75, + 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, + 0x12, 0x5b, 0x0a, 0x0f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6c, 0x69, + 0x65, 0x6e, 0x74, 0x18, 0x46, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x52, 0x0e, 0x63, + 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x12, 0x75, 0x0a, + 0x18, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, + 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x18, 0xae, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, + 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6f, + 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x52, 0x16, 0x63, 0x75, + 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, + 0x47, 0x6f, 0x61, 0x6c, 0x12, 0x7a, 0x0a, 0x1a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, + 0x6e, 0x67, 0x18, 0x72, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, + 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, + 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x18, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, + 0x12, 0x55, 0x0a, 0x0d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x66, 0x65, 0x65, + 0x64, 0x18, 0x40, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, 0x52, 0x0c, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, 0x12, 0x58, 0x0a, 0x0e, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x6d, 0x65, 0x72, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x7c, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x61, 0x62, + 0x65, 0x6c, 0x52, 0x0d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x61, 0x62, 0x65, + 0x6c, 0x12, 0x72, 0x0a, 0x17, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6c, 0x69, + 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x18, 0xd4, 0x01, 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, 0x37, 0x2e, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x52, 0x15, + 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, + 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x12, 0x7d, 0x0a, 0x1b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x72, 0x5f, 0x6e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, + 0x72, 0x69, 0x6f, 0x6e, 0x18, 0x58, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, - 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x0b, 0x63, 0x68, 0x61, - 0x6e, 0x67, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x55, 0x0a, 0x0d, 0x63, 0x68, 0x61, 0x6e, - 0x67, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x25, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, - 0x73, 0x52, 0x0c, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, - 0x62, 0x0a, 0x11, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x5f, 0x61, 0x75, 0x64, 0x69, - 0x65, 0x6e, 0x63, 0x65, 0x18, 0x94, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x67, 0x6f, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, + 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x52, 0x19, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x6d, 0x65, 0x72, 0x4e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x43, 0x72, 0x69, 0x74, 0x65, + 0x72, 0x69, 0x6f, 0x6e, 0x12, 0x7f, 0x0a, 0x1c, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x69, 0x6e, 0x73, + 0x69, 0x67, 0x68, 0x74, 0x18, 0xcd, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, - 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, - 0x65, 0x52, 0x10, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x41, 0x75, 0x64, 0x69, 0x65, - 0x6e, 0x63, 0x65, 0x12, 0x49, 0x0a, 0x08, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x18, - 0xbe, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, - 0x65, 0x6e, 0x63, 0x65, 0x52, 0x08, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x61, - 0x0a, 0x11, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x74, - 0x69, 0x6f, 0x6e, 0x18, 0x67, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, - 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, - 0x10, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, - 0x6e, 0x12, 0x7b, 0x0a, 0x1a, 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, 0x18, - 0x99, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, + 0x65, 0x72, 0x6d, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x52, 0x19, 0x63, 0x75, 0x73, 0x74, + 0x6f, 0x6d, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x49, 0x6e, + 0x73, 0x69, 0x67, 0x68, 0x74, 0x12, 0x69, 0x0a, 0x14, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x72, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x92, 0x01, + 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, 0x37, 0x2e, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x52, 0x12, 0x63, 0x75, + 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, + 0x12, 0x88, 0x01, 0x0a, 0x1f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x75, 0x73, + 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x96, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, + 0x65, 0x73, 0x73, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x1c, 0x63, + 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, + 0x73, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x6b, 0x0a, 0x14, 0x63, + 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, + 0x75, 0x74, 0x65, 0x18, 0xb2, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, + 0x75, 0x74, 0x65, 0x52, 0x13, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, + 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x12, 0x6b, 0x0a, 0x15, 0x64, 0x65, 0x74, 0x61, + 0x69, 0x6c, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x69, 0x65, + 0x77, 0x18, 0x76, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x44, 0x65, 0x74, + 0x61, 0x69, 0x6c, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x69, 0x65, 0x77, + 0x52, 0x13, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, + 0x74, 0x56, 0x69, 0x65, 0x77, 0x12, 0x6b, 0x0a, 0x14, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x65, + 0x64, 0x5f, 0x64, 0x65, 0x6d, 0x6f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x18, 0xa6, 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, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, + 0x65, 0x64, 0x44, 0x65, 0x6d, 0x6f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x52, 0x13, 0x64, + 0x65, 0x74, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x44, 0x65, 0x6d, 0x6f, 0x67, 0x72, 0x61, 0x70, 0x68, + 0x69, 0x63, 0x12, 0x68, 0x0a, 0x14, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6b, 0x65, + 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x2f, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4b, 0x65, 0x79, + 0x77, 0x6f, 0x72, 0x64, 0x56, 0x69, 0x65, 0x77, 0x52, 0x12, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, + 0x79, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x56, 0x69, 0x65, 0x77, 0x12, 0x56, 0x0a, 0x0d, + 0x64, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x84, 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, 0x37, 0x2e, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x44, 0x69, 0x73, 0x74, 0x61, 0x6e, + 0x63, 0x65, 0x56, 0x69, 0x65, 0x77, 0x52, 0x0c, 0x64, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, + 0x56, 0x69, 0x65, 0x77, 0x12, 0x8f, 0x01, 0x0a, 0x23, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, + 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x61, 0x64, 0x73, 0x5f, 0x73, 0x65, 0x61, 0x72, + 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x6a, 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, 0x37, 0x2e, 0x72, 0x65, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x53, + 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x64, 0x73, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, + 0x72, 0x6d, 0x56, 0x69, 0x65, 0x77, 0x52, 0x1e, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x53, + 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x64, 0x73, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, + 0x72, 0x6d, 0x56, 0x69, 0x65, 0x77, 0x12, 0x79, 0x0a, 0x1a, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, + 0x65, 0x64, 0x5f, 0x6c, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, + 0x76, 0x69, 0x65, 0x77, 0x18, 0x80, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x2e, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x65, 0x64, 0x4c, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, + 0x50, 0x61, 0x67, 0x65, 0x56, 0x69, 0x65, 0x77, 0x52, 0x17, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, + 0x65, 0x64, 0x4c, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x50, 0x61, 0x67, 0x65, 0x56, 0x69, 0x65, + 0x77, 0x12, 0x65, 0x0a, 0x13, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x66, + 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x18, 0x55, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x73, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, + 0x64, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x11, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, + 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x3c, 0x0a, 0x04, 0x66, 0x65, 0x65, 0x64, + 0x18, 0x2e, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x52, 0x18, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, - 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x88, - 0x01, 0x0a, 0x1f, 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, 0x18, 0xb1, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x52, 0x1c, 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, 0x12, 0x6c, 0x0a, 0x15, 0x63, 0x6f, 0x6e, - 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x75, - 0x6c, 0x65, 0x18, 0xa4, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x6f, 0x67, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, + 0x52, 0x04, 0x66, 0x65, 0x65, 0x64, 0x12, 0x49, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, + 0x74, 0x65, 0x6d, 0x18, 0x32, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, - 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, - 0x6c, 0x65, 0x52, 0x13, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, - 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x12, 0x76, 0x0a, 0x19, 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, 0x18, 0xa5, 0x01, 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, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, - 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x52, 0x16, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, - 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x12, - 0x4c, 0x0a, 0x0a, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x7a, 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, 0x72, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x56, 0x69, - 0x65, 0x77, 0x52, 0x09, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x56, 0x69, 0x65, 0x77, 0x12, 0x62, 0x0a, - 0x11, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, - 0x6e, 0x74, 0x18, 0x86, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x67, 0x6f, 0x6f, 0x67, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x46, + 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, + 0x6d, 0x12, 0x54, 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, + 0x65, 0x74, 0x18, 0x95, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, - 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x52, - 0x10, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, - 0x74, 0x12, 0x5c, 0x0a, 0x0f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x75, 0x64, 0x69, - 0x65, 0x6e, 0x63, 0x65, 0x18, 0x93, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x67, 0x6f, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x46, + 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x52, 0x0b, 0x66, 0x65, 0x65, 0x64, + 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x12, 0x61, 0x0a, 0x12, 0x66, 0x65, 0x65, 0x64, 0x5f, + 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x18, 0x97, 0x01, + 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, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, + 0x65, 0x6d, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x49, + 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x12, 0x5c, 0x0a, 0x10, 0x66, 0x65, + 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x18, 0x74, + 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, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, + 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x0e, 0x66, 0x65, 0x65, 0x64, 0x49, 0x74, + 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x12, 0x52, 0x0a, 0x0c, 0x66, 0x65, 0x65, 0x64, + 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x18, 0x3a, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x52, + 0x0b, 0x66, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x12, 0x6b, 0x0a, 0x15, + 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, + 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x61, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, - 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x52, - 0x0e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x12, - 0x6f, 0x0a, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, - 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x18, 0xb0, 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, 0x72, 0x65, 0x73, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x43, 0x6f, 0x6e, 0x76, - 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x52, 0x14, 0x63, 0x75, 0x73, 0x74, - 0x6f, 0x6d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, - 0x12, 0x5b, 0x0a, 0x0f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, - 0x65, 0x73, 0x74, 0x18, 0x68, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, - 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x52, 0x0e, 0x63, - 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x12, 0x48, 0x0a, - 0x08, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x08, 0x63, - 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x12, 0x59, 0x0a, 0x0e, 0x63, 0x75, 0x73, 0x74, 0x6f, - 0x6d, 0x65, 0x72, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x9b, 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, 0x72, 0x65, 0x73, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, - 0x73, 0x65, 0x74, 0x52, 0x0d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, - 0x65, 0x74, 0x12, 0x63, 0x0a, 0x12, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x61, - 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x18, 0xc3, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, - 0x65, 0x74, 0x53, 0x65, 0x74, 0x52, 0x10, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, - 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x12, 0x7e, 0x0a, 0x1b, 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, 0x18, 0xa9, 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, 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, 0x52, 0x19, 0x61, 0x63, - 0x63, 0x65, 0x73, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, - 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x12, 0x68, 0x0a, 0x13, 0x63, 0x75, 0x73, 0x74, 0x6f, - 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x18, 0xb8, - 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, - 0x6d, 0x65, 0x72, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x52, 0x12, 0x63, - 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, - 0x72, 0x12, 0x6b, 0x0a, 0x15, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6d, 0x61, - 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 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, 0x72, 0x65, 0x73, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4d, 0x61, - 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x13, 0x63, 0x75, 0x73, 0x74, 0x6f, - 0x6d, 0x65, 0x72, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x12, 0x68, - 0x0a, 0x14, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, - 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x18, 0x3e, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, - 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x12, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6c, - 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x12, 0x5b, 0x0a, 0x0f, 0x63, 0x75, 0x73, 0x74, - 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x18, 0x46, 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, 0x72, 0x65, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, - 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x52, 0x0e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, - 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x12, 0x75, 0x0a, 0x18, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, - 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, - 0x6c, 0x18, 0xae, 0x01, 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, 0x43, 0x75, - 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, - 0x47, 0x6f, 0x61, 0x6c, 0x52, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6f, - 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x12, 0x7a, 0x0a, 0x1a, - 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, - 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x72, 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, 0x72, 0x65, 0x73, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x45, 0x78, - 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x18, - 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, - 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x55, 0x0a, 0x0d, 0x63, 0x75, 0x73, 0x74, - 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x18, 0x40, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, - 0x64, 0x52, 0x0c, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, 0x12, - 0x58, 0x0a, 0x0e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6c, 0x61, 0x62, 0x65, - 0x6c, 0x18, 0x7c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x2e, 0x46, 0x65, 0x65, 0x64, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, + 0x56, 0x69, 0x65, 0x77, 0x52, 0x13, 0x66, 0x65, 0x65, 0x64, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, + 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x56, 0x69, 0x65, 0x77, 0x12, 0x4f, 0x0a, 0x0b, 0x67, 0x65, 0x6e, + 0x64, 0x65, 0x72, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x28, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x56, 0x69, 0x65, 0x77, 0x52, 0x0a, + 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x56, 0x69, 0x65, 0x77, 0x12, 0x65, 0x0a, 0x13, 0x67, 0x65, + 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, + 0x74, 0x18, 0x17, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, - 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x0d, 0x63, 0x75, 0x73, 0x74, - 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x72, 0x0a, 0x17, 0x63, 0x75, 0x73, - 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x5f, - 0x67, 0x6f, 0x61, 0x6c, 0x18, 0xd4, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, - 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, - 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x52, 0x15, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, - 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x12, 0x7d, 0x0a, - 0x1b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6e, 0x65, 0x67, 0x61, 0x74, 0x69, - 0x76, 0x65, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x18, 0x58, 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, 0x72, 0x65, - 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, - 0x4e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, - 0x6e, 0x52, 0x19, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4e, 0x65, 0x67, 0x61, 0x74, - 0x69, 0x76, 0x65, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x12, 0x7f, 0x0a, 0x1c, - 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, - 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x18, 0xcd, 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, 0x72, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, - 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x49, 0x6e, 0x73, 0x69, 0x67, - 0x68, 0x74, 0x52, 0x19, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, - 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x12, 0x69, 0x0a, - 0x14, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x61, - 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x92, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, - 0x63, 0x65, 0x73, 0x73, 0x52, 0x12, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, - 0x65, 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x88, 0x01, 0x0a, 0x1f, 0x63, 0x75, 0x73, - 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, - 0x73, 0x5f, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x96, 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, 0x72, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, - 0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x76, 0x69, 0x74, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x1c, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, - 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x12, 0x6b, 0x0a, 0x14, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, - 0x72, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x18, 0xb2, 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, 0x72, 0x65, - 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, - 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x52, 0x13, 0x63, 0x75, 0x73, - 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, - 0x12, 0x6b, 0x0a, 0x15, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, - 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x76, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x73, 0x2e, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x50, 0x6c, 0x61, 0x63, 0x65, - 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x69, 0x65, 0x77, 0x52, 0x13, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, - 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x69, 0x65, 0x77, 0x12, 0x6b, 0x0a, - 0x14, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x5f, 0x64, 0x65, 0x6d, 0x6f, 0x67, 0x72, - 0x61, 0x70, 0x68, 0x69, 0x63, 0x18, 0xa6, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x67, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6f, + 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x52, 0x11, + 0x67, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, + 0x74, 0x12, 0x5b, 0x0a, 0x0f, 0x67, 0x65, 0x6f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x5f, + 0x76, 0x69, 0x65, 0x77, 0x18, 0x7d, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x47, 0x65, 0x6f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x56, 0x69, 0x65, 0x77, 0x52, 0x0e, + 0x67, 0x65, 0x6f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x56, 0x69, 0x65, 0x77, 0x12, 0x68, + 0x0a, 0x14, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, + 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x77, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x73, 0x2e, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x44, 0x65, 0x6d, 0x6f, 0x67, 0x72, - 0x61, 0x70, 0x68, 0x69, 0x63, 0x52, 0x13, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x44, - 0x65, 0x6d, 0x6f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x12, 0x68, 0x0a, 0x14, 0x64, 0x69, - 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x76, 0x69, - 0x65, 0x77, 0x18, 0x2f, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x44, 0x69, - 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x56, 0x69, 0x65, 0x77, - 0x52, 0x12, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, - 0x56, 0x69, 0x65, 0x77, 0x12, 0x56, 0x0a, 0x0d, 0x64, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, - 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x84, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x67, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x2e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, + 0x56, 0x69, 0x65, 0x77, 0x52, 0x12, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x50, 0x6c, 0x61, 0x63, 0x65, + 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x69, 0x65, 0x77, 0x12, 0x5c, 0x0a, 0x10, 0x68, 0x6f, 0x74, 0x65, + 0x6c, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x33, 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, 0x72, 0x65, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x47, 0x72, 0x6f, + 0x75, 0x70, 0x56, 0x69, 0x65, 0x77, 0x52, 0x0e, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x47, 0x72, 0x6f, + 0x75, 0x70, 0x56, 0x69, 0x65, 0x77, 0x12, 0x6e, 0x0a, 0x16, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, + 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, + 0x18, 0x47, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x48, 0x6f, 0x74, 0x65, + 0x6c, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x56, 0x69, 0x65, 0x77, + 0x52, 0x14, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, + 0x63, 0x65, 0x56, 0x69, 0x65, 0x77, 0x12, 0x6b, 0x0a, 0x14, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, + 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x69, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0xbc, + 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x48, 0x6f, 0x74, 0x65, 0x6c, + 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x69, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x13, + 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x69, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x12, 0x60, 0x0a, 0x11, 0x69, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x5f, 0x72, 0x61, + 0x6e, 0x67, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x8a, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2e, 0x49, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, + 0x56, 0x69, 0x65, 0x77, 0x52, 0x0f, 0x69, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x52, 0x61, 0x6e, 0x67, + 0x65, 0x56, 0x69, 0x65, 0x77, 0x12, 0x52, 0x0a, 0x0c, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, + 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x56, 0x69, 0x65, 0x77, 0x52, 0x0b, 0x6b, 0x65, + 0x79, 0x77, 0x6f, 0x72, 0x64, 0x56, 0x69, 0x65, 0x77, 0x12, 0x52, 0x0a, 0x0c, 0x6b, 0x65, 0x79, + 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x18, 0x20, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, + 0x52, 0x0b, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x12, 0x6b, 0x0a, + 0x15, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x63, 0x61, + 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x18, 0x21, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x73, 0x2e, 0x44, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x56, 0x69, 0x65, 0x77, 0x52, 0x0c, - 0x64, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x56, 0x69, 0x65, 0x77, 0x12, 0x8f, 0x01, 0x0a, - 0x23, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, - 0x61, 0x64, 0x73, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f, - 0x76, 0x69, 0x65, 0x77, 0x18, 0x6a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x42, 0x2e, 0x67, 0x6f, 0x6f, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, + 0x70, 0x61, 0x69, 0x67, 0x6e, 0x52, 0x13, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, + 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x12, 0x82, 0x01, 0x0a, 0x1d, 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, 0x18, 0x8c, 0x01, 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, 0x37, 0x2e, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x52, 0x1a, 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, 0x12, + 0x69, 0x0a, 0x15, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, + 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x23, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, + 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x12, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, + 0x6c, 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x80, 0x01, 0x0a, 0x1d, 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, 0x18, 0x8d, 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, 0x37, 0x2e, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x52, 0x19, 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, 0x12, 0x6f, 0x0a, + 0x16, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x74, 0x68, 0x65, 0x6d, 0x65, 0x5f, 0x63, + 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x18, 0xa3, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x54, 0x68, 0x65, 0x6d, 0x65, + 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x52, 0x14, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, + 0x64, 0x54, 0x68, 0x65, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x12, 0x3f, + 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x34, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x73, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x12, + 0x5f, 0x0a, 0x11, 0x6c, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, + 0x76, 0x69, 0x65, 0x77, 0x18, 0x7e, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, - 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x64, 0x73, - 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x56, 0x69, 0x65, 0x77, 0x52, 0x1e, - 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x64, 0x73, - 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x56, 0x69, 0x65, 0x77, 0x12, 0x79, - 0x0a, 0x1a, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x65, 0x64, 0x5f, 0x6c, 0x61, 0x6e, 0x64, 0x69, - 0x6e, 0x67, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x80, 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, 0x72, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x65, - 0x64, 0x4c, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x50, 0x61, 0x67, 0x65, 0x56, 0x69, 0x65, 0x77, - 0x52, 0x17, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x65, 0x64, 0x4c, 0x61, 0x6e, 0x64, 0x69, 0x6e, - 0x67, 0x50, 0x61, 0x67, 0x65, 0x56, 0x69, 0x65, 0x77, 0x12, 0x65, 0x0a, 0x13, 0x65, 0x78, 0x74, - 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, - 0x18, 0x55, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x45, 0x78, 0x74, 0x65, - 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x11, 0x65, - 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, - 0x12, 0x3c, 0x0a, 0x04, 0x66, 0x65, 0x65, 0x64, 0x18, 0x2e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x4c, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x50, 0x61, 0x67, 0x65, 0x56, 0x69, 0x65, 0x77, 0x52, + 0x0f, 0x6c, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x50, 0x61, 0x67, 0x65, 0x56, 0x69, 0x65, 0x77, + 0x12, 0x61, 0x0a, 0x11, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x6f, 0x6e, + 0x73, 0x74, 0x61, 0x6e, 0x74, 0x18, 0x37, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x2e, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, + 0x74, 0x52, 0x10, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x6e, 0x73, 0x74, + 0x61, 0x6e, 0x74, 0x12, 0x55, 0x0a, 0x0d, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, + 0x76, 0x69, 0x65, 0x77, 0x18, 0x7b, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x56, 0x69, 0x65, 0x77, 0x52, 0x0c, 0x6c, 0x6f, + 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x56, 0x69, 0x65, 0x77, 0x12, 0x6e, 0x0a, 0x16, 0x6d, 0x61, + 0x6e, 0x61, 0x67, 0x65, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, + 0x76, 0x69, 0x65, 0x77, 0x18, 0x35, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x64, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, + 0x56, 0x69, 0x65, 0x77, 0x52, 0x14, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x64, 0x50, 0x6c, 0x61, + 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x69, 0x65, 0x77, 0x12, 0x4c, 0x0a, 0x0a, 0x6d, 0x65, + 0x64, 0x69, 0x61, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x5a, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x52, 0x04, 0x66, 0x65, 0x65, 0x64, 0x12, 0x49, - 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x18, 0x32, 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, 0x72, 0x65, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x52, - 0x08, 0x66, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x54, 0x0a, 0x0d, 0x66, 0x65, 0x65, - 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x18, 0x95, 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, 0x72, 0x65, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, - 0x65, 0x74, 0x52, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x12, - 0x61, 0x0a, 0x12, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x74, - 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x18, 0x97, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x67, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x09, 0x6d, + 0x65, 0x64, 0x69, 0x61, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x72, 0x0a, 0x17, 0x6c, 0x6f, 0x63, 0x61, + 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x5f, 0x65, 0x6d, 0x70, 0x6c, 0x6f, + 0x79, 0x65, 0x65, 0x18, 0xdf, 0x01, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x45, 0x6d, 0x70, + 0x6c, 0x6f, 0x79, 0x65, 0x65, 0x52, 0x15, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, + 0x69, 0x63, 0x65, 0x73, 0x45, 0x6d, 0x70, 0x6c, 0x6f, 0x79, 0x65, 0x65, 0x12, 0x97, 0x01, 0x0a, + 0x24, 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, 0x18, 0xd3, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, - 0x6b, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x4c, 0x69, - 0x6e, 0x6b, 0x12, 0x5c, 0x0a, 0x10, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, - 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x18, 0x74, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x67, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x2e, 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, 0x52, 0x21, 0x6c, 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, 0x12, 0x7e, 0x0a, 0x1c, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, + 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x63, 0x6f, + 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x18, 0x57, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, - 0x52, 0x0e, 0x66, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, - 0x12, 0x52, 0x0a, 0x0c, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, - 0x18, 0x3a, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, - 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x52, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, - 0x70, 0x69, 0x6e, 0x67, 0x12, 0x6b, 0x0a, 0x15, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x6c, 0x61, - 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x61, 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, 0x72, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x50, 0x6c, 0x61, - 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x56, 0x69, 0x65, 0x77, 0x52, 0x13, 0x66, 0x65, - 0x65, 0x64, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x56, 0x69, 0x65, - 0x77, 0x12, 0x4f, 0x0a, 0x0b, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x5f, 0x76, 0x69, 0x65, 0x77, - 0x18, 0x28, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x2e, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x43, 0x61, 0x74, 0x65, 0x67, + 0x6f, 0x72, 0x79, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x52, 0x19, 0x6d, 0x6f, 0x62, + 0x69, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x43, 0x6f, + 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x12, 0x6e, 0x0a, 0x16, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, + 0x5f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, + 0x18, 0x62, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x64, - 0x65, 0x72, 0x56, 0x69, 0x65, 0x77, 0x52, 0x0a, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x56, 0x69, - 0x65, 0x77, 0x12, 0x65, 0x0a, 0x13, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, - 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x18, 0x17, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, - 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x52, 0x11, 0x67, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, - 0x74, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x12, 0x5b, 0x0a, 0x0f, 0x67, 0x65, 0x6f, - 0x67, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x7d, 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, 0x72, 0x65, - 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6f, 0x67, 0x72, 0x61, 0x70, 0x68, - 0x69, 0x63, 0x56, 0x69, 0x65, 0x77, 0x52, 0x0e, 0x67, 0x65, 0x6f, 0x67, 0x72, 0x61, 0x70, 0x68, - 0x69, 0x63, 0x56, 0x69, 0x65, 0x77, 0x12, 0x68, 0x0a, 0x14, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, - 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x77, - 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, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x50, - 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x69, 0x65, 0x77, 0x52, 0x12, 0x67, 0x72, - 0x6f, 0x75, 0x70, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x69, 0x65, 0x77, - 0x12, 0x5c, 0x0a, 0x10, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, - 0x76, 0x69, 0x65, 0x77, 0x18, 0x33, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x67, 0x6f, 0x6f, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x6f, 0x62, 0x69, + 0x6c, 0x65, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, + 0x52, 0x14, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, + 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x12, 0xa1, 0x01, 0x0a, 0x28, 0x6f, 0x66, 0x66, 0x6c, 0x69, + 0x6e, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x75, 0x70, + 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x75, 0x6d, 0x6d, + 0x61, 0x72, 0x79, 0x18, 0xd8, 0x01, 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, - 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x56, 0x69, 0x65, 0x77, 0x52, 0x0e, - 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x56, 0x69, 0x65, 0x77, 0x12, 0x6e, - 0x0a, 0x16, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, - 0x6e, 0x63, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x47, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x73, 0x2e, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, - 0x61, 0x6e, 0x63, 0x65, 0x56, 0x69, 0x65, 0x77, 0x52, 0x14, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x50, - 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x56, 0x69, 0x65, 0x77, 0x12, 0x6b, - 0x0a, 0x14, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, - 0x69, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0xbc, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, - 0x65, 0x73, 0x2e, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, - 0x69, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x13, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x52, 0x65, 0x63, - 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x69, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x60, 0x0a, 0x11, 0x69, - 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, - 0x18, 0x8a, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x49, 0x6e, 0x63, - 0x6f, 0x6d, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x56, 0x69, 0x65, 0x77, 0x52, 0x0f, 0x69, 0x6e, - 0x63, 0x6f, 0x6d, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x56, 0x69, 0x65, 0x77, 0x12, 0x52, 0x0a, - 0x0c, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x72, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, - 0x56, 0x69, 0x65, 0x77, 0x52, 0x0b, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x56, 0x69, 0x65, - 0x77, 0x12, 0x52, 0x0a, 0x0c, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, - 0x6e, 0x18, 0x20, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, + 0x6e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x75, 0x6d, + 0x6d, 0x61, 0x72, 0x79, 0x52, 0x24, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x43, 0x6f, 0x6e, + 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x43, 0x6c, 0x69, + 0x65, 0x6e, 0x74, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x6a, 0x0a, 0x15, 0x6f, 0x66, + 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, + 0x6a, 0x6f, 0x62, 0x18, 0x89, 0x01, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, + 0x6f, 0x62, 0x52, 0x12, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, + 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x12, 0x8d, 0x01, 0x0a, 0x21, 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, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x18, 0x56, 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, 0x37, 0x2e, 0x72, 0x65, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, + 0x67, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x6f, + 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x52, 0x1e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, + 0x67, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x6f, + 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x12, 0x80, 0x01, 0x0a, 0x1d, 0x70, 0x61, 0x69, 0x64, 0x5f, + 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x63, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, + 0x65, 0x72, 0x6d, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x81, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x61, 0x69, 0x64, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x63, + 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x56, 0x69, 0x65, 0x77, 0x52, 0x19, + 0x70, 0x61, 0x69, 0x64, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x63, 0x53, 0x65, 0x61, 0x72, 0x63, + 0x68, 0x54, 0x65, 0x72, 0x6d, 0x56, 0x69, 0x65, 0x77, 0x12, 0x68, 0x0a, 0x13, 0x71, 0x75, 0x61, + 0x6c, 0x69, 0x66, 0x79, 0x69, 0x6e, 0x67, 0x5f, 0x71, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, + 0x18, 0xca, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, - 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x52, 0x0b, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, - 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x12, 0x6b, 0x0a, 0x15, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, - 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x18, 0x21, - 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, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, - 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x52, 0x13, 0x6b, - 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, - 0x67, 0x6e, 0x12, 0x82, 0x01, 0x0a, 0x1d, 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, 0x18, 0x8c, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x52, 0x1a, 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, 0x12, 0x69, 0x0a, 0x15, 0x6b, 0x65, 0x79, 0x77, 0x6f, - 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, - 0x18, 0x23, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x36, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x51, 0x75, 0x61, + 0x6c, 0x69, 0x66, 0x79, 0x69, 0x6e, 0x67, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x52, + 0x12, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x79, 0x69, 0x6e, 0x67, 0x51, 0x75, 0x65, 0x73, 0x74, + 0x69, 0x6f, 0x6e, 0x12, 0x68, 0x0a, 0x14, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x5f, + 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x2d, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x53, + 0x74, 0x61, 0x74, 0x75, 0x73, 0x56, 0x69, 0x65, 0x77, 0x52, 0x12, 0x70, 0x61, 0x72, 0x65, 0x6e, + 0x74, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x56, 0x69, 0x65, 0x77, 0x12, 0x57, 0x0a, + 0x0e, 0x70, 0x65, 0x72, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, + 0xc6, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, - 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x12, - 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, - 0x75, 0x70, 0x12, 0x80, 0x01, 0x0a, 0x1d, 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, 0x18, 0x8d, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3d, 0x2e, 0x67, 0x6f, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x65, 0x72, 0x53, + 0x74, 0x6f, 0x72, 0x65, 0x56, 0x69, 0x65, 0x77, 0x52, 0x0c, 0x70, 0x65, 0x72, 0x53, 0x74, 0x6f, + 0x72, 0x65, 0x56, 0x69, 0x65, 0x77, 0x12, 0x78, 0x0a, 0x19, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, + 0x74, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, + 0x61, 0x6e, 0x74, 0x18, 0xd0, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x43, + 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x52, 0x17, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, + 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, + 0x12, 0x62, 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, + 0x70, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x36, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x56, 0x69, + 0x65, 0x77, 0x52, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, + 0x56, 0x69, 0x65, 0x77, 0x12, 0x53, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, + 0x6c, 0x69, 0x6e, 0x6b, 0x18, 0xc2, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x52, 0x19, 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, 0x12, 0x6f, 0x0a, 0x16, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, - 0x5f, 0x74, 0x68, 0x65, 0x6d, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x18, - 0xa3, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, - 0x6f, 0x72, 0x64, 0x54, 0x68, 0x65, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, - 0x52, 0x14, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x54, 0x68, 0x65, 0x6d, 0x65, 0x43, 0x6f, - 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x12, 0x3f, 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, - 0x34, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, - 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x5f, 0x0a, 0x11, 0x6c, 0x61, 0x6e, 0x64, 0x69, - 0x6e, 0x67, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x7e, 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, 0x72, 0x65, - 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x50, - 0x61, 0x67, 0x65, 0x56, 0x69, 0x65, 0x77, 0x52, 0x0f, 0x6c, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, - 0x50, 0x61, 0x67, 0x65, 0x56, 0x69, 0x65, 0x77, 0x12, 0x61, 0x0a, 0x11, 0x6c, 0x61, 0x6e, 0x67, - 0x75, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x18, 0x37, 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, 0x72, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, - 0x65, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x52, 0x10, 0x6c, 0x61, 0x6e, 0x67, 0x75, - 0x61, 0x67, 0x65, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x12, 0x55, 0x0a, 0x0d, 0x6c, - 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x7b, 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, 0x72, 0x65, - 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x56, 0x69, 0x65, 0x77, 0x52, 0x0c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x56, 0x69, - 0x65, 0x77, 0x12, 0x6e, 0x0a, 0x16, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x64, 0x5f, 0x70, 0x6c, - 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x35, 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, 0x72, 0x65, - 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x64, 0x50, - 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x69, 0x65, 0x77, 0x52, 0x14, 0x6d, 0x61, - 0x6e, 0x61, 0x67, 0x65, 0x64, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x69, - 0x65, 0x77, 0x12, 0x4c, 0x0a, 0x0a, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x66, 0x69, 0x6c, 0x65, - 0x18, 0x5a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x0b, 0x70, 0x72, + 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x12, 0x72, 0x0a, 0x17, 0x70, 0x72, 0x6f, + 0x64, 0x75, 0x63, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x18, 0xd1, 0x01, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, + 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x15, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, + 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x5a, 0x0a, + 0x0e, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, + 0x16, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, + 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0e, 0x72, 0x65, 0x63, 0x6f, 0x6d, + 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x80, 0x01, 0x0a, 0x1b, 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, 0x18, 0xdc, 0x01, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x75, 0x72, 0x63, 0x65, 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, + 0x52, 0x1a, 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, 0x12, 0x5c, 0x0a, 0x10, + 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x76, 0x69, 0x65, 0x77, + 0x18, 0x44, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x65, 0x64, 0x69, - 0x61, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x09, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x46, 0x69, 0x6c, 0x65, - 0x12, 0x72, 0x0a, 0x17, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, - 0x65, 0x73, 0x5f, 0x65, 0x6d, 0x70, 0x6c, 0x6f, 0x79, 0x65, 0x65, 0x18, 0xdf, 0x01, 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, 0x72, 0x65, - 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, - 0x76, 0x69, 0x63, 0x65, 0x73, 0x45, 0x6d, 0x70, 0x6c, 0x6f, 0x79, 0x65, 0x65, 0x52, 0x15, 0x6c, - 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x45, 0x6d, 0x70, 0x6c, - 0x6f, 0x79, 0x65, 0x65, 0x12, 0x97, 0x01, 0x0a, 0x24, 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, 0x18, 0xd3, 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, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 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, 0x52, 0x21, 0x6c, 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, 0x12, 0x7e, - 0x0a, 0x1c, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x63, 0x61, 0x74, - 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x18, 0x57, - 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, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, - 0x41, 0x70, 0x70, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x43, 0x6f, 0x6e, 0x73, 0x74, - 0x61, 0x6e, 0x74, 0x52, 0x19, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x43, 0x61, - 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x12, 0x6e, - 0x0a, 0x16, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, - 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x18, 0x62, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x38, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x65, 0x61, 0x72, + 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x56, 0x69, 0x65, 0x77, 0x52, 0x0e, 0x73, 0x65, 0x61, 0x72, + 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x56, 0x69, 0x65, 0x77, 0x12, 0x5e, 0x0a, 0x10, 0x73, 0x68, + 0x61, 0x72, 0x65, 0x64, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x18, 0x1d, + 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, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, + 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x52, 0x0f, 0x73, 0x68, 0x61, 0x72, 0x65, + 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x12, 0x4c, 0x0a, 0x0a, 0x73, 0x68, + 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, 0x18, 0x1b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, - 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x52, 0x14, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, - 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x12, 0xa1, - 0x01, 0x0a, 0x28, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, - 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x63, 0x6c, 0x69, - 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x18, 0xd8, 0x01, 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, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x43, - 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x43, - 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x24, 0x6f, 0x66, - 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x55, - 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x75, 0x6d, 0x6d, 0x61, - 0x72, 0x79, 0x12, 0x6a, 0x0a, 0x15, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x75, 0x73, - 0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6a, 0x6f, 0x62, 0x18, 0x89, 0x01, 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, 0x72, 0x65, - 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, - 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x52, 0x12, 0x6f, 0x66, 0x66, 0x6c, - 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x12, 0x8d, - 0x01, 0x0a, 0x21, 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, 0x63, 0x6f, 0x6e, 0x73, - 0x74, 0x61, 0x6e, 0x74, 0x18, 0x56, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, - 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x56, - 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x52, 0x1e, - 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x56, - 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x12, 0x80, - 0x01, 0x0a, 0x1d, 0x70, 0x61, 0x69, 0x64, 0x5f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x63, 0x5f, - 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x76, 0x69, 0x65, 0x77, - 0x18, 0x81, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x61, 0x69, - 0x64, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x63, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, - 0x72, 0x6d, 0x56, 0x69, 0x65, 0x77, 0x52, 0x19, 0x70, 0x61, 0x69, 0x64, 0x4f, 0x72, 0x67, 0x61, - 0x6e, 0x69, 0x63, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x56, 0x69, 0x65, - 0x77, 0x12, 0x68, 0x0a, 0x13, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x79, 0x69, 0x6e, 0x67, 0x5f, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0xca, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x73, 0x2e, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x79, 0x69, 0x6e, 0x67, 0x51, - 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x12, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x79, - 0x69, 0x6e, 0x67, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x68, 0x0a, 0x14, 0x70, - 0x61, 0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x76, - 0x69, 0x65, 0x77, 0x18, 0x2d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x36, 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, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x52, 0x09, 0x73, + 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x12, 0x6f, 0x0a, 0x16, 0x73, 0x6d, 0x61, 0x72, + 0x74, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, + 0x6e, 0x67, 0x18, 0xa7, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x50, - 0x61, 0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x56, 0x69, 0x65, - 0x77, 0x52, 0x12, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, - 0x73, 0x56, 0x69, 0x65, 0x77, 0x12, 0x57, 0x0a, 0x0e, 0x70, 0x65, 0x72, 0x5f, 0x73, 0x74, 0x6f, - 0x72, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0xc6, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x73, 0x2e, 0x50, 0x65, 0x72, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x56, 0x69, 0x65, 0x77, - 0x52, 0x0c, 0x70, 0x65, 0x72, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x56, 0x69, 0x65, 0x77, 0x12, 0x78, - 0x0a, 0x19, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, - 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x18, 0xd0, 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, 0x72, 0x65, - 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, - 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x52, - 0x17, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, - 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x12, 0x62, 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x64, - 0x75, 0x63, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x36, - 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, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, - 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x56, 0x69, 0x65, 0x77, 0x52, 0x10, 0x70, 0x72, 0x6f, 0x64, - 0x75, 0x63, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x56, 0x69, 0x65, 0x77, 0x12, 0x53, 0x0a, 0x0c, - 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x18, 0xc2, 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, 0x72, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, - 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, - 0x6b, 0x12, 0x72, 0x0a, 0x17, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x6c, 0x69, 0x6e, - 0x6b, 0x5f, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0xd1, 0x01, 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, 0x72, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, - 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x15, - 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x5a, 0x0a, 0x0e, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, - 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x53, + 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, + 0x69, 0x6e, 0x67, 0x52, 0x14, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, + 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x77, 0x0a, 0x19, 0x73, 0x68, 0x6f, + 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, + 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x75, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, + 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x56, 0x69, 0x65, 0x77, 0x52, 0x17, 0x73, 0x68, 0x6f, 0x70, 0x70, + 0x69, 0x6e, 0x67, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x56, 0x69, + 0x65, 0x77, 0x12, 0x5f, 0x0a, 0x10, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x70, + 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x18, 0xe2, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, - 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x52, 0x0e, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x12, 0x80, 0x01, 0x0a, 0x1b, 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, 0x18, 0xdc, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x52, 0x1a, 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, 0x12, 0x5c, 0x0a, 0x10, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, - 0x65, 0x72, 0x6d, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x44, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x73, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x50, 0x72, 0x6f, 0x64, 0x75, + 0x63, 0x74, 0x52, 0x0f, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x50, 0x72, 0x6f, 0x64, + 0x75, 0x63, 0x74, 0x12, 0x86, 0x01, 0x0a, 0x1f, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x5f, 0x63, 0x61, + 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, + 0x72, 0x6d, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0xaa, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x73, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x56, 0x69, - 0x65, 0x77, 0x52, 0x0e, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x56, 0x69, - 0x65, 0x77, 0x12, 0x5e, 0x0a, 0x10, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x63, 0x72, 0x69, - 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x18, 0x1d, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x73, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, - 0x6e, 0x52, 0x0f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, - 0x6f, 0x6e, 0x12, 0x4c, 0x0a, 0x0a, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, - 0x18, 0x1b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x73, 0x2e, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, + 0x6e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x56, 0x69, 0x65, 0x77, 0x52, + 0x1b, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, + 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x56, 0x69, 0x65, 0x77, 0x12, 0x83, 0x01, 0x0a, + 0x1e, 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, 0x18, + 0x90, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x68, 0x61, 0x72, - 0x65, 0x64, 0x53, 0x65, 0x74, 0x52, 0x09, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, - 0x12, 0x6f, 0x0a, 0x16, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, - 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0xa7, 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, 0x72, 0x65, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, - 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x14, 0x73, 0x6d, 0x61, - 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, - 0x67, 0x12, 0x77, 0x0a, 0x19, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x65, - 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x75, - 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, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, - 0x6e, 0x67, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x56, 0x69, 0x65, - 0x77, 0x52, 0x17, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x50, 0x65, 0x72, 0x66, 0x6f, - 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x56, 0x69, 0x65, 0x77, 0x12, 0x86, 0x01, 0x0a, 0x1f, 0x73, - 0x6d, 0x61, 0x72, 0x74, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, - 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0xaa, - 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x6d, 0x61, 0x72, 0x74, - 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, - 0x72, 0x6d, 0x56, 0x69, 0x65, 0x77, 0x52, 0x1b, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, - 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x56, - 0x69, 0x65, 0x77, 0x12, 0x83, 0x01, 0x0a, 0x1e, 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, 0x18, 0x90, 0x01, 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, 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, 0x52, 0x1a, 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, 0x12, 0x4c, 0x0a, 0x0a, 0x74, 0x6f, 0x70, - 0x69, 0x63, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x2c, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, - 0x65, 0x73, 0x2e, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x56, 0x69, 0x65, 0x77, 0x52, 0x09, 0x74, 0x6f, - 0x70, 0x69, 0x63, 0x56, 0x69, 0x65, 0x77, 0x12, 0x79, 0x0a, 0x1a, 0x74, 0x72, 0x61, 0x76, 0x65, - 0x6c, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, - 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0xc9, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x73, 0x2e, 0x54, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, - 0x47, 0x72, 0x6f, 0x75, 0x70, 0x56, 0x69, 0x65, 0x77, 0x52, 0x17, 0x74, 0x72, 0x61, 0x76, 0x65, + 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, 0x52, 0x1a, 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, 0x12, 0x4c, 0x0a, 0x0a, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x5f, 0x76, 0x69, 0x65, 0x77, + 0x18, 0x2c, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x54, 0x6f, 0x70, 0x69, + 0x63, 0x56, 0x69, 0x65, 0x77, 0x52, 0x09, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x56, 0x69, 0x65, 0x77, + 0x12, 0x79, 0x0a, 0x1a, 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, + 0x69, 0x74, 0x79, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0xc9, + 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, 0x37, + 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x54, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x56, 0x69, - 0x65, 0x77, 0x12, 0x8b, 0x01, 0x0a, 0x20, 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x5f, 0x61, 0x63, - 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x5f, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, - 0x63, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0xc8, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x41, + 0x65, 0x77, 0x52, 0x17, 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, + 0x74, 0x79, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x56, 0x69, 0x65, 0x77, 0x12, 0x8b, 0x01, 0x0a, 0x20, + 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x5f, + 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, + 0x18, 0xc8, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x54, 0x72, 0x61, + 0x76, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x50, 0x65, 0x72, 0x66, 0x6f, + 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x56, 0x69, 0x65, 0x77, 0x52, 0x1d, 0x74, 0x72, 0x61, 0x76, + 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, + 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x56, 0x69, 0x65, 0x77, 0x12, 0x4f, 0x0a, 0x0a, 0x65, 0x78, 0x70, + 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x85, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x73, 0x2e, 0x54, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, - 0x74, 0x79, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x56, 0x69, 0x65, - 0x77, 0x52, 0x1d, 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, - 0x79, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x56, 0x69, 0x65, 0x77, - 0x12, 0x4f, 0x0a, 0x0a, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x85, - 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x45, 0x78, 0x70, 0x65, 0x72, - 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x0a, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, - 0x74, 0x12, 0x59, 0x0a, 0x0e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, - 0x61, 0x72, 0x6d, 0x18, 0xb7, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, - 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x72, 0x6d, 0x52, 0x0d, 0x65, - 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x72, 0x6d, 0x12, 0x55, 0x0a, 0x0d, - 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x18, 0x3b, 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, 0x72, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, - 0x65, 0x72, 0x65, 0x73, 0x74, 0x52, 0x0c, 0x75, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, - 0x65, 0x73, 0x74, 0x12, 0x4d, 0x0a, 0x0a, 0x6c, 0x69, 0x66, 0x65, 0x5f, 0x65, 0x76, 0x65, 0x6e, - 0x74, 0x18, 0xa1, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x73, 0x2e, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x0a, + 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x59, 0x0a, 0x0e, 0x65, 0x78, + 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x72, 0x6d, 0x18, 0xb7, 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, 0x37, 0x2e, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, + 0x65, 0x6e, 0x74, 0x41, 0x72, 0x6d, 0x52, 0x0d, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, + 0x6e, 0x74, 0x41, 0x72, 0x6d, 0x12, 0x55, 0x0a, 0x0d, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x6e, + 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x18, 0x3b, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x52, 0x0c, + 0x75, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x12, 0x4d, 0x0a, 0x0a, + 0x6c, 0x69, 0x66, 0x65, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0xa1, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x66, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, + 0x52, 0x09, 0x6c, 0x69, 0x66, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x49, 0x0a, 0x09, 0x75, + 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x26, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x08, 0x75, 0x73, + 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x70, 0x0a, 0x17, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, + 0x69, 0x73, 0x74, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, + 0x65, 0x18, 0xe1, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, - 0x66, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x09, 0x6c, 0x69, 0x66, 0x65, 0x45, 0x76, 0x65, - 0x6e, 0x74, 0x12, 0x49, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, - 0x26, 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, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x73, + 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x54, 0x79, + 0x70, 0x65, 0x52, 0x14, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x75, 0x73, 0x74, + 0x6f, 0x6d, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x12, 0x63, 0x0a, 0x12, 0x75, 0x73, 0x65, 0x72, + 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x87, + 0x01, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, - 0x69, 0x73, 0x74, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x63, 0x0a, - 0x12, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x76, - 0x69, 0x65, 0x77, 0x18, 0x87, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x67, 0x6f, 0x6f, + 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x56, 0x69, 0x65, 0x77, 0x52, 0x10, 0x75, 0x73, 0x65, + 0x72, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x56, 0x69, 0x65, 0x77, 0x12, 0x64, 0x0a, + 0x12, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x61, 0x63, 0x74, + 0x69, 0x6f, 0x6e, 0x18, 0x3c, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, + 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, + 0x52, 0x11, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x63, 0x74, + 0x69, 0x6f, 0x6e, 0x12, 0x58, 0x0a, 0x0e, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x5f, 0x63, 0x6f, 0x6e, + 0x73, 0x74, 0x61, 0x6e, 0x74, 0x18, 0x1f, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x2e, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x52, 0x0d, + 0x74, 0x6f, 0x70, 0x69, 0x63, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x12, 0x3f, 0x0a, + 0x05, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x18, 0x27, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x52, 0x05, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x12, 0x53, + 0x0a, 0x0c, 0x77, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0xa2, + 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, 0x37, + 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x57, 0x65, 0x62, 0x70, 0x61, + 0x67, 0x65, 0x56, 0x69, 0x65, 0x77, 0x52, 0x0b, 0x77, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x56, + 0x69, 0x65, 0x77, 0x12, 0x76, 0x0a, 0x19, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x6d, + 0x5f, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x61, + 0x18, 0xc0, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x65, 0x61, + 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x44, + 0x61, 0x74, 0x61, 0x52, 0x16, 0x6c, 0x65, 0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x53, 0x75, 0x62, + 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x12, 0x66, 0x0a, 0x13, 0x6c, + 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x5f, 0x6c, 0x65, + 0x61, 0x64, 0x18, 0xd2, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4c, + 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x4c, 0x65, 0x61, 0x64, + 0x52, 0x11, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x4c, + 0x65, 0x61, 0x64, 0x12, 0x8b, 0x01, 0x0a, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, + 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x5f, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x76, + 0x65, 0x72, 0x73, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0xd6, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2e, 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, 0x52, 0x1d, 0x6c, 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, 0x12, 0xa3, 0x01, 0x0a, 0x2a, 0x61, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x5f, 0x70, 0x72, + 0x69, 0x76, 0x61, 0x63, 0x79, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x6b, 0x65, 0x79, + 0x5f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, + 0x18, 0xd9, 0x01, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x6e, 0x64, + 0x72, 0x6f, 0x69, 0x64, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x53, 0x68, 0x61, 0x72, 0x65, + 0x64, 0x4b, 0x65, 0x79, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, + 0x70, 0x52, 0x24, 0x61, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, + 0x79, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x4b, 0x65, 0x79, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0xa5, 0x01, 0x0a, 0x2a, 0x61, 0x6e, 0x64, 0x72, + 0x6f, 0x69, 0x64, 0x5f, 0x70, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x5f, 0x73, 0x68, 0x61, 0x72, + 0x65, 0x64, 0x5f, 0x6b, 0x65, 0x79, 0x5f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5f, 0x63, 0x61, + 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x18, 0xda, 0x01, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x73, 0x2e, 0x41, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, + 0x79, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x4b, 0x65, 0x79, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x52, 0x25, 0x61, 0x6e, 0x64, 0x72, 0x6f, 0x69, + 0x64, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x4b, 0x65, + 0x79, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x12, + 0xaf, 0x01, 0x0a, 0x2e, 0x61, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x5f, 0x70, 0x72, 0x69, 0x76, + 0x61, 0x63, 0x79, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x6b, 0x65, 0x79, 0x5f, 0x67, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x74, 0x79, + 0x70, 0x65, 0x18, 0xdb, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, + 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x53, 0x68, 0x61, + 0x72, 0x65, 0x64, 0x4b, 0x65, 0x79, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x4e, 0x65, 0x74, 0x77, + 0x6f, 0x72, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x52, 0x28, 0x61, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, + 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x4b, 0x65, 0x79, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x54, 0x79, 0x70, + 0x65, 0x12, 0x42, 0x0a, 0x07, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 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, 0x37, 0x2e, 0x63, 0x6f, + 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x52, 0x07, 0x6d, 0x65, + 0x74, 0x72, 0x69, 0x63, 0x73, 0x12, 0x45, 0x0a, 0x08, 0x73, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, + 0x73, 0x18, 0x66, 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, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x67, 0x6d, 0x65, 0x6e, + 0x74, 0x73, 0x52, 0x08, 0x73, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x22, 0xf3, 0x02, 0x0a, + 0x16, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, + 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0b, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, + 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x64, 0x0a, + 0x11, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x73, 0x18, 0x02, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x61, 0x74, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, + 0x02, 0x52, 0x10, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x66, + 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x70, 0x61, + 0x72, 0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x12, 0x23, 0x0a, 0x0d, + 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x04, 0x20, + 0x01, 0x28, 0x08, 0x52, 0x0c, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x4f, 0x6e, 0x6c, + 0x79, 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, + 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, + 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, + 0x70, 0x65, 0x22, 0xdb, 0x01, 0x0a, 0x17, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x47, 0x6f, 0x6f, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x46, + 0x0a, 0x15, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, + 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x72, 0x70, 0x63, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, + 0x73, 0x52, 0x13, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, + 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x78, 0x0a, 0x1a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, + 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x73, 0x70, 0x6f, + 0x6e, 0x73, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, - 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x56, 0x69, 0x65, 0x77, - 0x52, 0x10, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x56, 0x69, - 0x65, 0x77, 0x12, 0x64, 0x0a, 0x12, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, - 0x67, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x3c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x35, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x75, 0x74, 0x61, 0x74, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, + 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x18, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4f, 0x70, + 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73, + 0x22, 0x8e, 0x4b, 0x0a, 0x0f, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x7a, 0x0a, 0x1b, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, + 0x5f, 0x61, 0x64, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x18, 0x11, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, + 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x4f, 0x70, 0x65, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x17, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, + 0x41, 0x64, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x12, 0x6a, 0x0a, 0x15, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64, 0x5f, + 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x4f, 0x70, 0x65, + 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x12, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, + 0x70, 0x41, 0x64, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x73, 0x0a, 0x18, + 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6f, + 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x38, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x41, - 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x11, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, - 0x6e, 0x67, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x58, 0x0a, 0x0e, 0x74, 0x6f, 0x70, 0x69, - 0x63, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x18, 0x1f, 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, 0x72, 0x65, 0x73, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x43, 0x6f, 0x6e, 0x73, 0x74, - 0x61, 0x6e, 0x74, 0x52, 0x0d, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, - 0x6e, 0x74, 0x12, 0x3f, 0x0a, 0x05, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x18, 0x27, 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, 0x72, 0x65, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x52, 0x05, 0x76, 0x69, - 0x64, 0x65, 0x6f, 0x12, 0x53, 0x0a, 0x0c, 0x77, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x76, - 0x69, 0x65, 0x77, 0x18, 0xa2, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, - 0x57, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x56, 0x69, 0x65, 0x77, 0x52, 0x0b, 0x77, 0x65, 0x62, - 0x70, 0x61, 0x67, 0x65, 0x56, 0x69, 0x65, 0x77, 0x12, 0x76, 0x0a, 0x19, 0x6c, 0x65, 0x61, 0x64, - 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, - 0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0xc0, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x67, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, + 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x15, 0x61, 0x64, 0x47, 0x72, + 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x12, 0x86, 0x01, 0x0a, 0x1f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x62, + 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f, 0x6f, 0x70, 0x65, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, + 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1b, 0x61, + 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, + 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x9e, 0x01, 0x0a, 0x27, 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, 0x6f, 0x70, 0x65, + 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x4d, 0x20, 0x01, 0x28, 0x0b, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x73, 0x2e, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x73, - 0x73, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x52, 0x16, 0x6c, 0x65, 0x61, 0x64, 0x46, 0x6f, - 0x72, 0x6d, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x61, - 0x12, 0x66, 0x0a, 0x13, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, - 0x65, 0x73, 0x5f, 0x6c, 0x65, 0x61, 0x64, 0x18, 0xd2, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, - 0x73, 0x4c, 0x65, 0x61, 0x64, 0x52, 0x11, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, - 0x69, 0x63, 0x65, 0x73, 0x4c, 0x65, 0x61, 0x64, 0x12, 0x8b, 0x01, 0x0a, 0x20, 0x6c, 0x6f, 0x63, - 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x5f, 0x6c, 0x65, 0x61, 0x64, - 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0xd6, 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, 0x36, 0x2e, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 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, 0x52, 0x1d, 0x6c, 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, 0x12, 0xa3, 0x01, 0x0a, 0x2a, 0x61, 0x6e, 0x64, 0x72, 0x6f, - 0x69, 0x64, 0x5f, 0x70, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, - 0x64, 0x5f, 0x6b, 0x65, 0x79, 0x5f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5f, 0x61, 0x64, 0x5f, - 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0xd9, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x48, 0x2e, 0x67, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x4f, 0x70, 0x65, 0x72, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x23, 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, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x8f, 0x01, 0x0a, 0x22, + 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, + 0x6f, 0x6e, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x18, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, + 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x62, + 0x65, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1e, 0x61, + 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4c, + 0x61, 0x62, 0x65, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x7f, 0x0a, + 0x1c, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, + 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 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, 0x37, 0x2e, 0x73, + 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, + 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x48, 0x00, 0x52, 0x19, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, + 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x82, + 0x01, 0x0a, 0x1d, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x75, 0x73, 0x74, + 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x18, 0x4b, 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, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, + 0x75, 0x70, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1a, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, + 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x12, 0x95, 0x01, 0x0a, 0x24, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, + 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, + 0x6e, 0x67, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x13, 0x20, 0x01, + 0x28, 0x0b, 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, 0x37, 0x2e, 0x73, 0x65, + 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x78, + 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x70, + 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x20, 0x61, 0x64, 0x47, 0x72, 0x6f, + 0x75, 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, + 0x6e, 0x67, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x70, 0x0a, 0x17, 0x61, + 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6f, 0x70, 0x65, + 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x14, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x73, 0x2e, 0x41, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, - 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x4b, 0x65, 0x79, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x24, 0x61, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x50, - 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x4b, 0x65, 0x79, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0xa5, 0x01, 0x0a, - 0x2a, 0x61, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x5f, 0x70, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, - 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x6b, 0x65, 0x79, 0x5f, 0x67, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x18, 0xda, 0x01, 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, 0x73, 0x2e, 0x41, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x50, - 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x4b, 0x65, 0x79, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x52, 0x25, 0x61, - 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x53, 0x68, 0x61, - 0x72, 0x65, 0x64, 0x4b, 0x65, 0x79, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x43, 0x61, 0x6d, 0x70, - 0x61, 0x69, 0x67, 0x6e, 0x12, 0xaf, 0x01, 0x0a, 0x2e, 0x61, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, - 0x5f, 0x70, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, - 0x6b, 0x65, 0x79, 0x5f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, - 0x72, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0xdb, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x4c, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 0x64, 0x4f, 0x70, 0x65, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x14, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, + 0x46, 0x65, 0x65, 0x64, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x73, 0x0a, + 0x18, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, + 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x15, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4c, 0x61, 0x62, 0x65, 0x6c, + 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x15, 0x61, 0x64, 0x47, + 0x72, 0x6f, 0x75, 0x70, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x12, 0x63, 0x0a, 0x12, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x6f, + 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x73, 0x2e, 0x41, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x50, 0x72, 0x69, 0x76, 0x61, - 0x63, 0x79, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x4b, 0x65, 0x79, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x52, 0x28, 0x61, 0x6e, - 0x64, 0x72, 0x6f, 0x69, 0x64, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x53, 0x68, 0x61, 0x72, - 0x65, 0x64, 0x4b, 0x65, 0x79, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x4e, 0x65, 0x74, 0x77, 0x6f, - 0x72, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x12, 0x42, 0x0a, 0x07, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, - 0x73, 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, 0x6e, 0x2e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, - 0x73, 0x52, 0x07, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x12, 0x45, 0x0a, 0x08, 0x73, 0x65, - 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x66, 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, 0x53, - 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x08, 0x73, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, - 0x73, 0x22, 0xf3, 0x02, 0x0a, 0x16, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0b, - 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, - 0x49, 0x64, 0x12, 0x64, 0x0a, 0x11, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x6f, 0x70, 0x65, - 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x32, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x10, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4f, 0x70, + 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x53, 0x0a, 0x0c, 0x61, 0x64, 0x5f, 0x6f, 0x70, + 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x31, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, - 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x10, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4f, 0x70, - 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, - 0x69, 0x61, 0x6c, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, - 0x08, 0x52, 0x0e, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, - 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6f, 0x6e, - 0x6c, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, - 0x74, 0x65, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x7f, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, - 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, - 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, - 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, - 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, - 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, - 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x22, 0xdb, 0x01, 0x0a, 0x17, 0x4d, 0x75, 0x74, 0x61, - 0x74, 0x65, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, - 0x6e, 0x73, 0x65, 0x12, 0x46, 0x0a, 0x15, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x66, - 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x03, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x72, 0x70, 0x63, 0x2e, - 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x13, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x46, - 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x78, 0x0a, 0x1a, 0x6d, - 0x75, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, - 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 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, 0x73, 0x65, 0x72, 0x76, 0x69, - 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x18, 0x6d, 0x75, 0x74, - 0x61, 0x74, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, - 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x22, 0x8e, 0x4b, 0x0a, 0x0f, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, - 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x7a, 0x0a, 0x1b, 0x61, 0x64, 0x5f, - 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x6f, - 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x11, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, - 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x4c, 0x61, 0x62, 0x65, - 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x17, 0x61, 0x64, - 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x4f, 0x70, 0x65, 0x72, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x6a, 0x0a, 0x15, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, - 0x70, 0x5f, 0x61, 0x64, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 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, - 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, - 0x41, 0x64, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x12, 0x61, - 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x12, 0x73, 0x0a, 0x18, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x73, - 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x38, 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, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x73, 0x2e, 0x41, 0x64, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, + 0x0b, 0x61, 0x64, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x6f, 0x0a, 0x16, + 0x61, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x5f, 0x6f, 0x70, 0x65, + 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x16, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x2e, 0x41, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x14, 0x61, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, + 0x65, 0x74, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x5c, 0x0a, + 0x0f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x18, 0x17, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, + 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x0e, 0x61, 0x73, 0x73, + 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x7c, 0x0a, 0x1b, 0x61, + 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, + 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x41, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, - 0x15, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, 0x70, 0x65, - 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x86, 0x01, 0x0a, 0x1f, 0x61, 0x64, 0x5f, 0x67, 0x72, - 0x6f, 0x75, 0x70, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, - 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 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, 0x65, 0x72, 0x76, - 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69, 0x64, 0x4d, - 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x48, 0x00, 0x52, 0x1b, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69, 0x64, 0x4d, 0x6f, - 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, - 0x9e, 0x01, 0x0a, 0x27, 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, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x4d, 0x20, 0x01, 0x28, - 0x0b, 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, 0x73, 0x65, 0x72, - 0x76, 0x69, 0x63, 0x65, 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, - 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x23, 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, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x12, 0x8f, 0x01, 0x0a, 0x22, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, - 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x6f, 0x70, - 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x12, 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, 0x36, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, - 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, - 0x6f, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x48, 0x00, 0x52, 0x1e, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, - 0x72, 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x12, 0x7f, 0x0a, 0x1c, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, - 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x18, 0x03, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, - 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, - 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x19, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, - 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x12, 0x82, 0x01, 0x0a, 0x1d, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, - 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x6f, 0x70, 0x65, 0x72, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x4b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, - 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, - 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1a, 0x61, 0x64, - 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x4f, - 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x95, 0x01, 0x0a, 0x24, 0x61, 0x64, 0x5f, - 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, - 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x18, 0x13, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x43, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x18, 0x61, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, + 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0xa5, 0x01, 0x0a, 0x2a, 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, 0x6f, + 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x4e, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 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, 0x4f, + 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x25, 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, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x12, 0x7f, 0x0a, 0x1c, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, + 0x5f, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x18, 0x50, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, - 0x6f, 0x75, 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, - 0x69, 0x6e, 0x67, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x20, - 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, - 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x12, 0x70, 0x0a, 0x17, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x66, 0x65, 0x65, - 0x64, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x14, 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, 0x73, 0x65, 0x72, - 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, - 0x64, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x14, 0x61, 0x64, - 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 0x64, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x12, 0x73, 0x0a, 0x18, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x6c, - 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x15, - 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, - 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, - 0x52, 0x15, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x4f, 0x70, - 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x63, 0x0a, 0x12, 0x61, 0x64, 0x5f, 0x67, 0x72, - 0x6f, 0x75, 0x70, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 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, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4f, - 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x10, 0x61, 0x64, 0x47, 0x72, - 0x6f, 0x75, 0x70, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x53, 0x0a, 0x0c, - 0x61, 0x64, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x31, 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, 0x65, - 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x0b, 0x61, 0x64, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x12, 0x6f, 0x0a, 0x16, 0x61, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, - 0x72, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x16, 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, 0x73, 0x65, 0x72, - 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, - 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x14, 0x61, 0x64, - 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x12, 0x5c, 0x0a, 0x0f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x17, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, + 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x4f, 0x70, 0x65, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x19, 0x61, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, + 0x6f, 0x75, 0x70, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x12, 0x6c, 0x0a, 0x15, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, + 0x70, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x3e, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, + 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, + 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x13, 0x61, 0x73, 0x73, + 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x12, 0x76, 0x0a, 0x19, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x61, 0x73, + 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x47, 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, 0x37, 0x2e, 0x73, + 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, - 0x52, 0x0e, 0x61, 0x73, 0x73, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x12, 0x7c, 0x0a, 0x1b, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, - 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, - 0x41, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, - 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x18, 0x61, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, - 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0xa5, - 0x01, 0x0a, 0x2a, 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, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x4e, 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, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, - 0x25, 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, 0x4f, 0x70, 0x65, - 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x7f, 0x0a, 0x1c, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, - 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x5f, 0x6f, 0x70, 0x65, - 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x50, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x67, + 0x52, 0x16, 0x61, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, + 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x66, 0x0a, 0x13, 0x61, 0x73, 0x73, 0x65, + 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, + 0x48, 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, 0x37, + 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, + 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x11, 0x61, + 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x12, 0x65, 0x0a, 0x12, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x6f, 0x70, 0x65, + 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x51, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, - 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69, 0x67, 0x6e, 0x61, - 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x19, 0x61, 0x73, - 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x4f, 0x70, - 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x6c, 0x0a, 0x15, 0x61, 0x73, 0x73, 0x65, 0x74, - 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x18, 0x3e, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, - 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, - 0x52, 0x13, 0x61, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4f, 0x70, 0x65, 0x72, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x76, 0x0a, 0x19, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, - 0x65, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x18, 0x47, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x11, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x4f, 0x70, + 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x8b, 0x01, 0x0a, 0x20, 0x62, 0x69, 0x64, 0x64, + 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, + 0x6f, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x3a, 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, 0x37, 0x2e, 0x73, 0x65, + 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x44, 0x61, + 0x74, 0x61, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1d, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x44, + 0x61, 0x74, 0x61, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0xa3, 0x01, 0x0a, 0x28, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, + 0x67, 0x5f, 0x73, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x61, 0x64, + 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x18, 0x3b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, - 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x16, 0x61, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, - 0x73, 0x73, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x66, 0x0a, - 0x13, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, - 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x48, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x67, 0x6f, 0x6f, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, 0x64, + 0x64, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x41, + 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x25, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x61, + 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, + 0x6e, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x7b, 0x0a, 0x1a, 0x62, + 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x5f, + 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, + 0x65, 0x67, 0x79, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x18, + 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x4f, + 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x75, 0x0a, 0x18, 0x63, 0x61, 0x6d, 0x70, + 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x34, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x16, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, + 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, + 0x7f, 0x0a, 0x1c, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, + 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, + 0x49, 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, 0x37, + 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, + 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x19, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x48, 0x00, 0x52, 0x11, 0x61, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x65, 0x0a, 0x12, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, - 0x65, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x51, 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, 0x65, 0x72, - 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x4f, 0x70, - 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x11, 0x61, 0x75, 0x64, 0x69, 0x65, - 0x6e, 0x63, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x8b, 0x01, 0x0a, - 0x20, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x65, 0x78, - 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x18, 0x3a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, - 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, - 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1d, 0x62, 0x69, 0x64, - 0x64, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, - 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0xa3, 0x01, 0x0a, 0x28, 0x62, - 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, - 0x74, 0x79, 0x5f, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x6f, 0x70, - 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x3b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, - 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, - 0x6c, 0x69, 0x74, 0x79, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x4f, 0x70, - 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x25, 0x62, 0x69, 0x64, 0x64, 0x69, - 0x6e, 0x67, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x64, 0x6a, - 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x12, 0x7b, 0x0a, 0x1a, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, - 0x74, 0x65, 0x67, 0x79, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, - 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, - 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, - 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x48, 0x00, 0x52, 0x18, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, - 0x74, 0x65, 0x67, 0x79, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x75, 0x0a, - 0x18, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, - 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x34, 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, 0x73, 0x65, 0x72, 0x76, 0x69, - 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, - 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x16, 0x63, 0x61, - 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, - 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x7f, 0x0a, 0x1c, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, - 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, - 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x49, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x67, 0x6f, 0x6f, + 0x12, 0x88, 0x01, 0x0a, 0x1f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x69, + 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, - 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x4f, - 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x19, 0x63, 0x61, 0x6d, 0x70, - 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x88, 0x01, 0x0a, 0x1f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, - 0x67, 0x6e, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f, - 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 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, 0x73, 0x65, 0x72, 0x76, 0x69, - 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x69, 0x64, 0x4d, - 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x48, 0x00, 0x52, 0x1c, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x69, 0x64, 0x4d, - 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x12, 0x78, 0x0a, 0x19, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x75, 0x64, - 0x67, 0x65, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x08, 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, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, - 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, - 0x00, 0x52, 0x17, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, - 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x91, 0x01, 0x0a, 0x22, 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, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x18, 0x43, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, - 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, - 0x61, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1f, 0x63, - 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, - 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x81, - 0x01, 0x0a, 0x1c, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x72, 0x69, 0x74, - 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, - 0x0d, 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, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, + 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1c, 0x63, + 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, + 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x78, 0x0a, 0x19, 0x63, + 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x6f, + 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x08, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, + 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x17, 0x63, 0x61, + 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x91, 0x01, 0x0a, 0x22, 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, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x43, 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, 0x37, 0x2e, 0x73, 0x65, + 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, + 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x4f, 0x70, 0x65, + 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, + 0x67, 0x6e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, + 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x81, 0x01, 0x0a, 0x1c, 0x63, 0x61, + 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, + 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0d, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69, + 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, + 0x00, 0x52, 0x1a, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x65, + 0x72, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x84, 0x01, + 0x0a, 0x1d, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, + 0x4c, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, - 0x67, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, - 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1a, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, - 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x12, 0x84, 0x01, 0x0a, 0x1d, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, - 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, - 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x4c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3e, 0x2e, 0x67, 0x6f, 0x6f, + 0x67, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1b, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, + 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x75, 0x0a, 0x18, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, + 0x5f, 0x64, 0x72, 0x61, 0x66, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x18, 0x18, 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, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, + 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x48, 0x00, 0x52, 0x16, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, + 0x66, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x97, 0x01, 0x0a, 0x24, + 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, + 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x1a, 0x20, 0x01, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, - 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, - 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1b, 0x63, 0x61, - 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, + 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x48, 0x00, 0x52, 0x21, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x78, 0x74, 0x65, + 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x70, 0x65, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x72, 0x0a, 0x17, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, + 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x18, 0x1b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, + 0x69, 0x67, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x48, 0x00, 0x52, 0x15, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x75, 0x0a, 0x18, 0x63, 0x61, 0x6d, - 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x64, 0x72, 0x61, 0x66, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x18, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x67, 0x6f, + 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x6f, 0x70, 0x65, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x09, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, - 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x4f, 0x70, 0x65, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x16, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, - 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x12, 0x97, 0x01, 0x0a, 0x24, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x78, - 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x5f, - 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x1a, 0x20, 0x01, 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, 0x73, 0x65, 0x72, 0x76, 0x69, - 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x78, 0x74, 0x65, - 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x70, 0x65, 0x72, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x21, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, - 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, - 0x67, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x72, 0x0a, 0x17, 0x63, 0x61, - 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6f, 0x70, 0x65, 0x72, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x1b, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, - 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x4f, 0x70, 0x65, 0x72, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x15, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, - 0x6e, 0x46, 0x65, 0x65, 0x64, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x75, - 0x0a, 0x18, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, - 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x09, 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, 0x73, 0x65, 0x72, 0x76, - 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x72, 0x6f, - 0x75, 0x70, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x16, 0x63, - 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4f, 0x70, 0x65, 0x72, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x75, 0x0a, 0x18, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, - 0x6e, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x18, 0x1c, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, - 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x16, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x61, - 0x62, 0x65, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x65, 0x0a, 0x12, - 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x18, 0x0a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, - 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, - 0x52, 0x11, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x12, 0x82, 0x01, 0x0a, 0x1d, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, - 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, - 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, - 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1a, 0x63, 0x61, - 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x4f, - 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x7e, 0x0a, 0x1b, 0x63, 0x6f, 0x6e, 0x76, - 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x70, - 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0c, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, - 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, - 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x19, 0x63, - 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4f, - 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x97, 0x01, 0x0a, 0x24, 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, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x18, 0x37, 0x20, 0x01, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, - 0x21, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, - 0x6d, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x12, 0xa4, 0x01, 0x0a, 0x29, 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, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x18, 0x45, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x48, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, + 0x67, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x12, 0x75, 0x0a, 0x18, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x6c, 0x61, 0x62, + 0x65, 0x6c, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x1c, 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, 0x37, 0x2e, 0x73, 0x65, + 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, + 0x61, 0x62, 0x65, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, + 0x16, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x4f, 0x70, + 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x65, 0x0a, 0x12, 0x63, 0x61, 0x6d, 0x70, 0x61, + 0x69, 0x67, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0a, 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, 0x37, 0x2e, 0x73, + 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, + 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x11, 0x63, 0x61, 0x6d, + 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x82, + 0x01, 0x0a, 0x1d, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, + 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x18, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x48, 0x00, 0x52, 0x25, 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, - 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x88, 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, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x3f, 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, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, - 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, - 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1c, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, - 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, - 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x92, 0x01, 0x0a, 0x23, 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, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x40, 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, 0x73, 0x65, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, + 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1a, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, + 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x12, 0x7e, 0x0a, 0x1b, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, + 0x6e, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x18, 0x0c, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, + 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, + 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x19, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, + 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x12, 0x97, 0x01, 0x0a, 0x24, 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, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x37, 0x20, 0x01, + 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, - 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x4f, 0x70, 0x65, - 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, - 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, - 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x8b, 0x01, 0x0a, 0x20, 0x63, 0x75, - 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, - 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x44, - 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, - 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x43, - 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x4f, 0x70, 0x65, - 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, - 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x4f, 0x70, - 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x75, 0x0a, 0x18, 0x63, 0x75, 0x73, 0x74, 0x6f, - 0x6d, 0x65, 0x72, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x18, 0x39, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, - 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, - 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, - 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x91, - 0x01, 0x0a, 0x22, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x76, - 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x6f, 0x70, 0x65, 0x72, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x42, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, - 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, - 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, - 0x00, 0x52, 0x1f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x76, 0x65, + 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x4f, + 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x21, 0x63, 0x6f, 0x6e, 0x76, + 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56, 0x61, 0x72, 0x69, + 0x61, 0x62, 0x6c, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0xa4, 0x01, + 0x0a, 0x29, 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, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x45, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, + 0x76, 0x69, 0x63, 0x65, 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, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x25, 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, 0x4f, 0x70, 0x65, 0x72, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x88, 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, 0x6f, + 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x3f, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, + 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, + 0x00, 0x52, 0x1c, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, + 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, + 0x92, 0x01, 0x0a, 0x23, 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, 0x6f, 0x70, + 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x40, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, + 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x48, 0x00, 0x52, 0x1f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, + 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x8b, 0x01, 0x0a, 0x20, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, + 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, + 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x44, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, + 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x48, 0x00, 0x52, 0x1d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x12, 0x84, 0x01, 0x0a, 0x1d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, - 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, - 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x4f, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, - 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, - 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1b, 0x63, 0x75, - 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, - 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x97, 0x01, 0x0a, 0x24, 0x63, 0x75, - 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, - 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x18, 0x1e, 0x20, 0x01, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, + 0x6f, 0x6e, 0x12, 0x75, 0x0a, 0x18, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x61, + 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x39, + 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, 0x37, 0x2e, + 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, + 0x00, 0x52, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, + 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x91, 0x01, 0x0a, 0x22, 0x63, 0x75, + 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, + 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x18, 0x42, 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, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, + 0x6d, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, + 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1f, 0x63, 0x75, + 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, + 0x47, 0x6f, 0x61, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x84, 0x01, + 0x0a, 0x1d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, + 0x4f, 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, 0x37, + 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x65, 0x72, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x72, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x97, 0x01, 0x0a, 0x24, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x72, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, + 0x69, 0x6e, 0x67, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x1e, 0x20, + 0x01, 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, 0x37, 0x2e, 0x73, + 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, + 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x21, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, - 0x74, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, - 0x52, 0x21, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, - 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x12, 0x72, 0x0a, 0x17, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, - 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, + 0x74, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x72, + 0x0a, 0x17, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, + 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, + 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x15, 0x63, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x12, 0x75, 0x0a, 0x18, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6c, + 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x20, + 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, - 0x72, 0x46, 0x65, 0x65, 0x64, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, - 0x52, 0x15, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, 0x4f, 0x70, - 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x75, 0x0a, 0x18, 0x63, 0x75, 0x73, 0x74, 0x6f, - 0x6d, 0x65, 0x72, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x18, 0x20, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x67, 0x6f, 0x6f, 0x67, + 0x72, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, + 0x00, 0x52, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x61, 0x62, 0x65, 0x6c, + 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x9a, 0x01, 0x0a, 0x25, 0x63, 0x75, + 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x5f, + 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x18, 0x22, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, - 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, - 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, - 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x9a, - 0x01, 0x0a, 0x25, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6e, 0x65, 0x67, 0x61, - 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, - 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x22, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, - 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4e, 0x65, 0x67, 0x61, 0x74, - 0x69, 0x76, 0x65, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x22, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, - 0x72, 0x4e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, - 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x65, 0x0a, 0x12, 0x63, - 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x18, 0x23, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, - 0x6f, 0x6d, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, - 0x11, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x12, 0x87, 0x01, 0x0a, 0x1e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, - 0x72, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x6f, 0x70, 0x65, 0x72, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x46, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, - 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, - 0x75, 0x74, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1c, - 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, - 0x75, 0x74, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x6b, 0x0a, 0x14, - 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, - 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x52, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x36, 0x2e, 0x67, 0x6f, 0x6f, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, + 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x43, 0x72, + 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x48, 0x00, 0x52, 0x22, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4e, 0x65, 0x67, 0x61, + 0x74, 0x69, 0x76, 0x65, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, + 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x65, 0x0a, 0x12, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x65, 0x72, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x23, 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, 0x37, 0x2e, 0x73, 0x65, + 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4f, + 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x11, 0x63, 0x75, 0x73, 0x74, + 0x6f, 0x6d, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x87, 0x01, + 0x0a, 0x1e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x61, 0x74, 0x74, + 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x18, 0x46, 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, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, + 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4f, 0x70, + 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1c, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4f, 0x70, + 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x6b, 0x0a, 0x14, 0x65, 0x78, 0x70, 0x65, 0x72, + 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, + 0x52, 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, 0x37, + 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, + 0x6d, 0x65, 0x6e, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, + 0x13, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x75, 0x0a, 0x18, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, + 0x6e, 0x74, 0x5f, 0x61, 0x72, 0x6d, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x18, 0x53, 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, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x45, 0x78, 0x70, 0x65, 0x72, + 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x72, 0x6d, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x48, 0x00, 0x52, 0x16, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, + 0x72, 0x6d, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x82, 0x01, 0x0a, 0x1d, + 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, + 0x74, 0x65, 0x6d, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x24, 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, 0x37, 0x2e, 0x73, + 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, + 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1a, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x46, + 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x12, 0x66, 0x0a, 0x13, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x6f, 0x70, + 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x25, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x11, 0x66, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x4f, + 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x70, 0x0a, 0x17, 0x66, 0x65, 0x65, 0x64, + 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x18, 0x35, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, + 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x14, 0x66, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, + 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x7d, 0x0a, 0x1c, 0x66, 0x65, + 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, + 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x36, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x69, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, + 0x4c, 0x69, 0x6e, 0x6b, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, + 0x18, 0x66, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, + 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x79, 0x0a, 0x1a, 0x66, 0x65, 0x65, + 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x6f, 0x70, + 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x26, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, + 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x17, 0x66, 0x65, 0x65, + 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x6f, 0x0a, 0x16, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6d, 0x61, 0x70, + 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x27, + 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, + 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, + 0x70, 0x69, 0x6e, 0x67, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, + 0x14, 0x66, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x4f, 0x70, 0x65, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x59, 0x0a, 0x0e, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6f, 0x70, + 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x28, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, + 0x00, 0x52, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x12, 0x86, 0x01, 0x0a, 0x1f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, + 0x6e, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x2c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x45, - 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x13, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, - 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x75, 0x0a, 0x18, 0x65, 0x78, 0x70, - 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x72, 0x6d, 0x5f, 0x6f, 0x70, 0x65, 0x72, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x53, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x67, 0x6f, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4b, + 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, + 0x70, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1b, 0x6b, 0x65, + 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, + 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x9c, 0x01, 0x0a, 0x27, 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, 0x6f, 0x70, 0x65, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x32, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, - 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x72, 0x6d, 0x4f, 0x70, 0x65, - 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x16, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, - 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x72, 0x6d, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x12, 0x82, 0x01, 0x0a, 0x1d, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x66, - 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x18, 0x24, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x45, 0x78, 0x74, - 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x4f, 0x70, - 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1a, 0x65, 0x78, 0x74, 0x65, 0x6e, - 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x4f, 0x70, 0x65, 0x72, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x66, 0x0a, 0x13, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, - 0x65, 0x6d, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x25, 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, 0x65, - 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x4f, - 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x11, 0x66, 0x65, 0x65, 0x64, - 0x49, 0x74, 0x65, 0x6d, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x70, 0x0a, - 0x17, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x6f, - 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x35, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x37, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x22, 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, 0x4f, + 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x9e, 0x01, 0x0a, 0x27, 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, 0x6f, 0x70, 0x65, 0x72, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x33, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x23, 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, + 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x88, 0x01, 0x0a, 0x1f, 0x6b, 0x65, + 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, + 0x69, 0x67, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x2d, 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, 0x37, 0x2e, 0x73, + 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, + 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1c, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, + 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x6f, 0x0a, 0x16, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, + 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x30, + 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, + 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, + 0x50, 0x6c, 0x61, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, + 0x14, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x4f, 0x70, 0x65, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x5c, 0x0a, 0x0f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x6f, + 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x29, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, - 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x4f, 0x70, - 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x14, 0x66, 0x65, 0x65, 0x64, 0x49, - 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, - 0x7d, 0x0a, 0x1c, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x74, - 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, - 0x36, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, - 0x65, 0x6d, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x18, 0x66, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, - 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x79, - 0x0a, 0x1a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x74, 0x61, 0x72, 0x67, - 0x65, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x26, 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, 0x73, 0x65, - 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, - 0x61, 0x72, 0x67, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, - 0x52, 0x17, 0x66, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, - 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x6f, 0x0a, 0x16, 0x66, 0x65, 0x65, - 0x64, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x18, 0x27, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x6f, 0x67, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 0x73, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x48, 0x00, 0x52, 0x0e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x12, 0x9c, 0x01, 0x0a, 0x25, 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, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x56, 0x20, + 0x01, 0x28, 0x0b, 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, 0x73, + 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x23, 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, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x12, 0x81, 0x01, 0x0a, 0x1c, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, + 0x6e, 0x67, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x18, 0x2b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, - 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x14, 0x66, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, - 0x67, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x59, 0x0a, 0x0e, 0x66, 0x65, - 0x65, 0x64, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x28, 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, 0x65, - 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x4f, 0x70, 0x65, 0x72, 0x61, - 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x4f, 0x70, 0x65, 0x72, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x86, 0x01, 0x0a, 0x1f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, - 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, - 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x2c, 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, 0x65, 0x72, 0x76, 0x69, - 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, - 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, - 0x00, 0x52, 0x1b, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x64, - 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x9c, - 0x01, 0x0a, 0x27, 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, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x32, 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, 0x73, 0x65, 0x72, 0x76, - 0x69, 0x63, 0x65, 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, 0x4f, 0x70, - 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x22, 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, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x9e, 0x01, - 0x0a, 0x27, 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, - 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x33, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, - 0x63, 0x65, 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, 0x4f, 0x70, - 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x23, 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, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x88, - 0x01, 0x0a, 0x1f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, - 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x18, 0x2d, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, - 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, - 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1c, 0x6b, 0x65, 0x79, - 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, - 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x6f, 0x0a, 0x16, 0x6b, 0x65, 0x79, - 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x18, 0x30, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x6f, 0x67, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, + 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4f, + 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1a, 0x72, 0x65, 0x6d, 0x61, + 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, + 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x7b, 0x0a, 0x1a, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, + 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0e, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, + 0x68, 0x61, 0x72, 0x65, 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4f, 0x70, + 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x18, 0x73, 0x68, 0x61, 0x72, 0x65, + 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x12, 0x69, 0x0a, 0x14, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, + 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0f, 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, 0x73, 0x65, 0x72, + 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x4f, + 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x12, 0x73, 0x68, 0x61, 0x72, + 0x65, 0x64, 0x53, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x8b, + 0x01, 0x0a, 0x20, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, + 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x18, 0x3d, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, - 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x14, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, - 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x5c, 0x0a, 0x0f, 0x6c, 0x61, - 0x62, 0x65, 0x6c, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x29, 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, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x4f, 0x70, 0x65, - 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x0e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x4f, - 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x9c, 0x01, 0x0a, 0x25, 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, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x18, 0x56, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x48, 0x00, 0x52, 0x23, 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, 0x4f, 0x70, - 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x81, 0x01, 0x0a, 0x1c, 0x72, 0x65, 0x6d, 0x61, - 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, - 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x2b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3d, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x6d, + 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, + 0x6e, 0x67, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1d, 0x73, + 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, + 0x69, 0x6e, 0x67, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x66, 0x0a, 0x13, + 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x18, 0x10, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x73, + 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, + 0x00, 0x52, 0x11, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x0b, 0x0a, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x22, 0xb1, 0x49, 0x0a, 0x17, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4f, 0x70, 0x65, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x77, 0x0a, + 0x18, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64, 0x5f, 0x6c, 0x61, 0x62, + 0x65, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x11, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, + 0x70, 0x41, 0x64, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, + 0x52, 0x14, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x4c, 0x61, 0x62, 0x65, 0x6c, + 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x67, 0x0a, 0x12, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, + 0x75, 0x70, 0x5f, 0x61, 0x64, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 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, 0x37, 0x2e, 0x73, 0x65, + 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, + 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x0f, + 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, + 0x70, 0x0a, 0x15, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x73, 0x73, 0x65, + 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, - 0x65, 0x73, 0x2e, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x63, - 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, - 0x1a, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x63, 0x74, 0x69, - 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x7b, 0x0a, 0x1a, 0x73, - 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, - 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0e, 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, 0x73, 0x65, 0x72, 0x76, 0x69, - 0x63, 0x65, 0x73, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, - 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x18, - 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4f, - 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x69, 0x0a, 0x14, 0x73, 0x68, 0x61, 0x72, - 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, + 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x12, 0x61, + 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, + 0x74, 0x12, 0x83, 0x01, 0x0a, 0x1c, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x62, + 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f, 0x72, 0x65, 0x73, 0x75, + 0x6c, 0x74, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, + 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x18, 0x61, + 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, + 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x9b, 0x01, 0x0a, 0x24, 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, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, + 0x18, 0x4d, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x65, - 0x64, 0x53, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, - 0x12, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x12, 0x8b, 0x01, 0x0a, 0x20, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x5f, 0x63, 0x61, - 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x6f, - 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x3d, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, - 0x65, 0x73, 0x2e, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, - 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x48, 0x00, 0x52, 0x1d, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, - 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x12, 0x66, 0x0a, 0x13, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x6f, - 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x10, 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, 0x65, 0x72, 0x76, 0x69, 0x63, - 0x65, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, - 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x11, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, - 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x0b, 0x0a, 0x09, 0x6f, 0x70, 0x65, - 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xb1, 0x49, 0x0a, 0x17, 0x4d, 0x75, 0x74, 0x61, 0x74, - 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, - 0x73, 0x65, 0x12, 0x77, 0x0a, 0x18, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, - 0x64, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x11, - 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, - 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, - 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, - 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x14, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, - 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x67, 0x0a, 0x12, 0x61, - 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, - 0x74, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, - 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x52, 0x65, 0x73, 0x75, 0x6c, - 0x74, 0x48, 0x00, 0x52, 0x0f, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x52, 0x65, - 0x73, 0x75, 0x6c, 0x74, 0x12, 0x70, 0x0a, 0x15, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, - 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 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, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, - 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, - 0x48, 0x00, 0x52, 0x12, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, - 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x83, 0x01, 0x0a, 0x1c, 0x61, 0x64, 0x5f, 0x67, 0x72, - 0x6f, 0x75, 0x70, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, - 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x02, 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, 0x36, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, - 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, - 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, - 0x48, 0x00, 0x52, 0x18, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69, 0x64, 0x4d, 0x6f, - 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x9b, 0x01, 0x0a, - 0x24, 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, 0x72, - 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x4d, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, - 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, - 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x20, 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, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x8c, 0x01, 0x0a, 0x1f, 0x61, - 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, - 0x6e, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x12, - 0x20, 0x01, 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, - 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, - 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4c, - 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x1b, 0x61, 0x64, - 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4c, 0x61, - 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x7c, 0x0a, 0x19, 0x61, 0x64, 0x5f, - 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, - 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x03, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, - 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, - 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, - 0x16, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, - 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x7f, 0x0a, 0x1a, 0x61, 0x64, 0x5f, 0x67, 0x72, - 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x72, - 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x4b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, - 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x75, 0x73, - 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, - 0x17, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, - 0x65, 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x92, 0x01, 0x0a, 0x21, 0x61, 0x64, 0x5f, - 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, - 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x13, - 0x20, 0x01, 0x28, 0x0b, 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, - 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, - 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, - 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x1d, - 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, - 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x6d, 0x0a, - 0x14, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x72, - 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x14, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, - 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, - 0x64, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x11, 0x61, 0x64, 0x47, 0x72, 0x6f, - 0x75, 0x70, 0x46, 0x65, 0x65, 0x64, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x70, 0x0a, 0x15, - 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x72, - 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x15, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, - 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4c, 0x61, 0x62, - 0x65, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x12, 0x61, 0x64, 0x47, 0x72, - 0x6f, 0x75, 0x70, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x60, - 0x0a, 0x0f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, - 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x36, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x65, 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, 0x52, 0x65, 0x73, 0x75, 0x6c, + 0x74, 0x48, 0x00, 0x52, 0x20, 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, 0x52, + 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x8c, 0x01, 0x0a, 0x1f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, + 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x61, 0x62, + 0x65, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x12, 0x20, 0x01, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, + 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, + 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x1b, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, + 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, + 0x73, 0x75, 0x6c, 0x74, 0x12, 0x7c, 0x0a, 0x19, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, + 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, + 0x74, 0x18, 0x03, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, - 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, - 0x00, 0x52, 0x0d, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, - 0x12, 0x6c, 0x0a, 0x13, 0x61, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, - 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x16, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, - 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, - 0x74, 0x65, 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x11, 0x61, 0x64, 0x50, - 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x50, - 0x0a, 0x09, 0x61, 0x64, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x31, 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, 0x73, 0x65, 0x72, - 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x52, 0x65, - 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x08, 0x61, 0x64, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, - 0x12, 0x59, 0x0a, 0x0c, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, - 0x18, 0x17, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, + 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x16, 0x61, 0x64, 0x47, 0x72, + 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x75, + 0x6c, 0x74, 0x12, 0x7f, 0x0a, 0x1a, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, + 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, + 0x18, 0x4b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, - 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x0b, - 0x61, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x79, 0x0a, 0x18, 0x61, - 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, - 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x41, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, - 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, - 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, - 0x15, 0x61, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, - 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0xa2, 0x01, 0x0a, 0x27, 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, 0x72, 0x65, 0x73, 0x75, - 0x6c, 0x74, 0x18, 0x4e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x4b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, + 0x65, 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x17, 0x61, 0x64, 0x47, 0x72, + 0x6f, 0x75, 0x70, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x52, 0x65, 0x73, + 0x75, 0x6c, 0x74, 0x12, 0x92, 0x01, 0x0a, 0x21, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, + 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, + 0x6e, 0x67, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x13, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, + 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, + 0x67, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x1d, 0x61, 0x64, 0x47, 0x72, 0x6f, + 0x75, 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, + 0x6e, 0x67, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x6d, 0x0a, 0x14, 0x61, 0x64, 0x5f, 0x67, + 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, + 0x18, 0x14, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 0x64, 0x52, 0x65, 0x73, 0x75, + 0x6c, 0x74, 0x48, 0x00, 0x52, 0x11, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, + 0x64, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x70, 0x0a, 0x15, 0x61, 0x64, 0x5f, 0x67, 0x72, + 0x6f, 0x75, 0x70, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, + 0x18, 0x15, 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, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, + 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x12, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4c, 0x61, + 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x60, 0x0a, 0x0f, 0x61, 0x64, 0x5f, + 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 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, 0x37, 0x2e, 0x73, 0x65, + 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, + 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x0d, 0x61, 0x64, + 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x6c, 0x0a, 0x13, 0x61, + 0x64, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x5f, 0x72, 0x65, 0x73, 0x75, + 0x6c, 0x74, 0x18, 0x16, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, - 0x61, 0x74, 0x65, 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, 0x52, - 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x22, 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, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x7c, 0x0a, 0x19, 0x61, - 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x69, 0x67, 0x6e, 0x61, - 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x4f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3f, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x61, 0x74, 0x65, 0x41, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x52, 0x65, + 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x11, 0x61, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, + 0x74, 0x65, 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x50, 0x0a, 0x09, 0x61, 0x64, 0x5f, + 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x31, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x64, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, + 0x00, 0x52, 0x08, 0x61, 0x64, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x59, 0x0a, 0x0c, 0x61, + 0x73, 0x73, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, + 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, + 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x0b, 0x61, 0x73, 0x73, 0x65, 0x74, + 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x79, 0x0a, 0x18, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, + 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, + 0x6c, 0x74, 0x18, 0x41, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, + 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x15, 0x61, 0x73, 0x73, 0x65, + 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, + 0x74, 0x12, 0xa2, 0x01, 0x0a, 0x27, 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, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x4e, 0x20, + 0x01, 0x28, 0x0b, 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, 0x73, + 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, + 0x48, 0x00, 0x52, 0x22, 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, + 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x7c, 0x0a, 0x19, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, + 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73, + 0x75, 0x6c, 0x74, 0x18, 0x4f, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69, + 0x67, 0x6e, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x16, 0x61, 0x73, + 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x52, 0x65, + 0x73, 0x75, 0x6c, 0x74, 0x12, 0x69, 0x0a, 0x12, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, + 0x6f, 0x75, 0x70, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x3e, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, + 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x10, 0x61, + 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, + 0x73, 0x0a, 0x16, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x61, 0x73, 0x73, + 0x65, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x47, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, + 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, + 0x13, 0x61, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, + 0x73, 0x75, 0x6c, 0x74, 0x12, 0x63, 0x0a, 0x10, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, + 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x48, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, - 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, - 0x6f, 0x75, 0x70, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, - 0x00, 0x52, 0x16, 0x61, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69, 0x67, - 0x6e, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x69, 0x0a, 0x12, 0x61, 0x73, 0x73, - 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, - 0x3e, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, + 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x0e, 0x61, 0x73, 0x73, 0x65, 0x74, + 0x53, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x62, 0x0a, 0x0f, 0x61, 0x75, 0x64, + 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x50, 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, 0x73, 0x65, + 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x75, 0x64, + 0x69, 0x65, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x0e, 0x61, + 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x89, 0x01, + 0x0a, 0x1d, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x65, + 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, + 0x3a, 0x20, 0x01, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, - 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, - 0x48, 0x00, 0x52, 0x10, 0x61, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, - 0x73, 0x75, 0x6c, 0x74, 0x12, 0x73, 0x0a, 0x16, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, - 0x74, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x47, - 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, - 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, - 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, - 0x6c, 0x74, 0x48, 0x00, 0x52, 0x13, 0x61, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, - 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x63, 0x0a, 0x10, 0x61, 0x73, 0x73, - 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x48, 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, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x41, 0x73, - 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x0e, - 0x61, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x62, - 0x0a, 0x0f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, - 0x74, 0x18, 0x50, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, - 0x74, 0x65, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, - 0x48, 0x00, 0x52, 0x0e, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x73, 0x75, - 0x6c, 0x74, 0x12, 0x89, 0x01, 0x0a, 0x1d, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x64, - 0x61, 0x74, 0x61, 0x5f, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, - 0x73, 0x75, 0x6c, 0x74, 0x18, 0x3a, 0x20, 0x01, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, - 0x75, 0x74, 0x61, 0x74, 0x65, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, - 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, - 0x48, 0x00, 0x52, 0x1a, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x45, - 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0xa1, - 0x01, 0x0a, 0x25, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x61, 0x73, 0x6f, - 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, - 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x3b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x4c, + 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x63, 0x6c, 0x75, + 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x1a, 0x62, + 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, + 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0xa1, 0x01, 0x0a, 0x25, 0x62, 0x69, + 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, + 0x79, 0x5f, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x72, 0x65, 0x73, + 0x75, 0x6c, 0x74, 0x18, 0x3b, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x74, 0x61, 0x74, 0x65, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x61, 0x73, 0x6f, + 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, + 0x73, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x22, 0x62, 0x69, 0x64, 0x64, 0x69, + 0x6e, 0x67, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x64, 0x6a, + 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x78, 0x0a, + 0x17, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, + 0x79, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x06, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, - 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x64, 0x6a, 0x75, 0x73, - 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x22, - 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, - 0x74, 0x79, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x75, - 0x6c, 0x74, 0x12, 0x78, 0x0a, 0x17, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, - 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x06, 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, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x42, 0x69, - 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x52, 0x65, 0x73, - 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x15, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, - 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x72, 0x0a, 0x15, - 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x72, - 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x34, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, - 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, - 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x13, 0x63, 0x61, 0x6d, - 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, - 0x12, 0x7c, 0x0a, 0x19, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x73, 0x73, - 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x49, 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, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, - 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x52, 0x65, - 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x16, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, - 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x85, - 0x01, 0x0a, 0x1c, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x69, 0x64, 0x5f, - 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, - 0x07, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, - 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, - 0x69, 0x65, 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x19, 0x63, 0x61, 0x6d, - 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, - 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x75, 0x0a, 0x16, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, - 0x67, 0x6e, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, - 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, + 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, + 0x52, 0x15, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, + 0x79, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x72, 0x0a, 0x15, 0x63, 0x61, 0x6d, 0x70, 0x61, + 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, + 0x18, 0x34, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, - 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x52, - 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x14, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, - 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x8e, 0x01, - 0x0a, 0x1f, 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, 0x72, 0x65, 0x73, 0x75, 0x6c, - 0x74, 0x18, 0x43, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, - 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, - 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, - 0x52, 0x1c, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, - 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x7e, - 0x0a, 0x19, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, - 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x0d, 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, 0x73, 0x65, 0x72, - 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, - 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, - 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x17, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, - 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x81, - 0x01, 0x0a, 0x1a, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x75, 0x73, 0x74, - 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x4c, 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, 0x36, 0x2e, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, - 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, - 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x18, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, - 0x67, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x52, 0x65, 0x73, 0x75, - 0x6c, 0x74, 0x12, 0x72, 0x0a, 0x15, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x64, - 0x72, 0x61, 0x66, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x18, 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, 0x73, 0x65, 0x72, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, + 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x13, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, + 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x7c, 0x0a, 0x19, 0x63, + 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, + 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x49, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, + 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, + 0x00, 0x52, 0x16, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, + 0x53, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x85, 0x01, 0x0a, 0x1c, 0x63, 0x61, + 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, + 0x69, 0x65, 0x72, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x07, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, + 0x69, 0x67, 0x6e, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x65, + 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x19, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, + 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, + 0x74, 0x12, 0x75, 0x0a, 0x16, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x75, + 0x64, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x08, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, - 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, - 0x00, 0x52, 0x13, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, - 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x94, 0x01, 0x0a, 0x21, 0x63, 0x61, 0x6d, 0x70, 0x61, - 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, - 0x74, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x1a, 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, 0x2e, 0x73, 0x65, + 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, + 0x48, 0x00, 0x52, 0x14, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, + 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x8e, 0x01, 0x0a, 0x1f, 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, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x43, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, - 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, - 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x1e, 0x63, - 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, - 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x6f, 0x0a, - 0x14, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x72, - 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x1b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, - 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, 0x65, - 0x65, 0x64, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x12, 0x63, 0x61, 0x6d, 0x70, - 0x61, 0x69, 0x67, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x72, - 0x0a, 0x15, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, - 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x09, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, - 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, - 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x13, 0x63, - 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x73, 0x75, - 0x6c, 0x74, 0x12, 0x72, 0x0a, 0x15, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x6c, - 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x1c, 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, 0x73, 0x65, 0x72, - 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, - 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, - 0x00, 0x52, 0x13, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, - 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x62, 0x0a, 0x0f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, - 0x67, 0x6e, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x0a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, - 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, - 0x67, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x0e, 0x63, 0x61, 0x6d, 0x70, - 0x61, 0x69, 0x67, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x7f, 0x0a, 0x1a, 0x63, 0x61, - 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, - 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x40, + 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, + 0x6f, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x1c, 0x63, 0x61, 0x6d, + 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, + 0x6f, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x7e, 0x0a, 0x19, 0x63, 0x61, 0x6d, + 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, + 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x0d, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, + 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, + 0x52, 0x17, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, + 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x81, 0x01, 0x0a, 0x1a, 0x63, 0x61, + 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, + 0x72, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x4c, 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, 0x36, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, - 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, - 0x48, 0x00, 0x52, 0x17, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61, 0x72, - 0x65, 0x64, 0x53, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x7b, 0x0a, 0x18, 0x63, - 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, - 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x0c, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, - 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, - 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, - 0x52, 0x16, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, - 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x94, 0x01, 0x0a, 0x21, 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, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x37, - 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, 0x2e, - 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, - 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56, - 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, - 0x1e, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, - 0x6d, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, - 0xa1, 0x01, 0x0a, 0x26, 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, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x45, 0x20, 0x01, 0x28, 0x0b, - 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, 0x65, 0x72, 0x76, - 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, - 0x22, 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, 0x52, 0x65, 0x73, - 0x75, 0x6c, 0x74, 0x12, 0x85, 0x01, 0x0a, 0x1c, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, - 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x72, 0x65, - 0x73, 0x75, 0x6c, 0x74, 0x18, 0x3f, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, - 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, - 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, - 0x52, 0x19, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, - 0x65, 0x52, 0x75, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x8f, 0x01, 0x0a, 0x20, - 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, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, - 0x18, 0x40, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, - 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, - 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, - 0x1c, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, - 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x88, 0x01, - 0x0a, 0x1d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, - 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, - 0x44, 0x20, 0x01, 0x28, 0x0b, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, - 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, - 0x47, 0x6f, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x1a, 0x63, 0x75, - 0x73, 0x74, 0x6f, 0x6d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, - 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x72, 0x0a, 0x15, 0x63, 0x75, 0x73, 0x74, - 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, - 0x74, 0x18, 0x39, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, - 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, - 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x13, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, - 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x8e, 0x01, 0x0a, - 0x1f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, - 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, - 0x18, 0x42, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, - 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, - 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, - 0x1c, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, - 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x81, 0x01, - 0x0a, 0x1a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, - 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x4a, 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, 0x36, 0x2e, 0x73, 0x65, - 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, - 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x52, - 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x18, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, - 0x72, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, - 0x74, 0x12, 0x94, 0x01, 0x0a, 0x21, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x65, + 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, + 0x74, 0x48, 0x00, 0x52, 0x18, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x72, 0x0a, + 0x15, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x64, 0x72, 0x61, 0x66, 0x74, 0x5f, + 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x18, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, + 0x72, 0x61, 0x66, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x13, 0x63, 0x61, + 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, + 0x74, 0x12, 0x94, 0x01, 0x0a, 0x21, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, - 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x47, 0x2e, + 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x1a, 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, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, - 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, - 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x1e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, - 0x65, 0x72, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, - 0x6e, 0x67, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x6f, 0x0a, 0x14, 0x63, 0x75, 0x73, 0x74, - 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, - 0x18, 0x1f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, + 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x1e, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, + 0x67, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, + 0x6e, 0x67, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x6f, 0x0a, 0x14, 0x63, 0x61, 0x6d, 0x70, + 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, + 0x18, 0x1b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, - 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, 0x52, 0x65, 0x73, - 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x12, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x46, - 0x65, 0x65, 0x64, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x72, 0x0a, 0x15, 0x63, 0x75, 0x73, - 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, - 0x6c, 0x74, 0x18, 0x20, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x52, 0x65, 0x73, + 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x12, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, + 0x65, 0x65, 0x64, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x72, 0x0a, 0x15, 0x63, 0x61, 0x6d, + 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x72, 0x65, 0x73, 0x75, + 0x6c, 0x74, 0x18, 0x09, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, - 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x61, 0x62, 0x65, 0x6c, - 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x13, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, - 0x65, 0x72, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x96, 0x01, - 0x0a, 0x22, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6e, 0x65, 0x67, 0x61, 0x74, - 0x69, 0x76, 0x65, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, - 0x73, 0x75, 0x6c, 0x74, 0x18, 0x22, 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, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, - 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4e, 0x65, 0x67, - 0x61, 0x74, 0x69, 0x76, 0x65, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x52, 0x65, 0x73, - 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x1f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4e, - 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, - 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x62, 0x0a, 0x0f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, - 0x65, 0x72, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x23, 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, 0x73, 0x65, 0x72, 0x76, 0x69, - 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, - 0x65, 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x0e, 0x63, 0x75, 0x73, 0x74, - 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x84, 0x01, 0x0a, 0x1b, 0x63, - 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, - 0x75, 0x74, 0x65, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x46, 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, 0x73, 0x65, 0x72, 0x76, - 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, - 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x52, 0x65, - 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x19, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, - 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, - 0x74, 0x12, 0x68, 0x0a, 0x11, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, - 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x51, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x67, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, + 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x13, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, + 0x67, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x72, 0x0a, + 0x15, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, + 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x1c, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, - 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, - 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x10, 0x65, 0x78, 0x70, 0x65, 0x72, - 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x72, 0x0a, 0x15, 0x65, - 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x72, 0x6d, 0x5f, 0x72, 0x65, - 0x73, 0x75, 0x6c, 0x74, 0x18, 0x52, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, - 0x75, 0x74, 0x61, 0x74, 0x65, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, - 0x72, 0x6d, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x13, 0x65, 0x78, 0x70, 0x65, - 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x72, 0x6d, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, - 0x7f, 0x0a, 0x1a, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x65, 0x65, - 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 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, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x45, 0x78, - 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x52, - 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x17, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, - 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, - 0x12, 0x63, 0x0a, 0x10, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x72, 0x65, - 0x73, 0x75, 0x6c, 0x74, 0x18, 0x25, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x6f, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, + 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x13, 0x63, 0x61, + 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, + 0x74, 0x12, 0x62, 0x0a, 0x0f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x72, 0x65, + 0x73, 0x75, 0x6c, 0x74, 0x18, 0x0a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, - 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x65, 0x73, - 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x0e, 0x66, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x52, - 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x6d, 0x0a, 0x14, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, - 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x35, 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, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, - 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, - 0x00, 0x52, 0x11, 0x66, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x52, 0x65, - 0x73, 0x75, 0x6c, 0x74, 0x12, 0x7a, 0x0a, 0x19, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, - 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, - 0x74, 0x18, 0x36, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, - 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, - 0x6b, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x15, 0x66, 0x65, 0x65, 0x64, 0x49, - 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, - 0x12, 0x76, 0x0a, 0x17, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x74, 0x61, - 0x72, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x26, 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, 0x73, 0x65, 0x72, - 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, - 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, - 0x48, 0x00, 0x52, 0x14, 0x66, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, - 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x6c, 0x0a, 0x13, 0x66, 0x65, 0x65, 0x64, - 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, - 0x27, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, - 0x46, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x75, 0x6c, - 0x74, 0x48, 0x00, 0x52, 0x11, 0x66, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, - 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x56, 0x0a, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x72, - 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x28, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x67, 0x6f, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x52, 0x65, 0x73, + 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x0e, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x52, + 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x7f, 0x0a, 0x1a, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, + 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x73, + 0x75, 0x6c, 0x74, 0x18, 0x0b, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61, 0x72, + 0x65, 0x64, 0x53, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x17, 0x63, + 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, + 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x7b, 0x0a, 0x18, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, + 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x73, 0x75, + 0x6c, 0x74, 0x18, 0x0c, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, + 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x16, 0x63, 0x6f, 0x6e, + 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, + 0x75, 0x6c, 0x74, 0x12, 0x94, 0x01, 0x0a, 0x21, 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, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x37, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, + 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, + 0x6c, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x1e, 0x63, 0x6f, 0x6e, 0x76, + 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56, 0x61, 0x72, 0x69, + 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0xa1, 0x01, 0x0a, 0x26, 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, 0x72, + 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x45, 0x20, 0x01, 0x28, 0x0b, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, - 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, - 0x48, 0x00, 0x52, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x83, - 0x01, 0x0a, 0x1c, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, - 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, - 0x2c, 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, 0x36, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x22, 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, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x85, + 0x01, 0x0a, 0x1c, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, + 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, + 0x3f, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, - 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, - 0x75, 0x70, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x18, 0x6b, 0x65, 0x79, 0x77, - 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, - 0x73, 0x75, 0x6c, 0x74, 0x12, 0x85, 0x01, 0x0a, 0x1c, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, - 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x72, - 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x2d, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, - 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, - 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, - 0x00, 0x52, 0x19, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61, - 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x99, 0x01, 0x0a, - 0x24, 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, 0x72, - 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x32, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x48, 0x2e, 0x67, 0x6f, + 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, + 0x75, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x19, 0x63, 0x6f, 0x6e, + 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, + 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x8f, 0x01, 0x0a, 0x20, 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, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x40, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, + 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x76, + 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, + 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x1c, 0x63, 0x6f, 0x6e, 0x76, + 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, + 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x88, 0x01, 0x0a, 0x1d, 0x63, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x67, + 0x6f, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x44, 0x20, 0x01, 0x28, 0x0b, + 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, + 0x6d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x52, + 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x1a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x43, + 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x52, 0x65, 0x73, + 0x75, 0x6c, 0x74, 0x12, 0x72, 0x0a, 0x15, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, + 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x39, 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, 0x37, 0x2e, 0x73, 0x65, + 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, + 0x48, 0x00, 0x52, 0x13, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, + 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x8e, 0x01, 0x0a, 0x1f, 0x63, 0x75, 0x73, 0x74, + 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, + 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x42, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, + 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, + 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, + 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x1c, 0x63, 0x75, 0x73, 0x74, + 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, + 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x81, 0x01, 0x0a, 0x1a, 0x63, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, + 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x4a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, + 0x48, 0x00, 0x52, 0x18, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x75, 0x73, 0x74, + 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x94, 0x01, 0x0a, + 0x21, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, + 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x72, 0x65, 0x73, 0x75, + 0x6c, 0x74, 0x18, 0x1e, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x45, 0x78, 0x74, 0x65, 0x6e, + 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x75, 0x6c, + 0x74, 0x48, 0x00, 0x52, 0x1e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x45, 0x78, 0x74, + 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, + 0x75, 0x6c, 0x74, 0x12, 0x6f, 0x0a, 0x14, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, + 0x66, 0x65, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x1f, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, + 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, + 0x6f, 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, + 0x52, 0x12, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, 0x52, 0x65, + 0x73, 0x75, 0x6c, 0x74, 0x12, 0x72, 0x0a, 0x15, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x20, 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, 0x37, 0x2e, 0x73, + 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, + 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, + 0x74, 0x48, 0x00, 0x52, 0x13, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x61, 0x62, + 0x65, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x96, 0x01, 0x0a, 0x22, 0x63, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, + 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, + 0x22, 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, 0x37, + 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, + 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, + 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, + 0x52, 0x1f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4e, 0x65, 0x67, 0x61, 0x74, 0x69, + 0x76, 0x65, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, + 0x74, 0x12, 0x62, 0x0a, 0x0f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x72, 0x65, + 0x73, 0x75, 0x6c, 0x74, 0x18, 0x23, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x65, 0x73, + 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x0e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, + 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x84, 0x01, 0x0a, 0x1b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x72, + 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x46, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, - 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, 0x52, - 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x1f, 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, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x9b, 0x01, 0x0a, 0x24, 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, 0x72, 0x65, 0x73, 0x75, 0x6c, - 0x74, 0x18, 0x33, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x49, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, + 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, + 0x00, 0x52, 0x19, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, + 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x68, 0x0a, 0x11, + 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, + 0x74, 0x18, 0x51, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, - 0x74, 0x65, 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, 0x52, 0x65, 0x73, 0x75, - 0x6c, 0x74, 0x48, 0x00, 0x52, 0x20, 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, - 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x6d, 0x0a, 0x13, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, - 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x30, 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, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4b, 0x65, - 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, - 0x48, 0x00, 0x52, 0x11, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x52, - 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x59, 0x0a, 0x0c, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x72, - 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x29, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, - 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, - 0x74, 0x48, 0x00, 0x52, 0x0b, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, - 0x12, 0x99, 0x01, 0x0a, 0x22, 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, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x55, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, - 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x20, 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, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x7e, 0x0a, 0x19, - 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x61, 0x63, 0x74, 0x69, - 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x2b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, - 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, - 0x65, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, - 0x74, 0x48, 0x00, 0x52, 0x17, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, - 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x78, 0x0a, 0x17, - 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, - 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x0e, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, - 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x43, 0x72, - 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, - 0x15, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, - 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x66, 0x0a, 0x11, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, - 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x0f, 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, 0x65, 0x72, - 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, - 0x65, 0x64, 0x53, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x0f, 0x73, - 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x88, - 0x01, 0x0a, 0x1d, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, - 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, - 0x18, 0x3d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x43, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x74, 0x65, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x75, + 0x6c, 0x74, 0x48, 0x00, 0x52, 0x10, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, + 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x72, 0x0a, 0x15, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, + 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x72, 0x6d, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, + 0x52, 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, 0x37, + 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, + 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x72, 0x6d, 0x52, 0x65, 0x73, + 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x13, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, + 0x74, 0x41, 0x72, 0x6d, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x7f, 0x0a, 0x1a, 0x65, 0x78, + 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, + 0x6d, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, + 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, + 0x48, 0x00, 0x52, 0x17, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, + 0x64, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x63, 0x0a, 0x10, 0x66, + 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, + 0x25, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, + 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, + 0x52, 0x0e, 0x66, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, + 0x12, 0x6d, 0x0a, 0x14, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, + 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x35, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, + 0x6d, 0x53, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x11, 0x66, 0x65, + 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, + 0x7a, 0x0a, 0x19, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x74, + 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x36, 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, 0x37, 0x2e, 0x73, 0x65, + 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, + 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x65, 0x73, 0x75, + 0x6c, 0x74, 0x48, 0x00, 0x52, 0x15, 0x66, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, + 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x76, 0x0a, 0x17, 0x66, + 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, + 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x26, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, + 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x14, 0x66, + 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x65, 0x73, + 0x75, 0x6c, 0x74, 0x12, 0x6c, 0x0a, 0x13, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6d, 0x61, 0x70, 0x70, + 0x69, 0x6e, 0x67, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x27, 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, 0x73, 0x65, 0x72, 0x76, + 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x4d, + 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x11, + 0x66, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x75, 0x6c, + 0x74, 0x12, 0x56, 0x0a, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, + 0x18, 0x28, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, - 0x65, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, - 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x1a, 0x73, - 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, - 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x63, 0x0a, 0x10, 0x75, 0x73, 0x65, - 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x10, 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, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x55, 0x73, - 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x0e, - 0x75, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x42, 0x0a, - 0x0a, 0x08, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x32, 0xf5, 0x05, 0x0a, 0x10, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, - 0xcf, 0x01, 0x0a, 0x06, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x12, 0x39, 0x2e, 0x67, 0x6f, 0x6f, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x65, 0x46, 0x65, 0x65, 0x64, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x0a, 0x66, + 0x65, 0x65, 0x64, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x83, 0x01, 0x0a, 0x1c, 0x6b, 0x65, + 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, + 0x6f, 0x75, 0x70, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x2c, 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, 0x73, 0x65, 0x72, 0x76, + 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, + 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x73, + 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x18, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, + 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, + 0x85, 0x01, 0x0a, 0x1c, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, + 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, + 0x18, 0x2d, 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, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70, + 0x61, 0x69, 0x67, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x19, 0x6b, 0x65, + 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, + 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x99, 0x01, 0x0a, 0x24, 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, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, + 0x18, 0x32, 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, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x65, 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, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, + 0x48, 0x00, 0x52, 0x1f, 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, 0x52, 0x65, 0x73, + 0x75, 0x6c, 0x74, 0x12, 0x9b, 0x01, 0x0a, 0x24, 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, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x33, 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, 0x37, 0x2e, 0x73, 0x65, + 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, + 0x20, 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, 0x52, 0x65, 0x73, 0x75, 0x6c, + 0x74, 0x12, 0x6d, 0x0a, 0x13, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, + 0x6e, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x30, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, + 0x50, 0x6c, 0x61, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x11, 0x6b, + 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, + 0x12, 0x59, 0x0a, 0x0c, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, + 0x18, 0x29, 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, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x0b, + 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x99, 0x01, 0x0a, 0x22, + 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, 0x72, 0x65, 0x73, 0x75, + 0x6c, 0x74, 0x18, 0x55, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x61, 0x74, 0x65, 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, 0x52, 0x65, 0x73, + 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x20, 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, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x7e, 0x0a, 0x19, 0x72, 0x65, 0x6d, 0x61, 0x72, + 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, + 0x73, 0x75, 0x6c, 0x74, 0x18, 0x2b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, - 0x65, 0x61, 0x72, 0x63, 0x68, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, - 0x65, 0x22, 0x4e, 0xda, 0x41, 0x11, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, - 0x64, 0x2c, 0x71, 0x75, 0x65, 0x72, 0x79, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x34, 0x3a, 0x01, 0x2a, - 0x22, 0x2f, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, - 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, - 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x73, 0x65, 0x61, 0x72, 0x63, - 0x68, 0x12, 0xe9, 0x01, 0x0a, 0x0c, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x53, 0x74, 0x72, 0x65, - 0x61, 0x6d, 0x12, 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, 0x73, 0x65, - 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x1a, 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, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x54, 0xda, 0x41, 0x11, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, - 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x71, 0x75, 0x65, 0x72, 0x79, 0x82, 0xd3, 0xe4, 0x93, 0x02, - 0x3a, 0x3a, 0x01, 0x2a, 0x22, 0x35, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, - 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, - 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x73, - 0x65, 0x61, 0x72, 0x63, 0x68, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x30, 0x01, 0x12, 0xdb, 0x01, - 0x0a, 0x06, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x12, 0x39, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x75, 0x74, 0x61, 0x74, 0x65, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, + 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x17, + 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x63, 0x74, 0x69, 0x6f, + 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x78, 0x0a, 0x17, 0x73, 0x68, 0x61, 0x72, 0x65, + 0x64, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x73, 0x75, + 0x6c, 0x74, 0x18, 0x0e, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, - 0x61, 0x74, 0x65, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x1a, 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, 0x73, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, + 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x15, 0x73, 0x68, 0x61, 0x72, + 0x65, 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, + 0x74, 0x12, 0x66, 0x0a, 0x11, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, 0x5f, + 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x0f, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, + 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x0f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, + 0x53, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x88, 0x01, 0x0a, 0x1d, 0x73, 0x6d, + 0x61, 0x72, 0x74, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x74, + 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x3d, 0x20, 0x01, 0x28, + 0x0b, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, + 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x53, 0x6d, 0x61, 0x72, + 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, + 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x1a, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x43, + 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x65, + 0x73, 0x75, 0x6c, 0x74, 0x12, 0x63, 0x0a, 0x10, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, + 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x10, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, + 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x0e, 0x75, 0x73, 0x65, 0x72, 0x4c, + 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x42, 0x0a, 0x0a, 0x08, 0x72, 0x65, 0x73, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x32, 0xf5, 0x05, 0x0a, 0x10, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x41, 0x64, 0x73, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xcf, 0x01, 0x0a, 0x06, 0x53, + 0x65, 0x61, 0x72, 0x63, 0x68, 0x12, 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, 0x37, + 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x1a, 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, 0x73, 0x65, 0x72, 0x76, + 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x65, 0x41, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x4e, 0xda, 0x41, + 0x11, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x71, 0x75, 0x65, + 0x72, 0x79, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x34, 0x3a, 0x01, 0x2a, 0x22, 0x2f, 0x2f, 0x76, 0x31, + 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x67, 0x6f, 0x6f, 0x67, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x12, 0xe9, 0x01, 0x0a, + 0x0c, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x73, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, + 0x73, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 0x73, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, + 0x64, 0x73, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x22, 0x54, 0xda, 0x41, 0x11, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, + 0x2c, 0x71, 0x75, 0x65, 0x72, 0x79, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3a, 0x3a, 0x01, 0x2a, 0x22, + 0x35, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, + 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, + 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x30, 0x01, 0x12, 0xdb, 0x01, 0x0a, 0x06, 0x4d, 0x75, 0x74, + 0x61, 0x74, 0x65, 0x12, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, - 0x5a, 0xda, 0x41, 0x1d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, - 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x34, 0x3a, 0x01, 0x2a, 0x22, 0x2f, 0x2f, 0x76, 0x31, 0x36, - 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, - 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, - 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0xd2, 0x41, 0x27, 0x68, 0x74, 0x74, 0x70, 0x73, - 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, - 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, - 0x64, 0x73, 0x42, 0x81, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x15, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, - 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, - 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, - 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, - 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, - 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, - 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, - 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, + 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5a, 0xda, 0x41, 0x1d, 0x63, + 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6d, 0x75, 0x74, 0x61, 0x74, + 0x65, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, + 0x02, 0x34, 0x3a, 0x01, 0x2a, 0x22, 0x2f, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, + 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, + 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, + 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, + 0x63, 0x6f, 0x6d, 0xd2, 0x41, 0x27, 0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x77, 0x77, + 0x77, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, + 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x81, 0x02, + 0x0a, 0x25, 0x63, 0x6f, 0x6d, 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, 0x73, + 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x15, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, + 0x64, 0x73, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, + 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, + 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, + 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, + 0x41, 0xaa, 0x02, 0x21, 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, 0x53, 0x65, 0x72, + 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_google_ads_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_google_ads_service_proto_rawDescData = file_google_ads_googleads_v16_services_google_ads_service_proto_rawDesc + file_google_ads_googleads_v17_services_google_ads_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_google_ads_service_proto_rawDescData = file_google_ads_googleads_v17_services_google_ads_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_google_ads_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_google_ads_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_google_ads_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_google_ads_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_google_ads_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_google_ads_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_google_ads_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_google_ads_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_google_ads_service_proto_rawDescData -} - -var file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes = make([]protoimpl.MessageInfo, 9) -var file_google_ads_googleads_v16_services_google_ads_service_proto_goTypes = []interface{}{ - (*SearchGoogleAdsRequest)(nil), // 0: google.ads.googleads.v16.services.SearchGoogleAdsRequest - (*SearchGoogleAdsResponse)(nil), // 1: google.ads.googleads.v16.services.SearchGoogleAdsResponse - (*SearchGoogleAdsStreamRequest)(nil), // 2: google.ads.googleads.v16.services.SearchGoogleAdsStreamRequest - (*SearchGoogleAdsStreamResponse)(nil), // 3: google.ads.googleads.v16.services.SearchGoogleAdsStreamResponse - (*GoogleAdsRow)(nil), // 4: google.ads.googleads.v16.services.GoogleAdsRow - (*MutateGoogleAdsRequest)(nil), // 5: google.ads.googleads.v16.services.MutateGoogleAdsRequest - (*MutateGoogleAdsResponse)(nil), // 6: google.ads.googleads.v16.services.MutateGoogleAdsResponse - (*MutateOperation)(nil), // 7: google.ads.googleads.v16.services.MutateOperation - (*MutateOperationResponse)(nil), // 8: google.ads.googleads.v16.services.MutateOperationResponse - (enums.SummaryRowSettingEnum_SummaryRowSetting)(0), // 9: google.ads.googleads.v16.enums.SummaryRowSettingEnum.SummaryRowSetting + return file_google_ads_googleads_v17_services_google_ads_service_proto_rawDescData +} + +var file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes = make([]protoimpl.MessageInfo, 9) +var file_google_ads_googleads_v17_services_google_ads_service_proto_goTypes = []interface{}{ + (*SearchGoogleAdsRequest)(nil), // 0: google.ads.googleads.v17.services.SearchGoogleAdsRequest + (*SearchGoogleAdsResponse)(nil), // 1: google.ads.googleads.v17.services.SearchGoogleAdsResponse + (*SearchGoogleAdsStreamRequest)(nil), // 2: google.ads.googleads.v17.services.SearchGoogleAdsStreamRequest + (*SearchGoogleAdsStreamResponse)(nil), // 3: google.ads.googleads.v17.services.SearchGoogleAdsStreamResponse + (*GoogleAdsRow)(nil), // 4: google.ads.googleads.v17.services.GoogleAdsRow + (*MutateGoogleAdsRequest)(nil), // 5: google.ads.googleads.v17.services.MutateGoogleAdsRequest + (*MutateGoogleAdsResponse)(nil), // 6: google.ads.googleads.v17.services.MutateGoogleAdsResponse + (*MutateOperation)(nil), // 7: google.ads.googleads.v17.services.MutateOperation + (*MutateOperationResponse)(nil), // 8: google.ads.googleads.v17.services.MutateOperationResponse + (enums.SummaryRowSettingEnum_SummaryRowSetting)(0), // 9: google.ads.googleads.v17.enums.SummaryRowSettingEnum.SummaryRowSetting (*fieldmaskpb.FieldMask)(nil), // 10: google.protobuf.FieldMask - (*resources.AccountBudget)(nil), // 11: google.ads.googleads.v16.resources.AccountBudget - (*resources.AccountBudgetProposal)(nil), // 12: google.ads.googleads.v16.resources.AccountBudgetProposal - (*resources.AccountLink)(nil), // 13: google.ads.googleads.v16.resources.AccountLink - (*resources.AdGroup)(nil), // 14: google.ads.googleads.v16.resources.AdGroup - (*resources.AdGroupAd)(nil), // 15: google.ads.googleads.v16.resources.AdGroupAd - (*resources.AdGroupAdAssetCombinationView)(nil), // 16: google.ads.googleads.v16.resources.AdGroupAdAssetCombinationView - (*resources.AdGroupAdAssetView)(nil), // 17: google.ads.googleads.v16.resources.AdGroupAdAssetView - (*resources.AdGroupAdLabel)(nil), // 18: google.ads.googleads.v16.resources.AdGroupAdLabel - (*resources.AdGroupAsset)(nil), // 19: google.ads.googleads.v16.resources.AdGroupAsset - (*resources.AdGroupAssetSet)(nil), // 20: google.ads.googleads.v16.resources.AdGroupAssetSet - (*resources.AdGroupAudienceView)(nil), // 21: google.ads.googleads.v16.resources.AdGroupAudienceView - (*resources.AdGroupBidModifier)(nil), // 22: google.ads.googleads.v16.resources.AdGroupBidModifier - (*resources.AdGroupCriterion)(nil), // 23: google.ads.googleads.v16.resources.AdGroupCriterion - (*resources.AdGroupCriterionCustomizer)(nil), // 24: google.ads.googleads.v16.resources.AdGroupCriterionCustomizer - (*resources.AdGroupCriterionLabel)(nil), // 25: google.ads.googleads.v16.resources.AdGroupCriterionLabel - (*resources.AdGroupCriterionSimulation)(nil), // 26: google.ads.googleads.v16.resources.AdGroupCriterionSimulation - (*resources.AdGroupCustomizer)(nil), // 27: google.ads.googleads.v16.resources.AdGroupCustomizer - (*resources.AdGroupExtensionSetting)(nil), // 28: google.ads.googleads.v16.resources.AdGroupExtensionSetting - (*resources.AdGroupFeed)(nil), // 29: google.ads.googleads.v16.resources.AdGroupFeed - (*resources.AdGroupLabel)(nil), // 30: google.ads.googleads.v16.resources.AdGroupLabel - (*resources.AdGroupSimulation)(nil), // 31: google.ads.googleads.v16.resources.AdGroupSimulation - (*resources.AdParameter)(nil), // 32: google.ads.googleads.v16.resources.AdParameter - (*resources.AgeRangeView)(nil), // 33: google.ads.googleads.v16.resources.AgeRangeView - (*resources.AdScheduleView)(nil), // 34: google.ads.googleads.v16.resources.AdScheduleView - (*resources.DomainCategory)(nil), // 35: google.ads.googleads.v16.resources.DomainCategory - (*resources.Asset)(nil), // 36: google.ads.googleads.v16.resources.Asset - (*resources.AssetFieldTypeView)(nil), // 37: google.ads.googleads.v16.resources.AssetFieldTypeView - (*resources.AssetGroupAsset)(nil), // 38: google.ads.googleads.v16.resources.AssetGroupAsset - (*resources.AssetGroupSignal)(nil), // 39: google.ads.googleads.v16.resources.AssetGroupSignal - (*resources.AssetGroupListingGroupFilter)(nil), // 40: google.ads.googleads.v16.resources.AssetGroupListingGroupFilter - (*resources.AssetGroupProductGroupView)(nil), // 41: google.ads.googleads.v16.resources.AssetGroupProductGroupView - (*resources.AssetGroupTopCombinationView)(nil), // 42: google.ads.googleads.v16.resources.AssetGroupTopCombinationView - (*resources.AssetGroup)(nil), // 43: google.ads.googleads.v16.resources.AssetGroup - (*resources.AssetSetAsset)(nil), // 44: google.ads.googleads.v16.resources.AssetSetAsset - (*resources.AssetSet)(nil), // 45: google.ads.googleads.v16.resources.AssetSet - (*resources.AssetSetTypeView)(nil), // 46: google.ads.googleads.v16.resources.AssetSetTypeView - (*resources.BatchJob)(nil), // 47: google.ads.googleads.v16.resources.BatchJob - (*resources.BiddingDataExclusion)(nil), // 48: google.ads.googleads.v16.resources.BiddingDataExclusion - (*resources.BiddingSeasonalityAdjustment)(nil), // 49: google.ads.googleads.v16.resources.BiddingSeasonalityAdjustment - (*resources.BiddingStrategy)(nil), // 50: google.ads.googleads.v16.resources.BiddingStrategy - (*resources.BiddingStrategySimulation)(nil), // 51: google.ads.googleads.v16.resources.BiddingStrategySimulation - (*resources.BillingSetup)(nil), // 52: google.ads.googleads.v16.resources.BillingSetup - (*resources.CallView)(nil), // 53: google.ads.googleads.v16.resources.CallView - (*resources.CampaignBudget)(nil), // 54: google.ads.googleads.v16.resources.CampaignBudget - (*resources.Campaign)(nil), // 55: google.ads.googleads.v16.resources.Campaign - (*resources.CampaignAsset)(nil), // 56: google.ads.googleads.v16.resources.CampaignAsset - (*resources.CampaignAssetSet)(nil), // 57: google.ads.googleads.v16.resources.CampaignAssetSet - (*resources.CampaignAudienceView)(nil), // 58: google.ads.googleads.v16.resources.CampaignAudienceView - (*resources.CampaignBidModifier)(nil), // 59: google.ads.googleads.v16.resources.CampaignBidModifier - (*resources.CampaignConversionGoal)(nil), // 60: google.ads.googleads.v16.resources.CampaignConversionGoal - (*resources.CampaignCriterion)(nil), // 61: google.ads.googleads.v16.resources.CampaignCriterion - (*resources.CampaignCustomizer)(nil), // 62: google.ads.googleads.v16.resources.CampaignCustomizer - (*resources.CampaignDraft)(nil), // 63: google.ads.googleads.v16.resources.CampaignDraft - (*resources.CampaignExtensionSetting)(nil), // 64: google.ads.googleads.v16.resources.CampaignExtensionSetting - (*resources.CampaignFeed)(nil), // 65: google.ads.googleads.v16.resources.CampaignFeed - (*resources.CampaignGroup)(nil), // 66: google.ads.googleads.v16.resources.CampaignGroup - (*resources.CampaignLabel)(nil), // 67: google.ads.googleads.v16.resources.CampaignLabel - (*resources.CampaignLifecycleGoal)(nil), // 68: google.ads.googleads.v16.resources.CampaignLifecycleGoal - (*resources.CampaignSearchTermInsight)(nil), // 69: google.ads.googleads.v16.resources.CampaignSearchTermInsight - (*resources.CampaignSharedSet)(nil), // 70: google.ads.googleads.v16.resources.CampaignSharedSet - (*resources.CampaignSimulation)(nil), // 71: google.ads.googleads.v16.resources.CampaignSimulation - (*resources.CarrierConstant)(nil), // 72: google.ads.googleads.v16.resources.CarrierConstant - (*resources.ChangeEvent)(nil), // 73: google.ads.googleads.v16.resources.ChangeEvent - (*resources.ChangeStatus)(nil), // 74: google.ads.googleads.v16.resources.ChangeStatus - (*resources.CombinedAudience)(nil), // 75: google.ads.googleads.v16.resources.CombinedAudience - (*resources.Audience)(nil), // 76: google.ads.googleads.v16.resources.Audience - (*resources.ConversionAction)(nil), // 77: google.ads.googleads.v16.resources.ConversionAction - (*resources.ConversionCustomVariable)(nil), // 78: google.ads.googleads.v16.resources.ConversionCustomVariable - (*resources.ConversionGoalCampaignConfig)(nil), // 79: google.ads.googleads.v16.resources.ConversionGoalCampaignConfig - (*resources.ConversionValueRule)(nil), // 80: google.ads.googleads.v16.resources.ConversionValueRule - (*resources.ConversionValueRuleSet)(nil), // 81: google.ads.googleads.v16.resources.ConversionValueRuleSet - (*resources.ClickView)(nil), // 82: google.ads.googleads.v16.resources.ClickView - (*resources.CurrencyConstant)(nil), // 83: google.ads.googleads.v16.resources.CurrencyConstant - (*resources.CustomAudience)(nil), // 84: google.ads.googleads.v16.resources.CustomAudience - (*resources.CustomConversionGoal)(nil), // 85: google.ads.googleads.v16.resources.CustomConversionGoal - (*resources.CustomInterest)(nil), // 86: google.ads.googleads.v16.resources.CustomInterest - (*resources.Customer)(nil), // 87: google.ads.googleads.v16.resources.Customer - (*resources.CustomerAsset)(nil), // 88: google.ads.googleads.v16.resources.CustomerAsset - (*resources.CustomerAssetSet)(nil), // 89: google.ads.googleads.v16.resources.CustomerAssetSet - (*resources.AccessibleBiddingStrategy)(nil), // 90: google.ads.googleads.v16.resources.AccessibleBiddingStrategy - (*resources.CustomerCustomizer)(nil), // 91: google.ads.googleads.v16.resources.CustomerCustomizer - (*resources.CustomerManagerLink)(nil), // 92: google.ads.googleads.v16.resources.CustomerManagerLink - (*resources.CustomerClientLink)(nil), // 93: google.ads.googleads.v16.resources.CustomerClientLink - (*resources.CustomerClient)(nil), // 94: google.ads.googleads.v16.resources.CustomerClient - (*resources.CustomerConversionGoal)(nil), // 95: google.ads.googleads.v16.resources.CustomerConversionGoal - (*resources.CustomerExtensionSetting)(nil), // 96: google.ads.googleads.v16.resources.CustomerExtensionSetting - (*resources.CustomerFeed)(nil), // 97: google.ads.googleads.v16.resources.CustomerFeed - (*resources.CustomerLabel)(nil), // 98: google.ads.googleads.v16.resources.CustomerLabel - (*resources.CustomerLifecycleGoal)(nil), // 99: google.ads.googleads.v16.resources.CustomerLifecycleGoal - (*resources.CustomerNegativeCriterion)(nil), // 100: google.ads.googleads.v16.resources.CustomerNegativeCriterion - (*resources.CustomerSearchTermInsight)(nil), // 101: google.ads.googleads.v16.resources.CustomerSearchTermInsight - (*resources.CustomerUserAccess)(nil), // 102: google.ads.googleads.v16.resources.CustomerUserAccess - (*resources.CustomerUserAccessInvitation)(nil), // 103: google.ads.googleads.v16.resources.CustomerUserAccessInvitation - (*resources.CustomizerAttribute)(nil), // 104: google.ads.googleads.v16.resources.CustomizerAttribute - (*resources.DetailPlacementView)(nil), // 105: google.ads.googleads.v16.resources.DetailPlacementView - (*resources.DetailedDemographic)(nil), // 106: google.ads.googleads.v16.resources.DetailedDemographic - (*resources.DisplayKeywordView)(nil), // 107: google.ads.googleads.v16.resources.DisplayKeywordView - (*resources.DistanceView)(nil), // 108: google.ads.googleads.v16.resources.DistanceView - (*resources.DynamicSearchAdsSearchTermView)(nil), // 109: google.ads.googleads.v16.resources.DynamicSearchAdsSearchTermView - (*resources.ExpandedLandingPageView)(nil), // 110: google.ads.googleads.v16.resources.ExpandedLandingPageView - (*resources.ExtensionFeedItem)(nil), // 111: google.ads.googleads.v16.resources.ExtensionFeedItem - (*resources.Feed)(nil), // 112: google.ads.googleads.v16.resources.Feed - (*resources.FeedItem)(nil), // 113: google.ads.googleads.v16.resources.FeedItem - (*resources.FeedItemSet)(nil), // 114: google.ads.googleads.v16.resources.FeedItemSet - (*resources.FeedItemSetLink)(nil), // 115: google.ads.googleads.v16.resources.FeedItemSetLink - (*resources.FeedItemTarget)(nil), // 116: google.ads.googleads.v16.resources.FeedItemTarget - (*resources.FeedMapping)(nil), // 117: google.ads.googleads.v16.resources.FeedMapping - (*resources.FeedPlaceholderView)(nil), // 118: google.ads.googleads.v16.resources.FeedPlaceholderView - (*resources.GenderView)(nil), // 119: google.ads.googleads.v16.resources.GenderView - (*resources.GeoTargetConstant)(nil), // 120: google.ads.googleads.v16.resources.GeoTargetConstant - (*resources.GeographicView)(nil), // 121: google.ads.googleads.v16.resources.GeographicView - (*resources.GroupPlacementView)(nil), // 122: google.ads.googleads.v16.resources.GroupPlacementView - (*resources.HotelGroupView)(nil), // 123: google.ads.googleads.v16.resources.HotelGroupView - (*resources.HotelPerformanceView)(nil), // 124: google.ads.googleads.v16.resources.HotelPerformanceView - (*resources.HotelReconciliation)(nil), // 125: google.ads.googleads.v16.resources.HotelReconciliation - (*resources.IncomeRangeView)(nil), // 126: google.ads.googleads.v16.resources.IncomeRangeView - (*resources.KeywordView)(nil), // 127: google.ads.googleads.v16.resources.KeywordView - (*resources.KeywordPlan)(nil), // 128: google.ads.googleads.v16.resources.KeywordPlan - (*resources.KeywordPlanCampaign)(nil), // 129: google.ads.googleads.v16.resources.KeywordPlanCampaign - (*resources.KeywordPlanCampaignKeyword)(nil), // 130: google.ads.googleads.v16.resources.KeywordPlanCampaignKeyword - (*resources.KeywordPlanAdGroup)(nil), // 131: google.ads.googleads.v16.resources.KeywordPlanAdGroup - (*resources.KeywordPlanAdGroupKeyword)(nil), // 132: google.ads.googleads.v16.resources.KeywordPlanAdGroupKeyword - (*resources.KeywordThemeConstant)(nil), // 133: google.ads.googleads.v16.resources.KeywordThemeConstant - (*resources.Label)(nil), // 134: google.ads.googleads.v16.resources.Label - (*resources.LandingPageView)(nil), // 135: google.ads.googleads.v16.resources.LandingPageView - (*resources.LanguageConstant)(nil), // 136: google.ads.googleads.v16.resources.LanguageConstant - (*resources.LocationView)(nil), // 137: google.ads.googleads.v16.resources.LocationView - (*resources.ManagedPlacementView)(nil), // 138: google.ads.googleads.v16.resources.ManagedPlacementView - (*resources.MediaFile)(nil), // 139: google.ads.googleads.v16.resources.MediaFile - (*resources.LocalServicesEmployee)(nil), // 140: google.ads.googleads.v16.resources.LocalServicesEmployee - (*resources.LocalServicesVerificationArtifact)(nil), // 141: google.ads.googleads.v16.resources.LocalServicesVerificationArtifact - (*resources.MobileAppCategoryConstant)(nil), // 142: google.ads.googleads.v16.resources.MobileAppCategoryConstant - (*resources.MobileDeviceConstant)(nil), // 143: google.ads.googleads.v16.resources.MobileDeviceConstant - (*resources.OfflineConversionUploadClientSummary)(nil), // 144: google.ads.googleads.v16.resources.OfflineConversionUploadClientSummary - (*resources.OfflineUserDataJob)(nil), // 145: google.ads.googleads.v16.resources.OfflineUserDataJob - (*resources.OperatingSystemVersionConstant)(nil), // 146: google.ads.googleads.v16.resources.OperatingSystemVersionConstant - (*resources.PaidOrganicSearchTermView)(nil), // 147: google.ads.googleads.v16.resources.PaidOrganicSearchTermView - (*resources.QualifyingQuestion)(nil), // 148: google.ads.googleads.v16.resources.QualifyingQuestion - (*resources.ParentalStatusView)(nil), // 149: google.ads.googleads.v16.resources.ParentalStatusView - (*resources.PerStoreView)(nil), // 150: google.ads.googleads.v16.resources.PerStoreView - (*resources.ProductCategoryConstant)(nil), // 151: google.ads.googleads.v16.resources.ProductCategoryConstant - (*resources.ProductGroupView)(nil), // 152: google.ads.googleads.v16.resources.ProductGroupView - (*resources.ProductLink)(nil), // 153: google.ads.googleads.v16.resources.ProductLink - (*resources.ProductLinkInvitation)(nil), // 154: google.ads.googleads.v16.resources.ProductLinkInvitation - (*resources.Recommendation)(nil), // 155: google.ads.googleads.v16.resources.Recommendation - (*resources.RecommendationSubscription)(nil), // 156: google.ads.googleads.v16.resources.RecommendationSubscription - (*resources.SearchTermView)(nil), // 157: google.ads.googleads.v16.resources.SearchTermView - (*resources.SharedCriterion)(nil), // 158: google.ads.googleads.v16.resources.SharedCriterion - (*resources.SharedSet)(nil), // 159: google.ads.googleads.v16.resources.SharedSet - (*resources.SmartCampaignSetting)(nil), // 160: google.ads.googleads.v16.resources.SmartCampaignSetting - (*resources.ShoppingPerformanceView)(nil), // 161: google.ads.googleads.v16.resources.ShoppingPerformanceView - (*resources.SmartCampaignSearchTermView)(nil), // 162: google.ads.googleads.v16.resources.SmartCampaignSearchTermView - (*resources.ThirdPartyAppAnalyticsLink)(nil), // 163: google.ads.googleads.v16.resources.ThirdPartyAppAnalyticsLink - (*resources.TopicView)(nil), // 164: google.ads.googleads.v16.resources.TopicView - (*resources.TravelActivityGroupView)(nil), // 165: google.ads.googleads.v16.resources.TravelActivityGroupView - (*resources.TravelActivityPerformanceView)(nil), // 166: google.ads.googleads.v16.resources.TravelActivityPerformanceView - (*resources.Experiment)(nil), // 167: google.ads.googleads.v16.resources.Experiment - (*resources.ExperimentArm)(nil), // 168: google.ads.googleads.v16.resources.ExperimentArm - (*resources.UserInterest)(nil), // 169: google.ads.googleads.v16.resources.UserInterest - (*resources.LifeEvent)(nil), // 170: google.ads.googleads.v16.resources.LifeEvent - (*resources.UserList)(nil), // 171: google.ads.googleads.v16.resources.UserList - (*resources.UserLocationView)(nil), // 172: google.ads.googleads.v16.resources.UserLocationView - (*resources.RemarketingAction)(nil), // 173: google.ads.googleads.v16.resources.RemarketingAction - (*resources.TopicConstant)(nil), // 174: google.ads.googleads.v16.resources.TopicConstant - (*resources.Video)(nil), // 175: google.ads.googleads.v16.resources.Video - (*resources.WebpageView)(nil), // 176: google.ads.googleads.v16.resources.WebpageView - (*resources.LeadFormSubmissionData)(nil), // 177: google.ads.googleads.v16.resources.LeadFormSubmissionData - (*resources.LocalServicesLead)(nil), // 178: google.ads.googleads.v16.resources.LocalServicesLead - (*resources.LocalServicesLeadConversation)(nil), // 179: google.ads.googleads.v16.resources.LocalServicesLeadConversation - (*resources.AndroidPrivacySharedKeyGoogleAdGroup)(nil), // 180: google.ads.googleads.v16.resources.AndroidPrivacySharedKeyGoogleAdGroup - (*resources.AndroidPrivacySharedKeyGoogleCampaign)(nil), // 181: google.ads.googleads.v16.resources.AndroidPrivacySharedKeyGoogleCampaign - (*resources.AndroidPrivacySharedKeyGoogleNetworkType)(nil), // 182: google.ads.googleads.v16.resources.AndroidPrivacySharedKeyGoogleNetworkType - (*common.Metrics)(nil), // 183: google.ads.googleads.v16.common.Metrics - (*common.Segments)(nil), // 184: google.ads.googleads.v16.common.Segments - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 185: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - (*status.Status)(nil), // 186: google.rpc.Status - (*AdGroupAdLabelOperation)(nil), // 187: google.ads.googleads.v16.services.AdGroupAdLabelOperation - (*AdGroupAdOperation)(nil), // 188: google.ads.googleads.v16.services.AdGroupAdOperation - (*AdGroupAssetOperation)(nil), // 189: google.ads.googleads.v16.services.AdGroupAssetOperation - (*AdGroupBidModifierOperation)(nil), // 190: google.ads.googleads.v16.services.AdGroupBidModifierOperation - (*AdGroupCriterionCustomizerOperation)(nil), // 191: google.ads.googleads.v16.services.AdGroupCriterionCustomizerOperation - (*AdGroupCriterionLabelOperation)(nil), // 192: google.ads.googleads.v16.services.AdGroupCriterionLabelOperation - (*AdGroupCriterionOperation)(nil), // 193: google.ads.googleads.v16.services.AdGroupCriterionOperation - (*AdGroupCustomizerOperation)(nil), // 194: google.ads.googleads.v16.services.AdGroupCustomizerOperation - (*AdGroupExtensionSettingOperation)(nil), // 195: google.ads.googleads.v16.services.AdGroupExtensionSettingOperation - (*AdGroupFeedOperation)(nil), // 196: google.ads.googleads.v16.services.AdGroupFeedOperation - (*AdGroupLabelOperation)(nil), // 197: google.ads.googleads.v16.services.AdGroupLabelOperation - (*AdGroupOperation)(nil), // 198: google.ads.googleads.v16.services.AdGroupOperation - (*AdOperation)(nil), // 199: google.ads.googleads.v16.services.AdOperation - (*AdParameterOperation)(nil), // 200: google.ads.googleads.v16.services.AdParameterOperation - (*AssetOperation)(nil), // 201: google.ads.googleads.v16.services.AssetOperation - (*AssetGroupAssetOperation)(nil), // 202: google.ads.googleads.v16.services.AssetGroupAssetOperation - (*AssetGroupListingGroupFilterOperation)(nil), // 203: google.ads.googleads.v16.services.AssetGroupListingGroupFilterOperation - (*AssetGroupSignalOperation)(nil), // 204: google.ads.googleads.v16.services.AssetGroupSignalOperation - (*AssetGroupOperation)(nil), // 205: google.ads.googleads.v16.services.AssetGroupOperation - (*AssetSetAssetOperation)(nil), // 206: google.ads.googleads.v16.services.AssetSetAssetOperation - (*AssetSetOperation)(nil), // 207: google.ads.googleads.v16.services.AssetSetOperation - (*AudienceOperation)(nil), // 208: google.ads.googleads.v16.services.AudienceOperation - (*BiddingDataExclusionOperation)(nil), // 209: google.ads.googleads.v16.services.BiddingDataExclusionOperation - (*BiddingSeasonalityAdjustmentOperation)(nil), // 210: google.ads.googleads.v16.services.BiddingSeasonalityAdjustmentOperation - (*BiddingStrategyOperation)(nil), // 211: google.ads.googleads.v16.services.BiddingStrategyOperation - (*CampaignAssetOperation)(nil), // 212: google.ads.googleads.v16.services.CampaignAssetOperation - (*CampaignAssetSetOperation)(nil), // 213: google.ads.googleads.v16.services.CampaignAssetSetOperation - (*CampaignBidModifierOperation)(nil), // 214: google.ads.googleads.v16.services.CampaignBidModifierOperation - (*CampaignBudgetOperation)(nil), // 215: google.ads.googleads.v16.services.CampaignBudgetOperation - (*CampaignConversionGoalOperation)(nil), // 216: google.ads.googleads.v16.services.CampaignConversionGoalOperation - (*CampaignCriterionOperation)(nil), // 217: google.ads.googleads.v16.services.CampaignCriterionOperation - (*CampaignCustomizerOperation)(nil), // 218: google.ads.googleads.v16.services.CampaignCustomizerOperation - (*CampaignDraftOperation)(nil), // 219: google.ads.googleads.v16.services.CampaignDraftOperation - (*CampaignExtensionSettingOperation)(nil), // 220: google.ads.googleads.v16.services.CampaignExtensionSettingOperation - (*CampaignFeedOperation)(nil), // 221: google.ads.googleads.v16.services.CampaignFeedOperation - (*CampaignGroupOperation)(nil), // 222: google.ads.googleads.v16.services.CampaignGroupOperation - (*CampaignLabelOperation)(nil), // 223: google.ads.googleads.v16.services.CampaignLabelOperation - (*CampaignOperation)(nil), // 224: google.ads.googleads.v16.services.CampaignOperation - (*CampaignSharedSetOperation)(nil), // 225: google.ads.googleads.v16.services.CampaignSharedSetOperation - (*ConversionActionOperation)(nil), // 226: google.ads.googleads.v16.services.ConversionActionOperation - (*ConversionCustomVariableOperation)(nil), // 227: google.ads.googleads.v16.services.ConversionCustomVariableOperation - (*ConversionGoalCampaignConfigOperation)(nil), // 228: google.ads.googleads.v16.services.ConversionGoalCampaignConfigOperation - (*ConversionValueRuleOperation)(nil), // 229: google.ads.googleads.v16.services.ConversionValueRuleOperation - (*ConversionValueRuleSetOperation)(nil), // 230: google.ads.googleads.v16.services.ConversionValueRuleSetOperation - (*CustomConversionGoalOperation)(nil), // 231: google.ads.googleads.v16.services.CustomConversionGoalOperation - (*CustomerAssetOperation)(nil), // 232: google.ads.googleads.v16.services.CustomerAssetOperation - (*CustomerConversionGoalOperation)(nil), // 233: google.ads.googleads.v16.services.CustomerConversionGoalOperation - (*CustomerCustomizerOperation)(nil), // 234: google.ads.googleads.v16.services.CustomerCustomizerOperation - (*CustomerExtensionSettingOperation)(nil), // 235: google.ads.googleads.v16.services.CustomerExtensionSettingOperation - (*CustomerFeedOperation)(nil), // 236: google.ads.googleads.v16.services.CustomerFeedOperation - (*CustomerLabelOperation)(nil), // 237: google.ads.googleads.v16.services.CustomerLabelOperation - (*CustomerNegativeCriterionOperation)(nil), // 238: google.ads.googleads.v16.services.CustomerNegativeCriterionOperation - (*CustomerOperation)(nil), // 239: google.ads.googleads.v16.services.CustomerOperation - (*CustomizerAttributeOperation)(nil), // 240: google.ads.googleads.v16.services.CustomizerAttributeOperation - (*ExperimentOperation)(nil), // 241: google.ads.googleads.v16.services.ExperimentOperation - (*ExperimentArmOperation)(nil), // 242: google.ads.googleads.v16.services.ExperimentArmOperation - (*ExtensionFeedItemOperation)(nil), // 243: google.ads.googleads.v16.services.ExtensionFeedItemOperation - (*FeedItemOperation)(nil), // 244: google.ads.googleads.v16.services.FeedItemOperation - (*FeedItemSetOperation)(nil), // 245: google.ads.googleads.v16.services.FeedItemSetOperation - (*FeedItemSetLinkOperation)(nil), // 246: google.ads.googleads.v16.services.FeedItemSetLinkOperation - (*FeedItemTargetOperation)(nil), // 247: google.ads.googleads.v16.services.FeedItemTargetOperation - (*FeedMappingOperation)(nil), // 248: google.ads.googleads.v16.services.FeedMappingOperation - (*FeedOperation)(nil), // 249: google.ads.googleads.v16.services.FeedOperation - (*KeywordPlanAdGroupOperation)(nil), // 250: google.ads.googleads.v16.services.KeywordPlanAdGroupOperation - (*KeywordPlanAdGroupKeywordOperation)(nil), // 251: google.ads.googleads.v16.services.KeywordPlanAdGroupKeywordOperation - (*KeywordPlanCampaignKeywordOperation)(nil), // 252: google.ads.googleads.v16.services.KeywordPlanCampaignKeywordOperation - (*KeywordPlanCampaignOperation)(nil), // 253: google.ads.googleads.v16.services.KeywordPlanCampaignOperation - (*KeywordPlanOperation)(nil), // 254: google.ads.googleads.v16.services.KeywordPlanOperation - (*LabelOperation)(nil), // 255: google.ads.googleads.v16.services.LabelOperation - (*RecommendationSubscriptionOperation)(nil), // 256: google.ads.googleads.v16.services.RecommendationSubscriptionOperation - (*RemarketingActionOperation)(nil), // 257: google.ads.googleads.v16.services.RemarketingActionOperation - (*SharedCriterionOperation)(nil), // 258: google.ads.googleads.v16.services.SharedCriterionOperation - (*SharedSetOperation)(nil), // 259: google.ads.googleads.v16.services.SharedSetOperation - (*SmartCampaignSettingOperation)(nil), // 260: google.ads.googleads.v16.services.SmartCampaignSettingOperation - (*UserListOperation)(nil), // 261: google.ads.googleads.v16.services.UserListOperation - (*MutateAdGroupAdLabelResult)(nil), // 262: google.ads.googleads.v16.services.MutateAdGroupAdLabelResult - (*MutateAdGroupAdResult)(nil), // 263: google.ads.googleads.v16.services.MutateAdGroupAdResult - (*MutateAdGroupAssetResult)(nil), // 264: google.ads.googleads.v16.services.MutateAdGroupAssetResult - (*MutateAdGroupBidModifierResult)(nil), // 265: google.ads.googleads.v16.services.MutateAdGroupBidModifierResult - (*MutateAdGroupCriterionCustomizerResult)(nil), // 266: google.ads.googleads.v16.services.MutateAdGroupCriterionCustomizerResult - (*MutateAdGroupCriterionLabelResult)(nil), // 267: google.ads.googleads.v16.services.MutateAdGroupCriterionLabelResult - (*MutateAdGroupCriterionResult)(nil), // 268: google.ads.googleads.v16.services.MutateAdGroupCriterionResult - (*MutateAdGroupCustomizerResult)(nil), // 269: google.ads.googleads.v16.services.MutateAdGroupCustomizerResult - (*MutateAdGroupExtensionSettingResult)(nil), // 270: google.ads.googleads.v16.services.MutateAdGroupExtensionSettingResult - (*MutateAdGroupFeedResult)(nil), // 271: google.ads.googleads.v16.services.MutateAdGroupFeedResult - (*MutateAdGroupLabelResult)(nil), // 272: google.ads.googleads.v16.services.MutateAdGroupLabelResult - (*MutateAdGroupResult)(nil), // 273: google.ads.googleads.v16.services.MutateAdGroupResult - (*MutateAdParameterResult)(nil), // 274: google.ads.googleads.v16.services.MutateAdParameterResult - (*MutateAdResult)(nil), // 275: google.ads.googleads.v16.services.MutateAdResult - (*MutateAssetResult)(nil), // 276: google.ads.googleads.v16.services.MutateAssetResult - (*MutateAssetGroupAssetResult)(nil), // 277: google.ads.googleads.v16.services.MutateAssetGroupAssetResult - (*MutateAssetGroupListingGroupFilterResult)(nil), // 278: google.ads.googleads.v16.services.MutateAssetGroupListingGroupFilterResult - (*MutateAssetGroupSignalResult)(nil), // 279: google.ads.googleads.v16.services.MutateAssetGroupSignalResult - (*MutateAssetGroupResult)(nil), // 280: google.ads.googleads.v16.services.MutateAssetGroupResult - (*MutateAssetSetAssetResult)(nil), // 281: google.ads.googleads.v16.services.MutateAssetSetAssetResult - (*MutateAssetSetResult)(nil), // 282: google.ads.googleads.v16.services.MutateAssetSetResult - (*MutateAudienceResult)(nil), // 283: google.ads.googleads.v16.services.MutateAudienceResult - (*MutateBiddingDataExclusionsResult)(nil), // 284: google.ads.googleads.v16.services.MutateBiddingDataExclusionsResult - (*MutateBiddingSeasonalityAdjustmentsResult)(nil), // 285: google.ads.googleads.v16.services.MutateBiddingSeasonalityAdjustmentsResult - (*MutateBiddingStrategyResult)(nil), // 286: google.ads.googleads.v16.services.MutateBiddingStrategyResult - (*MutateCampaignAssetResult)(nil), // 287: google.ads.googleads.v16.services.MutateCampaignAssetResult - (*MutateCampaignAssetSetResult)(nil), // 288: google.ads.googleads.v16.services.MutateCampaignAssetSetResult - (*MutateCampaignBidModifierResult)(nil), // 289: google.ads.googleads.v16.services.MutateCampaignBidModifierResult - (*MutateCampaignBudgetResult)(nil), // 290: google.ads.googleads.v16.services.MutateCampaignBudgetResult - (*MutateCampaignConversionGoalResult)(nil), // 291: google.ads.googleads.v16.services.MutateCampaignConversionGoalResult - (*MutateCampaignCriterionResult)(nil), // 292: google.ads.googleads.v16.services.MutateCampaignCriterionResult - (*MutateCampaignCustomizerResult)(nil), // 293: google.ads.googleads.v16.services.MutateCampaignCustomizerResult - (*MutateCampaignDraftResult)(nil), // 294: google.ads.googleads.v16.services.MutateCampaignDraftResult - (*MutateCampaignExtensionSettingResult)(nil), // 295: google.ads.googleads.v16.services.MutateCampaignExtensionSettingResult - (*MutateCampaignFeedResult)(nil), // 296: google.ads.googleads.v16.services.MutateCampaignFeedResult - (*MutateCampaignGroupResult)(nil), // 297: google.ads.googleads.v16.services.MutateCampaignGroupResult - (*MutateCampaignLabelResult)(nil), // 298: google.ads.googleads.v16.services.MutateCampaignLabelResult - (*MutateCampaignResult)(nil), // 299: google.ads.googleads.v16.services.MutateCampaignResult - (*MutateCampaignSharedSetResult)(nil), // 300: google.ads.googleads.v16.services.MutateCampaignSharedSetResult - (*MutateConversionActionResult)(nil), // 301: google.ads.googleads.v16.services.MutateConversionActionResult - (*MutateConversionCustomVariableResult)(nil), // 302: google.ads.googleads.v16.services.MutateConversionCustomVariableResult - (*MutateConversionGoalCampaignConfigResult)(nil), // 303: google.ads.googleads.v16.services.MutateConversionGoalCampaignConfigResult - (*MutateConversionValueRuleResult)(nil), // 304: google.ads.googleads.v16.services.MutateConversionValueRuleResult - (*MutateConversionValueRuleSetResult)(nil), // 305: google.ads.googleads.v16.services.MutateConversionValueRuleSetResult - (*MutateCustomConversionGoalResult)(nil), // 306: google.ads.googleads.v16.services.MutateCustomConversionGoalResult - (*MutateCustomerAssetResult)(nil), // 307: google.ads.googleads.v16.services.MutateCustomerAssetResult - (*MutateCustomerConversionGoalResult)(nil), // 308: google.ads.googleads.v16.services.MutateCustomerConversionGoalResult - (*MutateCustomerCustomizerResult)(nil), // 309: google.ads.googleads.v16.services.MutateCustomerCustomizerResult - (*MutateCustomerExtensionSettingResult)(nil), // 310: google.ads.googleads.v16.services.MutateCustomerExtensionSettingResult - (*MutateCustomerFeedResult)(nil), // 311: google.ads.googleads.v16.services.MutateCustomerFeedResult - (*MutateCustomerLabelResult)(nil), // 312: google.ads.googleads.v16.services.MutateCustomerLabelResult - (*MutateCustomerNegativeCriteriaResult)(nil), // 313: google.ads.googleads.v16.services.MutateCustomerNegativeCriteriaResult - (*MutateCustomerResult)(nil), // 314: google.ads.googleads.v16.services.MutateCustomerResult - (*MutateCustomizerAttributeResult)(nil), // 315: google.ads.googleads.v16.services.MutateCustomizerAttributeResult - (*MutateExperimentResult)(nil), // 316: google.ads.googleads.v16.services.MutateExperimentResult - (*MutateExperimentArmResult)(nil), // 317: google.ads.googleads.v16.services.MutateExperimentArmResult - (*MutateExtensionFeedItemResult)(nil), // 318: google.ads.googleads.v16.services.MutateExtensionFeedItemResult - (*MutateFeedItemResult)(nil), // 319: google.ads.googleads.v16.services.MutateFeedItemResult - (*MutateFeedItemSetResult)(nil), // 320: google.ads.googleads.v16.services.MutateFeedItemSetResult - (*MutateFeedItemSetLinkResult)(nil), // 321: google.ads.googleads.v16.services.MutateFeedItemSetLinkResult - (*MutateFeedItemTargetResult)(nil), // 322: google.ads.googleads.v16.services.MutateFeedItemTargetResult - (*MutateFeedMappingResult)(nil), // 323: google.ads.googleads.v16.services.MutateFeedMappingResult - (*MutateFeedResult)(nil), // 324: google.ads.googleads.v16.services.MutateFeedResult - (*MutateKeywordPlanAdGroupResult)(nil), // 325: google.ads.googleads.v16.services.MutateKeywordPlanAdGroupResult - (*MutateKeywordPlanCampaignResult)(nil), // 326: google.ads.googleads.v16.services.MutateKeywordPlanCampaignResult - (*MutateKeywordPlanAdGroupKeywordResult)(nil), // 327: google.ads.googleads.v16.services.MutateKeywordPlanAdGroupKeywordResult - (*MutateKeywordPlanCampaignKeywordResult)(nil), // 328: google.ads.googleads.v16.services.MutateKeywordPlanCampaignKeywordResult - (*MutateKeywordPlansResult)(nil), // 329: google.ads.googleads.v16.services.MutateKeywordPlansResult - (*MutateLabelResult)(nil), // 330: google.ads.googleads.v16.services.MutateLabelResult - (*MutateRecommendationSubscriptionResult)(nil), // 331: google.ads.googleads.v16.services.MutateRecommendationSubscriptionResult - (*MutateRemarketingActionResult)(nil), // 332: google.ads.googleads.v16.services.MutateRemarketingActionResult - (*MutateSharedCriterionResult)(nil), // 333: google.ads.googleads.v16.services.MutateSharedCriterionResult - (*MutateSharedSetResult)(nil), // 334: google.ads.googleads.v16.services.MutateSharedSetResult - (*MutateSmartCampaignSettingResult)(nil), // 335: google.ads.googleads.v16.services.MutateSmartCampaignSettingResult - (*MutateUserListResult)(nil), // 336: google.ads.googleads.v16.services.MutateUserListResult -} -var file_google_ads_googleads_v16_services_google_ads_service_proto_depIdxs = []int32{ - 9, // 0: google.ads.googleads.v16.services.SearchGoogleAdsRequest.summary_row_setting:type_name -> google.ads.googleads.v16.enums.SummaryRowSettingEnum.SummaryRowSetting - 4, // 1: google.ads.googleads.v16.services.SearchGoogleAdsResponse.results:type_name -> google.ads.googleads.v16.services.GoogleAdsRow - 10, // 2: google.ads.googleads.v16.services.SearchGoogleAdsResponse.field_mask:type_name -> google.protobuf.FieldMask - 4, // 3: google.ads.googleads.v16.services.SearchGoogleAdsResponse.summary_row:type_name -> google.ads.googleads.v16.services.GoogleAdsRow - 9, // 4: google.ads.googleads.v16.services.SearchGoogleAdsStreamRequest.summary_row_setting:type_name -> google.ads.googleads.v16.enums.SummaryRowSettingEnum.SummaryRowSetting - 4, // 5: google.ads.googleads.v16.services.SearchGoogleAdsStreamResponse.results:type_name -> google.ads.googleads.v16.services.GoogleAdsRow - 10, // 6: google.ads.googleads.v16.services.SearchGoogleAdsStreamResponse.field_mask:type_name -> google.protobuf.FieldMask - 4, // 7: google.ads.googleads.v16.services.SearchGoogleAdsStreamResponse.summary_row:type_name -> google.ads.googleads.v16.services.GoogleAdsRow - 11, // 8: google.ads.googleads.v16.services.GoogleAdsRow.account_budget:type_name -> google.ads.googleads.v16.resources.AccountBudget - 12, // 9: google.ads.googleads.v16.services.GoogleAdsRow.account_budget_proposal:type_name -> google.ads.googleads.v16.resources.AccountBudgetProposal - 13, // 10: google.ads.googleads.v16.services.GoogleAdsRow.account_link:type_name -> google.ads.googleads.v16.resources.AccountLink - 14, // 11: google.ads.googleads.v16.services.GoogleAdsRow.ad_group:type_name -> google.ads.googleads.v16.resources.AdGroup - 15, // 12: google.ads.googleads.v16.services.GoogleAdsRow.ad_group_ad:type_name -> google.ads.googleads.v16.resources.AdGroupAd - 16, // 13: google.ads.googleads.v16.services.GoogleAdsRow.ad_group_ad_asset_combination_view:type_name -> google.ads.googleads.v16.resources.AdGroupAdAssetCombinationView - 17, // 14: google.ads.googleads.v16.services.GoogleAdsRow.ad_group_ad_asset_view:type_name -> google.ads.googleads.v16.resources.AdGroupAdAssetView - 18, // 15: google.ads.googleads.v16.services.GoogleAdsRow.ad_group_ad_label:type_name -> google.ads.googleads.v16.resources.AdGroupAdLabel - 19, // 16: google.ads.googleads.v16.services.GoogleAdsRow.ad_group_asset:type_name -> google.ads.googleads.v16.resources.AdGroupAsset - 20, // 17: google.ads.googleads.v16.services.GoogleAdsRow.ad_group_asset_set:type_name -> google.ads.googleads.v16.resources.AdGroupAssetSet - 21, // 18: google.ads.googleads.v16.services.GoogleAdsRow.ad_group_audience_view:type_name -> google.ads.googleads.v16.resources.AdGroupAudienceView - 22, // 19: google.ads.googleads.v16.services.GoogleAdsRow.ad_group_bid_modifier:type_name -> google.ads.googleads.v16.resources.AdGroupBidModifier - 23, // 20: google.ads.googleads.v16.services.GoogleAdsRow.ad_group_criterion:type_name -> google.ads.googleads.v16.resources.AdGroupCriterion - 24, // 21: google.ads.googleads.v16.services.GoogleAdsRow.ad_group_criterion_customizer:type_name -> google.ads.googleads.v16.resources.AdGroupCriterionCustomizer - 25, // 22: google.ads.googleads.v16.services.GoogleAdsRow.ad_group_criterion_label:type_name -> google.ads.googleads.v16.resources.AdGroupCriterionLabel - 26, // 23: google.ads.googleads.v16.services.GoogleAdsRow.ad_group_criterion_simulation:type_name -> google.ads.googleads.v16.resources.AdGroupCriterionSimulation - 27, // 24: google.ads.googleads.v16.services.GoogleAdsRow.ad_group_customizer:type_name -> google.ads.googleads.v16.resources.AdGroupCustomizer - 28, // 25: google.ads.googleads.v16.services.GoogleAdsRow.ad_group_extension_setting:type_name -> google.ads.googleads.v16.resources.AdGroupExtensionSetting - 29, // 26: google.ads.googleads.v16.services.GoogleAdsRow.ad_group_feed:type_name -> google.ads.googleads.v16.resources.AdGroupFeed - 30, // 27: google.ads.googleads.v16.services.GoogleAdsRow.ad_group_label:type_name -> google.ads.googleads.v16.resources.AdGroupLabel - 31, // 28: google.ads.googleads.v16.services.GoogleAdsRow.ad_group_simulation:type_name -> google.ads.googleads.v16.resources.AdGroupSimulation - 32, // 29: google.ads.googleads.v16.services.GoogleAdsRow.ad_parameter:type_name -> google.ads.googleads.v16.resources.AdParameter - 33, // 30: google.ads.googleads.v16.services.GoogleAdsRow.age_range_view:type_name -> google.ads.googleads.v16.resources.AgeRangeView - 34, // 31: google.ads.googleads.v16.services.GoogleAdsRow.ad_schedule_view:type_name -> google.ads.googleads.v16.resources.AdScheduleView - 35, // 32: google.ads.googleads.v16.services.GoogleAdsRow.domain_category:type_name -> google.ads.googleads.v16.resources.DomainCategory - 36, // 33: google.ads.googleads.v16.services.GoogleAdsRow.asset:type_name -> google.ads.googleads.v16.resources.Asset - 37, // 34: google.ads.googleads.v16.services.GoogleAdsRow.asset_field_type_view:type_name -> google.ads.googleads.v16.resources.AssetFieldTypeView - 38, // 35: google.ads.googleads.v16.services.GoogleAdsRow.asset_group_asset:type_name -> google.ads.googleads.v16.resources.AssetGroupAsset - 39, // 36: google.ads.googleads.v16.services.GoogleAdsRow.asset_group_signal:type_name -> google.ads.googleads.v16.resources.AssetGroupSignal - 40, // 37: google.ads.googleads.v16.services.GoogleAdsRow.asset_group_listing_group_filter:type_name -> google.ads.googleads.v16.resources.AssetGroupListingGroupFilter - 41, // 38: google.ads.googleads.v16.services.GoogleAdsRow.asset_group_product_group_view:type_name -> google.ads.googleads.v16.resources.AssetGroupProductGroupView - 42, // 39: google.ads.googleads.v16.services.GoogleAdsRow.asset_group_top_combination_view:type_name -> google.ads.googleads.v16.resources.AssetGroupTopCombinationView - 43, // 40: google.ads.googleads.v16.services.GoogleAdsRow.asset_group:type_name -> google.ads.googleads.v16.resources.AssetGroup - 44, // 41: google.ads.googleads.v16.services.GoogleAdsRow.asset_set_asset:type_name -> google.ads.googleads.v16.resources.AssetSetAsset - 45, // 42: google.ads.googleads.v16.services.GoogleAdsRow.asset_set:type_name -> google.ads.googleads.v16.resources.AssetSet - 46, // 43: google.ads.googleads.v16.services.GoogleAdsRow.asset_set_type_view:type_name -> google.ads.googleads.v16.resources.AssetSetTypeView - 47, // 44: google.ads.googleads.v16.services.GoogleAdsRow.batch_job:type_name -> google.ads.googleads.v16.resources.BatchJob - 48, // 45: google.ads.googleads.v16.services.GoogleAdsRow.bidding_data_exclusion:type_name -> google.ads.googleads.v16.resources.BiddingDataExclusion - 49, // 46: google.ads.googleads.v16.services.GoogleAdsRow.bidding_seasonality_adjustment:type_name -> google.ads.googleads.v16.resources.BiddingSeasonalityAdjustment - 50, // 47: google.ads.googleads.v16.services.GoogleAdsRow.bidding_strategy:type_name -> google.ads.googleads.v16.resources.BiddingStrategy - 51, // 48: google.ads.googleads.v16.services.GoogleAdsRow.bidding_strategy_simulation:type_name -> google.ads.googleads.v16.resources.BiddingStrategySimulation - 52, // 49: google.ads.googleads.v16.services.GoogleAdsRow.billing_setup:type_name -> google.ads.googleads.v16.resources.BillingSetup - 53, // 50: google.ads.googleads.v16.services.GoogleAdsRow.call_view:type_name -> google.ads.googleads.v16.resources.CallView - 54, // 51: google.ads.googleads.v16.services.GoogleAdsRow.campaign_budget:type_name -> google.ads.googleads.v16.resources.CampaignBudget - 55, // 52: google.ads.googleads.v16.services.GoogleAdsRow.campaign:type_name -> google.ads.googleads.v16.resources.Campaign - 56, // 53: google.ads.googleads.v16.services.GoogleAdsRow.campaign_asset:type_name -> google.ads.googleads.v16.resources.CampaignAsset - 57, // 54: google.ads.googleads.v16.services.GoogleAdsRow.campaign_asset_set:type_name -> google.ads.googleads.v16.resources.CampaignAssetSet - 58, // 55: google.ads.googleads.v16.services.GoogleAdsRow.campaign_audience_view:type_name -> google.ads.googleads.v16.resources.CampaignAudienceView - 59, // 56: google.ads.googleads.v16.services.GoogleAdsRow.campaign_bid_modifier:type_name -> google.ads.googleads.v16.resources.CampaignBidModifier - 60, // 57: google.ads.googleads.v16.services.GoogleAdsRow.campaign_conversion_goal:type_name -> google.ads.googleads.v16.resources.CampaignConversionGoal - 61, // 58: google.ads.googleads.v16.services.GoogleAdsRow.campaign_criterion:type_name -> google.ads.googleads.v16.resources.CampaignCriterion - 62, // 59: google.ads.googleads.v16.services.GoogleAdsRow.campaign_customizer:type_name -> google.ads.googleads.v16.resources.CampaignCustomizer - 63, // 60: google.ads.googleads.v16.services.GoogleAdsRow.campaign_draft:type_name -> google.ads.googleads.v16.resources.CampaignDraft - 64, // 61: google.ads.googleads.v16.services.GoogleAdsRow.campaign_extension_setting:type_name -> google.ads.googleads.v16.resources.CampaignExtensionSetting - 65, // 62: google.ads.googleads.v16.services.GoogleAdsRow.campaign_feed:type_name -> google.ads.googleads.v16.resources.CampaignFeed - 66, // 63: google.ads.googleads.v16.services.GoogleAdsRow.campaign_group:type_name -> google.ads.googleads.v16.resources.CampaignGroup - 67, // 64: google.ads.googleads.v16.services.GoogleAdsRow.campaign_label:type_name -> google.ads.googleads.v16.resources.CampaignLabel - 68, // 65: google.ads.googleads.v16.services.GoogleAdsRow.campaign_lifecycle_goal:type_name -> google.ads.googleads.v16.resources.CampaignLifecycleGoal - 69, // 66: google.ads.googleads.v16.services.GoogleAdsRow.campaign_search_term_insight:type_name -> google.ads.googleads.v16.resources.CampaignSearchTermInsight - 70, // 67: google.ads.googleads.v16.services.GoogleAdsRow.campaign_shared_set:type_name -> google.ads.googleads.v16.resources.CampaignSharedSet - 71, // 68: google.ads.googleads.v16.services.GoogleAdsRow.campaign_simulation:type_name -> google.ads.googleads.v16.resources.CampaignSimulation - 72, // 69: google.ads.googleads.v16.services.GoogleAdsRow.carrier_constant:type_name -> google.ads.googleads.v16.resources.CarrierConstant - 73, // 70: google.ads.googleads.v16.services.GoogleAdsRow.change_event:type_name -> google.ads.googleads.v16.resources.ChangeEvent - 74, // 71: google.ads.googleads.v16.services.GoogleAdsRow.change_status:type_name -> google.ads.googleads.v16.resources.ChangeStatus - 75, // 72: google.ads.googleads.v16.services.GoogleAdsRow.combined_audience:type_name -> google.ads.googleads.v16.resources.CombinedAudience - 76, // 73: google.ads.googleads.v16.services.GoogleAdsRow.audience:type_name -> google.ads.googleads.v16.resources.Audience - 77, // 74: google.ads.googleads.v16.services.GoogleAdsRow.conversion_action:type_name -> google.ads.googleads.v16.resources.ConversionAction - 78, // 75: google.ads.googleads.v16.services.GoogleAdsRow.conversion_custom_variable:type_name -> google.ads.googleads.v16.resources.ConversionCustomVariable - 79, // 76: google.ads.googleads.v16.services.GoogleAdsRow.conversion_goal_campaign_config:type_name -> google.ads.googleads.v16.resources.ConversionGoalCampaignConfig - 80, // 77: google.ads.googleads.v16.services.GoogleAdsRow.conversion_value_rule:type_name -> google.ads.googleads.v16.resources.ConversionValueRule - 81, // 78: google.ads.googleads.v16.services.GoogleAdsRow.conversion_value_rule_set:type_name -> google.ads.googleads.v16.resources.ConversionValueRuleSet - 82, // 79: google.ads.googleads.v16.services.GoogleAdsRow.click_view:type_name -> google.ads.googleads.v16.resources.ClickView - 83, // 80: google.ads.googleads.v16.services.GoogleAdsRow.currency_constant:type_name -> google.ads.googleads.v16.resources.CurrencyConstant - 84, // 81: google.ads.googleads.v16.services.GoogleAdsRow.custom_audience:type_name -> google.ads.googleads.v16.resources.CustomAudience - 85, // 82: google.ads.googleads.v16.services.GoogleAdsRow.custom_conversion_goal:type_name -> google.ads.googleads.v16.resources.CustomConversionGoal - 86, // 83: google.ads.googleads.v16.services.GoogleAdsRow.custom_interest:type_name -> google.ads.googleads.v16.resources.CustomInterest - 87, // 84: google.ads.googleads.v16.services.GoogleAdsRow.customer:type_name -> google.ads.googleads.v16.resources.Customer - 88, // 85: google.ads.googleads.v16.services.GoogleAdsRow.customer_asset:type_name -> google.ads.googleads.v16.resources.CustomerAsset - 89, // 86: google.ads.googleads.v16.services.GoogleAdsRow.customer_asset_set:type_name -> google.ads.googleads.v16.resources.CustomerAssetSet - 90, // 87: google.ads.googleads.v16.services.GoogleAdsRow.accessible_bidding_strategy:type_name -> google.ads.googleads.v16.resources.AccessibleBiddingStrategy - 91, // 88: google.ads.googleads.v16.services.GoogleAdsRow.customer_customizer:type_name -> google.ads.googleads.v16.resources.CustomerCustomizer - 92, // 89: google.ads.googleads.v16.services.GoogleAdsRow.customer_manager_link:type_name -> google.ads.googleads.v16.resources.CustomerManagerLink - 93, // 90: google.ads.googleads.v16.services.GoogleAdsRow.customer_client_link:type_name -> google.ads.googleads.v16.resources.CustomerClientLink - 94, // 91: google.ads.googleads.v16.services.GoogleAdsRow.customer_client:type_name -> google.ads.googleads.v16.resources.CustomerClient - 95, // 92: google.ads.googleads.v16.services.GoogleAdsRow.customer_conversion_goal:type_name -> google.ads.googleads.v16.resources.CustomerConversionGoal - 96, // 93: google.ads.googleads.v16.services.GoogleAdsRow.customer_extension_setting:type_name -> google.ads.googleads.v16.resources.CustomerExtensionSetting - 97, // 94: google.ads.googleads.v16.services.GoogleAdsRow.customer_feed:type_name -> google.ads.googleads.v16.resources.CustomerFeed - 98, // 95: google.ads.googleads.v16.services.GoogleAdsRow.customer_label:type_name -> google.ads.googleads.v16.resources.CustomerLabel - 99, // 96: google.ads.googleads.v16.services.GoogleAdsRow.customer_lifecycle_goal:type_name -> google.ads.googleads.v16.resources.CustomerLifecycleGoal - 100, // 97: google.ads.googleads.v16.services.GoogleAdsRow.customer_negative_criterion:type_name -> google.ads.googleads.v16.resources.CustomerNegativeCriterion - 101, // 98: google.ads.googleads.v16.services.GoogleAdsRow.customer_search_term_insight:type_name -> google.ads.googleads.v16.resources.CustomerSearchTermInsight - 102, // 99: google.ads.googleads.v16.services.GoogleAdsRow.customer_user_access:type_name -> google.ads.googleads.v16.resources.CustomerUserAccess - 103, // 100: google.ads.googleads.v16.services.GoogleAdsRow.customer_user_access_invitation:type_name -> google.ads.googleads.v16.resources.CustomerUserAccessInvitation - 104, // 101: google.ads.googleads.v16.services.GoogleAdsRow.customizer_attribute:type_name -> google.ads.googleads.v16.resources.CustomizerAttribute - 105, // 102: google.ads.googleads.v16.services.GoogleAdsRow.detail_placement_view:type_name -> google.ads.googleads.v16.resources.DetailPlacementView - 106, // 103: google.ads.googleads.v16.services.GoogleAdsRow.detailed_demographic:type_name -> google.ads.googleads.v16.resources.DetailedDemographic - 107, // 104: google.ads.googleads.v16.services.GoogleAdsRow.display_keyword_view:type_name -> google.ads.googleads.v16.resources.DisplayKeywordView - 108, // 105: google.ads.googleads.v16.services.GoogleAdsRow.distance_view:type_name -> google.ads.googleads.v16.resources.DistanceView - 109, // 106: google.ads.googleads.v16.services.GoogleAdsRow.dynamic_search_ads_search_term_view:type_name -> google.ads.googleads.v16.resources.DynamicSearchAdsSearchTermView - 110, // 107: google.ads.googleads.v16.services.GoogleAdsRow.expanded_landing_page_view:type_name -> google.ads.googleads.v16.resources.ExpandedLandingPageView - 111, // 108: google.ads.googleads.v16.services.GoogleAdsRow.extension_feed_item:type_name -> google.ads.googleads.v16.resources.ExtensionFeedItem - 112, // 109: google.ads.googleads.v16.services.GoogleAdsRow.feed:type_name -> google.ads.googleads.v16.resources.Feed - 113, // 110: google.ads.googleads.v16.services.GoogleAdsRow.feed_item:type_name -> google.ads.googleads.v16.resources.FeedItem - 114, // 111: google.ads.googleads.v16.services.GoogleAdsRow.feed_item_set:type_name -> google.ads.googleads.v16.resources.FeedItemSet - 115, // 112: google.ads.googleads.v16.services.GoogleAdsRow.feed_item_set_link:type_name -> google.ads.googleads.v16.resources.FeedItemSetLink - 116, // 113: google.ads.googleads.v16.services.GoogleAdsRow.feed_item_target:type_name -> google.ads.googleads.v16.resources.FeedItemTarget - 117, // 114: google.ads.googleads.v16.services.GoogleAdsRow.feed_mapping:type_name -> google.ads.googleads.v16.resources.FeedMapping - 118, // 115: google.ads.googleads.v16.services.GoogleAdsRow.feed_placeholder_view:type_name -> google.ads.googleads.v16.resources.FeedPlaceholderView - 119, // 116: google.ads.googleads.v16.services.GoogleAdsRow.gender_view:type_name -> google.ads.googleads.v16.resources.GenderView - 120, // 117: google.ads.googleads.v16.services.GoogleAdsRow.geo_target_constant:type_name -> google.ads.googleads.v16.resources.GeoTargetConstant - 121, // 118: google.ads.googleads.v16.services.GoogleAdsRow.geographic_view:type_name -> google.ads.googleads.v16.resources.GeographicView - 122, // 119: google.ads.googleads.v16.services.GoogleAdsRow.group_placement_view:type_name -> google.ads.googleads.v16.resources.GroupPlacementView - 123, // 120: google.ads.googleads.v16.services.GoogleAdsRow.hotel_group_view:type_name -> google.ads.googleads.v16.resources.HotelGroupView - 124, // 121: google.ads.googleads.v16.services.GoogleAdsRow.hotel_performance_view:type_name -> google.ads.googleads.v16.resources.HotelPerformanceView - 125, // 122: google.ads.googleads.v16.services.GoogleAdsRow.hotel_reconciliation:type_name -> google.ads.googleads.v16.resources.HotelReconciliation - 126, // 123: google.ads.googleads.v16.services.GoogleAdsRow.income_range_view:type_name -> google.ads.googleads.v16.resources.IncomeRangeView - 127, // 124: google.ads.googleads.v16.services.GoogleAdsRow.keyword_view:type_name -> google.ads.googleads.v16.resources.KeywordView - 128, // 125: google.ads.googleads.v16.services.GoogleAdsRow.keyword_plan:type_name -> google.ads.googleads.v16.resources.KeywordPlan - 129, // 126: google.ads.googleads.v16.services.GoogleAdsRow.keyword_plan_campaign:type_name -> google.ads.googleads.v16.resources.KeywordPlanCampaign - 130, // 127: google.ads.googleads.v16.services.GoogleAdsRow.keyword_plan_campaign_keyword:type_name -> google.ads.googleads.v16.resources.KeywordPlanCampaignKeyword - 131, // 128: google.ads.googleads.v16.services.GoogleAdsRow.keyword_plan_ad_group:type_name -> google.ads.googleads.v16.resources.KeywordPlanAdGroup - 132, // 129: google.ads.googleads.v16.services.GoogleAdsRow.keyword_plan_ad_group_keyword:type_name -> google.ads.googleads.v16.resources.KeywordPlanAdGroupKeyword - 133, // 130: google.ads.googleads.v16.services.GoogleAdsRow.keyword_theme_constant:type_name -> google.ads.googleads.v16.resources.KeywordThemeConstant - 134, // 131: google.ads.googleads.v16.services.GoogleAdsRow.label:type_name -> google.ads.googleads.v16.resources.Label - 135, // 132: google.ads.googleads.v16.services.GoogleAdsRow.landing_page_view:type_name -> google.ads.googleads.v16.resources.LandingPageView - 136, // 133: google.ads.googleads.v16.services.GoogleAdsRow.language_constant:type_name -> google.ads.googleads.v16.resources.LanguageConstant - 137, // 134: google.ads.googleads.v16.services.GoogleAdsRow.location_view:type_name -> google.ads.googleads.v16.resources.LocationView - 138, // 135: google.ads.googleads.v16.services.GoogleAdsRow.managed_placement_view:type_name -> google.ads.googleads.v16.resources.ManagedPlacementView - 139, // 136: google.ads.googleads.v16.services.GoogleAdsRow.media_file:type_name -> google.ads.googleads.v16.resources.MediaFile - 140, // 137: google.ads.googleads.v16.services.GoogleAdsRow.local_services_employee:type_name -> google.ads.googleads.v16.resources.LocalServicesEmployee - 141, // 138: google.ads.googleads.v16.services.GoogleAdsRow.local_services_verification_artifact:type_name -> google.ads.googleads.v16.resources.LocalServicesVerificationArtifact - 142, // 139: google.ads.googleads.v16.services.GoogleAdsRow.mobile_app_category_constant:type_name -> google.ads.googleads.v16.resources.MobileAppCategoryConstant - 143, // 140: google.ads.googleads.v16.services.GoogleAdsRow.mobile_device_constant:type_name -> google.ads.googleads.v16.resources.MobileDeviceConstant - 144, // 141: google.ads.googleads.v16.services.GoogleAdsRow.offline_conversion_upload_client_summary:type_name -> google.ads.googleads.v16.resources.OfflineConversionUploadClientSummary - 145, // 142: google.ads.googleads.v16.services.GoogleAdsRow.offline_user_data_job:type_name -> google.ads.googleads.v16.resources.OfflineUserDataJob - 146, // 143: google.ads.googleads.v16.services.GoogleAdsRow.operating_system_version_constant:type_name -> google.ads.googleads.v16.resources.OperatingSystemVersionConstant - 147, // 144: google.ads.googleads.v16.services.GoogleAdsRow.paid_organic_search_term_view:type_name -> google.ads.googleads.v16.resources.PaidOrganicSearchTermView - 148, // 145: google.ads.googleads.v16.services.GoogleAdsRow.qualifying_question:type_name -> google.ads.googleads.v16.resources.QualifyingQuestion - 149, // 146: google.ads.googleads.v16.services.GoogleAdsRow.parental_status_view:type_name -> google.ads.googleads.v16.resources.ParentalStatusView - 150, // 147: google.ads.googleads.v16.services.GoogleAdsRow.per_store_view:type_name -> google.ads.googleads.v16.resources.PerStoreView - 151, // 148: google.ads.googleads.v16.services.GoogleAdsRow.product_category_constant:type_name -> google.ads.googleads.v16.resources.ProductCategoryConstant - 152, // 149: google.ads.googleads.v16.services.GoogleAdsRow.product_group_view:type_name -> google.ads.googleads.v16.resources.ProductGroupView - 153, // 150: google.ads.googleads.v16.services.GoogleAdsRow.product_link:type_name -> google.ads.googleads.v16.resources.ProductLink - 154, // 151: google.ads.googleads.v16.services.GoogleAdsRow.product_link_invitation:type_name -> google.ads.googleads.v16.resources.ProductLinkInvitation - 155, // 152: google.ads.googleads.v16.services.GoogleAdsRow.recommendation:type_name -> google.ads.googleads.v16.resources.Recommendation - 156, // 153: google.ads.googleads.v16.services.GoogleAdsRow.recommendation_subscription:type_name -> google.ads.googleads.v16.resources.RecommendationSubscription - 157, // 154: google.ads.googleads.v16.services.GoogleAdsRow.search_term_view:type_name -> google.ads.googleads.v16.resources.SearchTermView - 158, // 155: google.ads.googleads.v16.services.GoogleAdsRow.shared_criterion:type_name -> google.ads.googleads.v16.resources.SharedCriterion - 159, // 156: google.ads.googleads.v16.services.GoogleAdsRow.shared_set:type_name -> google.ads.googleads.v16.resources.SharedSet - 160, // 157: google.ads.googleads.v16.services.GoogleAdsRow.smart_campaign_setting:type_name -> google.ads.googleads.v16.resources.SmartCampaignSetting - 161, // 158: google.ads.googleads.v16.services.GoogleAdsRow.shopping_performance_view:type_name -> google.ads.googleads.v16.resources.ShoppingPerformanceView - 162, // 159: google.ads.googleads.v16.services.GoogleAdsRow.smart_campaign_search_term_view:type_name -> google.ads.googleads.v16.resources.SmartCampaignSearchTermView - 163, // 160: google.ads.googleads.v16.services.GoogleAdsRow.third_party_app_analytics_link:type_name -> google.ads.googleads.v16.resources.ThirdPartyAppAnalyticsLink - 164, // 161: google.ads.googleads.v16.services.GoogleAdsRow.topic_view:type_name -> google.ads.googleads.v16.resources.TopicView - 165, // 162: google.ads.googleads.v16.services.GoogleAdsRow.travel_activity_group_view:type_name -> google.ads.googleads.v16.resources.TravelActivityGroupView - 166, // 163: google.ads.googleads.v16.services.GoogleAdsRow.travel_activity_performance_view:type_name -> google.ads.googleads.v16.resources.TravelActivityPerformanceView - 167, // 164: google.ads.googleads.v16.services.GoogleAdsRow.experiment:type_name -> google.ads.googleads.v16.resources.Experiment - 168, // 165: google.ads.googleads.v16.services.GoogleAdsRow.experiment_arm:type_name -> google.ads.googleads.v16.resources.ExperimentArm - 169, // 166: google.ads.googleads.v16.services.GoogleAdsRow.user_interest:type_name -> google.ads.googleads.v16.resources.UserInterest - 170, // 167: google.ads.googleads.v16.services.GoogleAdsRow.life_event:type_name -> google.ads.googleads.v16.resources.LifeEvent - 171, // 168: google.ads.googleads.v16.services.GoogleAdsRow.user_list:type_name -> google.ads.googleads.v16.resources.UserList - 172, // 169: google.ads.googleads.v16.services.GoogleAdsRow.user_location_view:type_name -> google.ads.googleads.v16.resources.UserLocationView - 173, // 170: google.ads.googleads.v16.services.GoogleAdsRow.remarketing_action:type_name -> google.ads.googleads.v16.resources.RemarketingAction - 174, // 171: google.ads.googleads.v16.services.GoogleAdsRow.topic_constant:type_name -> google.ads.googleads.v16.resources.TopicConstant - 175, // 172: google.ads.googleads.v16.services.GoogleAdsRow.video:type_name -> google.ads.googleads.v16.resources.Video - 176, // 173: google.ads.googleads.v16.services.GoogleAdsRow.webpage_view:type_name -> google.ads.googleads.v16.resources.WebpageView - 177, // 174: google.ads.googleads.v16.services.GoogleAdsRow.lead_form_submission_data:type_name -> google.ads.googleads.v16.resources.LeadFormSubmissionData - 178, // 175: google.ads.googleads.v16.services.GoogleAdsRow.local_services_lead:type_name -> google.ads.googleads.v16.resources.LocalServicesLead - 179, // 176: google.ads.googleads.v16.services.GoogleAdsRow.local_services_lead_conversation:type_name -> google.ads.googleads.v16.resources.LocalServicesLeadConversation - 180, // 177: google.ads.googleads.v16.services.GoogleAdsRow.android_privacy_shared_key_google_ad_group:type_name -> google.ads.googleads.v16.resources.AndroidPrivacySharedKeyGoogleAdGroup - 181, // 178: google.ads.googleads.v16.services.GoogleAdsRow.android_privacy_shared_key_google_campaign:type_name -> google.ads.googleads.v16.resources.AndroidPrivacySharedKeyGoogleCampaign - 182, // 179: google.ads.googleads.v16.services.GoogleAdsRow.android_privacy_shared_key_google_network_type:type_name -> google.ads.googleads.v16.resources.AndroidPrivacySharedKeyGoogleNetworkType - 183, // 180: google.ads.googleads.v16.services.GoogleAdsRow.metrics:type_name -> google.ads.googleads.v16.common.Metrics - 184, // 181: google.ads.googleads.v16.services.GoogleAdsRow.segments:type_name -> google.ads.googleads.v16.common.Segments - 7, // 182: google.ads.googleads.v16.services.MutateGoogleAdsRequest.mutate_operations:type_name -> google.ads.googleads.v16.services.MutateOperation - 185, // 183: google.ads.googleads.v16.services.MutateGoogleAdsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 186, // 184: google.ads.googleads.v16.services.MutateGoogleAdsResponse.partial_failure_error:type_name -> google.rpc.Status - 8, // 185: google.ads.googleads.v16.services.MutateGoogleAdsResponse.mutate_operation_responses:type_name -> google.ads.googleads.v16.services.MutateOperationResponse - 187, // 186: google.ads.googleads.v16.services.MutateOperation.ad_group_ad_label_operation:type_name -> google.ads.googleads.v16.services.AdGroupAdLabelOperation - 188, // 187: google.ads.googleads.v16.services.MutateOperation.ad_group_ad_operation:type_name -> google.ads.googleads.v16.services.AdGroupAdOperation - 189, // 188: google.ads.googleads.v16.services.MutateOperation.ad_group_asset_operation:type_name -> google.ads.googleads.v16.services.AdGroupAssetOperation - 190, // 189: google.ads.googleads.v16.services.MutateOperation.ad_group_bid_modifier_operation:type_name -> google.ads.googleads.v16.services.AdGroupBidModifierOperation - 191, // 190: google.ads.googleads.v16.services.MutateOperation.ad_group_criterion_customizer_operation:type_name -> google.ads.googleads.v16.services.AdGroupCriterionCustomizerOperation - 192, // 191: google.ads.googleads.v16.services.MutateOperation.ad_group_criterion_label_operation:type_name -> google.ads.googleads.v16.services.AdGroupCriterionLabelOperation - 193, // 192: google.ads.googleads.v16.services.MutateOperation.ad_group_criterion_operation:type_name -> google.ads.googleads.v16.services.AdGroupCriterionOperation - 194, // 193: google.ads.googleads.v16.services.MutateOperation.ad_group_customizer_operation:type_name -> google.ads.googleads.v16.services.AdGroupCustomizerOperation - 195, // 194: google.ads.googleads.v16.services.MutateOperation.ad_group_extension_setting_operation:type_name -> google.ads.googleads.v16.services.AdGroupExtensionSettingOperation - 196, // 195: google.ads.googleads.v16.services.MutateOperation.ad_group_feed_operation:type_name -> google.ads.googleads.v16.services.AdGroupFeedOperation - 197, // 196: google.ads.googleads.v16.services.MutateOperation.ad_group_label_operation:type_name -> google.ads.googleads.v16.services.AdGroupLabelOperation - 198, // 197: google.ads.googleads.v16.services.MutateOperation.ad_group_operation:type_name -> google.ads.googleads.v16.services.AdGroupOperation - 199, // 198: google.ads.googleads.v16.services.MutateOperation.ad_operation:type_name -> google.ads.googleads.v16.services.AdOperation - 200, // 199: google.ads.googleads.v16.services.MutateOperation.ad_parameter_operation:type_name -> google.ads.googleads.v16.services.AdParameterOperation - 201, // 200: google.ads.googleads.v16.services.MutateOperation.asset_operation:type_name -> google.ads.googleads.v16.services.AssetOperation - 202, // 201: google.ads.googleads.v16.services.MutateOperation.asset_group_asset_operation:type_name -> google.ads.googleads.v16.services.AssetGroupAssetOperation - 203, // 202: google.ads.googleads.v16.services.MutateOperation.asset_group_listing_group_filter_operation:type_name -> google.ads.googleads.v16.services.AssetGroupListingGroupFilterOperation - 204, // 203: google.ads.googleads.v16.services.MutateOperation.asset_group_signal_operation:type_name -> google.ads.googleads.v16.services.AssetGroupSignalOperation - 205, // 204: google.ads.googleads.v16.services.MutateOperation.asset_group_operation:type_name -> google.ads.googleads.v16.services.AssetGroupOperation - 206, // 205: google.ads.googleads.v16.services.MutateOperation.asset_set_asset_operation:type_name -> google.ads.googleads.v16.services.AssetSetAssetOperation - 207, // 206: google.ads.googleads.v16.services.MutateOperation.asset_set_operation:type_name -> google.ads.googleads.v16.services.AssetSetOperation - 208, // 207: google.ads.googleads.v16.services.MutateOperation.audience_operation:type_name -> google.ads.googleads.v16.services.AudienceOperation - 209, // 208: google.ads.googleads.v16.services.MutateOperation.bidding_data_exclusion_operation:type_name -> google.ads.googleads.v16.services.BiddingDataExclusionOperation - 210, // 209: google.ads.googleads.v16.services.MutateOperation.bidding_seasonality_adjustment_operation:type_name -> google.ads.googleads.v16.services.BiddingSeasonalityAdjustmentOperation - 211, // 210: google.ads.googleads.v16.services.MutateOperation.bidding_strategy_operation:type_name -> google.ads.googleads.v16.services.BiddingStrategyOperation - 212, // 211: google.ads.googleads.v16.services.MutateOperation.campaign_asset_operation:type_name -> google.ads.googleads.v16.services.CampaignAssetOperation - 213, // 212: google.ads.googleads.v16.services.MutateOperation.campaign_asset_set_operation:type_name -> google.ads.googleads.v16.services.CampaignAssetSetOperation - 214, // 213: google.ads.googleads.v16.services.MutateOperation.campaign_bid_modifier_operation:type_name -> google.ads.googleads.v16.services.CampaignBidModifierOperation - 215, // 214: google.ads.googleads.v16.services.MutateOperation.campaign_budget_operation:type_name -> google.ads.googleads.v16.services.CampaignBudgetOperation - 216, // 215: google.ads.googleads.v16.services.MutateOperation.campaign_conversion_goal_operation:type_name -> google.ads.googleads.v16.services.CampaignConversionGoalOperation - 217, // 216: google.ads.googleads.v16.services.MutateOperation.campaign_criterion_operation:type_name -> google.ads.googleads.v16.services.CampaignCriterionOperation - 218, // 217: google.ads.googleads.v16.services.MutateOperation.campaign_customizer_operation:type_name -> google.ads.googleads.v16.services.CampaignCustomizerOperation - 219, // 218: google.ads.googleads.v16.services.MutateOperation.campaign_draft_operation:type_name -> google.ads.googleads.v16.services.CampaignDraftOperation - 220, // 219: google.ads.googleads.v16.services.MutateOperation.campaign_extension_setting_operation:type_name -> google.ads.googleads.v16.services.CampaignExtensionSettingOperation - 221, // 220: google.ads.googleads.v16.services.MutateOperation.campaign_feed_operation:type_name -> google.ads.googleads.v16.services.CampaignFeedOperation - 222, // 221: google.ads.googleads.v16.services.MutateOperation.campaign_group_operation:type_name -> google.ads.googleads.v16.services.CampaignGroupOperation - 223, // 222: google.ads.googleads.v16.services.MutateOperation.campaign_label_operation:type_name -> google.ads.googleads.v16.services.CampaignLabelOperation - 224, // 223: google.ads.googleads.v16.services.MutateOperation.campaign_operation:type_name -> google.ads.googleads.v16.services.CampaignOperation - 225, // 224: google.ads.googleads.v16.services.MutateOperation.campaign_shared_set_operation:type_name -> google.ads.googleads.v16.services.CampaignSharedSetOperation - 226, // 225: google.ads.googleads.v16.services.MutateOperation.conversion_action_operation:type_name -> google.ads.googleads.v16.services.ConversionActionOperation - 227, // 226: google.ads.googleads.v16.services.MutateOperation.conversion_custom_variable_operation:type_name -> google.ads.googleads.v16.services.ConversionCustomVariableOperation - 228, // 227: google.ads.googleads.v16.services.MutateOperation.conversion_goal_campaign_config_operation:type_name -> google.ads.googleads.v16.services.ConversionGoalCampaignConfigOperation - 229, // 228: google.ads.googleads.v16.services.MutateOperation.conversion_value_rule_operation:type_name -> google.ads.googleads.v16.services.ConversionValueRuleOperation - 230, // 229: google.ads.googleads.v16.services.MutateOperation.conversion_value_rule_set_operation:type_name -> google.ads.googleads.v16.services.ConversionValueRuleSetOperation - 231, // 230: google.ads.googleads.v16.services.MutateOperation.custom_conversion_goal_operation:type_name -> google.ads.googleads.v16.services.CustomConversionGoalOperation - 232, // 231: google.ads.googleads.v16.services.MutateOperation.customer_asset_operation:type_name -> google.ads.googleads.v16.services.CustomerAssetOperation - 233, // 232: google.ads.googleads.v16.services.MutateOperation.customer_conversion_goal_operation:type_name -> google.ads.googleads.v16.services.CustomerConversionGoalOperation - 234, // 233: google.ads.googleads.v16.services.MutateOperation.customer_customizer_operation:type_name -> google.ads.googleads.v16.services.CustomerCustomizerOperation - 235, // 234: google.ads.googleads.v16.services.MutateOperation.customer_extension_setting_operation:type_name -> google.ads.googleads.v16.services.CustomerExtensionSettingOperation - 236, // 235: google.ads.googleads.v16.services.MutateOperation.customer_feed_operation:type_name -> google.ads.googleads.v16.services.CustomerFeedOperation - 237, // 236: google.ads.googleads.v16.services.MutateOperation.customer_label_operation:type_name -> google.ads.googleads.v16.services.CustomerLabelOperation - 238, // 237: google.ads.googleads.v16.services.MutateOperation.customer_negative_criterion_operation:type_name -> google.ads.googleads.v16.services.CustomerNegativeCriterionOperation - 239, // 238: google.ads.googleads.v16.services.MutateOperation.customer_operation:type_name -> google.ads.googleads.v16.services.CustomerOperation - 240, // 239: google.ads.googleads.v16.services.MutateOperation.customizer_attribute_operation:type_name -> google.ads.googleads.v16.services.CustomizerAttributeOperation - 241, // 240: google.ads.googleads.v16.services.MutateOperation.experiment_operation:type_name -> google.ads.googleads.v16.services.ExperimentOperation - 242, // 241: google.ads.googleads.v16.services.MutateOperation.experiment_arm_operation:type_name -> google.ads.googleads.v16.services.ExperimentArmOperation - 243, // 242: google.ads.googleads.v16.services.MutateOperation.extension_feed_item_operation:type_name -> google.ads.googleads.v16.services.ExtensionFeedItemOperation - 244, // 243: google.ads.googleads.v16.services.MutateOperation.feed_item_operation:type_name -> google.ads.googleads.v16.services.FeedItemOperation - 245, // 244: google.ads.googleads.v16.services.MutateOperation.feed_item_set_operation:type_name -> google.ads.googleads.v16.services.FeedItemSetOperation - 246, // 245: google.ads.googleads.v16.services.MutateOperation.feed_item_set_link_operation:type_name -> google.ads.googleads.v16.services.FeedItemSetLinkOperation - 247, // 246: google.ads.googleads.v16.services.MutateOperation.feed_item_target_operation:type_name -> google.ads.googleads.v16.services.FeedItemTargetOperation - 248, // 247: google.ads.googleads.v16.services.MutateOperation.feed_mapping_operation:type_name -> google.ads.googleads.v16.services.FeedMappingOperation - 249, // 248: google.ads.googleads.v16.services.MutateOperation.feed_operation:type_name -> google.ads.googleads.v16.services.FeedOperation - 250, // 249: google.ads.googleads.v16.services.MutateOperation.keyword_plan_ad_group_operation:type_name -> google.ads.googleads.v16.services.KeywordPlanAdGroupOperation - 251, // 250: google.ads.googleads.v16.services.MutateOperation.keyword_plan_ad_group_keyword_operation:type_name -> google.ads.googleads.v16.services.KeywordPlanAdGroupKeywordOperation - 252, // 251: google.ads.googleads.v16.services.MutateOperation.keyword_plan_campaign_keyword_operation:type_name -> google.ads.googleads.v16.services.KeywordPlanCampaignKeywordOperation - 253, // 252: google.ads.googleads.v16.services.MutateOperation.keyword_plan_campaign_operation:type_name -> google.ads.googleads.v16.services.KeywordPlanCampaignOperation - 254, // 253: google.ads.googleads.v16.services.MutateOperation.keyword_plan_operation:type_name -> google.ads.googleads.v16.services.KeywordPlanOperation - 255, // 254: google.ads.googleads.v16.services.MutateOperation.label_operation:type_name -> google.ads.googleads.v16.services.LabelOperation - 256, // 255: google.ads.googleads.v16.services.MutateOperation.recommendation_subscription_operation:type_name -> google.ads.googleads.v16.services.RecommendationSubscriptionOperation - 257, // 256: google.ads.googleads.v16.services.MutateOperation.remarketing_action_operation:type_name -> google.ads.googleads.v16.services.RemarketingActionOperation - 258, // 257: google.ads.googleads.v16.services.MutateOperation.shared_criterion_operation:type_name -> google.ads.googleads.v16.services.SharedCriterionOperation - 259, // 258: google.ads.googleads.v16.services.MutateOperation.shared_set_operation:type_name -> google.ads.googleads.v16.services.SharedSetOperation - 260, // 259: google.ads.googleads.v16.services.MutateOperation.smart_campaign_setting_operation:type_name -> google.ads.googleads.v16.services.SmartCampaignSettingOperation - 261, // 260: google.ads.googleads.v16.services.MutateOperation.user_list_operation:type_name -> google.ads.googleads.v16.services.UserListOperation - 262, // 261: google.ads.googleads.v16.services.MutateOperationResponse.ad_group_ad_label_result:type_name -> google.ads.googleads.v16.services.MutateAdGroupAdLabelResult - 263, // 262: google.ads.googleads.v16.services.MutateOperationResponse.ad_group_ad_result:type_name -> google.ads.googleads.v16.services.MutateAdGroupAdResult - 264, // 263: google.ads.googleads.v16.services.MutateOperationResponse.ad_group_asset_result:type_name -> google.ads.googleads.v16.services.MutateAdGroupAssetResult - 265, // 264: google.ads.googleads.v16.services.MutateOperationResponse.ad_group_bid_modifier_result:type_name -> google.ads.googleads.v16.services.MutateAdGroupBidModifierResult - 266, // 265: google.ads.googleads.v16.services.MutateOperationResponse.ad_group_criterion_customizer_result:type_name -> google.ads.googleads.v16.services.MutateAdGroupCriterionCustomizerResult - 267, // 266: google.ads.googleads.v16.services.MutateOperationResponse.ad_group_criterion_label_result:type_name -> google.ads.googleads.v16.services.MutateAdGroupCriterionLabelResult - 268, // 267: google.ads.googleads.v16.services.MutateOperationResponse.ad_group_criterion_result:type_name -> google.ads.googleads.v16.services.MutateAdGroupCriterionResult - 269, // 268: google.ads.googleads.v16.services.MutateOperationResponse.ad_group_customizer_result:type_name -> google.ads.googleads.v16.services.MutateAdGroupCustomizerResult - 270, // 269: google.ads.googleads.v16.services.MutateOperationResponse.ad_group_extension_setting_result:type_name -> google.ads.googleads.v16.services.MutateAdGroupExtensionSettingResult - 271, // 270: google.ads.googleads.v16.services.MutateOperationResponse.ad_group_feed_result:type_name -> google.ads.googleads.v16.services.MutateAdGroupFeedResult - 272, // 271: google.ads.googleads.v16.services.MutateOperationResponse.ad_group_label_result:type_name -> google.ads.googleads.v16.services.MutateAdGroupLabelResult - 273, // 272: google.ads.googleads.v16.services.MutateOperationResponse.ad_group_result:type_name -> google.ads.googleads.v16.services.MutateAdGroupResult - 274, // 273: google.ads.googleads.v16.services.MutateOperationResponse.ad_parameter_result:type_name -> google.ads.googleads.v16.services.MutateAdParameterResult - 275, // 274: google.ads.googleads.v16.services.MutateOperationResponse.ad_result:type_name -> google.ads.googleads.v16.services.MutateAdResult - 276, // 275: google.ads.googleads.v16.services.MutateOperationResponse.asset_result:type_name -> google.ads.googleads.v16.services.MutateAssetResult - 277, // 276: google.ads.googleads.v16.services.MutateOperationResponse.asset_group_asset_result:type_name -> google.ads.googleads.v16.services.MutateAssetGroupAssetResult - 278, // 277: google.ads.googleads.v16.services.MutateOperationResponse.asset_group_listing_group_filter_result:type_name -> google.ads.googleads.v16.services.MutateAssetGroupListingGroupFilterResult - 279, // 278: google.ads.googleads.v16.services.MutateOperationResponse.asset_group_signal_result:type_name -> google.ads.googleads.v16.services.MutateAssetGroupSignalResult - 280, // 279: google.ads.googleads.v16.services.MutateOperationResponse.asset_group_result:type_name -> google.ads.googleads.v16.services.MutateAssetGroupResult - 281, // 280: google.ads.googleads.v16.services.MutateOperationResponse.asset_set_asset_result:type_name -> google.ads.googleads.v16.services.MutateAssetSetAssetResult - 282, // 281: google.ads.googleads.v16.services.MutateOperationResponse.asset_set_result:type_name -> google.ads.googleads.v16.services.MutateAssetSetResult - 283, // 282: google.ads.googleads.v16.services.MutateOperationResponse.audience_result:type_name -> google.ads.googleads.v16.services.MutateAudienceResult - 284, // 283: google.ads.googleads.v16.services.MutateOperationResponse.bidding_data_exclusion_result:type_name -> google.ads.googleads.v16.services.MutateBiddingDataExclusionsResult - 285, // 284: google.ads.googleads.v16.services.MutateOperationResponse.bidding_seasonality_adjustment_result:type_name -> google.ads.googleads.v16.services.MutateBiddingSeasonalityAdjustmentsResult - 286, // 285: google.ads.googleads.v16.services.MutateOperationResponse.bidding_strategy_result:type_name -> google.ads.googleads.v16.services.MutateBiddingStrategyResult - 287, // 286: google.ads.googleads.v16.services.MutateOperationResponse.campaign_asset_result:type_name -> google.ads.googleads.v16.services.MutateCampaignAssetResult - 288, // 287: google.ads.googleads.v16.services.MutateOperationResponse.campaign_asset_set_result:type_name -> google.ads.googleads.v16.services.MutateCampaignAssetSetResult - 289, // 288: google.ads.googleads.v16.services.MutateOperationResponse.campaign_bid_modifier_result:type_name -> google.ads.googleads.v16.services.MutateCampaignBidModifierResult - 290, // 289: google.ads.googleads.v16.services.MutateOperationResponse.campaign_budget_result:type_name -> google.ads.googleads.v16.services.MutateCampaignBudgetResult - 291, // 290: google.ads.googleads.v16.services.MutateOperationResponse.campaign_conversion_goal_result:type_name -> google.ads.googleads.v16.services.MutateCampaignConversionGoalResult - 292, // 291: google.ads.googleads.v16.services.MutateOperationResponse.campaign_criterion_result:type_name -> google.ads.googleads.v16.services.MutateCampaignCriterionResult - 293, // 292: google.ads.googleads.v16.services.MutateOperationResponse.campaign_customizer_result:type_name -> google.ads.googleads.v16.services.MutateCampaignCustomizerResult - 294, // 293: google.ads.googleads.v16.services.MutateOperationResponse.campaign_draft_result:type_name -> google.ads.googleads.v16.services.MutateCampaignDraftResult - 295, // 294: google.ads.googleads.v16.services.MutateOperationResponse.campaign_extension_setting_result:type_name -> google.ads.googleads.v16.services.MutateCampaignExtensionSettingResult - 296, // 295: google.ads.googleads.v16.services.MutateOperationResponse.campaign_feed_result:type_name -> google.ads.googleads.v16.services.MutateCampaignFeedResult - 297, // 296: google.ads.googleads.v16.services.MutateOperationResponse.campaign_group_result:type_name -> google.ads.googleads.v16.services.MutateCampaignGroupResult - 298, // 297: google.ads.googleads.v16.services.MutateOperationResponse.campaign_label_result:type_name -> google.ads.googleads.v16.services.MutateCampaignLabelResult - 299, // 298: google.ads.googleads.v16.services.MutateOperationResponse.campaign_result:type_name -> google.ads.googleads.v16.services.MutateCampaignResult - 300, // 299: google.ads.googleads.v16.services.MutateOperationResponse.campaign_shared_set_result:type_name -> google.ads.googleads.v16.services.MutateCampaignSharedSetResult - 301, // 300: google.ads.googleads.v16.services.MutateOperationResponse.conversion_action_result:type_name -> google.ads.googleads.v16.services.MutateConversionActionResult - 302, // 301: google.ads.googleads.v16.services.MutateOperationResponse.conversion_custom_variable_result:type_name -> google.ads.googleads.v16.services.MutateConversionCustomVariableResult - 303, // 302: google.ads.googleads.v16.services.MutateOperationResponse.conversion_goal_campaign_config_result:type_name -> google.ads.googleads.v16.services.MutateConversionGoalCampaignConfigResult - 304, // 303: google.ads.googleads.v16.services.MutateOperationResponse.conversion_value_rule_result:type_name -> google.ads.googleads.v16.services.MutateConversionValueRuleResult - 305, // 304: google.ads.googleads.v16.services.MutateOperationResponse.conversion_value_rule_set_result:type_name -> google.ads.googleads.v16.services.MutateConversionValueRuleSetResult - 306, // 305: google.ads.googleads.v16.services.MutateOperationResponse.custom_conversion_goal_result:type_name -> google.ads.googleads.v16.services.MutateCustomConversionGoalResult - 307, // 306: google.ads.googleads.v16.services.MutateOperationResponse.customer_asset_result:type_name -> google.ads.googleads.v16.services.MutateCustomerAssetResult - 308, // 307: google.ads.googleads.v16.services.MutateOperationResponse.customer_conversion_goal_result:type_name -> google.ads.googleads.v16.services.MutateCustomerConversionGoalResult - 309, // 308: google.ads.googleads.v16.services.MutateOperationResponse.customer_customizer_result:type_name -> google.ads.googleads.v16.services.MutateCustomerCustomizerResult - 310, // 309: google.ads.googleads.v16.services.MutateOperationResponse.customer_extension_setting_result:type_name -> google.ads.googleads.v16.services.MutateCustomerExtensionSettingResult - 311, // 310: google.ads.googleads.v16.services.MutateOperationResponse.customer_feed_result:type_name -> google.ads.googleads.v16.services.MutateCustomerFeedResult - 312, // 311: google.ads.googleads.v16.services.MutateOperationResponse.customer_label_result:type_name -> google.ads.googleads.v16.services.MutateCustomerLabelResult - 313, // 312: google.ads.googleads.v16.services.MutateOperationResponse.customer_negative_criterion_result:type_name -> google.ads.googleads.v16.services.MutateCustomerNegativeCriteriaResult - 314, // 313: google.ads.googleads.v16.services.MutateOperationResponse.customer_result:type_name -> google.ads.googleads.v16.services.MutateCustomerResult - 315, // 314: google.ads.googleads.v16.services.MutateOperationResponse.customizer_attribute_result:type_name -> google.ads.googleads.v16.services.MutateCustomizerAttributeResult - 316, // 315: google.ads.googleads.v16.services.MutateOperationResponse.experiment_result:type_name -> google.ads.googleads.v16.services.MutateExperimentResult - 317, // 316: google.ads.googleads.v16.services.MutateOperationResponse.experiment_arm_result:type_name -> google.ads.googleads.v16.services.MutateExperimentArmResult - 318, // 317: google.ads.googleads.v16.services.MutateOperationResponse.extension_feed_item_result:type_name -> google.ads.googleads.v16.services.MutateExtensionFeedItemResult - 319, // 318: google.ads.googleads.v16.services.MutateOperationResponse.feed_item_result:type_name -> google.ads.googleads.v16.services.MutateFeedItemResult - 320, // 319: google.ads.googleads.v16.services.MutateOperationResponse.feed_item_set_result:type_name -> google.ads.googleads.v16.services.MutateFeedItemSetResult - 321, // 320: google.ads.googleads.v16.services.MutateOperationResponse.feed_item_set_link_result:type_name -> google.ads.googleads.v16.services.MutateFeedItemSetLinkResult - 322, // 321: google.ads.googleads.v16.services.MutateOperationResponse.feed_item_target_result:type_name -> google.ads.googleads.v16.services.MutateFeedItemTargetResult - 323, // 322: google.ads.googleads.v16.services.MutateOperationResponse.feed_mapping_result:type_name -> google.ads.googleads.v16.services.MutateFeedMappingResult - 324, // 323: google.ads.googleads.v16.services.MutateOperationResponse.feed_result:type_name -> google.ads.googleads.v16.services.MutateFeedResult - 325, // 324: google.ads.googleads.v16.services.MutateOperationResponse.keyword_plan_ad_group_result:type_name -> google.ads.googleads.v16.services.MutateKeywordPlanAdGroupResult - 326, // 325: google.ads.googleads.v16.services.MutateOperationResponse.keyword_plan_campaign_result:type_name -> google.ads.googleads.v16.services.MutateKeywordPlanCampaignResult - 327, // 326: google.ads.googleads.v16.services.MutateOperationResponse.keyword_plan_ad_group_keyword_result:type_name -> google.ads.googleads.v16.services.MutateKeywordPlanAdGroupKeywordResult - 328, // 327: google.ads.googleads.v16.services.MutateOperationResponse.keyword_plan_campaign_keyword_result:type_name -> google.ads.googleads.v16.services.MutateKeywordPlanCampaignKeywordResult - 329, // 328: google.ads.googleads.v16.services.MutateOperationResponse.keyword_plan_result:type_name -> google.ads.googleads.v16.services.MutateKeywordPlansResult - 330, // 329: google.ads.googleads.v16.services.MutateOperationResponse.label_result:type_name -> google.ads.googleads.v16.services.MutateLabelResult - 331, // 330: google.ads.googleads.v16.services.MutateOperationResponse.recommendation_subscription_result:type_name -> google.ads.googleads.v16.services.MutateRecommendationSubscriptionResult - 332, // 331: google.ads.googleads.v16.services.MutateOperationResponse.remarketing_action_result:type_name -> google.ads.googleads.v16.services.MutateRemarketingActionResult - 333, // 332: google.ads.googleads.v16.services.MutateOperationResponse.shared_criterion_result:type_name -> google.ads.googleads.v16.services.MutateSharedCriterionResult - 334, // 333: google.ads.googleads.v16.services.MutateOperationResponse.shared_set_result:type_name -> google.ads.googleads.v16.services.MutateSharedSetResult - 335, // 334: google.ads.googleads.v16.services.MutateOperationResponse.smart_campaign_setting_result:type_name -> google.ads.googleads.v16.services.MutateSmartCampaignSettingResult - 336, // 335: google.ads.googleads.v16.services.MutateOperationResponse.user_list_result:type_name -> google.ads.googleads.v16.services.MutateUserListResult - 0, // 336: google.ads.googleads.v16.services.GoogleAdsService.Search:input_type -> google.ads.googleads.v16.services.SearchGoogleAdsRequest - 2, // 337: google.ads.googleads.v16.services.GoogleAdsService.SearchStream:input_type -> google.ads.googleads.v16.services.SearchGoogleAdsStreamRequest - 5, // 338: google.ads.googleads.v16.services.GoogleAdsService.Mutate:input_type -> google.ads.googleads.v16.services.MutateGoogleAdsRequest - 1, // 339: google.ads.googleads.v16.services.GoogleAdsService.Search:output_type -> google.ads.googleads.v16.services.SearchGoogleAdsResponse - 3, // 340: google.ads.googleads.v16.services.GoogleAdsService.SearchStream:output_type -> google.ads.googleads.v16.services.SearchGoogleAdsStreamResponse - 6, // 341: google.ads.googleads.v16.services.GoogleAdsService.Mutate:output_type -> google.ads.googleads.v16.services.MutateGoogleAdsResponse - 339, // [339:342] is the sub-list for method output_type - 336, // [336:339] is the sub-list for method input_type - 336, // [336:336] is the sub-list for extension type_name - 336, // [336:336] is the sub-list for extension extendee - 0, // [0:336] is the sub-list for field type_name -} - -func init() { file_google_ads_googleads_v16_services_google_ads_service_proto_init() } -func file_google_ads_googleads_v16_services_google_ads_service_proto_init() { - if File_google_ads_googleads_v16_services_google_ads_service_proto != nil { + (*resources.AccountBudget)(nil), // 11: google.ads.googleads.v17.resources.AccountBudget + (*resources.AccountBudgetProposal)(nil), // 12: google.ads.googleads.v17.resources.AccountBudgetProposal + (*resources.AccountLink)(nil), // 13: google.ads.googleads.v17.resources.AccountLink + (*resources.Ad)(nil), // 14: google.ads.googleads.v17.resources.Ad + (*resources.AdGroup)(nil), // 15: google.ads.googleads.v17.resources.AdGroup + (*resources.AdGroupAd)(nil), // 16: google.ads.googleads.v17.resources.AdGroupAd + (*resources.AdGroupAdAssetCombinationView)(nil), // 17: google.ads.googleads.v17.resources.AdGroupAdAssetCombinationView + (*resources.AdGroupAdAssetView)(nil), // 18: google.ads.googleads.v17.resources.AdGroupAdAssetView + (*resources.AdGroupAdLabel)(nil), // 19: google.ads.googleads.v17.resources.AdGroupAdLabel + (*resources.AdGroupAsset)(nil), // 20: google.ads.googleads.v17.resources.AdGroupAsset + (*resources.AdGroupAssetSet)(nil), // 21: google.ads.googleads.v17.resources.AdGroupAssetSet + (*resources.AdGroupAudienceView)(nil), // 22: google.ads.googleads.v17.resources.AdGroupAudienceView + (*resources.AdGroupBidModifier)(nil), // 23: google.ads.googleads.v17.resources.AdGroupBidModifier + (*resources.AdGroupCriterion)(nil), // 24: google.ads.googleads.v17.resources.AdGroupCriterion + (*resources.AdGroupCriterionCustomizer)(nil), // 25: google.ads.googleads.v17.resources.AdGroupCriterionCustomizer + (*resources.AdGroupCriterionLabel)(nil), // 26: google.ads.googleads.v17.resources.AdGroupCriterionLabel + (*resources.AdGroupCriterionSimulation)(nil), // 27: google.ads.googleads.v17.resources.AdGroupCriterionSimulation + (*resources.AdGroupCustomizer)(nil), // 28: google.ads.googleads.v17.resources.AdGroupCustomizer + (*resources.AdGroupExtensionSetting)(nil), // 29: google.ads.googleads.v17.resources.AdGroupExtensionSetting + (*resources.AdGroupFeed)(nil), // 30: google.ads.googleads.v17.resources.AdGroupFeed + (*resources.AdGroupLabel)(nil), // 31: google.ads.googleads.v17.resources.AdGroupLabel + (*resources.AdGroupSimulation)(nil), // 32: google.ads.googleads.v17.resources.AdGroupSimulation + (*resources.AdParameter)(nil), // 33: google.ads.googleads.v17.resources.AdParameter + (*resources.AgeRangeView)(nil), // 34: google.ads.googleads.v17.resources.AgeRangeView + (*resources.AdScheduleView)(nil), // 35: google.ads.googleads.v17.resources.AdScheduleView + (*resources.DomainCategory)(nil), // 36: google.ads.googleads.v17.resources.DomainCategory + (*resources.Asset)(nil), // 37: google.ads.googleads.v17.resources.Asset + (*resources.AssetFieldTypeView)(nil), // 38: google.ads.googleads.v17.resources.AssetFieldTypeView + (*resources.ChannelAggregateAssetView)(nil), // 39: google.ads.googleads.v17.resources.ChannelAggregateAssetView + (*resources.CampaignAggregateAssetView)(nil), // 40: google.ads.googleads.v17.resources.CampaignAggregateAssetView + (*resources.AssetGroupAsset)(nil), // 41: google.ads.googleads.v17.resources.AssetGroupAsset + (*resources.AssetGroupSignal)(nil), // 42: google.ads.googleads.v17.resources.AssetGroupSignal + (*resources.AssetGroupListingGroupFilter)(nil), // 43: google.ads.googleads.v17.resources.AssetGroupListingGroupFilter + (*resources.AssetGroupProductGroupView)(nil), // 44: google.ads.googleads.v17.resources.AssetGroupProductGroupView + (*resources.AssetGroupTopCombinationView)(nil), // 45: google.ads.googleads.v17.resources.AssetGroupTopCombinationView + (*resources.AssetGroup)(nil), // 46: google.ads.googleads.v17.resources.AssetGroup + (*resources.AssetSetAsset)(nil), // 47: google.ads.googleads.v17.resources.AssetSetAsset + (*resources.AssetSet)(nil), // 48: google.ads.googleads.v17.resources.AssetSet + (*resources.AssetSetTypeView)(nil), // 49: google.ads.googleads.v17.resources.AssetSetTypeView + (*resources.BatchJob)(nil), // 50: google.ads.googleads.v17.resources.BatchJob + (*resources.BiddingDataExclusion)(nil), // 51: google.ads.googleads.v17.resources.BiddingDataExclusion + (*resources.BiddingSeasonalityAdjustment)(nil), // 52: google.ads.googleads.v17.resources.BiddingSeasonalityAdjustment + (*resources.BiddingStrategy)(nil), // 53: google.ads.googleads.v17.resources.BiddingStrategy + (*resources.BiddingStrategySimulation)(nil), // 54: google.ads.googleads.v17.resources.BiddingStrategySimulation + (*resources.BillingSetup)(nil), // 55: google.ads.googleads.v17.resources.BillingSetup + (*resources.CallView)(nil), // 56: google.ads.googleads.v17.resources.CallView + (*resources.CampaignBudget)(nil), // 57: google.ads.googleads.v17.resources.CampaignBudget + (*resources.Campaign)(nil), // 58: google.ads.googleads.v17.resources.Campaign + (*resources.CampaignAsset)(nil), // 59: google.ads.googleads.v17.resources.CampaignAsset + (*resources.CampaignAssetSet)(nil), // 60: google.ads.googleads.v17.resources.CampaignAssetSet + (*resources.CampaignAudienceView)(nil), // 61: google.ads.googleads.v17.resources.CampaignAudienceView + (*resources.CampaignBidModifier)(nil), // 62: google.ads.googleads.v17.resources.CampaignBidModifier + (*resources.CampaignConversionGoal)(nil), // 63: google.ads.googleads.v17.resources.CampaignConversionGoal + (*resources.CampaignCriterion)(nil), // 64: google.ads.googleads.v17.resources.CampaignCriterion + (*resources.CampaignCustomizer)(nil), // 65: google.ads.googleads.v17.resources.CampaignCustomizer + (*resources.CampaignDraft)(nil), // 66: google.ads.googleads.v17.resources.CampaignDraft + (*resources.CampaignExtensionSetting)(nil), // 67: google.ads.googleads.v17.resources.CampaignExtensionSetting + (*resources.CampaignFeed)(nil), // 68: google.ads.googleads.v17.resources.CampaignFeed + (*resources.CampaignGroup)(nil), // 69: google.ads.googleads.v17.resources.CampaignGroup + (*resources.CampaignLabel)(nil), // 70: google.ads.googleads.v17.resources.CampaignLabel + (*resources.CampaignLifecycleGoal)(nil), // 71: google.ads.googleads.v17.resources.CampaignLifecycleGoal + (*resources.CampaignSearchTermInsight)(nil), // 72: google.ads.googleads.v17.resources.CampaignSearchTermInsight + (*resources.CampaignSharedSet)(nil), // 73: google.ads.googleads.v17.resources.CampaignSharedSet + (*resources.CampaignSimulation)(nil), // 74: google.ads.googleads.v17.resources.CampaignSimulation + (*resources.CarrierConstant)(nil), // 75: google.ads.googleads.v17.resources.CarrierConstant + (*resources.ChangeEvent)(nil), // 76: google.ads.googleads.v17.resources.ChangeEvent + (*resources.ChangeStatus)(nil), // 77: google.ads.googleads.v17.resources.ChangeStatus + (*resources.CombinedAudience)(nil), // 78: google.ads.googleads.v17.resources.CombinedAudience + (*resources.Audience)(nil), // 79: google.ads.googleads.v17.resources.Audience + (*resources.ConversionAction)(nil), // 80: google.ads.googleads.v17.resources.ConversionAction + (*resources.ConversionCustomVariable)(nil), // 81: google.ads.googleads.v17.resources.ConversionCustomVariable + (*resources.ConversionGoalCampaignConfig)(nil), // 82: google.ads.googleads.v17.resources.ConversionGoalCampaignConfig + (*resources.ConversionValueRule)(nil), // 83: google.ads.googleads.v17.resources.ConversionValueRule + (*resources.ConversionValueRuleSet)(nil), // 84: google.ads.googleads.v17.resources.ConversionValueRuleSet + (*resources.ClickView)(nil), // 85: google.ads.googleads.v17.resources.ClickView + (*resources.CurrencyConstant)(nil), // 86: google.ads.googleads.v17.resources.CurrencyConstant + (*resources.CustomAudience)(nil), // 87: google.ads.googleads.v17.resources.CustomAudience + (*resources.CustomConversionGoal)(nil), // 88: google.ads.googleads.v17.resources.CustomConversionGoal + (*resources.CustomInterest)(nil), // 89: google.ads.googleads.v17.resources.CustomInterest + (*resources.Customer)(nil), // 90: google.ads.googleads.v17.resources.Customer + (*resources.CustomerAsset)(nil), // 91: google.ads.googleads.v17.resources.CustomerAsset + (*resources.CustomerAssetSet)(nil), // 92: google.ads.googleads.v17.resources.CustomerAssetSet + (*resources.AccessibleBiddingStrategy)(nil), // 93: google.ads.googleads.v17.resources.AccessibleBiddingStrategy + (*resources.CustomerCustomizer)(nil), // 94: google.ads.googleads.v17.resources.CustomerCustomizer + (*resources.CustomerManagerLink)(nil), // 95: google.ads.googleads.v17.resources.CustomerManagerLink + (*resources.CustomerClientLink)(nil), // 96: google.ads.googleads.v17.resources.CustomerClientLink + (*resources.CustomerClient)(nil), // 97: google.ads.googleads.v17.resources.CustomerClient + (*resources.CustomerConversionGoal)(nil), // 98: google.ads.googleads.v17.resources.CustomerConversionGoal + (*resources.CustomerExtensionSetting)(nil), // 99: google.ads.googleads.v17.resources.CustomerExtensionSetting + (*resources.CustomerFeed)(nil), // 100: google.ads.googleads.v17.resources.CustomerFeed + (*resources.CustomerLabel)(nil), // 101: google.ads.googleads.v17.resources.CustomerLabel + (*resources.CustomerLifecycleGoal)(nil), // 102: google.ads.googleads.v17.resources.CustomerLifecycleGoal + (*resources.CustomerNegativeCriterion)(nil), // 103: google.ads.googleads.v17.resources.CustomerNegativeCriterion + (*resources.CustomerSearchTermInsight)(nil), // 104: google.ads.googleads.v17.resources.CustomerSearchTermInsight + (*resources.CustomerUserAccess)(nil), // 105: google.ads.googleads.v17.resources.CustomerUserAccess + (*resources.CustomerUserAccessInvitation)(nil), // 106: google.ads.googleads.v17.resources.CustomerUserAccessInvitation + (*resources.CustomizerAttribute)(nil), // 107: google.ads.googleads.v17.resources.CustomizerAttribute + (*resources.DetailPlacementView)(nil), // 108: google.ads.googleads.v17.resources.DetailPlacementView + (*resources.DetailedDemographic)(nil), // 109: google.ads.googleads.v17.resources.DetailedDemographic + (*resources.DisplayKeywordView)(nil), // 110: google.ads.googleads.v17.resources.DisplayKeywordView + (*resources.DistanceView)(nil), // 111: google.ads.googleads.v17.resources.DistanceView + (*resources.DynamicSearchAdsSearchTermView)(nil), // 112: google.ads.googleads.v17.resources.DynamicSearchAdsSearchTermView + (*resources.ExpandedLandingPageView)(nil), // 113: google.ads.googleads.v17.resources.ExpandedLandingPageView + (*resources.ExtensionFeedItem)(nil), // 114: google.ads.googleads.v17.resources.ExtensionFeedItem + (*resources.Feed)(nil), // 115: google.ads.googleads.v17.resources.Feed + (*resources.FeedItem)(nil), // 116: google.ads.googleads.v17.resources.FeedItem + (*resources.FeedItemSet)(nil), // 117: google.ads.googleads.v17.resources.FeedItemSet + (*resources.FeedItemSetLink)(nil), // 118: google.ads.googleads.v17.resources.FeedItemSetLink + (*resources.FeedItemTarget)(nil), // 119: google.ads.googleads.v17.resources.FeedItemTarget + (*resources.FeedMapping)(nil), // 120: google.ads.googleads.v17.resources.FeedMapping + (*resources.FeedPlaceholderView)(nil), // 121: google.ads.googleads.v17.resources.FeedPlaceholderView + (*resources.GenderView)(nil), // 122: google.ads.googleads.v17.resources.GenderView + (*resources.GeoTargetConstant)(nil), // 123: google.ads.googleads.v17.resources.GeoTargetConstant + (*resources.GeographicView)(nil), // 124: google.ads.googleads.v17.resources.GeographicView + (*resources.GroupPlacementView)(nil), // 125: google.ads.googleads.v17.resources.GroupPlacementView + (*resources.HotelGroupView)(nil), // 126: google.ads.googleads.v17.resources.HotelGroupView + (*resources.HotelPerformanceView)(nil), // 127: google.ads.googleads.v17.resources.HotelPerformanceView + (*resources.HotelReconciliation)(nil), // 128: google.ads.googleads.v17.resources.HotelReconciliation + (*resources.IncomeRangeView)(nil), // 129: google.ads.googleads.v17.resources.IncomeRangeView + (*resources.KeywordView)(nil), // 130: google.ads.googleads.v17.resources.KeywordView + (*resources.KeywordPlan)(nil), // 131: google.ads.googleads.v17.resources.KeywordPlan + (*resources.KeywordPlanCampaign)(nil), // 132: google.ads.googleads.v17.resources.KeywordPlanCampaign + (*resources.KeywordPlanCampaignKeyword)(nil), // 133: google.ads.googleads.v17.resources.KeywordPlanCampaignKeyword + (*resources.KeywordPlanAdGroup)(nil), // 134: google.ads.googleads.v17.resources.KeywordPlanAdGroup + (*resources.KeywordPlanAdGroupKeyword)(nil), // 135: google.ads.googleads.v17.resources.KeywordPlanAdGroupKeyword + (*resources.KeywordThemeConstant)(nil), // 136: google.ads.googleads.v17.resources.KeywordThemeConstant + (*resources.Label)(nil), // 137: google.ads.googleads.v17.resources.Label + (*resources.LandingPageView)(nil), // 138: google.ads.googleads.v17.resources.LandingPageView + (*resources.LanguageConstant)(nil), // 139: google.ads.googleads.v17.resources.LanguageConstant + (*resources.LocationView)(nil), // 140: google.ads.googleads.v17.resources.LocationView + (*resources.ManagedPlacementView)(nil), // 141: google.ads.googleads.v17.resources.ManagedPlacementView + (*resources.MediaFile)(nil), // 142: google.ads.googleads.v17.resources.MediaFile + (*resources.LocalServicesEmployee)(nil), // 143: google.ads.googleads.v17.resources.LocalServicesEmployee + (*resources.LocalServicesVerificationArtifact)(nil), // 144: google.ads.googleads.v17.resources.LocalServicesVerificationArtifact + (*resources.MobileAppCategoryConstant)(nil), // 145: google.ads.googleads.v17.resources.MobileAppCategoryConstant + (*resources.MobileDeviceConstant)(nil), // 146: google.ads.googleads.v17.resources.MobileDeviceConstant + (*resources.OfflineConversionUploadClientSummary)(nil), // 147: google.ads.googleads.v17.resources.OfflineConversionUploadClientSummary + (*resources.OfflineUserDataJob)(nil), // 148: google.ads.googleads.v17.resources.OfflineUserDataJob + (*resources.OperatingSystemVersionConstant)(nil), // 149: google.ads.googleads.v17.resources.OperatingSystemVersionConstant + (*resources.PaidOrganicSearchTermView)(nil), // 150: google.ads.googleads.v17.resources.PaidOrganicSearchTermView + (*resources.QualifyingQuestion)(nil), // 151: google.ads.googleads.v17.resources.QualifyingQuestion + (*resources.ParentalStatusView)(nil), // 152: google.ads.googleads.v17.resources.ParentalStatusView + (*resources.PerStoreView)(nil), // 153: google.ads.googleads.v17.resources.PerStoreView + (*resources.ProductCategoryConstant)(nil), // 154: google.ads.googleads.v17.resources.ProductCategoryConstant + (*resources.ProductGroupView)(nil), // 155: google.ads.googleads.v17.resources.ProductGroupView + (*resources.ProductLink)(nil), // 156: google.ads.googleads.v17.resources.ProductLink + (*resources.ProductLinkInvitation)(nil), // 157: google.ads.googleads.v17.resources.ProductLinkInvitation + (*resources.Recommendation)(nil), // 158: google.ads.googleads.v17.resources.Recommendation + (*resources.RecommendationSubscription)(nil), // 159: google.ads.googleads.v17.resources.RecommendationSubscription + (*resources.SearchTermView)(nil), // 160: google.ads.googleads.v17.resources.SearchTermView + (*resources.SharedCriterion)(nil), // 161: google.ads.googleads.v17.resources.SharedCriterion + (*resources.SharedSet)(nil), // 162: google.ads.googleads.v17.resources.SharedSet + (*resources.SmartCampaignSetting)(nil), // 163: google.ads.googleads.v17.resources.SmartCampaignSetting + (*resources.ShoppingPerformanceView)(nil), // 164: google.ads.googleads.v17.resources.ShoppingPerformanceView + (*resources.ShoppingProduct)(nil), // 165: google.ads.googleads.v17.resources.ShoppingProduct + (*resources.SmartCampaignSearchTermView)(nil), // 166: google.ads.googleads.v17.resources.SmartCampaignSearchTermView + (*resources.ThirdPartyAppAnalyticsLink)(nil), // 167: google.ads.googleads.v17.resources.ThirdPartyAppAnalyticsLink + (*resources.TopicView)(nil), // 168: google.ads.googleads.v17.resources.TopicView + (*resources.TravelActivityGroupView)(nil), // 169: google.ads.googleads.v17.resources.TravelActivityGroupView + (*resources.TravelActivityPerformanceView)(nil), // 170: google.ads.googleads.v17.resources.TravelActivityPerformanceView + (*resources.Experiment)(nil), // 171: google.ads.googleads.v17.resources.Experiment + (*resources.ExperimentArm)(nil), // 172: google.ads.googleads.v17.resources.ExperimentArm + (*resources.UserInterest)(nil), // 173: google.ads.googleads.v17.resources.UserInterest + (*resources.LifeEvent)(nil), // 174: google.ads.googleads.v17.resources.LifeEvent + (*resources.UserList)(nil), // 175: google.ads.googleads.v17.resources.UserList + (*resources.UserListCustomerType)(nil), // 176: google.ads.googleads.v17.resources.UserListCustomerType + (*resources.UserLocationView)(nil), // 177: google.ads.googleads.v17.resources.UserLocationView + (*resources.RemarketingAction)(nil), // 178: google.ads.googleads.v17.resources.RemarketingAction + (*resources.TopicConstant)(nil), // 179: google.ads.googleads.v17.resources.TopicConstant + (*resources.Video)(nil), // 180: google.ads.googleads.v17.resources.Video + (*resources.WebpageView)(nil), // 181: google.ads.googleads.v17.resources.WebpageView + (*resources.LeadFormSubmissionData)(nil), // 182: google.ads.googleads.v17.resources.LeadFormSubmissionData + (*resources.LocalServicesLead)(nil), // 183: google.ads.googleads.v17.resources.LocalServicesLead + (*resources.LocalServicesLeadConversation)(nil), // 184: google.ads.googleads.v17.resources.LocalServicesLeadConversation + (*resources.AndroidPrivacySharedKeyGoogleAdGroup)(nil), // 185: google.ads.googleads.v17.resources.AndroidPrivacySharedKeyGoogleAdGroup + (*resources.AndroidPrivacySharedKeyGoogleCampaign)(nil), // 186: google.ads.googleads.v17.resources.AndroidPrivacySharedKeyGoogleCampaign + (*resources.AndroidPrivacySharedKeyGoogleNetworkType)(nil), // 187: google.ads.googleads.v17.resources.AndroidPrivacySharedKeyGoogleNetworkType + (*common.Metrics)(nil), // 188: google.ads.googleads.v17.common.Metrics + (*common.Segments)(nil), // 189: google.ads.googleads.v17.common.Segments + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 190: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + (*status.Status)(nil), // 191: google.rpc.Status + (*AdGroupAdLabelOperation)(nil), // 192: google.ads.googleads.v17.services.AdGroupAdLabelOperation + (*AdGroupAdOperation)(nil), // 193: google.ads.googleads.v17.services.AdGroupAdOperation + (*AdGroupAssetOperation)(nil), // 194: google.ads.googleads.v17.services.AdGroupAssetOperation + (*AdGroupBidModifierOperation)(nil), // 195: google.ads.googleads.v17.services.AdGroupBidModifierOperation + (*AdGroupCriterionCustomizerOperation)(nil), // 196: google.ads.googleads.v17.services.AdGroupCriterionCustomizerOperation + (*AdGroupCriterionLabelOperation)(nil), // 197: google.ads.googleads.v17.services.AdGroupCriterionLabelOperation + (*AdGroupCriterionOperation)(nil), // 198: google.ads.googleads.v17.services.AdGroupCriterionOperation + (*AdGroupCustomizerOperation)(nil), // 199: google.ads.googleads.v17.services.AdGroupCustomizerOperation + (*AdGroupExtensionSettingOperation)(nil), // 200: google.ads.googleads.v17.services.AdGroupExtensionSettingOperation + (*AdGroupFeedOperation)(nil), // 201: google.ads.googleads.v17.services.AdGroupFeedOperation + (*AdGroupLabelOperation)(nil), // 202: google.ads.googleads.v17.services.AdGroupLabelOperation + (*AdGroupOperation)(nil), // 203: google.ads.googleads.v17.services.AdGroupOperation + (*AdOperation)(nil), // 204: google.ads.googleads.v17.services.AdOperation + (*AdParameterOperation)(nil), // 205: google.ads.googleads.v17.services.AdParameterOperation + (*AssetOperation)(nil), // 206: google.ads.googleads.v17.services.AssetOperation + (*AssetGroupAssetOperation)(nil), // 207: google.ads.googleads.v17.services.AssetGroupAssetOperation + (*AssetGroupListingGroupFilterOperation)(nil), // 208: google.ads.googleads.v17.services.AssetGroupListingGroupFilterOperation + (*AssetGroupSignalOperation)(nil), // 209: google.ads.googleads.v17.services.AssetGroupSignalOperation + (*AssetGroupOperation)(nil), // 210: google.ads.googleads.v17.services.AssetGroupOperation + (*AssetSetAssetOperation)(nil), // 211: google.ads.googleads.v17.services.AssetSetAssetOperation + (*AssetSetOperation)(nil), // 212: google.ads.googleads.v17.services.AssetSetOperation + (*AudienceOperation)(nil), // 213: google.ads.googleads.v17.services.AudienceOperation + (*BiddingDataExclusionOperation)(nil), // 214: google.ads.googleads.v17.services.BiddingDataExclusionOperation + (*BiddingSeasonalityAdjustmentOperation)(nil), // 215: google.ads.googleads.v17.services.BiddingSeasonalityAdjustmentOperation + (*BiddingStrategyOperation)(nil), // 216: google.ads.googleads.v17.services.BiddingStrategyOperation + (*CampaignAssetOperation)(nil), // 217: google.ads.googleads.v17.services.CampaignAssetOperation + (*CampaignAssetSetOperation)(nil), // 218: google.ads.googleads.v17.services.CampaignAssetSetOperation + (*CampaignBidModifierOperation)(nil), // 219: google.ads.googleads.v17.services.CampaignBidModifierOperation + (*CampaignBudgetOperation)(nil), // 220: google.ads.googleads.v17.services.CampaignBudgetOperation + (*CampaignConversionGoalOperation)(nil), // 221: google.ads.googleads.v17.services.CampaignConversionGoalOperation + (*CampaignCriterionOperation)(nil), // 222: google.ads.googleads.v17.services.CampaignCriterionOperation + (*CampaignCustomizerOperation)(nil), // 223: google.ads.googleads.v17.services.CampaignCustomizerOperation + (*CampaignDraftOperation)(nil), // 224: google.ads.googleads.v17.services.CampaignDraftOperation + (*CampaignExtensionSettingOperation)(nil), // 225: google.ads.googleads.v17.services.CampaignExtensionSettingOperation + (*CampaignFeedOperation)(nil), // 226: google.ads.googleads.v17.services.CampaignFeedOperation + (*CampaignGroupOperation)(nil), // 227: google.ads.googleads.v17.services.CampaignGroupOperation + (*CampaignLabelOperation)(nil), // 228: google.ads.googleads.v17.services.CampaignLabelOperation + (*CampaignOperation)(nil), // 229: google.ads.googleads.v17.services.CampaignOperation + (*CampaignSharedSetOperation)(nil), // 230: google.ads.googleads.v17.services.CampaignSharedSetOperation + (*ConversionActionOperation)(nil), // 231: google.ads.googleads.v17.services.ConversionActionOperation + (*ConversionCustomVariableOperation)(nil), // 232: google.ads.googleads.v17.services.ConversionCustomVariableOperation + (*ConversionGoalCampaignConfigOperation)(nil), // 233: google.ads.googleads.v17.services.ConversionGoalCampaignConfigOperation + (*ConversionValueRuleOperation)(nil), // 234: google.ads.googleads.v17.services.ConversionValueRuleOperation + (*ConversionValueRuleSetOperation)(nil), // 235: google.ads.googleads.v17.services.ConversionValueRuleSetOperation + (*CustomConversionGoalOperation)(nil), // 236: google.ads.googleads.v17.services.CustomConversionGoalOperation + (*CustomerAssetOperation)(nil), // 237: google.ads.googleads.v17.services.CustomerAssetOperation + (*CustomerConversionGoalOperation)(nil), // 238: google.ads.googleads.v17.services.CustomerConversionGoalOperation + (*CustomerCustomizerOperation)(nil), // 239: google.ads.googleads.v17.services.CustomerCustomizerOperation + (*CustomerExtensionSettingOperation)(nil), // 240: google.ads.googleads.v17.services.CustomerExtensionSettingOperation + (*CustomerFeedOperation)(nil), // 241: google.ads.googleads.v17.services.CustomerFeedOperation + (*CustomerLabelOperation)(nil), // 242: google.ads.googleads.v17.services.CustomerLabelOperation + (*CustomerNegativeCriterionOperation)(nil), // 243: google.ads.googleads.v17.services.CustomerNegativeCriterionOperation + (*CustomerOperation)(nil), // 244: google.ads.googleads.v17.services.CustomerOperation + (*CustomizerAttributeOperation)(nil), // 245: google.ads.googleads.v17.services.CustomizerAttributeOperation + (*ExperimentOperation)(nil), // 246: google.ads.googleads.v17.services.ExperimentOperation + (*ExperimentArmOperation)(nil), // 247: google.ads.googleads.v17.services.ExperimentArmOperation + (*ExtensionFeedItemOperation)(nil), // 248: google.ads.googleads.v17.services.ExtensionFeedItemOperation + (*FeedItemOperation)(nil), // 249: google.ads.googleads.v17.services.FeedItemOperation + (*FeedItemSetOperation)(nil), // 250: google.ads.googleads.v17.services.FeedItemSetOperation + (*FeedItemSetLinkOperation)(nil), // 251: google.ads.googleads.v17.services.FeedItemSetLinkOperation + (*FeedItemTargetOperation)(nil), // 252: google.ads.googleads.v17.services.FeedItemTargetOperation + (*FeedMappingOperation)(nil), // 253: google.ads.googleads.v17.services.FeedMappingOperation + (*FeedOperation)(nil), // 254: google.ads.googleads.v17.services.FeedOperation + (*KeywordPlanAdGroupOperation)(nil), // 255: google.ads.googleads.v17.services.KeywordPlanAdGroupOperation + (*KeywordPlanAdGroupKeywordOperation)(nil), // 256: google.ads.googleads.v17.services.KeywordPlanAdGroupKeywordOperation + (*KeywordPlanCampaignKeywordOperation)(nil), // 257: google.ads.googleads.v17.services.KeywordPlanCampaignKeywordOperation + (*KeywordPlanCampaignOperation)(nil), // 258: google.ads.googleads.v17.services.KeywordPlanCampaignOperation + (*KeywordPlanOperation)(nil), // 259: google.ads.googleads.v17.services.KeywordPlanOperation + (*LabelOperation)(nil), // 260: google.ads.googleads.v17.services.LabelOperation + (*RecommendationSubscriptionOperation)(nil), // 261: google.ads.googleads.v17.services.RecommendationSubscriptionOperation + (*RemarketingActionOperation)(nil), // 262: google.ads.googleads.v17.services.RemarketingActionOperation + (*SharedCriterionOperation)(nil), // 263: google.ads.googleads.v17.services.SharedCriterionOperation + (*SharedSetOperation)(nil), // 264: google.ads.googleads.v17.services.SharedSetOperation + (*SmartCampaignSettingOperation)(nil), // 265: google.ads.googleads.v17.services.SmartCampaignSettingOperation + (*UserListOperation)(nil), // 266: google.ads.googleads.v17.services.UserListOperation + (*MutateAdGroupAdLabelResult)(nil), // 267: google.ads.googleads.v17.services.MutateAdGroupAdLabelResult + (*MutateAdGroupAdResult)(nil), // 268: google.ads.googleads.v17.services.MutateAdGroupAdResult + (*MutateAdGroupAssetResult)(nil), // 269: google.ads.googleads.v17.services.MutateAdGroupAssetResult + (*MutateAdGroupBidModifierResult)(nil), // 270: google.ads.googleads.v17.services.MutateAdGroupBidModifierResult + (*MutateAdGroupCriterionCustomizerResult)(nil), // 271: google.ads.googleads.v17.services.MutateAdGroupCriterionCustomizerResult + (*MutateAdGroupCriterionLabelResult)(nil), // 272: google.ads.googleads.v17.services.MutateAdGroupCriterionLabelResult + (*MutateAdGroupCriterionResult)(nil), // 273: google.ads.googleads.v17.services.MutateAdGroupCriterionResult + (*MutateAdGroupCustomizerResult)(nil), // 274: google.ads.googleads.v17.services.MutateAdGroupCustomizerResult + (*MutateAdGroupExtensionSettingResult)(nil), // 275: google.ads.googleads.v17.services.MutateAdGroupExtensionSettingResult + (*MutateAdGroupFeedResult)(nil), // 276: google.ads.googleads.v17.services.MutateAdGroupFeedResult + (*MutateAdGroupLabelResult)(nil), // 277: google.ads.googleads.v17.services.MutateAdGroupLabelResult + (*MutateAdGroupResult)(nil), // 278: google.ads.googleads.v17.services.MutateAdGroupResult + (*MutateAdParameterResult)(nil), // 279: google.ads.googleads.v17.services.MutateAdParameterResult + (*MutateAdResult)(nil), // 280: google.ads.googleads.v17.services.MutateAdResult + (*MutateAssetResult)(nil), // 281: google.ads.googleads.v17.services.MutateAssetResult + (*MutateAssetGroupAssetResult)(nil), // 282: google.ads.googleads.v17.services.MutateAssetGroupAssetResult + (*MutateAssetGroupListingGroupFilterResult)(nil), // 283: google.ads.googleads.v17.services.MutateAssetGroupListingGroupFilterResult + (*MutateAssetGroupSignalResult)(nil), // 284: google.ads.googleads.v17.services.MutateAssetGroupSignalResult + (*MutateAssetGroupResult)(nil), // 285: google.ads.googleads.v17.services.MutateAssetGroupResult + (*MutateAssetSetAssetResult)(nil), // 286: google.ads.googleads.v17.services.MutateAssetSetAssetResult + (*MutateAssetSetResult)(nil), // 287: google.ads.googleads.v17.services.MutateAssetSetResult + (*MutateAudienceResult)(nil), // 288: google.ads.googleads.v17.services.MutateAudienceResult + (*MutateBiddingDataExclusionsResult)(nil), // 289: google.ads.googleads.v17.services.MutateBiddingDataExclusionsResult + (*MutateBiddingSeasonalityAdjustmentsResult)(nil), // 290: google.ads.googleads.v17.services.MutateBiddingSeasonalityAdjustmentsResult + (*MutateBiddingStrategyResult)(nil), // 291: google.ads.googleads.v17.services.MutateBiddingStrategyResult + (*MutateCampaignAssetResult)(nil), // 292: google.ads.googleads.v17.services.MutateCampaignAssetResult + (*MutateCampaignAssetSetResult)(nil), // 293: google.ads.googleads.v17.services.MutateCampaignAssetSetResult + (*MutateCampaignBidModifierResult)(nil), // 294: google.ads.googleads.v17.services.MutateCampaignBidModifierResult + (*MutateCampaignBudgetResult)(nil), // 295: google.ads.googleads.v17.services.MutateCampaignBudgetResult + (*MutateCampaignConversionGoalResult)(nil), // 296: google.ads.googleads.v17.services.MutateCampaignConversionGoalResult + (*MutateCampaignCriterionResult)(nil), // 297: google.ads.googleads.v17.services.MutateCampaignCriterionResult + (*MutateCampaignCustomizerResult)(nil), // 298: google.ads.googleads.v17.services.MutateCampaignCustomizerResult + (*MutateCampaignDraftResult)(nil), // 299: google.ads.googleads.v17.services.MutateCampaignDraftResult + (*MutateCampaignExtensionSettingResult)(nil), // 300: google.ads.googleads.v17.services.MutateCampaignExtensionSettingResult + (*MutateCampaignFeedResult)(nil), // 301: google.ads.googleads.v17.services.MutateCampaignFeedResult + (*MutateCampaignGroupResult)(nil), // 302: google.ads.googleads.v17.services.MutateCampaignGroupResult + (*MutateCampaignLabelResult)(nil), // 303: google.ads.googleads.v17.services.MutateCampaignLabelResult + (*MutateCampaignResult)(nil), // 304: google.ads.googleads.v17.services.MutateCampaignResult + (*MutateCampaignSharedSetResult)(nil), // 305: google.ads.googleads.v17.services.MutateCampaignSharedSetResult + (*MutateConversionActionResult)(nil), // 306: google.ads.googleads.v17.services.MutateConversionActionResult + (*MutateConversionCustomVariableResult)(nil), // 307: google.ads.googleads.v17.services.MutateConversionCustomVariableResult + (*MutateConversionGoalCampaignConfigResult)(nil), // 308: google.ads.googleads.v17.services.MutateConversionGoalCampaignConfigResult + (*MutateConversionValueRuleResult)(nil), // 309: google.ads.googleads.v17.services.MutateConversionValueRuleResult + (*MutateConversionValueRuleSetResult)(nil), // 310: google.ads.googleads.v17.services.MutateConversionValueRuleSetResult + (*MutateCustomConversionGoalResult)(nil), // 311: google.ads.googleads.v17.services.MutateCustomConversionGoalResult + (*MutateCustomerAssetResult)(nil), // 312: google.ads.googleads.v17.services.MutateCustomerAssetResult + (*MutateCustomerConversionGoalResult)(nil), // 313: google.ads.googleads.v17.services.MutateCustomerConversionGoalResult + (*MutateCustomerCustomizerResult)(nil), // 314: google.ads.googleads.v17.services.MutateCustomerCustomizerResult + (*MutateCustomerExtensionSettingResult)(nil), // 315: google.ads.googleads.v17.services.MutateCustomerExtensionSettingResult + (*MutateCustomerFeedResult)(nil), // 316: google.ads.googleads.v17.services.MutateCustomerFeedResult + (*MutateCustomerLabelResult)(nil), // 317: google.ads.googleads.v17.services.MutateCustomerLabelResult + (*MutateCustomerNegativeCriteriaResult)(nil), // 318: google.ads.googleads.v17.services.MutateCustomerNegativeCriteriaResult + (*MutateCustomerResult)(nil), // 319: google.ads.googleads.v17.services.MutateCustomerResult + (*MutateCustomizerAttributeResult)(nil), // 320: google.ads.googleads.v17.services.MutateCustomizerAttributeResult + (*MutateExperimentResult)(nil), // 321: google.ads.googleads.v17.services.MutateExperimentResult + (*MutateExperimentArmResult)(nil), // 322: google.ads.googleads.v17.services.MutateExperimentArmResult + (*MutateExtensionFeedItemResult)(nil), // 323: google.ads.googleads.v17.services.MutateExtensionFeedItemResult + (*MutateFeedItemResult)(nil), // 324: google.ads.googleads.v17.services.MutateFeedItemResult + (*MutateFeedItemSetResult)(nil), // 325: google.ads.googleads.v17.services.MutateFeedItemSetResult + (*MutateFeedItemSetLinkResult)(nil), // 326: google.ads.googleads.v17.services.MutateFeedItemSetLinkResult + (*MutateFeedItemTargetResult)(nil), // 327: google.ads.googleads.v17.services.MutateFeedItemTargetResult + (*MutateFeedMappingResult)(nil), // 328: google.ads.googleads.v17.services.MutateFeedMappingResult + (*MutateFeedResult)(nil), // 329: google.ads.googleads.v17.services.MutateFeedResult + (*MutateKeywordPlanAdGroupResult)(nil), // 330: google.ads.googleads.v17.services.MutateKeywordPlanAdGroupResult + (*MutateKeywordPlanCampaignResult)(nil), // 331: google.ads.googleads.v17.services.MutateKeywordPlanCampaignResult + (*MutateKeywordPlanAdGroupKeywordResult)(nil), // 332: google.ads.googleads.v17.services.MutateKeywordPlanAdGroupKeywordResult + (*MutateKeywordPlanCampaignKeywordResult)(nil), // 333: google.ads.googleads.v17.services.MutateKeywordPlanCampaignKeywordResult + (*MutateKeywordPlansResult)(nil), // 334: google.ads.googleads.v17.services.MutateKeywordPlansResult + (*MutateLabelResult)(nil), // 335: google.ads.googleads.v17.services.MutateLabelResult + (*MutateRecommendationSubscriptionResult)(nil), // 336: google.ads.googleads.v17.services.MutateRecommendationSubscriptionResult + (*MutateRemarketingActionResult)(nil), // 337: google.ads.googleads.v17.services.MutateRemarketingActionResult + (*MutateSharedCriterionResult)(nil), // 338: google.ads.googleads.v17.services.MutateSharedCriterionResult + (*MutateSharedSetResult)(nil), // 339: google.ads.googleads.v17.services.MutateSharedSetResult + (*MutateSmartCampaignSettingResult)(nil), // 340: google.ads.googleads.v17.services.MutateSmartCampaignSettingResult + (*MutateUserListResult)(nil), // 341: google.ads.googleads.v17.services.MutateUserListResult +} +var file_google_ads_googleads_v17_services_google_ads_service_proto_depIdxs = []int32{ + 9, // 0: google.ads.googleads.v17.services.SearchGoogleAdsRequest.summary_row_setting:type_name -> google.ads.googleads.v17.enums.SummaryRowSettingEnum.SummaryRowSetting + 4, // 1: google.ads.googleads.v17.services.SearchGoogleAdsResponse.results:type_name -> google.ads.googleads.v17.services.GoogleAdsRow + 10, // 2: google.ads.googleads.v17.services.SearchGoogleAdsResponse.field_mask:type_name -> google.protobuf.FieldMask + 4, // 3: google.ads.googleads.v17.services.SearchGoogleAdsResponse.summary_row:type_name -> google.ads.googleads.v17.services.GoogleAdsRow + 9, // 4: google.ads.googleads.v17.services.SearchGoogleAdsStreamRequest.summary_row_setting:type_name -> google.ads.googleads.v17.enums.SummaryRowSettingEnum.SummaryRowSetting + 4, // 5: google.ads.googleads.v17.services.SearchGoogleAdsStreamResponse.results:type_name -> google.ads.googleads.v17.services.GoogleAdsRow + 10, // 6: google.ads.googleads.v17.services.SearchGoogleAdsStreamResponse.field_mask:type_name -> google.protobuf.FieldMask + 4, // 7: google.ads.googleads.v17.services.SearchGoogleAdsStreamResponse.summary_row:type_name -> google.ads.googleads.v17.services.GoogleAdsRow + 11, // 8: google.ads.googleads.v17.services.GoogleAdsRow.account_budget:type_name -> google.ads.googleads.v17.resources.AccountBudget + 12, // 9: google.ads.googleads.v17.services.GoogleAdsRow.account_budget_proposal:type_name -> google.ads.googleads.v17.resources.AccountBudgetProposal + 13, // 10: google.ads.googleads.v17.services.GoogleAdsRow.account_link:type_name -> google.ads.googleads.v17.resources.AccountLink + 14, // 11: google.ads.googleads.v17.services.GoogleAdsRow.ad:type_name -> google.ads.googleads.v17.resources.Ad + 15, // 12: google.ads.googleads.v17.services.GoogleAdsRow.ad_group:type_name -> google.ads.googleads.v17.resources.AdGroup + 16, // 13: google.ads.googleads.v17.services.GoogleAdsRow.ad_group_ad:type_name -> google.ads.googleads.v17.resources.AdGroupAd + 17, // 14: google.ads.googleads.v17.services.GoogleAdsRow.ad_group_ad_asset_combination_view:type_name -> google.ads.googleads.v17.resources.AdGroupAdAssetCombinationView + 18, // 15: google.ads.googleads.v17.services.GoogleAdsRow.ad_group_ad_asset_view:type_name -> google.ads.googleads.v17.resources.AdGroupAdAssetView + 19, // 16: google.ads.googleads.v17.services.GoogleAdsRow.ad_group_ad_label:type_name -> google.ads.googleads.v17.resources.AdGroupAdLabel + 20, // 17: google.ads.googleads.v17.services.GoogleAdsRow.ad_group_asset:type_name -> google.ads.googleads.v17.resources.AdGroupAsset + 21, // 18: google.ads.googleads.v17.services.GoogleAdsRow.ad_group_asset_set:type_name -> google.ads.googleads.v17.resources.AdGroupAssetSet + 22, // 19: google.ads.googleads.v17.services.GoogleAdsRow.ad_group_audience_view:type_name -> google.ads.googleads.v17.resources.AdGroupAudienceView + 23, // 20: google.ads.googleads.v17.services.GoogleAdsRow.ad_group_bid_modifier:type_name -> google.ads.googleads.v17.resources.AdGroupBidModifier + 24, // 21: google.ads.googleads.v17.services.GoogleAdsRow.ad_group_criterion:type_name -> google.ads.googleads.v17.resources.AdGroupCriterion + 25, // 22: google.ads.googleads.v17.services.GoogleAdsRow.ad_group_criterion_customizer:type_name -> google.ads.googleads.v17.resources.AdGroupCriterionCustomizer + 26, // 23: google.ads.googleads.v17.services.GoogleAdsRow.ad_group_criterion_label:type_name -> google.ads.googleads.v17.resources.AdGroupCriterionLabel + 27, // 24: google.ads.googleads.v17.services.GoogleAdsRow.ad_group_criterion_simulation:type_name -> google.ads.googleads.v17.resources.AdGroupCriterionSimulation + 28, // 25: google.ads.googleads.v17.services.GoogleAdsRow.ad_group_customizer:type_name -> google.ads.googleads.v17.resources.AdGroupCustomizer + 29, // 26: google.ads.googleads.v17.services.GoogleAdsRow.ad_group_extension_setting:type_name -> google.ads.googleads.v17.resources.AdGroupExtensionSetting + 30, // 27: google.ads.googleads.v17.services.GoogleAdsRow.ad_group_feed:type_name -> google.ads.googleads.v17.resources.AdGroupFeed + 31, // 28: google.ads.googleads.v17.services.GoogleAdsRow.ad_group_label:type_name -> google.ads.googleads.v17.resources.AdGroupLabel + 32, // 29: google.ads.googleads.v17.services.GoogleAdsRow.ad_group_simulation:type_name -> google.ads.googleads.v17.resources.AdGroupSimulation + 33, // 30: google.ads.googleads.v17.services.GoogleAdsRow.ad_parameter:type_name -> google.ads.googleads.v17.resources.AdParameter + 34, // 31: google.ads.googleads.v17.services.GoogleAdsRow.age_range_view:type_name -> google.ads.googleads.v17.resources.AgeRangeView + 35, // 32: google.ads.googleads.v17.services.GoogleAdsRow.ad_schedule_view:type_name -> google.ads.googleads.v17.resources.AdScheduleView + 36, // 33: google.ads.googleads.v17.services.GoogleAdsRow.domain_category:type_name -> google.ads.googleads.v17.resources.DomainCategory + 37, // 34: google.ads.googleads.v17.services.GoogleAdsRow.asset:type_name -> google.ads.googleads.v17.resources.Asset + 38, // 35: google.ads.googleads.v17.services.GoogleAdsRow.asset_field_type_view:type_name -> google.ads.googleads.v17.resources.AssetFieldTypeView + 39, // 36: google.ads.googleads.v17.services.GoogleAdsRow.channel_aggregate_asset_view:type_name -> google.ads.googleads.v17.resources.ChannelAggregateAssetView + 40, // 37: google.ads.googleads.v17.services.GoogleAdsRow.campaign_aggregate_asset_view:type_name -> google.ads.googleads.v17.resources.CampaignAggregateAssetView + 41, // 38: google.ads.googleads.v17.services.GoogleAdsRow.asset_group_asset:type_name -> google.ads.googleads.v17.resources.AssetGroupAsset + 42, // 39: google.ads.googleads.v17.services.GoogleAdsRow.asset_group_signal:type_name -> google.ads.googleads.v17.resources.AssetGroupSignal + 43, // 40: google.ads.googleads.v17.services.GoogleAdsRow.asset_group_listing_group_filter:type_name -> google.ads.googleads.v17.resources.AssetGroupListingGroupFilter + 44, // 41: google.ads.googleads.v17.services.GoogleAdsRow.asset_group_product_group_view:type_name -> google.ads.googleads.v17.resources.AssetGroupProductGroupView + 45, // 42: google.ads.googleads.v17.services.GoogleAdsRow.asset_group_top_combination_view:type_name -> google.ads.googleads.v17.resources.AssetGroupTopCombinationView + 46, // 43: google.ads.googleads.v17.services.GoogleAdsRow.asset_group:type_name -> google.ads.googleads.v17.resources.AssetGroup + 47, // 44: google.ads.googleads.v17.services.GoogleAdsRow.asset_set_asset:type_name -> google.ads.googleads.v17.resources.AssetSetAsset + 48, // 45: google.ads.googleads.v17.services.GoogleAdsRow.asset_set:type_name -> google.ads.googleads.v17.resources.AssetSet + 49, // 46: google.ads.googleads.v17.services.GoogleAdsRow.asset_set_type_view:type_name -> google.ads.googleads.v17.resources.AssetSetTypeView + 50, // 47: google.ads.googleads.v17.services.GoogleAdsRow.batch_job:type_name -> google.ads.googleads.v17.resources.BatchJob + 51, // 48: google.ads.googleads.v17.services.GoogleAdsRow.bidding_data_exclusion:type_name -> google.ads.googleads.v17.resources.BiddingDataExclusion + 52, // 49: google.ads.googleads.v17.services.GoogleAdsRow.bidding_seasonality_adjustment:type_name -> google.ads.googleads.v17.resources.BiddingSeasonalityAdjustment + 53, // 50: google.ads.googleads.v17.services.GoogleAdsRow.bidding_strategy:type_name -> google.ads.googleads.v17.resources.BiddingStrategy + 54, // 51: google.ads.googleads.v17.services.GoogleAdsRow.bidding_strategy_simulation:type_name -> google.ads.googleads.v17.resources.BiddingStrategySimulation + 55, // 52: google.ads.googleads.v17.services.GoogleAdsRow.billing_setup:type_name -> google.ads.googleads.v17.resources.BillingSetup + 56, // 53: google.ads.googleads.v17.services.GoogleAdsRow.call_view:type_name -> google.ads.googleads.v17.resources.CallView + 57, // 54: google.ads.googleads.v17.services.GoogleAdsRow.campaign_budget:type_name -> google.ads.googleads.v17.resources.CampaignBudget + 58, // 55: google.ads.googleads.v17.services.GoogleAdsRow.campaign:type_name -> google.ads.googleads.v17.resources.Campaign + 59, // 56: google.ads.googleads.v17.services.GoogleAdsRow.campaign_asset:type_name -> google.ads.googleads.v17.resources.CampaignAsset + 60, // 57: google.ads.googleads.v17.services.GoogleAdsRow.campaign_asset_set:type_name -> google.ads.googleads.v17.resources.CampaignAssetSet + 61, // 58: google.ads.googleads.v17.services.GoogleAdsRow.campaign_audience_view:type_name -> google.ads.googleads.v17.resources.CampaignAudienceView + 62, // 59: google.ads.googleads.v17.services.GoogleAdsRow.campaign_bid_modifier:type_name -> google.ads.googleads.v17.resources.CampaignBidModifier + 63, // 60: google.ads.googleads.v17.services.GoogleAdsRow.campaign_conversion_goal:type_name -> google.ads.googleads.v17.resources.CampaignConversionGoal + 64, // 61: google.ads.googleads.v17.services.GoogleAdsRow.campaign_criterion:type_name -> google.ads.googleads.v17.resources.CampaignCriterion + 65, // 62: google.ads.googleads.v17.services.GoogleAdsRow.campaign_customizer:type_name -> google.ads.googleads.v17.resources.CampaignCustomizer + 66, // 63: google.ads.googleads.v17.services.GoogleAdsRow.campaign_draft:type_name -> google.ads.googleads.v17.resources.CampaignDraft + 67, // 64: google.ads.googleads.v17.services.GoogleAdsRow.campaign_extension_setting:type_name -> google.ads.googleads.v17.resources.CampaignExtensionSetting + 68, // 65: google.ads.googleads.v17.services.GoogleAdsRow.campaign_feed:type_name -> google.ads.googleads.v17.resources.CampaignFeed + 69, // 66: google.ads.googleads.v17.services.GoogleAdsRow.campaign_group:type_name -> google.ads.googleads.v17.resources.CampaignGroup + 70, // 67: google.ads.googleads.v17.services.GoogleAdsRow.campaign_label:type_name -> google.ads.googleads.v17.resources.CampaignLabel + 71, // 68: google.ads.googleads.v17.services.GoogleAdsRow.campaign_lifecycle_goal:type_name -> google.ads.googleads.v17.resources.CampaignLifecycleGoal + 72, // 69: google.ads.googleads.v17.services.GoogleAdsRow.campaign_search_term_insight:type_name -> google.ads.googleads.v17.resources.CampaignSearchTermInsight + 73, // 70: google.ads.googleads.v17.services.GoogleAdsRow.campaign_shared_set:type_name -> google.ads.googleads.v17.resources.CampaignSharedSet + 74, // 71: google.ads.googleads.v17.services.GoogleAdsRow.campaign_simulation:type_name -> google.ads.googleads.v17.resources.CampaignSimulation + 75, // 72: google.ads.googleads.v17.services.GoogleAdsRow.carrier_constant:type_name -> google.ads.googleads.v17.resources.CarrierConstant + 76, // 73: google.ads.googleads.v17.services.GoogleAdsRow.change_event:type_name -> google.ads.googleads.v17.resources.ChangeEvent + 77, // 74: google.ads.googleads.v17.services.GoogleAdsRow.change_status:type_name -> google.ads.googleads.v17.resources.ChangeStatus + 78, // 75: google.ads.googleads.v17.services.GoogleAdsRow.combined_audience:type_name -> google.ads.googleads.v17.resources.CombinedAudience + 79, // 76: google.ads.googleads.v17.services.GoogleAdsRow.audience:type_name -> google.ads.googleads.v17.resources.Audience + 80, // 77: google.ads.googleads.v17.services.GoogleAdsRow.conversion_action:type_name -> google.ads.googleads.v17.resources.ConversionAction + 81, // 78: google.ads.googleads.v17.services.GoogleAdsRow.conversion_custom_variable:type_name -> google.ads.googleads.v17.resources.ConversionCustomVariable + 82, // 79: google.ads.googleads.v17.services.GoogleAdsRow.conversion_goal_campaign_config:type_name -> google.ads.googleads.v17.resources.ConversionGoalCampaignConfig + 83, // 80: google.ads.googleads.v17.services.GoogleAdsRow.conversion_value_rule:type_name -> google.ads.googleads.v17.resources.ConversionValueRule + 84, // 81: google.ads.googleads.v17.services.GoogleAdsRow.conversion_value_rule_set:type_name -> google.ads.googleads.v17.resources.ConversionValueRuleSet + 85, // 82: google.ads.googleads.v17.services.GoogleAdsRow.click_view:type_name -> google.ads.googleads.v17.resources.ClickView + 86, // 83: google.ads.googleads.v17.services.GoogleAdsRow.currency_constant:type_name -> google.ads.googleads.v17.resources.CurrencyConstant + 87, // 84: google.ads.googleads.v17.services.GoogleAdsRow.custom_audience:type_name -> google.ads.googleads.v17.resources.CustomAudience + 88, // 85: google.ads.googleads.v17.services.GoogleAdsRow.custom_conversion_goal:type_name -> google.ads.googleads.v17.resources.CustomConversionGoal + 89, // 86: google.ads.googleads.v17.services.GoogleAdsRow.custom_interest:type_name -> google.ads.googleads.v17.resources.CustomInterest + 90, // 87: google.ads.googleads.v17.services.GoogleAdsRow.customer:type_name -> google.ads.googleads.v17.resources.Customer + 91, // 88: google.ads.googleads.v17.services.GoogleAdsRow.customer_asset:type_name -> google.ads.googleads.v17.resources.CustomerAsset + 92, // 89: google.ads.googleads.v17.services.GoogleAdsRow.customer_asset_set:type_name -> google.ads.googleads.v17.resources.CustomerAssetSet + 93, // 90: google.ads.googleads.v17.services.GoogleAdsRow.accessible_bidding_strategy:type_name -> google.ads.googleads.v17.resources.AccessibleBiddingStrategy + 94, // 91: google.ads.googleads.v17.services.GoogleAdsRow.customer_customizer:type_name -> google.ads.googleads.v17.resources.CustomerCustomizer + 95, // 92: google.ads.googleads.v17.services.GoogleAdsRow.customer_manager_link:type_name -> google.ads.googleads.v17.resources.CustomerManagerLink + 96, // 93: google.ads.googleads.v17.services.GoogleAdsRow.customer_client_link:type_name -> google.ads.googleads.v17.resources.CustomerClientLink + 97, // 94: google.ads.googleads.v17.services.GoogleAdsRow.customer_client:type_name -> google.ads.googleads.v17.resources.CustomerClient + 98, // 95: google.ads.googleads.v17.services.GoogleAdsRow.customer_conversion_goal:type_name -> google.ads.googleads.v17.resources.CustomerConversionGoal + 99, // 96: google.ads.googleads.v17.services.GoogleAdsRow.customer_extension_setting:type_name -> google.ads.googleads.v17.resources.CustomerExtensionSetting + 100, // 97: google.ads.googleads.v17.services.GoogleAdsRow.customer_feed:type_name -> google.ads.googleads.v17.resources.CustomerFeed + 101, // 98: google.ads.googleads.v17.services.GoogleAdsRow.customer_label:type_name -> google.ads.googleads.v17.resources.CustomerLabel + 102, // 99: google.ads.googleads.v17.services.GoogleAdsRow.customer_lifecycle_goal:type_name -> google.ads.googleads.v17.resources.CustomerLifecycleGoal + 103, // 100: google.ads.googleads.v17.services.GoogleAdsRow.customer_negative_criterion:type_name -> google.ads.googleads.v17.resources.CustomerNegativeCriterion + 104, // 101: google.ads.googleads.v17.services.GoogleAdsRow.customer_search_term_insight:type_name -> google.ads.googleads.v17.resources.CustomerSearchTermInsight + 105, // 102: google.ads.googleads.v17.services.GoogleAdsRow.customer_user_access:type_name -> google.ads.googleads.v17.resources.CustomerUserAccess + 106, // 103: google.ads.googleads.v17.services.GoogleAdsRow.customer_user_access_invitation:type_name -> google.ads.googleads.v17.resources.CustomerUserAccessInvitation + 107, // 104: google.ads.googleads.v17.services.GoogleAdsRow.customizer_attribute:type_name -> google.ads.googleads.v17.resources.CustomizerAttribute + 108, // 105: google.ads.googleads.v17.services.GoogleAdsRow.detail_placement_view:type_name -> google.ads.googleads.v17.resources.DetailPlacementView + 109, // 106: google.ads.googleads.v17.services.GoogleAdsRow.detailed_demographic:type_name -> google.ads.googleads.v17.resources.DetailedDemographic + 110, // 107: google.ads.googleads.v17.services.GoogleAdsRow.display_keyword_view:type_name -> google.ads.googleads.v17.resources.DisplayKeywordView + 111, // 108: google.ads.googleads.v17.services.GoogleAdsRow.distance_view:type_name -> google.ads.googleads.v17.resources.DistanceView + 112, // 109: google.ads.googleads.v17.services.GoogleAdsRow.dynamic_search_ads_search_term_view:type_name -> google.ads.googleads.v17.resources.DynamicSearchAdsSearchTermView + 113, // 110: google.ads.googleads.v17.services.GoogleAdsRow.expanded_landing_page_view:type_name -> google.ads.googleads.v17.resources.ExpandedLandingPageView + 114, // 111: google.ads.googleads.v17.services.GoogleAdsRow.extension_feed_item:type_name -> google.ads.googleads.v17.resources.ExtensionFeedItem + 115, // 112: google.ads.googleads.v17.services.GoogleAdsRow.feed:type_name -> google.ads.googleads.v17.resources.Feed + 116, // 113: google.ads.googleads.v17.services.GoogleAdsRow.feed_item:type_name -> google.ads.googleads.v17.resources.FeedItem + 117, // 114: google.ads.googleads.v17.services.GoogleAdsRow.feed_item_set:type_name -> google.ads.googleads.v17.resources.FeedItemSet + 118, // 115: google.ads.googleads.v17.services.GoogleAdsRow.feed_item_set_link:type_name -> google.ads.googleads.v17.resources.FeedItemSetLink + 119, // 116: google.ads.googleads.v17.services.GoogleAdsRow.feed_item_target:type_name -> google.ads.googleads.v17.resources.FeedItemTarget + 120, // 117: google.ads.googleads.v17.services.GoogleAdsRow.feed_mapping:type_name -> google.ads.googleads.v17.resources.FeedMapping + 121, // 118: google.ads.googleads.v17.services.GoogleAdsRow.feed_placeholder_view:type_name -> google.ads.googleads.v17.resources.FeedPlaceholderView + 122, // 119: google.ads.googleads.v17.services.GoogleAdsRow.gender_view:type_name -> google.ads.googleads.v17.resources.GenderView + 123, // 120: google.ads.googleads.v17.services.GoogleAdsRow.geo_target_constant:type_name -> google.ads.googleads.v17.resources.GeoTargetConstant + 124, // 121: google.ads.googleads.v17.services.GoogleAdsRow.geographic_view:type_name -> google.ads.googleads.v17.resources.GeographicView + 125, // 122: google.ads.googleads.v17.services.GoogleAdsRow.group_placement_view:type_name -> google.ads.googleads.v17.resources.GroupPlacementView + 126, // 123: google.ads.googleads.v17.services.GoogleAdsRow.hotel_group_view:type_name -> google.ads.googleads.v17.resources.HotelGroupView + 127, // 124: google.ads.googleads.v17.services.GoogleAdsRow.hotel_performance_view:type_name -> google.ads.googleads.v17.resources.HotelPerformanceView + 128, // 125: google.ads.googleads.v17.services.GoogleAdsRow.hotel_reconciliation:type_name -> google.ads.googleads.v17.resources.HotelReconciliation + 129, // 126: google.ads.googleads.v17.services.GoogleAdsRow.income_range_view:type_name -> google.ads.googleads.v17.resources.IncomeRangeView + 130, // 127: google.ads.googleads.v17.services.GoogleAdsRow.keyword_view:type_name -> google.ads.googleads.v17.resources.KeywordView + 131, // 128: google.ads.googleads.v17.services.GoogleAdsRow.keyword_plan:type_name -> google.ads.googleads.v17.resources.KeywordPlan + 132, // 129: google.ads.googleads.v17.services.GoogleAdsRow.keyword_plan_campaign:type_name -> google.ads.googleads.v17.resources.KeywordPlanCampaign + 133, // 130: google.ads.googleads.v17.services.GoogleAdsRow.keyword_plan_campaign_keyword:type_name -> google.ads.googleads.v17.resources.KeywordPlanCampaignKeyword + 134, // 131: google.ads.googleads.v17.services.GoogleAdsRow.keyword_plan_ad_group:type_name -> google.ads.googleads.v17.resources.KeywordPlanAdGroup + 135, // 132: google.ads.googleads.v17.services.GoogleAdsRow.keyword_plan_ad_group_keyword:type_name -> google.ads.googleads.v17.resources.KeywordPlanAdGroupKeyword + 136, // 133: google.ads.googleads.v17.services.GoogleAdsRow.keyword_theme_constant:type_name -> google.ads.googleads.v17.resources.KeywordThemeConstant + 137, // 134: google.ads.googleads.v17.services.GoogleAdsRow.label:type_name -> google.ads.googleads.v17.resources.Label + 138, // 135: google.ads.googleads.v17.services.GoogleAdsRow.landing_page_view:type_name -> google.ads.googleads.v17.resources.LandingPageView + 139, // 136: google.ads.googleads.v17.services.GoogleAdsRow.language_constant:type_name -> google.ads.googleads.v17.resources.LanguageConstant + 140, // 137: google.ads.googleads.v17.services.GoogleAdsRow.location_view:type_name -> google.ads.googleads.v17.resources.LocationView + 141, // 138: google.ads.googleads.v17.services.GoogleAdsRow.managed_placement_view:type_name -> google.ads.googleads.v17.resources.ManagedPlacementView + 142, // 139: google.ads.googleads.v17.services.GoogleAdsRow.media_file:type_name -> google.ads.googleads.v17.resources.MediaFile + 143, // 140: google.ads.googleads.v17.services.GoogleAdsRow.local_services_employee:type_name -> google.ads.googleads.v17.resources.LocalServicesEmployee + 144, // 141: google.ads.googleads.v17.services.GoogleAdsRow.local_services_verification_artifact:type_name -> google.ads.googleads.v17.resources.LocalServicesVerificationArtifact + 145, // 142: google.ads.googleads.v17.services.GoogleAdsRow.mobile_app_category_constant:type_name -> google.ads.googleads.v17.resources.MobileAppCategoryConstant + 146, // 143: google.ads.googleads.v17.services.GoogleAdsRow.mobile_device_constant:type_name -> google.ads.googleads.v17.resources.MobileDeviceConstant + 147, // 144: google.ads.googleads.v17.services.GoogleAdsRow.offline_conversion_upload_client_summary:type_name -> google.ads.googleads.v17.resources.OfflineConversionUploadClientSummary + 148, // 145: google.ads.googleads.v17.services.GoogleAdsRow.offline_user_data_job:type_name -> google.ads.googleads.v17.resources.OfflineUserDataJob + 149, // 146: google.ads.googleads.v17.services.GoogleAdsRow.operating_system_version_constant:type_name -> google.ads.googleads.v17.resources.OperatingSystemVersionConstant + 150, // 147: google.ads.googleads.v17.services.GoogleAdsRow.paid_organic_search_term_view:type_name -> google.ads.googleads.v17.resources.PaidOrganicSearchTermView + 151, // 148: google.ads.googleads.v17.services.GoogleAdsRow.qualifying_question:type_name -> google.ads.googleads.v17.resources.QualifyingQuestion + 152, // 149: google.ads.googleads.v17.services.GoogleAdsRow.parental_status_view:type_name -> google.ads.googleads.v17.resources.ParentalStatusView + 153, // 150: google.ads.googleads.v17.services.GoogleAdsRow.per_store_view:type_name -> google.ads.googleads.v17.resources.PerStoreView + 154, // 151: google.ads.googleads.v17.services.GoogleAdsRow.product_category_constant:type_name -> google.ads.googleads.v17.resources.ProductCategoryConstant + 155, // 152: google.ads.googleads.v17.services.GoogleAdsRow.product_group_view:type_name -> google.ads.googleads.v17.resources.ProductGroupView + 156, // 153: google.ads.googleads.v17.services.GoogleAdsRow.product_link:type_name -> google.ads.googleads.v17.resources.ProductLink + 157, // 154: google.ads.googleads.v17.services.GoogleAdsRow.product_link_invitation:type_name -> google.ads.googleads.v17.resources.ProductLinkInvitation + 158, // 155: google.ads.googleads.v17.services.GoogleAdsRow.recommendation:type_name -> google.ads.googleads.v17.resources.Recommendation + 159, // 156: google.ads.googleads.v17.services.GoogleAdsRow.recommendation_subscription:type_name -> google.ads.googleads.v17.resources.RecommendationSubscription + 160, // 157: google.ads.googleads.v17.services.GoogleAdsRow.search_term_view:type_name -> google.ads.googleads.v17.resources.SearchTermView + 161, // 158: google.ads.googleads.v17.services.GoogleAdsRow.shared_criterion:type_name -> google.ads.googleads.v17.resources.SharedCriterion + 162, // 159: google.ads.googleads.v17.services.GoogleAdsRow.shared_set:type_name -> google.ads.googleads.v17.resources.SharedSet + 163, // 160: google.ads.googleads.v17.services.GoogleAdsRow.smart_campaign_setting:type_name -> google.ads.googleads.v17.resources.SmartCampaignSetting + 164, // 161: google.ads.googleads.v17.services.GoogleAdsRow.shopping_performance_view:type_name -> google.ads.googleads.v17.resources.ShoppingPerformanceView + 165, // 162: google.ads.googleads.v17.services.GoogleAdsRow.shopping_product:type_name -> google.ads.googleads.v17.resources.ShoppingProduct + 166, // 163: google.ads.googleads.v17.services.GoogleAdsRow.smart_campaign_search_term_view:type_name -> google.ads.googleads.v17.resources.SmartCampaignSearchTermView + 167, // 164: google.ads.googleads.v17.services.GoogleAdsRow.third_party_app_analytics_link:type_name -> google.ads.googleads.v17.resources.ThirdPartyAppAnalyticsLink + 168, // 165: google.ads.googleads.v17.services.GoogleAdsRow.topic_view:type_name -> google.ads.googleads.v17.resources.TopicView + 169, // 166: google.ads.googleads.v17.services.GoogleAdsRow.travel_activity_group_view:type_name -> google.ads.googleads.v17.resources.TravelActivityGroupView + 170, // 167: google.ads.googleads.v17.services.GoogleAdsRow.travel_activity_performance_view:type_name -> google.ads.googleads.v17.resources.TravelActivityPerformanceView + 171, // 168: google.ads.googleads.v17.services.GoogleAdsRow.experiment:type_name -> google.ads.googleads.v17.resources.Experiment + 172, // 169: google.ads.googleads.v17.services.GoogleAdsRow.experiment_arm:type_name -> google.ads.googleads.v17.resources.ExperimentArm + 173, // 170: google.ads.googleads.v17.services.GoogleAdsRow.user_interest:type_name -> google.ads.googleads.v17.resources.UserInterest + 174, // 171: google.ads.googleads.v17.services.GoogleAdsRow.life_event:type_name -> google.ads.googleads.v17.resources.LifeEvent + 175, // 172: google.ads.googleads.v17.services.GoogleAdsRow.user_list:type_name -> google.ads.googleads.v17.resources.UserList + 176, // 173: google.ads.googleads.v17.services.GoogleAdsRow.user_list_customer_type:type_name -> google.ads.googleads.v17.resources.UserListCustomerType + 177, // 174: google.ads.googleads.v17.services.GoogleAdsRow.user_location_view:type_name -> google.ads.googleads.v17.resources.UserLocationView + 178, // 175: google.ads.googleads.v17.services.GoogleAdsRow.remarketing_action:type_name -> google.ads.googleads.v17.resources.RemarketingAction + 179, // 176: google.ads.googleads.v17.services.GoogleAdsRow.topic_constant:type_name -> google.ads.googleads.v17.resources.TopicConstant + 180, // 177: google.ads.googleads.v17.services.GoogleAdsRow.video:type_name -> google.ads.googleads.v17.resources.Video + 181, // 178: google.ads.googleads.v17.services.GoogleAdsRow.webpage_view:type_name -> google.ads.googleads.v17.resources.WebpageView + 182, // 179: google.ads.googleads.v17.services.GoogleAdsRow.lead_form_submission_data:type_name -> google.ads.googleads.v17.resources.LeadFormSubmissionData + 183, // 180: google.ads.googleads.v17.services.GoogleAdsRow.local_services_lead:type_name -> google.ads.googleads.v17.resources.LocalServicesLead + 184, // 181: google.ads.googleads.v17.services.GoogleAdsRow.local_services_lead_conversation:type_name -> google.ads.googleads.v17.resources.LocalServicesLeadConversation + 185, // 182: google.ads.googleads.v17.services.GoogleAdsRow.android_privacy_shared_key_google_ad_group:type_name -> google.ads.googleads.v17.resources.AndroidPrivacySharedKeyGoogleAdGroup + 186, // 183: google.ads.googleads.v17.services.GoogleAdsRow.android_privacy_shared_key_google_campaign:type_name -> google.ads.googleads.v17.resources.AndroidPrivacySharedKeyGoogleCampaign + 187, // 184: google.ads.googleads.v17.services.GoogleAdsRow.android_privacy_shared_key_google_network_type:type_name -> google.ads.googleads.v17.resources.AndroidPrivacySharedKeyGoogleNetworkType + 188, // 185: google.ads.googleads.v17.services.GoogleAdsRow.metrics:type_name -> google.ads.googleads.v17.common.Metrics + 189, // 186: google.ads.googleads.v17.services.GoogleAdsRow.segments:type_name -> google.ads.googleads.v17.common.Segments + 7, // 187: google.ads.googleads.v17.services.MutateGoogleAdsRequest.mutate_operations:type_name -> google.ads.googleads.v17.services.MutateOperation + 190, // 188: google.ads.googleads.v17.services.MutateGoogleAdsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 191, // 189: google.ads.googleads.v17.services.MutateGoogleAdsResponse.partial_failure_error:type_name -> google.rpc.Status + 8, // 190: google.ads.googleads.v17.services.MutateGoogleAdsResponse.mutate_operation_responses:type_name -> google.ads.googleads.v17.services.MutateOperationResponse + 192, // 191: google.ads.googleads.v17.services.MutateOperation.ad_group_ad_label_operation:type_name -> google.ads.googleads.v17.services.AdGroupAdLabelOperation + 193, // 192: google.ads.googleads.v17.services.MutateOperation.ad_group_ad_operation:type_name -> google.ads.googleads.v17.services.AdGroupAdOperation + 194, // 193: google.ads.googleads.v17.services.MutateOperation.ad_group_asset_operation:type_name -> google.ads.googleads.v17.services.AdGroupAssetOperation + 195, // 194: google.ads.googleads.v17.services.MutateOperation.ad_group_bid_modifier_operation:type_name -> google.ads.googleads.v17.services.AdGroupBidModifierOperation + 196, // 195: google.ads.googleads.v17.services.MutateOperation.ad_group_criterion_customizer_operation:type_name -> google.ads.googleads.v17.services.AdGroupCriterionCustomizerOperation + 197, // 196: google.ads.googleads.v17.services.MutateOperation.ad_group_criterion_label_operation:type_name -> google.ads.googleads.v17.services.AdGroupCriterionLabelOperation + 198, // 197: google.ads.googleads.v17.services.MutateOperation.ad_group_criterion_operation:type_name -> google.ads.googleads.v17.services.AdGroupCriterionOperation + 199, // 198: google.ads.googleads.v17.services.MutateOperation.ad_group_customizer_operation:type_name -> google.ads.googleads.v17.services.AdGroupCustomizerOperation + 200, // 199: google.ads.googleads.v17.services.MutateOperation.ad_group_extension_setting_operation:type_name -> google.ads.googleads.v17.services.AdGroupExtensionSettingOperation + 201, // 200: google.ads.googleads.v17.services.MutateOperation.ad_group_feed_operation:type_name -> google.ads.googleads.v17.services.AdGroupFeedOperation + 202, // 201: google.ads.googleads.v17.services.MutateOperation.ad_group_label_operation:type_name -> google.ads.googleads.v17.services.AdGroupLabelOperation + 203, // 202: google.ads.googleads.v17.services.MutateOperation.ad_group_operation:type_name -> google.ads.googleads.v17.services.AdGroupOperation + 204, // 203: google.ads.googleads.v17.services.MutateOperation.ad_operation:type_name -> google.ads.googleads.v17.services.AdOperation + 205, // 204: google.ads.googleads.v17.services.MutateOperation.ad_parameter_operation:type_name -> google.ads.googleads.v17.services.AdParameterOperation + 206, // 205: google.ads.googleads.v17.services.MutateOperation.asset_operation:type_name -> google.ads.googleads.v17.services.AssetOperation + 207, // 206: google.ads.googleads.v17.services.MutateOperation.asset_group_asset_operation:type_name -> google.ads.googleads.v17.services.AssetGroupAssetOperation + 208, // 207: google.ads.googleads.v17.services.MutateOperation.asset_group_listing_group_filter_operation:type_name -> google.ads.googleads.v17.services.AssetGroupListingGroupFilterOperation + 209, // 208: google.ads.googleads.v17.services.MutateOperation.asset_group_signal_operation:type_name -> google.ads.googleads.v17.services.AssetGroupSignalOperation + 210, // 209: google.ads.googleads.v17.services.MutateOperation.asset_group_operation:type_name -> google.ads.googleads.v17.services.AssetGroupOperation + 211, // 210: google.ads.googleads.v17.services.MutateOperation.asset_set_asset_operation:type_name -> google.ads.googleads.v17.services.AssetSetAssetOperation + 212, // 211: google.ads.googleads.v17.services.MutateOperation.asset_set_operation:type_name -> google.ads.googleads.v17.services.AssetSetOperation + 213, // 212: google.ads.googleads.v17.services.MutateOperation.audience_operation:type_name -> google.ads.googleads.v17.services.AudienceOperation + 214, // 213: google.ads.googleads.v17.services.MutateOperation.bidding_data_exclusion_operation:type_name -> google.ads.googleads.v17.services.BiddingDataExclusionOperation + 215, // 214: google.ads.googleads.v17.services.MutateOperation.bidding_seasonality_adjustment_operation:type_name -> google.ads.googleads.v17.services.BiddingSeasonalityAdjustmentOperation + 216, // 215: google.ads.googleads.v17.services.MutateOperation.bidding_strategy_operation:type_name -> google.ads.googleads.v17.services.BiddingStrategyOperation + 217, // 216: google.ads.googleads.v17.services.MutateOperation.campaign_asset_operation:type_name -> google.ads.googleads.v17.services.CampaignAssetOperation + 218, // 217: google.ads.googleads.v17.services.MutateOperation.campaign_asset_set_operation:type_name -> google.ads.googleads.v17.services.CampaignAssetSetOperation + 219, // 218: google.ads.googleads.v17.services.MutateOperation.campaign_bid_modifier_operation:type_name -> google.ads.googleads.v17.services.CampaignBidModifierOperation + 220, // 219: google.ads.googleads.v17.services.MutateOperation.campaign_budget_operation:type_name -> google.ads.googleads.v17.services.CampaignBudgetOperation + 221, // 220: google.ads.googleads.v17.services.MutateOperation.campaign_conversion_goal_operation:type_name -> google.ads.googleads.v17.services.CampaignConversionGoalOperation + 222, // 221: google.ads.googleads.v17.services.MutateOperation.campaign_criterion_operation:type_name -> google.ads.googleads.v17.services.CampaignCriterionOperation + 223, // 222: google.ads.googleads.v17.services.MutateOperation.campaign_customizer_operation:type_name -> google.ads.googleads.v17.services.CampaignCustomizerOperation + 224, // 223: google.ads.googleads.v17.services.MutateOperation.campaign_draft_operation:type_name -> google.ads.googleads.v17.services.CampaignDraftOperation + 225, // 224: google.ads.googleads.v17.services.MutateOperation.campaign_extension_setting_operation:type_name -> google.ads.googleads.v17.services.CampaignExtensionSettingOperation + 226, // 225: google.ads.googleads.v17.services.MutateOperation.campaign_feed_operation:type_name -> google.ads.googleads.v17.services.CampaignFeedOperation + 227, // 226: google.ads.googleads.v17.services.MutateOperation.campaign_group_operation:type_name -> google.ads.googleads.v17.services.CampaignGroupOperation + 228, // 227: google.ads.googleads.v17.services.MutateOperation.campaign_label_operation:type_name -> google.ads.googleads.v17.services.CampaignLabelOperation + 229, // 228: google.ads.googleads.v17.services.MutateOperation.campaign_operation:type_name -> google.ads.googleads.v17.services.CampaignOperation + 230, // 229: google.ads.googleads.v17.services.MutateOperation.campaign_shared_set_operation:type_name -> google.ads.googleads.v17.services.CampaignSharedSetOperation + 231, // 230: google.ads.googleads.v17.services.MutateOperation.conversion_action_operation:type_name -> google.ads.googleads.v17.services.ConversionActionOperation + 232, // 231: google.ads.googleads.v17.services.MutateOperation.conversion_custom_variable_operation:type_name -> google.ads.googleads.v17.services.ConversionCustomVariableOperation + 233, // 232: google.ads.googleads.v17.services.MutateOperation.conversion_goal_campaign_config_operation:type_name -> google.ads.googleads.v17.services.ConversionGoalCampaignConfigOperation + 234, // 233: google.ads.googleads.v17.services.MutateOperation.conversion_value_rule_operation:type_name -> google.ads.googleads.v17.services.ConversionValueRuleOperation + 235, // 234: google.ads.googleads.v17.services.MutateOperation.conversion_value_rule_set_operation:type_name -> google.ads.googleads.v17.services.ConversionValueRuleSetOperation + 236, // 235: google.ads.googleads.v17.services.MutateOperation.custom_conversion_goal_operation:type_name -> google.ads.googleads.v17.services.CustomConversionGoalOperation + 237, // 236: google.ads.googleads.v17.services.MutateOperation.customer_asset_operation:type_name -> google.ads.googleads.v17.services.CustomerAssetOperation + 238, // 237: google.ads.googleads.v17.services.MutateOperation.customer_conversion_goal_operation:type_name -> google.ads.googleads.v17.services.CustomerConversionGoalOperation + 239, // 238: google.ads.googleads.v17.services.MutateOperation.customer_customizer_operation:type_name -> google.ads.googleads.v17.services.CustomerCustomizerOperation + 240, // 239: google.ads.googleads.v17.services.MutateOperation.customer_extension_setting_operation:type_name -> google.ads.googleads.v17.services.CustomerExtensionSettingOperation + 241, // 240: google.ads.googleads.v17.services.MutateOperation.customer_feed_operation:type_name -> google.ads.googleads.v17.services.CustomerFeedOperation + 242, // 241: google.ads.googleads.v17.services.MutateOperation.customer_label_operation:type_name -> google.ads.googleads.v17.services.CustomerLabelOperation + 243, // 242: google.ads.googleads.v17.services.MutateOperation.customer_negative_criterion_operation:type_name -> google.ads.googleads.v17.services.CustomerNegativeCriterionOperation + 244, // 243: google.ads.googleads.v17.services.MutateOperation.customer_operation:type_name -> google.ads.googleads.v17.services.CustomerOperation + 245, // 244: google.ads.googleads.v17.services.MutateOperation.customizer_attribute_operation:type_name -> google.ads.googleads.v17.services.CustomizerAttributeOperation + 246, // 245: google.ads.googleads.v17.services.MutateOperation.experiment_operation:type_name -> google.ads.googleads.v17.services.ExperimentOperation + 247, // 246: google.ads.googleads.v17.services.MutateOperation.experiment_arm_operation:type_name -> google.ads.googleads.v17.services.ExperimentArmOperation + 248, // 247: google.ads.googleads.v17.services.MutateOperation.extension_feed_item_operation:type_name -> google.ads.googleads.v17.services.ExtensionFeedItemOperation + 249, // 248: google.ads.googleads.v17.services.MutateOperation.feed_item_operation:type_name -> google.ads.googleads.v17.services.FeedItemOperation + 250, // 249: google.ads.googleads.v17.services.MutateOperation.feed_item_set_operation:type_name -> google.ads.googleads.v17.services.FeedItemSetOperation + 251, // 250: google.ads.googleads.v17.services.MutateOperation.feed_item_set_link_operation:type_name -> google.ads.googleads.v17.services.FeedItemSetLinkOperation + 252, // 251: google.ads.googleads.v17.services.MutateOperation.feed_item_target_operation:type_name -> google.ads.googleads.v17.services.FeedItemTargetOperation + 253, // 252: google.ads.googleads.v17.services.MutateOperation.feed_mapping_operation:type_name -> google.ads.googleads.v17.services.FeedMappingOperation + 254, // 253: google.ads.googleads.v17.services.MutateOperation.feed_operation:type_name -> google.ads.googleads.v17.services.FeedOperation + 255, // 254: google.ads.googleads.v17.services.MutateOperation.keyword_plan_ad_group_operation:type_name -> google.ads.googleads.v17.services.KeywordPlanAdGroupOperation + 256, // 255: google.ads.googleads.v17.services.MutateOperation.keyword_plan_ad_group_keyword_operation:type_name -> google.ads.googleads.v17.services.KeywordPlanAdGroupKeywordOperation + 257, // 256: google.ads.googleads.v17.services.MutateOperation.keyword_plan_campaign_keyword_operation:type_name -> google.ads.googleads.v17.services.KeywordPlanCampaignKeywordOperation + 258, // 257: google.ads.googleads.v17.services.MutateOperation.keyword_plan_campaign_operation:type_name -> google.ads.googleads.v17.services.KeywordPlanCampaignOperation + 259, // 258: google.ads.googleads.v17.services.MutateOperation.keyword_plan_operation:type_name -> google.ads.googleads.v17.services.KeywordPlanOperation + 260, // 259: google.ads.googleads.v17.services.MutateOperation.label_operation:type_name -> google.ads.googleads.v17.services.LabelOperation + 261, // 260: google.ads.googleads.v17.services.MutateOperation.recommendation_subscription_operation:type_name -> google.ads.googleads.v17.services.RecommendationSubscriptionOperation + 262, // 261: google.ads.googleads.v17.services.MutateOperation.remarketing_action_operation:type_name -> google.ads.googleads.v17.services.RemarketingActionOperation + 263, // 262: google.ads.googleads.v17.services.MutateOperation.shared_criterion_operation:type_name -> google.ads.googleads.v17.services.SharedCriterionOperation + 264, // 263: google.ads.googleads.v17.services.MutateOperation.shared_set_operation:type_name -> google.ads.googleads.v17.services.SharedSetOperation + 265, // 264: google.ads.googleads.v17.services.MutateOperation.smart_campaign_setting_operation:type_name -> google.ads.googleads.v17.services.SmartCampaignSettingOperation + 266, // 265: google.ads.googleads.v17.services.MutateOperation.user_list_operation:type_name -> google.ads.googleads.v17.services.UserListOperation + 267, // 266: google.ads.googleads.v17.services.MutateOperationResponse.ad_group_ad_label_result:type_name -> google.ads.googleads.v17.services.MutateAdGroupAdLabelResult + 268, // 267: google.ads.googleads.v17.services.MutateOperationResponse.ad_group_ad_result:type_name -> google.ads.googleads.v17.services.MutateAdGroupAdResult + 269, // 268: google.ads.googleads.v17.services.MutateOperationResponse.ad_group_asset_result:type_name -> google.ads.googleads.v17.services.MutateAdGroupAssetResult + 270, // 269: google.ads.googleads.v17.services.MutateOperationResponse.ad_group_bid_modifier_result:type_name -> google.ads.googleads.v17.services.MutateAdGroupBidModifierResult + 271, // 270: google.ads.googleads.v17.services.MutateOperationResponse.ad_group_criterion_customizer_result:type_name -> google.ads.googleads.v17.services.MutateAdGroupCriterionCustomizerResult + 272, // 271: google.ads.googleads.v17.services.MutateOperationResponse.ad_group_criterion_label_result:type_name -> google.ads.googleads.v17.services.MutateAdGroupCriterionLabelResult + 273, // 272: google.ads.googleads.v17.services.MutateOperationResponse.ad_group_criterion_result:type_name -> google.ads.googleads.v17.services.MutateAdGroupCriterionResult + 274, // 273: google.ads.googleads.v17.services.MutateOperationResponse.ad_group_customizer_result:type_name -> google.ads.googleads.v17.services.MutateAdGroupCustomizerResult + 275, // 274: google.ads.googleads.v17.services.MutateOperationResponse.ad_group_extension_setting_result:type_name -> google.ads.googleads.v17.services.MutateAdGroupExtensionSettingResult + 276, // 275: google.ads.googleads.v17.services.MutateOperationResponse.ad_group_feed_result:type_name -> google.ads.googleads.v17.services.MutateAdGroupFeedResult + 277, // 276: google.ads.googleads.v17.services.MutateOperationResponse.ad_group_label_result:type_name -> google.ads.googleads.v17.services.MutateAdGroupLabelResult + 278, // 277: google.ads.googleads.v17.services.MutateOperationResponse.ad_group_result:type_name -> google.ads.googleads.v17.services.MutateAdGroupResult + 279, // 278: google.ads.googleads.v17.services.MutateOperationResponse.ad_parameter_result:type_name -> google.ads.googleads.v17.services.MutateAdParameterResult + 280, // 279: google.ads.googleads.v17.services.MutateOperationResponse.ad_result:type_name -> google.ads.googleads.v17.services.MutateAdResult + 281, // 280: google.ads.googleads.v17.services.MutateOperationResponse.asset_result:type_name -> google.ads.googleads.v17.services.MutateAssetResult + 282, // 281: google.ads.googleads.v17.services.MutateOperationResponse.asset_group_asset_result:type_name -> google.ads.googleads.v17.services.MutateAssetGroupAssetResult + 283, // 282: google.ads.googleads.v17.services.MutateOperationResponse.asset_group_listing_group_filter_result:type_name -> google.ads.googleads.v17.services.MutateAssetGroupListingGroupFilterResult + 284, // 283: google.ads.googleads.v17.services.MutateOperationResponse.asset_group_signal_result:type_name -> google.ads.googleads.v17.services.MutateAssetGroupSignalResult + 285, // 284: google.ads.googleads.v17.services.MutateOperationResponse.asset_group_result:type_name -> google.ads.googleads.v17.services.MutateAssetGroupResult + 286, // 285: google.ads.googleads.v17.services.MutateOperationResponse.asset_set_asset_result:type_name -> google.ads.googleads.v17.services.MutateAssetSetAssetResult + 287, // 286: google.ads.googleads.v17.services.MutateOperationResponse.asset_set_result:type_name -> google.ads.googleads.v17.services.MutateAssetSetResult + 288, // 287: google.ads.googleads.v17.services.MutateOperationResponse.audience_result:type_name -> google.ads.googleads.v17.services.MutateAudienceResult + 289, // 288: google.ads.googleads.v17.services.MutateOperationResponse.bidding_data_exclusion_result:type_name -> google.ads.googleads.v17.services.MutateBiddingDataExclusionsResult + 290, // 289: google.ads.googleads.v17.services.MutateOperationResponse.bidding_seasonality_adjustment_result:type_name -> google.ads.googleads.v17.services.MutateBiddingSeasonalityAdjustmentsResult + 291, // 290: google.ads.googleads.v17.services.MutateOperationResponse.bidding_strategy_result:type_name -> google.ads.googleads.v17.services.MutateBiddingStrategyResult + 292, // 291: google.ads.googleads.v17.services.MutateOperationResponse.campaign_asset_result:type_name -> google.ads.googleads.v17.services.MutateCampaignAssetResult + 293, // 292: google.ads.googleads.v17.services.MutateOperationResponse.campaign_asset_set_result:type_name -> google.ads.googleads.v17.services.MutateCampaignAssetSetResult + 294, // 293: google.ads.googleads.v17.services.MutateOperationResponse.campaign_bid_modifier_result:type_name -> google.ads.googleads.v17.services.MutateCampaignBidModifierResult + 295, // 294: google.ads.googleads.v17.services.MutateOperationResponse.campaign_budget_result:type_name -> google.ads.googleads.v17.services.MutateCampaignBudgetResult + 296, // 295: google.ads.googleads.v17.services.MutateOperationResponse.campaign_conversion_goal_result:type_name -> google.ads.googleads.v17.services.MutateCampaignConversionGoalResult + 297, // 296: google.ads.googleads.v17.services.MutateOperationResponse.campaign_criterion_result:type_name -> google.ads.googleads.v17.services.MutateCampaignCriterionResult + 298, // 297: google.ads.googleads.v17.services.MutateOperationResponse.campaign_customizer_result:type_name -> google.ads.googleads.v17.services.MutateCampaignCustomizerResult + 299, // 298: google.ads.googleads.v17.services.MutateOperationResponse.campaign_draft_result:type_name -> google.ads.googleads.v17.services.MutateCampaignDraftResult + 300, // 299: google.ads.googleads.v17.services.MutateOperationResponse.campaign_extension_setting_result:type_name -> google.ads.googleads.v17.services.MutateCampaignExtensionSettingResult + 301, // 300: google.ads.googleads.v17.services.MutateOperationResponse.campaign_feed_result:type_name -> google.ads.googleads.v17.services.MutateCampaignFeedResult + 302, // 301: google.ads.googleads.v17.services.MutateOperationResponse.campaign_group_result:type_name -> google.ads.googleads.v17.services.MutateCampaignGroupResult + 303, // 302: google.ads.googleads.v17.services.MutateOperationResponse.campaign_label_result:type_name -> google.ads.googleads.v17.services.MutateCampaignLabelResult + 304, // 303: google.ads.googleads.v17.services.MutateOperationResponse.campaign_result:type_name -> google.ads.googleads.v17.services.MutateCampaignResult + 305, // 304: google.ads.googleads.v17.services.MutateOperationResponse.campaign_shared_set_result:type_name -> google.ads.googleads.v17.services.MutateCampaignSharedSetResult + 306, // 305: google.ads.googleads.v17.services.MutateOperationResponse.conversion_action_result:type_name -> google.ads.googleads.v17.services.MutateConversionActionResult + 307, // 306: google.ads.googleads.v17.services.MutateOperationResponse.conversion_custom_variable_result:type_name -> google.ads.googleads.v17.services.MutateConversionCustomVariableResult + 308, // 307: google.ads.googleads.v17.services.MutateOperationResponse.conversion_goal_campaign_config_result:type_name -> google.ads.googleads.v17.services.MutateConversionGoalCampaignConfigResult + 309, // 308: google.ads.googleads.v17.services.MutateOperationResponse.conversion_value_rule_result:type_name -> google.ads.googleads.v17.services.MutateConversionValueRuleResult + 310, // 309: google.ads.googleads.v17.services.MutateOperationResponse.conversion_value_rule_set_result:type_name -> google.ads.googleads.v17.services.MutateConversionValueRuleSetResult + 311, // 310: google.ads.googleads.v17.services.MutateOperationResponse.custom_conversion_goal_result:type_name -> google.ads.googleads.v17.services.MutateCustomConversionGoalResult + 312, // 311: google.ads.googleads.v17.services.MutateOperationResponse.customer_asset_result:type_name -> google.ads.googleads.v17.services.MutateCustomerAssetResult + 313, // 312: google.ads.googleads.v17.services.MutateOperationResponse.customer_conversion_goal_result:type_name -> google.ads.googleads.v17.services.MutateCustomerConversionGoalResult + 314, // 313: google.ads.googleads.v17.services.MutateOperationResponse.customer_customizer_result:type_name -> google.ads.googleads.v17.services.MutateCustomerCustomizerResult + 315, // 314: google.ads.googleads.v17.services.MutateOperationResponse.customer_extension_setting_result:type_name -> google.ads.googleads.v17.services.MutateCustomerExtensionSettingResult + 316, // 315: google.ads.googleads.v17.services.MutateOperationResponse.customer_feed_result:type_name -> google.ads.googleads.v17.services.MutateCustomerFeedResult + 317, // 316: google.ads.googleads.v17.services.MutateOperationResponse.customer_label_result:type_name -> google.ads.googleads.v17.services.MutateCustomerLabelResult + 318, // 317: google.ads.googleads.v17.services.MutateOperationResponse.customer_negative_criterion_result:type_name -> google.ads.googleads.v17.services.MutateCustomerNegativeCriteriaResult + 319, // 318: google.ads.googleads.v17.services.MutateOperationResponse.customer_result:type_name -> google.ads.googleads.v17.services.MutateCustomerResult + 320, // 319: google.ads.googleads.v17.services.MutateOperationResponse.customizer_attribute_result:type_name -> google.ads.googleads.v17.services.MutateCustomizerAttributeResult + 321, // 320: google.ads.googleads.v17.services.MutateOperationResponse.experiment_result:type_name -> google.ads.googleads.v17.services.MutateExperimentResult + 322, // 321: google.ads.googleads.v17.services.MutateOperationResponse.experiment_arm_result:type_name -> google.ads.googleads.v17.services.MutateExperimentArmResult + 323, // 322: google.ads.googleads.v17.services.MutateOperationResponse.extension_feed_item_result:type_name -> google.ads.googleads.v17.services.MutateExtensionFeedItemResult + 324, // 323: google.ads.googleads.v17.services.MutateOperationResponse.feed_item_result:type_name -> google.ads.googleads.v17.services.MutateFeedItemResult + 325, // 324: google.ads.googleads.v17.services.MutateOperationResponse.feed_item_set_result:type_name -> google.ads.googleads.v17.services.MutateFeedItemSetResult + 326, // 325: google.ads.googleads.v17.services.MutateOperationResponse.feed_item_set_link_result:type_name -> google.ads.googleads.v17.services.MutateFeedItemSetLinkResult + 327, // 326: google.ads.googleads.v17.services.MutateOperationResponse.feed_item_target_result:type_name -> google.ads.googleads.v17.services.MutateFeedItemTargetResult + 328, // 327: google.ads.googleads.v17.services.MutateOperationResponse.feed_mapping_result:type_name -> google.ads.googleads.v17.services.MutateFeedMappingResult + 329, // 328: google.ads.googleads.v17.services.MutateOperationResponse.feed_result:type_name -> google.ads.googleads.v17.services.MutateFeedResult + 330, // 329: google.ads.googleads.v17.services.MutateOperationResponse.keyword_plan_ad_group_result:type_name -> google.ads.googleads.v17.services.MutateKeywordPlanAdGroupResult + 331, // 330: google.ads.googleads.v17.services.MutateOperationResponse.keyword_plan_campaign_result:type_name -> google.ads.googleads.v17.services.MutateKeywordPlanCampaignResult + 332, // 331: google.ads.googleads.v17.services.MutateOperationResponse.keyword_plan_ad_group_keyword_result:type_name -> google.ads.googleads.v17.services.MutateKeywordPlanAdGroupKeywordResult + 333, // 332: google.ads.googleads.v17.services.MutateOperationResponse.keyword_plan_campaign_keyword_result:type_name -> google.ads.googleads.v17.services.MutateKeywordPlanCampaignKeywordResult + 334, // 333: google.ads.googleads.v17.services.MutateOperationResponse.keyword_plan_result:type_name -> google.ads.googleads.v17.services.MutateKeywordPlansResult + 335, // 334: google.ads.googleads.v17.services.MutateOperationResponse.label_result:type_name -> google.ads.googleads.v17.services.MutateLabelResult + 336, // 335: google.ads.googleads.v17.services.MutateOperationResponse.recommendation_subscription_result:type_name -> google.ads.googleads.v17.services.MutateRecommendationSubscriptionResult + 337, // 336: google.ads.googleads.v17.services.MutateOperationResponse.remarketing_action_result:type_name -> google.ads.googleads.v17.services.MutateRemarketingActionResult + 338, // 337: google.ads.googleads.v17.services.MutateOperationResponse.shared_criterion_result:type_name -> google.ads.googleads.v17.services.MutateSharedCriterionResult + 339, // 338: google.ads.googleads.v17.services.MutateOperationResponse.shared_set_result:type_name -> google.ads.googleads.v17.services.MutateSharedSetResult + 340, // 339: google.ads.googleads.v17.services.MutateOperationResponse.smart_campaign_setting_result:type_name -> google.ads.googleads.v17.services.MutateSmartCampaignSettingResult + 341, // 340: google.ads.googleads.v17.services.MutateOperationResponse.user_list_result:type_name -> google.ads.googleads.v17.services.MutateUserListResult + 0, // 341: google.ads.googleads.v17.services.GoogleAdsService.Search:input_type -> google.ads.googleads.v17.services.SearchGoogleAdsRequest + 2, // 342: google.ads.googleads.v17.services.GoogleAdsService.SearchStream:input_type -> google.ads.googleads.v17.services.SearchGoogleAdsStreamRequest + 5, // 343: google.ads.googleads.v17.services.GoogleAdsService.Mutate:input_type -> google.ads.googleads.v17.services.MutateGoogleAdsRequest + 1, // 344: google.ads.googleads.v17.services.GoogleAdsService.Search:output_type -> google.ads.googleads.v17.services.SearchGoogleAdsResponse + 3, // 345: google.ads.googleads.v17.services.GoogleAdsService.SearchStream:output_type -> google.ads.googleads.v17.services.SearchGoogleAdsStreamResponse + 6, // 346: google.ads.googleads.v17.services.GoogleAdsService.Mutate:output_type -> google.ads.googleads.v17.services.MutateGoogleAdsResponse + 344, // [344:347] is the sub-list for method output_type + 341, // [341:344] is the sub-list for method input_type + 341, // [341:341] is the sub-list for extension type_name + 341, // [341:341] is the sub-list for extension extendee + 0, // [0:341] is the sub-list for field type_name +} + +func init() { file_google_ads_googleads_v17_services_google_ads_service_proto_init() } +func file_google_ads_googleads_v17_services_google_ads_service_proto_init() { + if File_google_ads_googleads_v17_services_google_ads_service_proto != nil { return } - file_google_ads_googleads_v16_services_ad_group_ad_label_service_proto_init() - file_google_ads_googleads_v16_services_ad_group_ad_service_proto_init() - file_google_ads_googleads_v16_services_ad_group_asset_service_proto_init() - file_google_ads_googleads_v16_services_ad_group_bid_modifier_service_proto_init() - file_google_ads_googleads_v16_services_ad_group_criterion_customizer_service_proto_init() - file_google_ads_googleads_v16_services_ad_group_criterion_label_service_proto_init() - file_google_ads_googleads_v16_services_ad_group_criterion_service_proto_init() - file_google_ads_googleads_v16_services_ad_group_customizer_service_proto_init() - file_google_ads_googleads_v16_services_ad_group_extension_setting_service_proto_init() - file_google_ads_googleads_v16_services_ad_group_feed_service_proto_init() - file_google_ads_googleads_v16_services_ad_group_label_service_proto_init() - file_google_ads_googleads_v16_services_ad_group_service_proto_init() - file_google_ads_googleads_v16_services_ad_parameter_service_proto_init() - file_google_ads_googleads_v16_services_ad_service_proto_init() - file_google_ads_googleads_v16_services_asset_group_asset_service_proto_init() - file_google_ads_googleads_v16_services_asset_group_listing_group_filter_service_proto_init() - file_google_ads_googleads_v16_services_asset_group_service_proto_init() - file_google_ads_googleads_v16_services_asset_group_signal_service_proto_init() - file_google_ads_googleads_v16_services_asset_service_proto_init() - file_google_ads_googleads_v16_services_asset_set_asset_service_proto_init() - file_google_ads_googleads_v16_services_asset_set_service_proto_init() - file_google_ads_googleads_v16_services_audience_service_proto_init() - file_google_ads_googleads_v16_services_bidding_data_exclusion_service_proto_init() - file_google_ads_googleads_v16_services_bidding_seasonality_adjustment_service_proto_init() - file_google_ads_googleads_v16_services_bidding_strategy_service_proto_init() - file_google_ads_googleads_v16_services_campaign_asset_service_proto_init() - file_google_ads_googleads_v16_services_campaign_asset_set_service_proto_init() - file_google_ads_googleads_v16_services_campaign_bid_modifier_service_proto_init() - file_google_ads_googleads_v16_services_campaign_budget_service_proto_init() - file_google_ads_googleads_v16_services_campaign_conversion_goal_service_proto_init() - file_google_ads_googleads_v16_services_campaign_criterion_service_proto_init() - file_google_ads_googleads_v16_services_campaign_customizer_service_proto_init() - file_google_ads_googleads_v16_services_campaign_draft_service_proto_init() - file_google_ads_googleads_v16_services_campaign_extension_setting_service_proto_init() - file_google_ads_googleads_v16_services_campaign_feed_service_proto_init() - file_google_ads_googleads_v16_services_campaign_group_service_proto_init() - file_google_ads_googleads_v16_services_campaign_label_service_proto_init() - file_google_ads_googleads_v16_services_campaign_service_proto_init() - file_google_ads_googleads_v16_services_campaign_shared_set_service_proto_init() - file_google_ads_googleads_v16_services_conversion_action_service_proto_init() - file_google_ads_googleads_v16_services_conversion_custom_variable_service_proto_init() - file_google_ads_googleads_v16_services_conversion_goal_campaign_config_service_proto_init() - file_google_ads_googleads_v16_services_conversion_value_rule_service_proto_init() - file_google_ads_googleads_v16_services_conversion_value_rule_set_service_proto_init() - file_google_ads_googleads_v16_services_custom_conversion_goal_service_proto_init() - file_google_ads_googleads_v16_services_customer_asset_service_proto_init() - file_google_ads_googleads_v16_services_customer_conversion_goal_service_proto_init() - file_google_ads_googleads_v16_services_customer_customizer_service_proto_init() - file_google_ads_googleads_v16_services_customer_extension_setting_service_proto_init() - file_google_ads_googleads_v16_services_customer_feed_service_proto_init() - file_google_ads_googleads_v16_services_customer_label_service_proto_init() - file_google_ads_googleads_v16_services_customer_negative_criterion_service_proto_init() - file_google_ads_googleads_v16_services_customer_service_proto_init() - file_google_ads_googleads_v16_services_customizer_attribute_service_proto_init() - file_google_ads_googleads_v16_services_experiment_arm_service_proto_init() - file_google_ads_googleads_v16_services_experiment_service_proto_init() - file_google_ads_googleads_v16_services_extension_feed_item_service_proto_init() - file_google_ads_googleads_v16_services_feed_item_service_proto_init() - file_google_ads_googleads_v16_services_feed_item_set_link_service_proto_init() - file_google_ads_googleads_v16_services_feed_item_set_service_proto_init() - file_google_ads_googleads_v16_services_feed_item_target_service_proto_init() - file_google_ads_googleads_v16_services_feed_mapping_service_proto_init() - file_google_ads_googleads_v16_services_feed_service_proto_init() - file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_init() - file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_init() - file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_init() - file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_init() - file_google_ads_googleads_v16_services_keyword_plan_service_proto_init() - file_google_ads_googleads_v16_services_label_service_proto_init() - file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_init() - file_google_ads_googleads_v16_services_remarketing_action_service_proto_init() - file_google_ads_googleads_v16_services_shared_criterion_service_proto_init() - file_google_ads_googleads_v16_services_shared_set_service_proto_init() - file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_init() - file_google_ads_googleads_v16_services_user_list_service_proto_init() + file_google_ads_googleads_v17_services_ad_group_ad_label_service_proto_init() + file_google_ads_googleads_v17_services_ad_group_ad_service_proto_init() + file_google_ads_googleads_v17_services_ad_group_asset_service_proto_init() + file_google_ads_googleads_v17_services_ad_group_bid_modifier_service_proto_init() + file_google_ads_googleads_v17_services_ad_group_criterion_customizer_service_proto_init() + file_google_ads_googleads_v17_services_ad_group_criterion_label_service_proto_init() + file_google_ads_googleads_v17_services_ad_group_criterion_service_proto_init() + file_google_ads_googleads_v17_services_ad_group_customizer_service_proto_init() + file_google_ads_googleads_v17_services_ad_group_extension_setting_service_proto_init() + file_google_ads_googleads_v17_services_ad_group_feed_service_proto_init() + file_google_ads_googleads_v17_services_ad_group_label_service_proto_init() + file_google_ads_googleads_v17_services_ad_group_service_proto_init() + file_google_ads_googleads_v17_services_ad_parameter_service_proto_init() + file_google_ads_googleads_v17_services_ad_service_proto_init() + file_google_ads_googleads_v17_services_asset_group_asset_service_proto_init() + file_google_ads_googleads_v17_services_asset_group_listing_group_filter_service_proto_init() + file_google_ads_googleads_v17_services_asset_group_service_proto_init() + file_google_ads_googleads_v17_services_asset_group_signal_service_proto_init() + file_google_ads_googleads_v17_services_asset_service_proto_init() + file_google_ads_googleads_v17_services_asset_set_asset_service_proto_init() + file_google_ads_googleads_v17_services_asset_set_service_proto_init() + file_google_ads_googleads_v17_services_audience_service_proto_init() + file_google_ads_googleads_v17_services_bidding_data_exclusion_service_proto_init() + file_google_ads_googleads_v17_services_bidding_seasonality_adjustment_service_proto_init() + file_google_ads_googleads_v17_services_bidding_strategy_service_proto_init() + file_google_ads_googleads_v17_services_campaign_asset_service_proto_init() + file_google_ads_googleads_v17_services_campaign_asset_set_service_proto_init() + file_google_ads_googleads_v17_services_campaign_bid_modifier_service_proto_init() + file_google_ads_googleads_v17_services_campaign_budget_service_proto_init() + file_google_ads_googleads_v17_services_campaign_conversion_goal_service_proto_init() + file_google_ads_googleads_v17_services_campaign_criterion_service_proto_init() + file_google_ads_googleads_v17_services_campaign_customizer_service_proto_init() + file_google_ads_googleads_v17_services_campaign_draft_service_proto_init() + file_google_ads_googleads_v17_services_campaign_extension_setting_service_proto_init() + file_google_ads_googleads_v17_services_campaign_feed_service_proto_init() + file_google_ads_googleads_v17_services_campaign_group_service_proto_init() + file_google_ads_googleads_v17_services_campaign_label_service_proto_init() + file_google_ads_googleads_v17_services_campaign_service_proto_init() + file_google_ads_googleads_v17_services_campaign_shared_set_service_proto_init() + file_google_ads_googleads_v17_services_conversion_action_service_proto_init() + file_google_ads_googleads_v17_services_conversion_custom_variable_service_proto_init() + file_google_ads_googleads_v17_services_conversion_goal_campaign_config_service_proto_init() + file_google_ads_googleads_v17_services_conversion_value_rule_service_proto_init() + file_google_ads_googleads_v17_services_conversion_value_rule_set_service_proto_init() + file_google_ads_googleads_v17_services_custom_conversion_goal_service_proto_init() + file_google_ads_googleads_v17_services_customer_asset_service_proto_init() + file_google_ads_googleads_v17_services_customer_conversion_goal_service_proto_init() + file_google_ads_googleads_v17_services_customer_customizer_service_proto_init() + file_google_ads_googleads_v17_services_customer_extension_setting_service_proto_init() + file_google_ads_googleads_v17_services_customer_feed_service_proto_init() + file_google_ads_googleads_v17_services_customer_label_service_proto_init() + file_google_ads_googleads_v17_services_customer_negative_criterion_service_proto_init() + file_google_ads_googleads_v17_services_customer_service_proto_init() + file_google_ads_googleads_v17_services_customizer_attribute_service_proto_init() + file_google_ads_googleads_v17_services_experiment_arm_service_proto_init() + file_google_ads_googleads_v17_services_experiment_service_proto_init() + file_google_ads_googleads_v17_services_extension_feed_item_service_proto_init() + file_google_ads_googleads_v17_services_feed_item_service_proto_init() + file_google_ads_googleads_v17_services_feed_item_set_link_service_proto_init() + file_google_ads_googleads_v17_services_feed_item_set_service_proto_init() + file_google_ads_googleads_v17_services_feed_item_target_service_proto_init() + file_google_ads_googleads_v17_services_feed_mapping_service_proto_init() + file_google_ads_googleads_v17_services_feed_service_proto_init() + file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_init() + file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_init() + file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_init() + file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_init() + file_google_ads_googleads_v17_services_keyword_plan_service_proto_init() + file_google_ads_googleads_v17_services_label_service_proto_init() + file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_init() + file_google_ads_googleads_v17_services_remarketing_action_service_proto_init() + file_google_ads_googleads_v17_services_shared_criterion_service_proto_init() + file_google_ads_googleads_v17_services_shared_set_service_proto_init() + file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_init() + file_google_ads_googleads_v17_services_user_list_service_proto_init() if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SearchGoogleAdsRequest); i { case 0: return &v.state @@ -8871,7 +8979,7 @@ func file_google_ads_googleads_v16_services_google_ads_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SearchGoogleAdsResponse); i { case 0: return &v.state @@ -8883,7 +8991,7 @@ func file_google_ads_googleads_v16_services_google_ads_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SearchGoogleAdsStreamRequest); i { case 0: return &v.state @@ -8895,7 +9003,7 @@ func file_google_ads_googleads_v16_services_google_ads_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SearchGoogleAdsStreamResponse); i { case 0: return &v.state @@ -8907,7 +9015,7 @@ func file_google_ads_googleads_v16_services_google_ads_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GoogleAdsRow); i { case 0: return &v.state @@ -8919,7 +9027,7 @@ func file_google_ads_googleads_v16_services_google_ads_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateGoogleAdsRequest); i { case 0: return &v.state @@ -8931,7 +9039,7 @@ func file_google_ads_googleads_v16_services_google_ads_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateGoogleAdsResponse); i { case 0: return &v.state @@ -8943,7 +9051,7 @@ func file_google_ads_googleads_v16_services_google_ads_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateOperation); i { case 0: return &v.state @@ -8955,7 +9063,7 @@ func file_google_ads_googleads_v16_services_google_ads_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateOperationResponse); i { case 0: return &v.state @@ -8968,7 +9076,7 @@ func file_google_ads_googleads_v16_services_google_ads_service_proto_init() { } } } - file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes[7].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes[7].OneofWrappers = []interface{}{ (*MutateOperation_AdGroupAdLabelOperation)(nil), (*MutateOperation_AdGroupAdOperation)(nil), (*MutateOperation_AdGroupAssetOperation)(nil), @@ -9045,7 +9153,7 @@ func file_google_ads_googleads_v16_services_google_ads_service_proto_init() { (*MutateOperation_SmartCampaignSettingOperation)(nil), (*MutateOperation_UserListOperation)(nil), } - file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes[8].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes[8].OneofWrappers = []interface{}{ (*MutateOperationResponse_AdGroupAdLabelResult)(nil), (*MutateOperationResponse_AdGroupAdResult)(nil), (*MutateOperationResponse_AdGroupAssetResult)(nil), @@ -9126,18 +9234,18 @@ func file_google_ads_googleads_v16_services_google_ads_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_google_ads_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_google_ads_service_proto_rawDesc, NumEnums: 0, NumMessages: 9, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_google_ads_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_google_ads_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_google_ads_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_google_ads_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_google_ads_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_google_ads_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_google_ads_service_proto = out.File - file_google_ads_googleads_v16_services_google_ads_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_google_ads_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_google_ads_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_google_ads_service_proto = out.File + file_google_ads_googleads_v17_services_google_ads_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_google_ads_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_google_ads_service_proto_depIdxs = nil } diff --git a/services/google_ads_service_grpc.pb.go b/services/google_ads_service_grpc.pb.go index d64b97cb..f903aceb 100644 --- a/services/google_ads_service_grpc.pb.go +++ b/services/google_ads_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/google_ads_service.proto +// source: google/ads/googleads/v17/services/google_ads_service.proto package services @@ -29,18 +29,20 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - GoogleAdsService_Search_FullMethodName = "/google.ads.googleads.v16.services.GoogleAdsService/Search" - GoogleAdsService_SearchStream_FullMethodName = "/google.ads.googleads.v16.services.GoogleAdsService/SearchStream" - GoogleAdsService_Mutate_FullMethodName = "/google.ads.googleads.v16.services.GoogleAdsService/Mutate" + GoogleAdsService_Search_FullMethodName = "/google.ads.googleads.v17.services.GoogleAdsService/Search" + GoogleAdsService_SearchStream_FullMethodName = "/google.ads.googleads.v17.services.GoogleAdsService/SearchStream" + GoogleAdsService_Mutate_FullMethodName = "/google.ads.googleads.v17.services.GoogleAdsService/Mutate" ) // GoogleAdsServiceClient is the client API for GoogleAdsService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to fetch data and metrics across resources. type GoogleAdsServiceClient interface { // Returns all rows that match the search query. // @@ -197,8 +199,9 @@ func NewGoogleAdsServiceClient(cc grpc.ClientConnInterface) GoogleAdsServiceClie } func (c *googleAdsServiceClient) Search(ctx context.Context, in *SearchGoogleAdsRequest, opts ...grpc.CallOption) (*SearchGoogleAdsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(SearchGoogleAdsResponse) - err := c.cc.Invoke(ctx, GoogleAdsService_Search_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, GoogleAdsService_Search_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -206,11 +209,12 @@ func (c *googleAdsServiceClient) Search(ctx context.Context, in *SearchGoogleAds } func (c *googleAdsServiceClient) SearchStream(ctx context.Context, in *SearchGoogleAdsStreamRequest, opts ...grpc.CallOption) (GoogleAdsService_SearchStreamClient, error) { - stream, err := c.cc.NewStream(ctx, &GoogleAdsService_ServiceDesc.Streams[0], GoogleAdsService_SearchStream_FullMethodName, opts...) + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) + stream, err := c.cc.NewStream(ctx, &GoogleAdsService_ServiceDesc.Streams[0], GoogleAdsService_SearchStream_FullMethodName, cOpts...) if err != nil { return nil, err } - x := &googleAdsServiceSearchStreamClient{stream} + x := &googleAdsServiceSearchStreamClient{ClientStream: stream} if err := x.ClientStream.SendMsg(in); err != nil { return nil, err } @@ -238,8 +242,9 @@ func (x *googleAdsServiceSearchStreamClient) Recv() (*SearchGoogleAdsStreamRespo } func (c *googleAdsServiceClient) Mutate(ctx context.Context, in *MutateGoogleAdsRequest, opts ...grpc.CallOption) (*MutateGoogleAdsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateGoogleAdsResponse) - err := c.cc.Invoke(ctx, GoogleAdsService_Mutate_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, GoogleAdsService_Mutate_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -249,6 +254,8 @@ func (c *googleAdsServiceClient) Mutate(ctx context.Context, in *MutateGoogleAds // GoogleAdsServiceServer is the server API for GoogleAdsService service. // All implementations must embed UnimplementedGoogleAdsServiceServer // for forward compatibility +// +// Service to fetch data and metrics across resources. type GoogleAdsServiceServer interface { // Returns all rows that match the search query. // @@ -446,7 +453,7 @@ func _GoogleAdsService_SearchStream_Handler(srv interface{}, stream grpc.ServerS if err := stream.RecvMsg(m); err != nil { return err } - return srv.(GoogleAdsServiceServer).SearchStream(m, &googleAdsServiceSearchStreamServer{stream}) + return srv.(GoogleAdsServiceServer).SearchStream(m, &googleAdsServiceSearchStreamServer{ServerStream: stream}) } type GoogleAdsService_SearchStreamServer interface { @@ -484,7 +491,7 @@ func _GoogleAdsService_Mutate_Handler(srv interface{}, ctx context.Context, dec // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var GoogleAdsService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.GoogleAdsService", + ServiceName: "google.ads.googleads.v17.services.GoogleAdsService", HandlerType: (*GoogleAdsServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -503,5 +510,5 @@ var GoogleAdsService_ServiceDesc = grpc.ServiceDesc{ ServerStreams: true, }, }, - Metadata: "google/ads/googleads/v16/services/google_ads_service.proto", + Metadata: "google/ads/googleads/v17/services/google_ads_service.proto", } diff --git a/services/identity_verification_service.pb.go b/services/identity_verification_service.pb.go index 1b6946fd..0dd4ccc0 100644 --- a/services/identity_verification_service.pb.go +++ b/services/identity_verification_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/identity_verification_service.proto +// source: google/ads/googleads/v17/services/identity_verification_service.proto package services @@ -50,13 +50,13 @@ type StartIdentityVerificationRequest struct { CustomerId string `protobuf:"bytes,1,opt,name=customer_id,json=customerId,proto3" json:"customer_id,omitempty"` // Required. The verification program type for which we want to start the // verification. - VerificationProgram enums.IdentityVerificationProgramEnum_IdentityVerificationProgram `protobuf:"varint,2,opt,name=verification_program,json=verificationProgram,proto3,enum=google.ads.googleads.v16.enums.IdentityVerificationProgramEnum_IdentityVerificationProgram" json:"verification_program,omitempty"` + VerificationProgram enums.IdentityVerificationProgramEnum_IdentityVerificationProgram `protobuf:"varint,2,opt,name=verification_program,json=verificationProgram,proto3,enum=google.ads.googleads.v17.enums.IdentityVerificationProgramEnum_IdentityVerificationProgram" json:"verification_program,omitempty"` } func (x *StartIdentityVerificationRequest) Reset() { *x = StartIdentityVerificationRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_identity_verification_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_identity_verification_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -69,7 +69,7 @@ func (x *StartIdentityVerificationRequest) String() string { func (*StartIdentityVerificationRequest) ProtoMessage() {} func (x *StartIdentityVerificationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_identity_verification_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_identity_verification_service_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 *StartIdentityVerificationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use StartIdentityVerificationRequest.ProtoReflect.Descriptor instead. func (*StartIdentityVerificationRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_identity_verification_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_identity_verification_service_proto_rawDescGZIP(), []int{0} } func (x *StartIdentityVerificationRequest) GetCustomerId() string { @@ -116,7 +116,7 @@ type GetIdentityVerificationRequest struct { func (x *GetIdentityVerificationRequest) Reset() { *x = GetIdentityVerificationRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_identity_verification_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_identity_verification_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -129,7 +129,7 @@ func (x *GetIdentityVerificationRequest) String() string { func (*GetIdentityVerificationRequest) ProtoMessage() {} func (x *GetIdentityVerificationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_identity_verification_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_identity_verification_service_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 *GetIdentityVerificationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetIdentityVerificationRequest.ProtoReflect.Descriptor instead. func (*GetIdentityVerificationRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_identity_verification_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_identity_verification_service_proto_rawDescGZIP(), []int{1} } func (x *GetIdentityVerificationRequest) GetCustomerId() string { @@ -167,7 +167,7 @@ type GetIdentityVerificationResponse struct { func (x *GetIdentityVerificationResponse) Reset() { *x = GetIdentityVerificationResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_identity_verification_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_identity_verification_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -180,7 +180,7 @@ func (x *GetIdentityVerificationResponse) String() string { func (*GetIdentityVerificationResponse) ProtoMessage() {} func (x *GetIdentityVerificationResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_identity_verification_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_identity_verification_service_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 *GetIdentityVerificationResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetIdentityVerificationResponse.ProtoReflect.Descriptor instead. func (*GetIdentityVerificationResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_identity_verification_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_identity_verification_service_proto_rawDescGZIP(), []int{2} } func (x *GetIdentityVerificationResponse) GetIdentityVerification() []*IdentityVerification { @@ -210,7 +210,7 @@ type IdentityVerification struct { unknownFields protoimpl.UnknownFields // The verification program type. - VerificationProgram enums.IdentityVerificationProgramEnum_IdentityVerificationProgram `protobuf:"varint,1,opt,name=verification_program,json=verificationProgram,proto3,enum=google.ads.googleads.v16.enums.IdentityVerificationProgramEnum_IdentityVerificationProgram" json:"verification_program,omitempty"` + VerificationProgram enums.IdentityVerificationProgramEnum_IdentityVerificationProgram `protobuf:"varint,1,opt,name=verification_program,json=verificationProgram,proto3,enum=google.ads.googleads.v17.enums.IdentityVerificationProgramEnum_IdentityVerificationProgram" json:"verification_program,omitempty"` // The verification requirement for this verification program for this // customer. IdentityVerificationRequirement *IdentityVerificationRequirement `protobuf:"bytes,2,opt,name=identity_verification_requirement,json=identityVerificationRequirement,proto3,oneof" json:"identity_verification_requirement,omitempty"` @@ -222,7 +222,7 @@ type IdentityVerification struct { func (x *IdentityVerification) Reset() { *x = IdentityVerification{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_identity_verification_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_identity_verification_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -235,7 +235,7 @@ func (x *IdentityVerification) String() string { func (*IdentityVerification) ProtoMessage() {} func (x *IdentityVerification) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_identity_verification_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_identity_verification_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -248,7 +248,7 @@ func (x *IdentityVerification) ProtoReflect() protoreflect.Message { // Deprecated: Use IdentityVerification.ProtoReflect.Descriptor instead. func (*IdentityVerification) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_identity_verification_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_identity_verification_service_proto_rawDescGZIP(), []int{3} } func (x *IdentityVerification) GetVerificationProgram() enums.IdentityVerificationProgramEnum_IdentityVerificationProgram { @@ -280,7 +280,7 @@ type IdentityVerificationProgress struct { unknownFields protoimpl.UnknownFields // Current Status (PENDING_USER_ACTION, SUCCESS, FAILURE etc) - ProgramStatus enums.IdentityVerificationProgramStatusEnum_IdentityVerificationProgramStatus `protobuf:"varint,1,opt,name=program_status,json=programStatus,proto3,enum=google.ads.googleads.v16.enums.IdentityVerificationProgramStatusEnum_IdentityVerificationProgramStatus" json:"program_status,omitempty"` + ProgramStatus enums.IdentityVerificationProgramStatusEnum_IdentityVerificationProgramStatus `protobuf:"varint,1,opt,name=program_status,json=programStatus,proto3,enum=google.ads.googleads.v17.enums.IdentityVerificationProgramStatusEnum_IdentityVerificationProgramStatus" json:"program_status,omitempty"` // The timestamp when the action url will expire in "yyyy-MM-dd HH:mm:ss" // format. InvitationLinkExpirationTime string `protobuf:"bytes,2,opt,name=invitation_link_expiration_time,json=invitationLinkExpirationTime,proto3" json:"invitation_link_expiration_time,omitempty"` @@ -292,7 +292,7 @@ type IdentityVerificationProgress struct { func (x *IdentityVerificationProgress) Reset() { *x = IdentityVerificationProgress{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_identity_verification_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_identity_verification_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -305,7 +305,7 @@ func (x *IdentityVerificationProgress) String() string { func (*IdentityVerificationProgress) ProtoMessage() {} func (x *IdentityVerificationProgress) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_identity_verification_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_identity_verification_service_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -318,7 +318,7 @@ func (x *IdentityVerificationProgress) ProtoReflect() protoreflect.Message { // Deprecated: Use IdentityVerificationProgress.ProtoReflect.Descriptor instead. func (*IdentityVerificationProgress) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_identity_verification_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v17_services_identity_verification_service_proto_rawDescGZIP(), []int{4} } func (x *IdentityVerificationProgress) GetProgramStatus() enums.IdentityVerificationProgramStatusEnum_IdentityVerificationProgramStatus { @@ -358,7 +358,7 @@ type IdentityVerificationRequirement struct { func (x *IdentityVerificationRequirement) Reset() { *x = IdentityVerificationRequirement{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_identity_verification_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_identity_verification_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -371,7 +371,7 @@ func (x *IdentityVerificationRequirement) String() string { func (*IdentityVerificationRequirement) ProtoMessage() {} func (x *IdentityVerificationRequirement) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_identity_verification_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_identity_verification_service_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -384,7 +384,7 @@ func (x *IdentityVerificationRequirement) ProtoReflect() protoreflect.Message { // Deprecated: Use IdentityVerificationRequirement.ProtoReflect.Descriptor instead. func (*IdentityVerificationRequirement) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_identity_verification_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v17_services_identity_verification_service_proto_rawDescGZIP(), []int{5} } func (x *IdentityVerificationRequirement) GetVerificationStartDeadlineTime() string { @@ -401,22 +401,22 @@ func (x *IdentityVerificationRequirement) GetVerificationCompletionDeadlineTime( return "" } -var File_google_ads_googleads_v16_services_identity_verification_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_identity_verification_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_identity_verification_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_identity_verification_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x42, 0x67, 0x6f, 0x6f, 0x67, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 0x69, 0x64, 0x65, 0x6e, 0x74, + 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, 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, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x69, + 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, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, @@ -435,7 +435,7 @@ var file_google_ads_googleads_v16_services_identity_verification_service_proto_r 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x6f, 0x67, 0x72, 0x61, 0x6d, 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, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, + 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, @@ -451,7 +451,7 @@ var file_google_ads_googleads_v16_services_identity_verification_service_proto_r 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x49, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x14, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xf8, 0x03, 0x0a, 0x14, 0x49, 0x64, @@ -459,7 +459,7 @@ var file_google_ads_googleads_v16_services_identity_verification_service_proto_r 0x6f, 0x6e, 0x12, 0x8e, 0x01, 0x0a, 0x14, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x6f, 0x67, 0x72, 0x61, 0x6d, 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, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x56, 0x65, 0x72, 0x69, 0x66, @@ -469,7 +469,7 @@ var file_google_ads_googleads_v16_services_identity_verification_service_proto_r 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x1f, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x56, @@ -478,7 +478,7 @@ var file_google_ads_googleads_v16_services_identity_verification_service_proto_r 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x6f, 0x67, 0x72, 0x65, 0x73, 0x73, 0x18, 0x03, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x49, 0x64, 0x65, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 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, 0x65, 0x73, 0x73, 0x48, 0x01, 0x52, 0x14, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x67, 0x72, 0x65, 0x73, @@ -491,7 +491,7 @@ var file_google_ads_googleads_v16_services_identity_verification_service_proto_r 0x67, 0x72, 0x65, 0x73, 0x73, 0x12, 0x8e, 0x01, 0x0a, 0x0e, 0x70, 0x72, 0x6f, 0x67, 0x72, 0x61, 0x6d, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x67, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 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, 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, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x56, 0x65, @@ -521,29 +521,29 @@ var file_google_ads_googleads_v16_services_identity_verification_service_proto_r 0x19, 0x53, 0x74, 0x61, 0x72, 0x74, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x74, 0x61, 0x72, 0x74, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x66, 0xda, 0x41, 0x20, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x6f, 0x67, 0x72, 0x61, 0x6d, 0x82, 0xd3, 0xe4, 0x93, - 0x02, 0x3d, 0x3a, 0x01, 0x2a, 0x22, 0x38, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, + 0x02, 0x3d, 0x3a, 0x01, 0x2a, 0x22, 0x38, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x3a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0xee, 0x01, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x4c, 0xda, 0x41, 0x0b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, - 0x69, 0x64, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x38, 0x12, 0x36, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, + 0x69, 0x64, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x38, 0x12, 0x36, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x67, 0x65, 0x74, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, @@ -553,59 +553,59 @@ var file_google_ads_googleads_v16_services_identity_verification_service_proto_r 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x8c, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x20, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, - 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, + 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_identity_verification_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_identity_verification_service_proto_rawDescData = file_google_ads_googleads_v16_services_identity_verification_service_proto_rawDesc + file_google_ads_googleads_v17_services_identity_verification_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_identity_verification_service_proto_rawDescData = file_google_ads_googleads_v17_services_identity_verification_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_identity_verification_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_identity_verification_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_identity_verification_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_identity_verification_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_identity_verification_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_identity_verification_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_identity_verification_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_identity_verification_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_identity_verification_service_proto_rawDescData -} - -var file_google_ads_googleads_v16_services_identity_verification_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) -var file_google_ads_googleads_v16_services_identity_verification_service_proto_goTypes = []interface{}{ - (*StartIdentityVerificationRequest)(nil), // 0: google.ads.googleads.v16.services.StartIdentityVerificationRequest - (*GetIdentityVerificationRequest)(nil), // 1: google.ads.googleads.v16.services.GetIdentityVerificationRequest - (*GetIdentityVerificationResponse)(nil), // 2: google.ads.googleads.v16.services.GetIdentityVerificationResponse - (*IdentityVerification)(nil), // 3: google.ads.googleads.v16.services.IdentityVerification - (*IdentityVerificationProgress)(nil), // 4: google.ads.googleads.v16.services.IdentityVerificationProgress - (*IdentityVerificationRequirement)(nil), // 5: google.ads.googleads.v16.services.IdentityVerificationRequirement - (enums.IdentityVerificationProgramEnum_IdentityVerificationProgram)(0), // 6: google.ads.googleads.v16.enums.IdentityVerificationProgramEnum.IdentityVerificationProgram - (enums.IdentityVerificationProgramStatusEnum_IdentityVerificationProgramStatus)(0), // 7: google.ads.googleads.v16.enums.IdentityVerificationProgramStatusEnum.IdentityVerificationProgramStatus + return file_google_ads_googleads_v17_services_identity_verification_service_proto_rawDescData +} + +var file_google_ads_googleads_v17_services_identity_verification_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) +var file_google_ads_googleads_v17_services_identity_verification_service_proto_goTypes = []interface{}{ + (*StartIdentityVerificationRequest)(nil), // 0: google.ads.googleads.v17.services.StartIdentityVerificationRequest + (*GetIdentityVerificationRequest)(nil), // 1: google.ads.googleads.v17.services.GetIdentityVerificationRequest + (*GetIdentityVerificationResponse)(nil), // 2: google.ads.googleads.v17.services.GetIdentityVerificationResponse + (*IdentityVerification)(nil), // 3: google.ads.googleads.v17.services.IdentityVerification + (*IdentityVerificationProgress)(nil), // 4: google.ads.googleads.v17.services.IdentityVerificationProgress + (*IdentityVerificationRequirement)(nil), // 5: google.ads.googleads.v17.services.IdentityVerificationRequirement + (enums.IdentityVerificationProgramEnum_IdentityVerificationProgram)(0), // 6: google.ads.googleads.v17.enums.IdentityVerificationProgramEnum.IdentityVerificationProgram + (enums.IdentityVerificationProgramStatusEnum_IdentityVerificationProgramStatus)(0), // 7: google.ads.googleads.v17.enums.IdentityVerificationProgramStatusEnum.IdentityVerificationProgramStatus (*emptypb.Empty)(nil), // 8: google.protobuf.Empty } -var file_google_ads_googleads_v16_services_identity_verification_service_proto_depIdxs = []int32{ - 6, // 0: google.ads.googleads.v16.services.StartIdentityVerificationRequest.verification_program:type_name -> google.ads.googleads.v16.enums.IdentityVerificationProgramEnum.IdentityVerificationProgram - 3, // 1: google.ads.googleads.v16.services.GetIdentityVerificationResponse.identity_verification:type_name -> google.ads.googleads.v16.services.IdentityVerification - 6, // 2: google.ads.googleads.v16.services.IdentityVerification.verification_program:type_name -> google.ads.googleads.v16.enums.IdentityVerificationProgramEnum.IdentityVerificationProgram - 5, // 3: google.ads.googleads.v16.services.IdentityVerification.identity_verification_requirement:type_name -> google.ads.googleads.v16.services.IdentityVerificationRequirement - 4, // 4: google.ads.googleads.v16.services.IdentityVerification.verification_progress:type_name -> google.ads.googleads.v16.services.IdentityVerificationProgress - 7, // 5: google.ads.googleads.v16.services.IdentityVerificationProgress.program_status:type_name -> google.ads.googleads.v16.enums.IdentityVerificationProgramStatusEnum.IdentityVerificationProgramStatus - 0, // 6: google.ads.googleads.v16.services.IdentityVerificationService.StartIdentityVerification:input_type -> google.ads.googleads.v16.services.StartIdentityVerificationRequest - 1, // 7: google.ads.googleads.v16.services.IdentityVerificationService.GetIdentityVerification:input_type -> google.ads.googleads.v16.services.GetIdentityVerificationRequest - 8, // 8: google.ads.googleads.v16.services.IdentityVerificationService.StartIdentityVerification:output_type -> google.protobuf.Empty - 2, // 9: google.ads.googleads.v16.services.IdentityVerificationService.GetIdentityVerification:output_type -> google.ads.googleads.v16.services.GetIdentityVerificationResponse +var file_google_ads_googleads_v17_services_identity_verification_service_proto_depIdxs = []int32{ + 6, // 0: google.ads.googleads.v17.services.StartIdentityVerificationRequest.verification_program:type_name -> google.ads.googleads.v17.enums.IdentityVerificationProgramEnum.IdentityVerificationProgram + 3, // 1: google.ads.googleads.v17.services.GetIdentityVerificationResponse.identity_verification:type_name -> google.ads.googleads.v17.services.IdentityVerification + 6, // 2: google.ads.googleads.v17.services.IdentityVerification.verification_program:type_name -> google.ads.googleads.v17.enums.IdentityVerificationProgramEnum.IdentityVerificationProgram + 5, // 3: google.ads.googleads.v17.services.IdentityVerification.identity_verification_requirement:type_name -> google.ads.googleads.v17.services.IdentityVerificationRequirement + 4, // 4: google.ads.googleads.v17.services.IdentityVerification.verification_progress:type_name -> google.ads.googleads.v17.services.IdentityVerificationProgress + 7, // 5: google.ads.googleads.v17.services.IdentityVerificationProgress.program_status:type_name -> google.ads.googleads.v17.enums.IdentityVerificationProgramStatusEnum.IdentityVerificationProgramStatus + 0, // 6: google.ads.googleads.v17.services.IdentityVerificationService.StartIdentityVerification:input_type -> google.ads.googleads.v17.services.StartIdentityVerificationRequest + 1, // 7: google.ads.googleads.v17.services.IdentityVerificationService.GetIdentityVerification:input_type -> google.ads.googleads.v17.services.GetIdentityVerificationRequest + 8, // 8: google.ads.googleads.v17.services.IdentityVerificationService.StartIdentityVerification:output_type -> google.protobuf.Empty + 2, // 9: google.ads.googleads.v17.services.IdentityVerificationService.GetIdentityVerification:output_type -> google.ads.googleads.v17.services.GetIdentityVerificationResponse 8, // [8:10] is the sub-list for method output_type 6, // [6:8] is the sub-list for method input_type 6, // [6:6] is the sub-list for extension type_name @@ -613,13 +613,13 @@ var file_google_ads_googleads_v16_services_identity_verification_service_proto_d 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_identity_verification_service_proto_init() } -func file_google_ads_googleads_v16_services_identity_verification_service_proto_init() { - if File_google_ads_googleads_v16_services_identity_verification_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_identity_verification_service_proto_init() } +func file_google_ads_googleads_v17_services_identity_verification_service_proto_init() { + if File_google_ads_googleads_v17_services_identity_verification_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_identity_verification_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_identity_verification_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*StartIdentityVerificationRequest); i { case 0: return &v.state @@ -631,7 +631,7 @@ func file_google_ads_googleads_v16_services_identity_verification_service_proto_ return nil } } - file_google_ads_googleads_v16_services_identity_verification_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_identity_verification_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetIdentityVerificationRequest); i { case 0: return &v.state @@ -643,7 +643,7 @@ func file_google_ads_googleads_v16_services_identity_verification_service_proto_ return nil } } - file_google_ads_googleads_v16_services_identity_verification_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_identity_verification_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetIdentityVerificationResponse); i { case 0: return &v.state @@ -655,7 +655,7 @@ func file_google_ads_googleads_v16_services_identity_verification_service_proto_ return nil } } - file_google_ads_googleads_v16_services_identity_verification_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_identity_verification_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*IdentityVerification); i { case 0: return &v.state @@ -667,7 +667,7 @@ func file_google_ads_googleads_v16_services_identity_verification_service_proto_ return nil } } - file_google_ads_googleads_v16_services_identity_verification_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_identity_verification_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*IdentityVerificationProgress); i { case 0: return &v.state @@ -679,7 +679,7 @@ func file_google_ads_googleads_v16_services_identity_verification_service_proto_ return nil } } - file_google_ads_googleads_v16_services_identity_verification_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_identity_verification_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*IdentityVerificationRequirement); i { case 0: return &v.state @@ -692,23 +692,23 @@ func file_google_ads_googleads_v16_services_identity_verification_service_proto_ } } } - file_google_ads_googleads_v16_services_identity_verification_service_proto_msgTypes[3].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_identity_verification_service_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_services_identity_verification_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_identity_verification_service_proto_rawDesc, NumEnums: 0, NumMessages: 6, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_identity_verification_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_identity_verification_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_identity_verification_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_identity_verification_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_identity_verification_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_identity_verification_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_identity_verification_service_proto = out.File - file_google_ads_googleads_v16_services_identity_verification_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_identity_verification_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_identity_verification_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_identity_verification_service_proto = out.File + file_google_ads_googleads_v17_services_identity_verification_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_identity_verification_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_identity_verification_service_proto_depIdxs = nil } diff --git a/services/identity_verification_service_grpc.pb.go b/services/identity_verification_service_grpc.pb.go index 9d807aeb..48373ba6 100644 --- a/services/identity_verification_service_grpc.pb.go +++ b/services/identity_verification_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/identity_verification_service.proto +// source: google/ads/googleads/v17/services/identity_verification_service.proto package services @@ -30,17 +30,19 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - IdentityVerificationService_StartIdentityVerification_FullMethodName = "/google.ads.googleads.v16.services.IdentityVerificationService/StartIdentityVerification" - IdentityVerificationService_GetIdentityVerification_FullMethodName = "/google.ads.googleads.v16.services.IdentityVerificationService/GetIdentityVerification" + IdentityVerificationService_StartIdentityVerification_FullMethodName = "/google.ads.googleads.v17.services.IdentityVerificationService/StartIdentityVerification" + IdentityVerificationService_GetIdentityVerification_FullMethodName = "/google.ads.googleads.v17.services.IdentityVerificationService/GetIdentityVerification" ) // IdentityVerificationServiceClient is the client API for IdentityVerificationService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// A service for managing Identity Verification Service. type IdentityVerificationServiceClient interface { // Starts Identity Verification for a given verification program type. // @@ -77,8 +79,9 @@ func NewIdentityVerificationServiceClient(cc grpc.ClientConnInterface) IdentityV } func (c *identityVerificationServiceClient) StartIdentityVerification(ctx context.Context, in *StartIdentityVerificationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(emptypb.Empty) - err := c.cc.Invoke(ctx, IdentityVerificationService_StartIdentityVerification_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, IdentityVerificationService_StartIdentityVerification_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -86,8 +89,9 @@ func (c *identityVerificationServiceClient) StartIdentityVerification(ctx contex } func (c *identityVerificationServiceClient) GetIdentityVerification(ctx context.Context, in *GetIdentityVerificationRequest, opts ...grpc.CallOption) (*GetIdentityVerificationResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(GetIdentityVerificationResponse) - err := c.cc.Invoke(ctx, IdentityVerificationService_GetIdentityVerification_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, IdentityVerificationService_GetIdentityVerification_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -97,6 +101,8 @@ func (c *identityVerificationServiceClient) GetIdentityVerification(ctx context. // IdentityVerificationServiceServer is the server API for IdentityVerificationService service. // All implementations must embed UnimplementedIdentityVerificationServiceServer // for forward compatibility +// +// A service for managing Identity Verification Service. type IdentityVerificationServiceServer interface { // Starts Identity Verification for a given verification program type. // @@ -189,7 +195,7 @@ func _IdentityVerificationService_GetIdentityVerification_Handler(srv interface{ // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var IdentityVerificationService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.IdentityVerificationService", + ServiceName: "google.ads.googleads.v17.services.IdentityVerificationService", HandlerType: (*IdentityVerificationServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -202,5 +208,5 @@ var IdentityVerificationService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/identity_verification_service.proto", + Metadata: "google/ads/googleads/v17/services/identity_verification_service.proto", } diff --git a/services/invoice_service.pb.go b/services/invoice_service.pb.go index 861b6f39..05d14b25 100644 --- a/services/invoice_service.pb.go +++ b/services/invoice_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/invoice_service.proto +// source: google/ads/googleads/v17/services/invoice_service.proto package services @@ -54,13 +54,13 @@ type ListInvoicesRequest struct { // invoices issued in 2019 or later can be retrieved. IssueYear string `protobuf:"bytes,3,opt,name=issue_year,json=issueYear,proto3" json:"issue_year,omitempty"` // Required. The issue month to retrieve invoices. - IssueMonth enums.MonthOfYearEnum_MonthOfYear `protobuf:"varint,4,opt,name=issue_month,json=issueMonth,proto3,enum=google.ads.googleads.v16.enums.MonthOfYearEnum_MonthOfYear" json:"issue_month,omitempty"` + IssueMonth enums.MonthOfYearEnum_MonthOfYear `protobuf:"varint,4,opt,name=issue_month,json=issueMonth,proto3,enum=google.ads.googleads.v17.enums.MonthOfYearEnum_MonthOfYear" json:"issue_month,omitempty"` } func (x *ListInvoicesRequest) Reset() { *x = ListInvoicesRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_invoice_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_invoice_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73,7 +73,7 @@ func (x *ListInvoicesRequest) String() string { func (*ListInvoicesRequest) ProtoMessage() {} func (x *ListInvoicesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_invoice_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_invoice_service_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 *ListInvoicesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListInvoicesRequest.ProtoReflect.Descriptor instead. func (*ListInvoicesRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_invoice_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_invoice_service_proto_rawDescGZIP(), []int{0} } func (x *ListInvoicesRequest) GetCustomerId() string { @@ -118,7 +118,7 @@ func (x *ListInvoicesRequest) GetIssueMonth() enums.MonthOfYearEnum_MonthOfYear } // Response message for -// [InvoiceService.ListInvoices][google.ads.googleads.v16.services.InvoiceService.ListInvoices]. +// [InvoiceService.ListInvoices][google.ads.googleads.v17.services.InvoiceService.ListInvoices]. type ListInvoicesResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -131,7 +131,7 @@ type ListInvoicesResponse struct { func (x *ListInvoicesResponse) Reset() { *x = ListInvoicesResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_invoice_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_invoice_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -144,7 +144,7 @@ func (x *ListInvoicesResponse) String() string { func (*ListInvoicesResponse) ProtoMessage() {} func (x *ListInvoicesResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_invoice_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_invoice_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -157,7 +157,7 @@ func (x *ListInvoicesResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListInvoicesResponse.ProtoReflect.Descriptor instead. func (*ListInvoicesResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_invoice_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_invoice_service_proto_rawDescGZIP(), []int{1} } func (x *ListInvoicesResponse) GetInvoices() []*resources.Invoice { @@ -167,20 +167,20 @@ func (x *ListInvoicesResponse) GetInvoices() []*resources.Invoice { return nil } -var File_google_ads_googleads_v16_services_invoice_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_invoice_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_invoice_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_invoice_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x32, 0x67, 0x6f, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, + 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, 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, 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, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, @@ -199,29 +199,29 @@ var file_google_ads_googleads_v16_services_invoice_service_proto_rawDesc = []byt 0x75, 0x65, 0x59, 0x65, 0x61, 0x72, 0x12, 0x61, 0x0a, 0x0b, 0x69, 0x73, 0x73, 0x75, 0x65, 0x5f, 0x6d, 0x6f, 0x6e, 0x74, 0x68, 0x18, 0x04, 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, 0x2e, 0x4d, 0x6f, 0x6e, + 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, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x69, 0x73, 0x73, 0x75, 0x65, 0x4d, 0x6f, 0x6e, 0x74, 0x68, 0x22, 0x5f, 0x0a, 0x14, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x47, 0x0a, 0x08, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 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, 0x72, + 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, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x52, 0x08, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x73, 0x32, 0xbd, 0x02, 0x0a, 0x0e, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xe3, 0x01, 0x0a, 0x0c, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x49, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x62, 0xda, 0x41, 0x30, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x74, 0x75, 0x70, 0x2c, 0x69, 0x73, 0x73, 0x75, 0x65, 0x5f, 0x79, 0x65, 0x61, 0x72, 0x2c, 0x69, 0x73, 0x73, 0x75, 0x65, 0x5f, 0x6d, - 0x6f, 0x6e, 0x74, 0x68, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x29, 0x12, 0x27, 0x2f, 0x76, 0x31, 0x36, + 0x6f, 0x6e, 0x74, 0x68, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x29, 0x12, 0x27, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, @@ -230,48 +230,48 @@ var file_google_ads_googleads_v16_services_invoice_service_proto_rawDesc = []byt 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0xff, 0x01, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x13, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, + 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_invoice_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_invoice_service_proto_rawDescData = file_google_ads_googleads_v16_services_invoice_service_proto_rawDesc + file_google_ads_googleads_v17_services_invoice_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_invoice_service_proto_rawDescData = file_google_ads_googleads_v17_services_invoice_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_invoice_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_invoice_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_invoice_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_invoice_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_invoice_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_invoice_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_invoice_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_invoice_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_invoice_service_proto_rawDescData + return file_google_ads_googleads_v17_services_invoice_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_invoice_service_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v16_services_invoice_service_proto_goTypes = []interface{}{ - (*ListInvoicesRequest)(nil), // 0: google.ads.googleads.v16.services.ListInvoicesRequest - (*ListInvoicesResponse)(nil), // 1: google.ads.googleads.v16.services.ListInvoicesResponse - (enums.MonthOfYearEnum_MonthOfYear)(0), // 2: google.ads.googleads.v16.enums.MonthOfYearEnum.MonthOfYear - (*resources.Invoice)(nil), // 3: google.ads.googleads.v16.resources.Invoice +var file_google_ads_googleads_v17_services_invoice_service_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v17_services_invoice_service_proto_goTypes = []interface{}{ + (*ListInvoicesRequest)(nil), // 0: google.ads.googleads.v17.services.ListInvoicesRequest + (*ListInvoicesResponse)(nil), // 1: google.ads.googleads.v17.services.ListInvoicesResponse + (enums.MonthOfYearEnum_MonthOfYear)(0), // 2: google.ads.googleads.v17.enums.MonthOfYearEnum.MonthOfYear + (*resources.Invoice)(nil), // 3: google.ads.googleads.v17.resources.Invoice } -var file_google_ads_googleads_v16_services_invoice_service_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v16.services.ListInvoicesRequest.issue_month:type_name -> google.ads.googleads.v16.enums.MonthOfYearEnum.MonthOfYear - 3, // 1: google.ads.googleads.v16.services.ListInvoicesResponse.invoices:type_name -> google.ads.googleads.v16.resources.Invoice - 0, // 2: google.ads.googleads.v16.services.InvoiceService.ListInvoices:input_type -> google.ads.googleads.v16.services.ListInvoicesRequest - 1, // 3: google.ads.googleads.v16.services.InvoiceService.ListInvoices:output_type -> google.ads.googleads.v16.services.ListInvoicesResponse +var file_google_ads_googleads_v17_services_invoice_service_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v17.services.ListInvoicesRequest.issue_month:type_name -> google.ads.googleads.v17.enums.MonthOfYearEnum.MonthOfYear + 3, // 1: google.ads.googleads.v17.services.ListInvoicesResponse.invoices:type_name -> google.ads.googleads.v17.resources.Invoice + 0, // 2: google.ads.googleads.v17.services.InvoiceService.ListInvoices:input_type -> google.ads.googleads.v17.services.ListInvoicesRequest + 1, // 3: google.ads.googleads.v17.services.InvoiceService.ListInvoices:output_type -> google.ads.googleads.v17.services.ListInvoicesResponse 3, // [3:4] is the sub-list for method output_type 2, // [2:3] is the sub-list for method input_type 2, // [2:2] is the sub-list for extension type_name @@ -279,13 +279,13 @@ var file_google_ads_googleads_v16_services_invoice_service_proto_depIdxs = []int 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_invoice_service_proto_init() } -func file_google_ads_googleads_v16_services_invoice_service_proto_init() { - if File_google_ads_googleads_v16_services_invoice_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_invoice_service_proto_init() } +func file_google_ads_googleads_v17_services_invoice_service_proto_init() { + if File_google_ads_googleads_v17_services_invoice_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_invoice_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_invoice_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListInvoicesRequest); i { case 0: return &v.state @@ -297,7 +297,7 @@ func file_google_ads_googleads_v16_services_invoice_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_invoice_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_invoice_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListInvoicesResponse); i { case 0: return &v.state @@ -314,18 +314,18 @@ func file_google_ads_googleads_v16_services_invoice_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_invoice_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_invoice_service_proto_rawDesc, NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_invoice_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_invoice_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_invoice_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_invoice_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_invoice_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_invoice_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_invoice_service_proto = out.File - file_google_ads_googleads_v16_services_invoice_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_invoice_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_invoice_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_invoice_service_proto = out.File + file_google_ads_googleads_v17_services_invoice_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_invoice_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_invoice_service_proto_depIdxs = nil } diff --git a/services/invoice_service_grpc.pb.go b/services/invoice_service_grpc.pb.go index b36ee4c2..5e3f0e44 100644 --- a/services/invoice_service_grpc.pb.go +++ b/services/invoice_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/invoice_service.proto +// source: google/ads/googleads/v17/services/invoice_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - InvoiceService_ListInvoices_FullMethodName = "/google.ads.googleads.v16.services.InvoiceService/ListInvoices" + InvoiceService_ListInvoices_FullMethodName = "/google.ads.googleads.v17.services.InvoiceService/ListInvoices" ) // InvoiceServiceClient is the client API for InvoiceService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// A service to fetch invoices issued for a billing setup during a given month. type InvoiceServiceClient interface { // Returns all invoices associated with a billing setup, for a given month. // @@ -64,8 +66,9 @@ func NewInvoiceServiceClient(cc grpc.ClientConnInterface) InvoiceServiceClient { } func (c *invoiceServiceClient) ListInvoices(ctx context.Context, in *ListInvoicesRequest, opts ...grpc.CallOption) (*ListInvoicesResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(ListInvoicesResponse) - err := c.cc.Invoke(ctx, InvoiceService_ListInvoices_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, InvoiceService_ListInvoices_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -75,6 +78,8 @@ func (c *invoiceServiceClient) ListInvoices(ctx context.Context, in *ListInvoice // InvoiceServiceServer is the server API for InvoiceService service. // All implementations must embed UnimplementedInvoiceServiceServer // for forward compatibility +// +// A service to fetch invoices issued for a billing setup during a given month. type InvoiceServiceServer interface { // Returns all invoices associated with a billing setup, for a given month. // @@ -134,7 +139,7 @@ func _InvoiceService_ListInvoices_Handler(srv interface{}, ctx context.Context, // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var InvoiceService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.InvoiceService", + ServiceName: "google.ads.googleads.v17.services.InvoiceService", HandlerType: (*InvoiceServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -143,5 +148,5 @@ var InvoiceService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/invoice_service.proto", + Metadata: "google/ads/googleads/v17/services/invoice_service.proto", } diff --git a/services/keyword_plan_ad_group_keyword_service.pb.go b/services/keyword_plan_ad_group_keyword_service.pb.go index b774bbf2..904df6b3 100644 --- a/services/keyword_plan_ad_group_keyword_service.pb.go +++ b/services/keyword_plan_ad_group_keyword_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/keyword_plan_ad_group_keyword_service.proto +// source: google/ads/googleads/v17/services/keyword_plan_ad_group_keyword_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [KeywordPlanAdGroupKeywordService.MutateKeywordPlanAdGroupKeywords][google.ads.googleads.v16.services.KeywordPlanAdGroupKeywordService.MutateKeywordPlanAdGroupKeywords]. +// [KeywordPlanAdGroupKeywordService.MutateKeywordPlanAdGroupKeywords][google.ads.googleads.v17.services.KeywordPlanAdGroupKeywordService.MutateKeywordPlanAdGroupKeywords]. type MutateKeywordPlanAdGroupKeywordsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -64,7 +64,7 @@ type MutateKeywordPlanAdGroupKeywordsRequest struct { func (x *MutateKeywordPlanAdGroupKeywordsRequest) Reset() { *x = MutateKeywordPlanAdGroupKeywordsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *MutateKeywordPlanAdGroupKeywordsRequest) String() string { func (*MutateKeywordPlanAdGroupKeywordsRequest) ProtoMessage() {} func (x *MutateKeywordPlanAdGroupKeywordsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *MutateKeywordPlanAdGroupKeywordsRequest) ProtoReflect() protoreflect.Me // Deprecated: Use MutateKeywordPlanAdGroupKeywordsRequest.ProtoReflect.Descriptor instead. func (*MutateKeywordPlanAdGroupKeywordsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_rawDescGZIP(), []int{0} } func (x *MutateKeywordPlanAdGroupKeywordsRequest) GetCustomerId() string { @@ -144,7 +144,7 @@ type KeywordPlanAdGroupKeywordOperation struct { func (x *KeywordPlanAdGroupKeywordOperation) Reset() { *x = KeywordPlanAdGroupKeywordOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -157,7 +157,7 @@ func (x *KeywordPlanAdGroupKeywordOperation) String() string { func (*KeywordPlanAdGroupKeywordOperation) ProtoMessage() {} func (x *KeywordPlanAdGroupKeywordOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -170,7 +170,7 @@ func (x *KeywordPlanAdGroupKeywordOperation) ProtoReflect() protoreflect.Message // Deprecated: Use KeywordPlanAdGroupKeywordOperation.ProtoReflect.Descriptor instead. func (*KeywordPlanAdGroupKeywordOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_rawDescGZIP(), []int{1} } func (x *KeywordPlanAdGroupKeywordOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -256,7 +256,7 @@ type MutateKeywordPlanAdGroupKeywordsResponse struct { func (x *MutateKeywordPlanAdGroupKeywordsResponse) Reset() { *x = MutateKeywordPlanAdGroupKeywordsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -269,7 +269,7 @@ func (x *MutateKeywordPlanAdGroupKeywordsResponse) String() string { func (*MutateKeywordPlanAdGroupKeywordsResponse) ProtoMessage() {} func (x *MutateKeywordPlanAdGroupKeywordsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -282,7 +282,7 @@ func (x *MutateKeywordPlanAdGroupKeywordsResponse) ProtoReflect() protoreflect.M // Deprecated: Use MutateKeywordPlanAdGroupKeywordsResponse.ProtoReflect.Descriptor instead. func (*MutateKeywordPlanAdGroupKeywordsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_rawDescGZIP(), []int{2} } func (x *MutateKeywordPlanAdGroupKeywordsResponse) GetPartialFailureError() *status.Status { @@ -312,7 +312,7 @@ type MutateKeywordPlanAdGroupKeywordResult struct { func (x *MutateKeywordPlanAdGroupKeywordResult) Reset() { *x = MutateKeywordPlanAdGroupKeywordResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -325,7 +325,7 @@ func (x *MutateKeywordPlanAdGroupKeywordResult) String() string { func (*MutateKeywordPlanAdGroupKeywordResult) ProtoMessage() {} func (x *MutateKeywordPlanAdGroupKeywordResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -338,7 +338,7 @@ func (x *MutateKeywordPlanAdGroupKeywordResult) ProtoReflect() protoreflect.Mess // Deprecated: Use MutateKeywordPlanAdGroupKeywordResult.ProtoReflect.Descriptor instead. func (*MutateKeywordPlanAdGroupKeywordResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_rawDescGZIP(), []int{3} } func (x *MutateKeywordPlanAdGroupKeywordResult) GetResourceName() string { @@ -348,18 +348,18 @@ func (x *MutateKeywordPlanAdGroupKeywordResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_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, 0x36, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, @@ -381,7 +381,7 @@ var file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x6a, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, @@ -399,12 +399,12 @@ var file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x57, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x57, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 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, 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, 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, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x51, 0x0a, 0x06, 0x72, 0x65, @@ -423,7 +423,7 @@ var file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x62, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 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, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, @@ -441,18 +441,18 @@ var file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service 0x12, 0xa1, 0x02, 0x0a, 0x20, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, 0x73, 0x12, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x64, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x45, 0x3a, - 0x01, 0x2a, 0x22, 0x40, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x01, 0x2a, 0x22, 0x40, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 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, 0x73, 0x3a, 0x6d, 0x75, @@ -462,56 +462,56 @@ var file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x91, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x25, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_rawDescData = file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_rawDesc + file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_rawDescData = file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_rawDescData + return file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_goTypes = []interface{}{ - (*MutateKeywordPlanAdGroupKeywordsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateKeywordPlanAdGroupKeywordsRequest - (*KeywordPlanAdGroupKeywordOperation)(nil), // 1: google.ads.googleads.v16.services.KeywordPlanAdGroupKeywordOperation - (*MutateKeywordPlanAdGroupKeywordsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateKeywordPlanAdGroupKeywordsResponse - (*MutateKeywordPlanAdGroupKeywordResult)(nil), // 3: google.ads.googleads.v16.services.MutateKeywordPlanAdGroupKeywordResult +var file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_goTypes = []interface{}{ + (*MutateKeywordPlanAdGroupKeywordsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateKeywordPlanAdGroupKeywordsRequest + (*KeywordPlanAdGroupKeywordOperation)(nil), // 1: google.ads.googleads.v17.services.KeywordPlanAdGroupKeywordOperation + (*MutateKeywordPlanAdGroupKeywordsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateKeywordPlanAdGroupKeywordsResponse + (*MutateKeywordPlanAdGroupKeywordResult)(nil), // 3: google.ads.googleads.v17.services.MutateKeywordPlanAdGroupKeywordResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.KeywordPlanAdGroupKeyword)(nil), // 5: google.ads.googleads.v16.resources.KeywordPlanAdGroupKeyword + (*resources.KeywordPlanAdGroupKeyword)(nil), // 5: google.ads.googleads.v17.resources.KeywordPlanAdGroupKeyword (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateKeywordPlanAdGroupKeywordsRequest.operations:type_name -> google.ads.googleads.v16.services.KeywordPlanAdGroupKeywordOperation - 4, // 1: google.ads.googleads.v16.services.KeywordPlanAdGroupKeywordOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v16.services.KeywordPlanAdGroupKeywordOperation.create:type_name -> google.ads.googleads.v16.resources.KeywordPlanAdGroupKeyword - 5, // 3: google.ads.googleads.v16.services.KeywordPlanAdGroupKeywordOperation.update:type_name -> google.ads.googleads.v16.resources.KeywordPlanAdGroupKeyword - 6, // 4: google.ads.googleads.v16.services.MutateKeywordPlanAdGroupKeywordsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 5: google.ads.googleads.v16.services.MutateKeywordPlanAdGroupKeywordsResponse.results:type_name -> google.ads.googleads.v16.services.MutateKeywordPlanAdGroupKeywordResult - 0, // 6: google.ads.googleads.v16.services.KeywordPlanAdGroupKeywordService.MutateKeywordPlanAdGroupKeywords:input_type -> google.ads.googleads.v16.services.MutateKeywordPlanAdGroupKeywordsRequest - 2, // 7: google.ads.googleads.v16.services.KeywordPlanAdGroupKeywordService.MutateKeywordPlanAdGroupKeywords:output_type -> google.ads.googleads.v16.services.MutateKeywordPlanAdGroupKeywordsResponse +var file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateKeywordPlanAdGroupKeywordsRequest.operations:type_name -> google.ads.googleads.v17.services.KeywordPlanAdGroupKeywordOperation + 4, // 1: google.ads.googleads.v17.services.KeywordPlanAdGroupKeywordOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v17.services.KeywordPlanAdGroupKeywordOperation.create:type_name -> google.ads.googleads.v17.resources.KeywordPlanAdGroupKeyword + 5, // 3: google.ads.googleads.v17.services.KeywordPlanAdGroupKeywordOperation.update:type_name -> google.ads.googleads.v17.resources.KeywordPlanAdGroupKeyword + 6, // 4: google.ads.googleads.v17.services.MutateKeywordPlanAdGroupKeywordsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 5: google.ads.googleads.v17.services.MutateKeywordPlanAdGroupKeywordsResponse.results:type_name -> google.ads.googleads.v17.services.MutateKeywordPlanAdGroupKeywordResult + 0, // 6: google.ads.googleads.v17.services.KeywordPlanAdGroupKeywordService.MutateKeywordPlanAdGroupKeywords:input_type -> google.ads.googleads.v17.services.MutateKeywordPlanAdGroupKeywordsRequest + 2, // 7: google.ads.googleads.v17.services.KeywordPlanAdGroupKeywordService.MutateKeywordPlanAdGroupKeywords:output_type -> google.ads.googleads.v17.services.MutateKeywordPlanAdGroupKeywordsResponse 7, // [7:8] is the sub-list for method output_type 6, // [6:7] is the sub-list for method input_type 6, // [6:6] is the sub-list for extension type_name @@ -520,14 +520,14 @@ var file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service } func init() { - file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_init() + file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_init() } -func file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_init() { - if File_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto != nil { +func file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_init() { + if File_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateKeywordPlanAdGroupKeywordsRequest); i { case 0: return &v.state @@ -539,7 +539,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_servic return nil } } - file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*KeywordPlanAdGroupKeywordOperation); i { case 0: return &v.state @@ -551,7 +551,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_servic return nil } } - file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateKeywordPlanAdGroupKeywordsResponse); i { case 0: return &v.state @@ -563,7 +563,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_servic return nil } } - file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateKeywordPlanAdGroupKeywordResult); i { case 0: return &v.state @@ -576,7 +576,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_servic } } } - file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*KeywordPlanAdGroupKeywordOperation_Create)(nil), (*KeywordPlanAdGroupKeywordOperation_Update)(nil), (*KeywordPlanAdGroupKeywordOperation_Remove)(nil), @@ -585,18 +585,18 @@ func file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_servic out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto = out.File - file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_keyword_plan_ad_group_keyword_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto = out.File + file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_keyword_plan_ad_group_keyword_service_proto_depIdxs = nil } diff --git a/services/keyword_plan_ad_group_keyword_service_grpc.pb.go b/services/keyword_plan_ad_group_keyword_service_grpc.pb.go index 68150b36..bb87144e 100644 --- a/services/keyword_plan_ad_group_keyword_service_grpc.pb.go +++ b/services/keyword_plan_ad_group_keyword_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/keyword_plan_ad_group_keyword_service.proto +// source: google/ads/googleads/v17/services/keyword_plan_ad_group_keyword_service.proto package services @@ -29,16 +29,22 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - KeywordPlanAdGroupKeywordService_MutateKeywordPlanAdGroupKeywords_FullMethodName = "/google.ads.googleads.v16.services.KeywordPlanAdGroupKeywordService/MutateKeywordPlanAdGroupKeywords" + KeywordPlanAdGroupKeywordService_MutateKeywordPlanAdGroupKeywords_FullMethodName = "/google.ads.googleads.v17.services.KeywordPlanAdGroupKeywordService/MutateKeywordPlanAdGroupKeywords" ) // KeywordPlanAdGroupKeywordServiceClient is the client API for KeywordPlanAdGroupKeywordService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage Keyword Plan ad group keywords. KeywordPlanAdGroup is +// required to add ad group keywords. Positive and negative keywords are +// supported. A maximum of 10,000 positive keywords are allowed per keyword +// plan. A maximum of 1,000 negative keywords are allower per keyword plan. This +// includes campaign negative keywords and ad group negative keywords. type KeywordPlanAdGroupKeywordServiceClient interface { // Creates, updates, or removes Keyword Plan ad group keywords. Operation // statuses are returned. @@ -69,8 +75,9 @@ func NewKeywordPlanAdGroupKeywordServiceClient(cc grpc.ClientConnInterface) Keyw } func (c *keywordPlanAdGroupKeywordServiceClient) MutateKeywordPlanAdGroupKeywords(ctx context.Context, in *MutateKeywordPlanAdGroupKeywordsRequest, opts ...grpc.CallOption) (*MutateKeywordPlanAdGroupKeywordsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateKeywordPlanAdGroupKeywordsResponse) - err := c.cc.Invoke(ctx, KeywordPlanAdGroupKeywordService_MutateKeywordPlanAdGroupKeywords_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, KeywordPlanAdGroupKeywordService_MutateKeywordPlanAdGroupKeywords_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -80,6 +87,12 @@ func (c *keywordPlanAdGroupKeywordServiceClient) MutateKeywordPlanAdGroupKeyword // KeywordPlanAdGroupKeywordServiceServer is the server API for KeywordPlanAdGroupKeywordService service. // All implementations must embed UnimplementedKeywordPlanAdGroupKeywordServiceServer // for forward compatibility +// +// Service to manage Keyword Plan ad group keywords. KeywordPlanAdGroup is +// required to add ad group keywords. Positive and negative keywords are +// supported. A maximum of 10,000 positive keywords are allowed per keyword +// plan. A maximum of 1,000 negative keywords are allower per keyword plan. This +// includes campaign negative keywords and ad group negative keywords. type KeywordPlanAdGroupKeywordServiceServer interface { // Creates, updates, or removes Keyword Plan ad group keywords. Operation // statuses are returned. @@ -145,7 +158,7 @@ func _KeywordPlanAdGroupKeywordService_MutateKeywordPlanAdGroupKeywords_Handler( // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var KeywordPlanAdGroupKeywordService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.KeywordPlanAdGroupKeywordService", + ServiceName: "google.ads.googleads.v17.services.KeywordPlanAdGroupKeywordService", HandlerType: (*KeywordPlanAdGroupKeywordServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -154,5 +167,5 @@ var KeywordPlanAdGroupKeywordService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/keyword_plan_ad_group_keyword_service.proto", + Metadata: "google/ads/googleads/v17/services/keyword_plan_ad_group_keyword_service.proto", } diff --git a/services/keyword_plan_ad_group_service.pb.go b/services/keyword_plan_ad_group_service.pb.go index e80f01e6..def24ca9 100644 --- a/services/keyword_plan_ad_group_service.pb.go +++ b/services/keyword_plan_ad_group_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/keyword_plan_ad_group_service.proto +// source: google/ads/googleads/v17/services/keyword_plan_ad_group_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [KeywordPlanAdGroupService.MutateKeywordPlanAdGroups][google.ads.googleads.v16.services.KeywordPlanAdGroupService.MutateKeywordPlanAdGroups]. +// [KeywordPlanAdGroupService.MutateKeywordPlanAdGroups][google.ads.googleads.v17.services.KeywordPlanAdGroupService.MutateKeywordPlanAdGroups]. type MutateKeywordPlanAdGroupsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -64,7 +64,7 @@ type MutateKeywordPlanAdGroupsRequest struct { func (x *MutateKeywordPlanAdGroupsRequest) Reset() { *x = MutateKeywordPlanAdGroupsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *MutateKeywordPlanAdGroupsRequest) String() string { func (*MutateKeywordPlanAdGroupsRequest) ProtoMessage() {} func (x *MutateKeywordPlanAdGroupsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *MutateKeywordPlanAdGroupsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateKeywordPlanAdGroupsRequest.ProtoReflect.Descriptor instead. func (*MutateKeywordPlanAdGroupsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_rawDescGZIP(), []int{0} } func (x *MutateKeywordPlanAdGroupsRequest) GetCustomerId() string { @@ -143,7 +143,7 @@ type KeywordPlanAdGroupOperation struct { func (x *KeywordPlanAdGroupOperation) Reset() { *x = KeywordPlanAdGroupOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -156,7 +156,7 @@ func (x *KeywordPlanAdGroupOperation) String() string { func (*KeywordPlanAdGroupOperation) ProtoMessage() {} func (x *KeywordPlanAdGroupOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -169,7 +169,7 @@ func (x *KeywordPlanAdGroupOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanAdGroupOperation.ProtoReflect.Descriptor instead. func (*KeywordPlanAdGroupOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_rawDescGZIP(), []int{1} } func (x *KeywordPlanAdGroupOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -256,7 +256,7 @@ type MutateKeywordPlanAdGroupsResponse struct { func (x *MutateKeywordPlanAdGroupsResponse) Reset() { *x = MutateKeywordPlanAdGroupsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -269,7 +269,7 @@ func (x *MutateKeywordPlanAdGroupsResponse) String() string { func (*MutateKeywordPlanAdGroupsResponse) ProtoMessage() {} func (x *MutateKeywordPlanAdGroupsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -282,7 +282,7 @@ func (x *MutateKeywordPlanAdGroupsResponse) ProtoReflect() protoreflect.Message // Deprecated: Use MutateKeywordPlanAdGroupsResponse.ProtoReflect.Descriptor instead. func (*MutateKeywordPlanAdGroupsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_rawDescGZIP(), []int{2} } func (x *MutateKeywordPlanAdGroupsResponse) GetPartialFailureError() *status.Status { @@ -312,7 +312,7 @@ type MutateKeywordPlanAdGroupResult struct { func (x *MutateKeywordPlanAdGroupResult) Reset() { *x = MutateKeywordPlanAdGroupResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -325,7 +325,7 @@ func (x *MutateKeywordPlanAdGroupResult) String() string { func (*MutateKeywordPlanAdGroupResult) ProtoMessage() {} func (x *MutateKeywordPlanAdGroupResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -338,7 +338,7 @@ func (x *MutateKeywordPlanAdGroupResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateKeywordPlanAdGroupResult.ProtoReflect.Descriptor instead. func (*MutateKeywordPlanAdGroupResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_rawDescGZIP(), []int{3} } func (x *MutateKeywordPlanAdGroupResult) GetResourceName() string { @@ -348,18 +348,18 @@ func (x *MutateKeywordPlanAdGroupResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6b, + 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, @@ -380,7 +380,7 @@ var file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_r 0x72, 0x49, 0x64, 0x12, 0x63, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, @@ -396,12 +396,12 @@ var file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_r 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x50, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 0x72, + 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, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x50, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x02, 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, + 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, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x4a, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, @@ -419,7 +419,7 @@ var file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_r 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x5b, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x36, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x77, 0x0a, 0x1e, 0x4d, @@ -435,17 +435,17 @@ var file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_r 0x63, 0x65, 0x12, 0x85, 0x02, 0x0a, 0x19, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x12, 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, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5d, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3e, 0x3a, 0x01, 0x2a, 0x22, - 0x39, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, + 0x39, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, @@ -455,55 +455,55 @@ var file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_r 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x8a, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1e, 0x4b, 0x65, 0x79, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, + 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_rawDescData = file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_rawDesc + file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_rawDescData = file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_rawDescData + return file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_goTypes = []interface{}{ - (*MutateKeywordPlanAdGroupsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateKeywordPlanAdGroupsRequest - (*KeywordPlanAdGroupOperation)(nil), // 1: google.ads.googleads.v16.services.KeywordPlanAdGroupOperation - (*MutateKeywordPlanAdGroupsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateKeywordPlanAdGroupsResponse - (*MutateKeywordPlanAdGroupResult)(nil), // 3: google.ads.googleads.v16.services.MutateKeywordPlanAdGroupResult +var file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_goTypes = []interface{}{ + (*MutateKeywordPlanAdGroupsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateKeywordPlanAdGroupsRequest + (*KeywordPlanAdGroupOperation)(nil), // 1: google.ads.googleads.v17.services.KeywordPlanAdGroupOperation + (*MutateKeywordPlanAdGroupsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateKeywordPlanAdGroupsResponse + (*MutateKeywordPlanAdGroupResult)(nil), // 3: google.ads.googleads.v17.services.MutateKeywordPlanAdGroupResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.KeywordPlanAdGroup)(nil), // 5: google.ads.googleads.v16.resources.KeywordPlanAdGroup + (*resources.KeywordPlanAdGroup)(nil), // 5: google.ads.googleads.v17.resources.KeywordPlanAdGroup (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateKeywordPlanAdGroupsRequest.operations:type_name -> google.ads.googleads.v16.services.KeywordPlanAdGroupOperation - 4, // 1: google.ads.googleads.v16.services.KeywordPlanAdGroupOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v16.services.KeywordPlanAdGroupOperation.create:type_name -> google.ads.googleads.v16.resources.KeywordPlanAdGroup - 5, // 3: google.ads.googleads.v16.services.KeywordPlanAdGroupOperation.update:type_name -> google.ads.googleads.v16.resources.KeywordPlanAdGroup - 6, // 4: google.ads.googleads.v16.services.MutateKeywordPlanAdGroupsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 5: google.ads.googleads.v16.services.MutateKeywordPlanAdGroupsResponse.results:type_name -> google.ads.googleads.v16.services.MutateKeywordPlanAdGroupResult - 0, // 6: google.ads.googleads.v16.services.KeywordPlanAdGroupService.MutateKeywordPlanAdGroups:input_type -> google.ads.googleads.v16.services.MutateKeywordPlanAdGroupsRequest - 2, // 7: google.ads.googleads.v16.services.KeywordPlanAdGroupService.MutateKeywordPlanAdGroups:output_type -> google.ads.googleads.v16.services.MutateKeywordPlanAdGroupsResponse +var file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateKeywordPlanAdGroupsRequest.operations:type_name -> google.ads.googleads.v17.services.KeywordPlanAdGroupOperation + 4, // 1: google.ads.googleads.v17.services.KeywordPlanAdGroupOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v17.services.KeywordPlanAdGroupOperation.create:type_name -> google.ads.googleads.v17.resources.KeywordPlanAdGroup + 5, // 3: google.ads.googleads.v17.services.KeywordPlanAdGroupOperation.update:type_name -> google.ads.googleads.v17.resources.KeywordPlanAdGroup + 6, // 4: google.ads.googleads.v17.services.MutateKeywordPlanAdGroupsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 5: google.ads.googleads.v17.services.MutateKeywordPlanAdGroupsResponse.results:type_name -> google.ads.googleads.v17.services.MutateKeywordPlanAdGroupResult + 0, // 6: google.ads.googleads.v17.services.KeywordPlanAdGroupService.MutateKeywordPlanAdGroups:input_type -> google.ads.googleads.v17.services.MutateKeywordPlanAdGroupsRequest + 2, // 7: google.ads.googleads.v17.services.KeywordPlanAdGroupService.MutateKeywordPlanAdGroups:output_type -> google.ads.googleads.v17.services.MutateKeywordPlanAdGroupsResponse 7, // [7:8] is the sub-list for method output_type 6, // [6:7] is the sub-list for method input_type 6, // [6:6] is the sub-list for extension type_name @@ -511,13 +511,13 @@ var file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_d 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_init() } -func file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_init() { - if File_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_init() } +func file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_init() { + if File_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateKeywordPlanAdGroupsRequest); i { case 0: return &v.state @@ -529,7 +529,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_ return nil } } - file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*KeywordPlanAdGroupOperation); i { case 0: return &v.state @@ -541,7 +541,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_ return nil } } - file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateKeywordPlanAdGroupsResponse); i { case 0: return &v.state @@ -553,7 +553,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_ return nil } } - file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateKeywordPlanAdGroupResult); i { case 0: return &v.state @@ -566,7 +566,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_ } } } - file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*KeywordPlanAdGroupOperation_Create)(nil), (*KeywordPlanAdGroupOperation_Update)(nil), (*KeywordPlanAdGroupOperation_Remove)(nil), @@ -575,18 +575,18 @@ func file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_ out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto = out.File - file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_keyword_plan_ad_group_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto = out.File + file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_keyword_plan_ad_group_service_proto_depIdxs = nil } diff --git a/services/keyword_plan_ad_group_service_grpc.pb.go b/services/keyword_plan_ad_group_service_grpc.pb.go index 3d6e7ab2..0d31bfd8 100644 --- a/services/keyword_plan_ad_group_service_grpc.pb.go +++ b/services/keyword_plan_ad_group_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/keyword_plan_ad_group_service.proto +// source: google/ads/googleads/v17/services/keyword_plan_ad_group_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - KeywordPlanAdGroupService_MutateKeywordPlanAdGroups_FullMethodName = "/google.ads.googleads.v16.services.KeywordPlanAdGroupService/MutateKeywordPlanAdGroups" + KeywordPlanAdGroupService_MutateKeywordPlanAdGroups_FullMethodName = "/google.ads.googleads.v17.services.KeywordPlanAdGroupService/MutateKeywordPlanAdGroups" ) // KeywordPlanAdGroupServiceClient is the client API for KeywordPlanAdGroupService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage Keyword Plan ad groups. type KeywordPlanAdGroupServiceClient interface { // Creates, updates, or removes Keyword Plan ad groups. Operation statuses are // returned. @@ -71,8 +73,9 @@ func NewKeywordPlanAdGroupServiceClient(cc grpc.ClientConnInterface) KeywordPlan } func (c *keywordPlanAdGroupServiceClient) MutateKeywordPlanAdGroups(ctx context.Context, in *MutateKeywordPlanAdGroupsRequest, opts ...grpc.CallOption) (*MutateKeywordPlanAdGroupsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateKeywordPlanAdGroupsResponse) - err := c.cc.Invoke(ctx, KeywordPlanAdGroupService_MutateKeywordPlanAdGroups_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, KeywordPlanAdGroupService_MutateKeywordPlanAdGroups_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -82,6 +85,8 @@ func (c *keywordPlanAdGroupServiceClient) MutateKeywordPlanAdGroups(ctx context. // KeywordPlanAdGroupServiceServer is the server API for KeywordPlanAdGroupService service. // All implementations must embed UnimplementedKeywordPlanAdGroupServiceServer // for forward compatibility +// +// Service to manage Keyword Plan ad groups. type KeywordPlanAdGroupServiceServer interface { // Creates, updates, or removes Keyword Plan ad groups. Operation statuses are // returned. @@ -149,7 +154,7 @@ func _KeywordPlanAdGroupService_MutateKeywordPlanAdGroups_Handler(srv interface{ // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var KeywordPlanAdGroupService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.KeywordPlanAdGroupService", + ServiceName: "google.ads.googleads.v17.services.KeywordPlanAdGroupService", HandlerType: (*KeywordPlanAdGroupServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -158,5 +163,5 @@ var KeywordPlanAdGroupService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/keyword_plan_ad_group_service.proto", + Metadata: "google/ads/googleads/v17/services/keyword_plan_ad_group_service.proto", } diff --git a/services/keyword_plan_campaign_keyword_service.pb.go b/services/keyword_plan_campaign_keyword_service.pb.go index c8f4a4e9..e1ccefca 100644 --- a/services/keyword_plan_campaign_keyword_service.pb.go +++ b/services/keyword_plan_campaign_keyword_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/keyword_plan_campaign_keyword_service.proto +// source: google/ads/googleads/v17/services/keyword_plan_campaign_keyword_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [KeywordPlanCampaignKeywordService.MutateKeywordPlanCampaignKeywords][google.ads.googleads.v16.services.KeywordPlanCampaignKeywordService.MutateKeywordPlanCampaignKeywords]. +// [KeywordPlanCampaignKeywordService.MutateKeywordPlanCampaignKeywords][google.ads.googleads.v17.services.KeywordPlanCampaignKeywordService.MutateKeywordPlanCampaignKeywords]. type MutateKeywordPlanCampaignKeywordsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -64,7 +64,7 @@ type MutateKeywordPlanCampaignKeywordsRequest struct { func (x *MutateKeywordPlanCampaignKeywordsRequest) Reset() { *x = MutateKeywordPlanCampaignKeywordsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *MutateKeywordPlanCampaignKeywordsRequest) String() string { func (*MutateKeywordPlanCampaignKeywordsRequest) ProtoMessage() {} func (x *MutateKeywordPlanCampaignKeywordsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *MutateKeywordPlanCampaignKeywordsRequest) ProtoReflect() protoreflect.M // Deprecated: Use MutateKeywordPlanCampaignKeywordsRequest.ProtoReflect.Descriptor instead. func (*MutateKeywordPlanCampaignKeywordsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_rawDescGZIP(), []int{0} } func (x *MutateKeywordPlanCampaignKeywordsRequest) GetCustomerId() string { @@ -144,7 +144,7 @@ type KeywordPlanCampaignKeywordOperation struct { func (x *KeywordPlanCampaignKeywordOperation) Reset() { *x = KeywordPlanCampaignKeywordOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -157,7 +157,7 @@ func (x *KeywordPlanCampaignKeywordOperation) String() string { func (*KeywordPlanCampaignKeywordOperation) ProtoMessage() {} func (x *KeywordPlanCampaignKeywordOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -170,7 +170,7 @@ func (x *KeywordPlanCampaignKeywordOperation) ProtoReflect() protoreflect.Messag // Deprecated: Use KeywordPlanCampaignKeywordOperation.ProtoReflect.Descriptor instead. func (*KeywordPlanCampaignKeywordOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_rawDescGZIP(), []int{1} } func (x *KeywordPlanCampaignKeywordOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -259,7 +259,7 @@ type MutateKeywordPlanCampaignKeywordsResponse struct { func (x *MutateKeywordPlanCampaignKeywordsResponse) Reset() { *x = MutateKeywordPlanCampaignKeywordsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -272,7 +272,7 @@ func (x *MutateKeywordPlanCampaignKeywordsResponse) String() string { func (*MutateKeywordPlanCampaignKeywordsResponse) ProtoMessage() {} func (x *MutateKeywordPlanCampaignKeywordsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -285,7 +285,7 @@ func (x *MutateKeywordPlanCampaignKeywordsResponse) ProtoReflect() protoreflect. // Deprecated: Use MutateKeywordPlanCampaignKeywordsResponse.ProtoReflect.Descriptor instead. func (*MutateKeywordPlanCampaignKeywordsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_rawDescGZIP(), []int{2} } func (x *MutateKeywordPlanCampaignKeywordsResponse) GetPartialFailureError() *status.Status { @@ -315,7 +315,7 @@ type MutateKeywordPlanCampaignKeywordResult struct { func (x *MutateKeywordPlanCampaignKeywordResult) Reset() { *x = MutateKeywordPlanCampaignKeywordResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -328,7 +328,7 @@ func (x *MutateKeywordPlanCampaignKeywordResult) String() string { func (*MutateKeywordPlanCampaignKeywordResult) ProtoMessage() {} func (x *MutateKeywordPlanCampaignKeywordResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -341,7 +341,7 @@ func (x *MutateKeywordPlanCampaignKeywordResult) ProtoReflect() protoreflect.Mes // Deprecated: Use MutateKeywordPlanCampaignKeywordResult.ProtoReflect.Descriptor instead. func (*MutateKeywordPlanCampaignKeywordResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_rawDescGZIP(), []int{3} } func (x *MutateKeywordPlanCampaignKeywordResult) GetResourceName() string { @@ -351,18 +351,18 @@ func (x *MutateKeywordPlanCampaignKeywordResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_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, 0x36, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, @@ -384,7 +384,7 @@ var file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x6b, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, @@ -402,12 +402,12 @@ var file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x58, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x58, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x02, 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, + 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, 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, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, @@ -427,7 +427,7 @@ var file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x63, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x87, 0x01, 0x0a, 0x26, @@ -445,18 +445,18 @@ var file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, 0x73, 0x12, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x65, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x46, 0x3a, 0x01, 0x2a, - 0x22, 0x41, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, + 0x22, 0x41, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 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, 0x73, 0x3a, 0x6d, 0x75, 0x74, @@ -466,56 +466,56 @@ var file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x92, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x26, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_rawDescData = file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_rawDesc + file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_rawDescData = file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_rawDescData + return file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_goTypes = []interface{}{ - (*MutateKeywordPlanCampaignKeywordsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateKeywordPlanCampaignKeywordsRequest - (*KeywordPlanCampaignKeywordOperation)(nil), // 1: google.ads.googleads.v16.services.KeywordPlanCampaignKeywordOperation - (*MutateKeywordPlanCampaignKeywordsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateKeywordPlanCampaignKeywordsResponse - (*MutateKeywordPlanCampaignKeywordResult)(nil), // 3: google.ads.googleads.v16.services.MutateKeywordPlanCampaignKeywordResult +var file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_goTypes = []interface{}{ + (*MutateKeywordPlanCampaignKeywordsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateKeywordPlanCampaignKeywordsRequest + (*KeywordPlanCampaignKeywordOperation)(nil), // 1: google.ads.googleads.v17.services.KeywordPlanCampaignKeywordOperation + (*MutateKeywordPlanCampaignKeywordsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateKeywordPlanCampaignKeywordsResponse + (*MutateKeywordPlanCampaignKeywordResult)(nil), // 3: google.ads.googleads.v17.services.MutateKeywordPlanCampaignKeywordResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.KeywordPlanCampaignKeyword)(nil), // 5: google.ads.googleads.v16.resources.KeywordPlanCampaignKeyword + (*resources.KeywordPlanCampaignKeyword)(nil), // 5: google.ads.googleads.v17.resources.KeywordPlanCampaignKeyword (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateKeywordPlanCampaignKeywordsRequest.operations:type_name -> google.ads.googleads.v16.services.KeywordPlanCampaignKeywordOperation - 4, // 1: google.ads.googleads.v16.services.KeywordPlanCampaignKeywordOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v16.services.KeywordPlanCampaignKeywordOperation.create:type_name -> google.ads.googleads.v16.resources.KeywordPlanCampaignKeyword - 5, // 3: google.ads.googleads.v16.services.KeywordPlanCampaignKeywordOperation.update:type_name -> google.ads.googleads.v16.resources.KeywordPlanCampaignKeyword - 6, // 4: google.ads.googleads.v16.services.MutateKeywordPlanCampaignKeywordsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 5: google.ads.googleads.v16.services.MutateKeywordPlanCampaignKeywordsResponse.results:type_name -> google.ads.googleads.v16.services.MutateKeywordPlanCampaignKeywordResult - 0, // 6: google.ads.googleads.v16.services.KeywordPlanCampaignKeywordService.MutateKeywordPlanCampaignKeywords:input_type -> google.ads.googleads.v16.services.MutateKeywordPlanCampaignKeywordsRequest - 2, // 7: google.ads.googleads.v16.services.KeywordPlanCampaignKeywordService.MutateKeywordPlanCampaignKeywords:output_type -> google.ads.googleads.v16.services.MutateKeywordPlanCampaignKeywordsResponse +var file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateKeywordPlanCampaignKeywordsRequest.operations:type_name -> google.ads.googleads.v17.services.KeywordPlanCampaignKeywordOperation + 4, // 1: google.ads.googleads.v17.services.KeywordPlanCampaignKeywordOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v17.services.KeywordPlanCampaignKeywordOperation.create:type_name -> google.ads.googleads.v17.resources.KeywordPlanCampaignKeyword + 5, // 3: google.ads.googleads.v17.services.KeywordPlanCampaignKeywordOperation.update:type_name -> google.ads.googleads.v17.resources.KeywordPlanCampaignKeyword + 6, // 4: google.ads.googleads.v17.services.MutateKeywordPlanCampaignKeywordsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 5: google.ads.googleads.v17.services.MutateKeywordPlanCampaignKeywordsResponse.results:type_name -> google.ads.googleads.v17.services.MutateKeywordPlanCampaignKeywordResult + 0, // 6: google.ads.googleads.v17.services.KeywordPlanCampaignKeywordService.MutateKeywordPlanCampaignKeywords:input_type -> google.ads.googleads.v17.services.MutateKeywordPlanCampaignKeywordsRequest + 2, // 7: google.ads.googleads.v17.services.KeywordPlanCampaignKeywordService.MutateKeywordPlanCampaignKeywords:output_type -> google.ads.googleads.v17.services.MutateKeywordPlanCampaignKeywordsResponse 7, // [7:8] is the sub-list for method output_type 6, // [6:7] is the sub-list for method input_type 6, // [6:6] is the sub-list for extension type_name @@ -524,14 +524,14 @@ var file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service } func init() { - file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_init() + file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_init() } -func file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_init() { - if File_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto != nil { +func file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_init() { + if File_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateKeywordPlanCampaignKeywordsRequest); i { case 0: return &v.state @@ -543,7 +543,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_servic return nil } } - file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*KeywordPlanCampaignKeywordOperation); i { case 0: return &v.state @@ -555,7 +555,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_servic return nil } } - file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateKeywordPlanCampaignKeywordsResponse); i { case 0: return &v.state @@ -567,7 +567,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_servic return nil } } - file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateKeywordPlanCampaignKeywordResult); i { case 0: return &v.state @@ -580,7 +580,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_servic } } } - file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*KeywordPlanCampaignKeywordOperation_Create)(nil), (*KeywordPlanCampaignKeywordOperation_Update)(nil), (*KeywordPlanCampaignKeywordOperation_Remove)(nil), @@ -589,18 +589,18 @@ func file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_servic out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto = out.File - file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_keyword_plan_campaign_keyword_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto = out.File + file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_keyword_plan_campaign_keyword_service_proto_depIdxs = nil } diff --git a/services/keyword_plan_campaign_keyword_service_grpc.pb.go b/services/keyword_plan_campaign_keyword_service_grpc.pb.go index bbd44d79..b9510bc7 100644 --- a/services/keyword_plan_campaign_keyword_service_grpc.pb.go +++ b/services/keyword_plan_campaign_keyword_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/keyword_plan_campaign_keyword_service.proto +// source: google/ads/googleads/v17/services/keyword_plan_campaign_keyword_service.proto package services @@ -29,16 +29,21 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - KeywordPlanCampaignKeywordService_MutateKeywordPlanCampaignKeywords_FullMethodName = "/google.ads.googleads.v16.services.KeywordPlanCampaignKeywordService/MutateKeywordPlanCampaignKeywords" + KeywordPlanCampaignKeywordService_MutateKeywordPlanCampaignKeywords_FullMethodName = "/google.ads.googleads.v17.services.KeywordPlanCampaignKeywordService/MutateKeywordPlanCampaignKeywords" ) // KeywordPlanCampaignKeywordServiceClient is the client API for KeywordPlanCampaignKeywordService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage Keyword Plan campaign keywords. KeywordPlanCampaign is +// required to add the campaign keywords. Only negative keywords are supported. +// A maximum of 1000 negative keywords are allowed per plan. This includes both +// campaign negative keywords and ad group negative keywords. type KeywordPlanCampaignKeywordServiceClient interface { // Creates, updates, or removes Keyword Plan campaign keywords. Operation // statuses are returned. @@ -68,8 +73,9 @@ func NewKeywordPlanCampaignKeywordServiceClient(cc grpc.ClientConnInterface) Key } func (c *keywordPlanCampaignKeywordServiceClient) MutateKeywordPlanCampaignKeywords(ctx context.Context, in *MutateKeywordPlanCampaignKeywordsRequest, opts ...grpc.CallOption) (*MutateKeywordPlanCampaignKeywordsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateKeywordPlanCampaignKeywordsResponse) - err := c.cc.Invoke(ctx, KeywordPlanCampaignKeywordService_MutateKeywordPlanCampaignKeywords_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, KeywordPlanCampaignKeywordService_MutateKeywordPlanCampaignKeywords_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -79,6 +85,11 @@ func (c *keywordPlanCampaignKeywordServiceClient) MutateKeywordPlanCampaignKeywo // KeywordPlanCampaignKeywordServiceServer is the server API for KeywordPlanCampaignKeywordService service. // All implementations must embed UnimplementedKeywordPlanCampaignKeywordServiceServer // for forward compatibility +// +// Service to manage Keyword Plan campaign keywords. KeywordPlanCampaign is +// required to add the campaign keywords. Only negative keywords are supported. +// A maximum of 1000 negative keywords are allowed per plan. This includes both +// campaign negative keywords and ad group negative keywords. type KeywordPlanCampaignKeywordServiceServer interface { // Creates, updates, or removes Keyword Plan campaign keywords. Operation // statuses are returned. @@ -143,7 +154,7 @@ func _KeywordPlanCampaignKeywordService_MutateKeywordPlanCampaignKeywords_Handle // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var KeywordPlanCampaignKeywordService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.KeywordPlanCampaignKeywordService", + ServiceName: "google.ads.googleads.v17.services.KeywordPlanCampaignKeywordService", HandlerType: (*KeywordPlanCampaignKeywordServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -152,5 +163,5 @@ var KeywordPlanCampaignKeywordService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/keyword_plan_campaign_keyword_service.proto", + Metadata: "google/ads/googleads/v17/services/keyword_plan_campaign_keyword_service.proto", } diff --git a/services/keyword_plan_campaign_service.pb.go b/services/keyword_plan_campaign_service.pb.go index 732c462e..ee9baef2 100644 --- a/services/keyword_plan_campaign_service.pb.go +++ b/services/keyword_plan_campaign_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/keyword_plan_campaign_service.proto +// source: google/ads/googleads/v17/services/keyword_plan_campaign_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [KeywordPlanCampaignService.MutateKeywordPlanCampaigns][google.ads.googleads.v16.services.KeywordPlanCampaignService.MutateKeywordPlanCampaigns]. +// [KeywordPlanCampaignService.MutateKeywordPlanCampaigns][google.ads.googleads.v17.services.KeywordPlanCampaignService.MutateKeywordPlanCampaigns]. type MutateKeywordPlanCampaignsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -64,7 +64,7 @@ type MutateKeywordPlanCampaignsRequest struct { func (x *MutateKeywordPlanCampaignsRequest) Reset() { *x = MutateKeywordPlanCampaignsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *MutateKeywordPlanCampaignsRequest) String() string { func (*MutateKeywordPlanCampaignsRequest) ProtoMessage() {} func (x *MutateKeywordPlanCampaignsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *MutateKeywordPlanCampaignsRequest) ProtoReflect() protoreflect.Message // Deprecated: Use MutateKeywordPlanCampaignsRequest.ProtoReflect.Descriptor instead. func (*MutateKeywordPlanCampaignsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_rawDescGZIP(), []int{0} } func (x *MutateKeywordPlanCampaignsRequest) GetCustomerId() string { @@ -143,7 +143,7 @@ type KeywordPlanCampaignOperation struct { func (x *KeywordPlanCampaignOperation) Reset() { *x = KeywordPlanCampaignOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -156,7 +156,7 @@ func (x *KeywordPlanCampaignOperation) String() string { func (*KeywordPlanCampaignOperation) ProtoMessage() {} func (x *KeywordPlanCampaignOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -169,7 +169,7 @@ func (x *KeywordPlanCampaignOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanCampaignOperation.ProtoReflect.Descriptor instead. func (*KeywordPlanCampaignOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_rawDescGZIP(), []int{1} } func (x *KeywordPlanCampaignOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -255,7 +255,7 @@ type MutateKeywordPlanCampaignsResponse struct { func (x *MutateKeywordPlanCampaignsResponse) Reset() { *x = MutateKeywordPlanCampaignsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -268,7 +268,7 @@ func (x *MutateKeywordPlanCampaignsResponse) String() string { func (*MutateKeywordPlanCampaignsResponse) ProtoMessage() {} func (x *MutateKeywordPlanCampaignsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -281,7 +281,7 @@ func (x *MutateKeywordPlanCampaignsResponse) ProtoReflect() protoreflect.Message // Deprecated: Use MutateKeywordPlanCampaignsResponse.ProtoReflect.Descriptor instead. func (*MutateKeywordPlanCampaignsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_rawDescGZIP(), []int{2} } func (x *MutateKeywordPlanCampaignsResponse) GetPartialFailureError() *status.Status { @@ -311,7 +311,7 @@ type MutateKeywordPlanCampaignResult struct { func (x *MutateKeywordPlanCampaignResult) Reset() { *x = MutateKeywordPlanCampaignResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -324,7 +324,7 @@ func (x *MutateKeywordPlanCampaignResult) String() string { func (*MutateKeywordPlanCampaignResult) ProtoMessage() {} func (x *MutateKeywordPlanCampaignResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -337,7 +337,7 @@ func (x *MutateKeywordPlanCampaignResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateKeywordPlanCampaignResult.ProtoReflect.Descriptor instead. func (*MutateKeywordPlanCampaignResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_rawDescGZIP(), []int{3} } func (x *MutateKeywordPlanCampaignResult) GetResourceName() string { @@ -347,18 +347,18 @@ func (x *MutateKeywordPlanCampaignResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_keyword_plan_campaign_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6b, + 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, @@ -379,7 +379,7 @@ var file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_r 0x65, 0x72, 0x49, 0x64, 0x12, 0x64, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, @@ -396,12 +396,12 @@ var file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_r 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x51, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x51, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4b, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x4b, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x31, 0xfa, 0x41, @@ -419,7 +419,7 @@ var file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_r 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x5c, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x79, 0x0a, 0x1f, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, @@ -435,17 +435,17 @@ var file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_r 0x0a, 0x1a, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5e, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3f, 0x3a, 0x01, 0x2a, 0x22, 0x3a, 0x2f, - 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, + 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, @@ -455,55 +455,55 @@ var file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_r 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x8b, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1f, 0x4b, 0x65, 0x79, 0x77, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1f, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, + 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_rawDescData = file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_rawDesc + file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_rawDescData = file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_rawDescData + return file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_goTypes = []interface{}{ - (*MutateKeywordPlanCampaignsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateKeywordPlanCampaignsRequest - (*KeywordPlanCampaignOperation)(nil), // 1: google.ads.googleads.v16.services.KeywordPlanCampaignOperation - (*MutateKeywordPlanCampaignsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateKeywordPlanCampaignsResponse - (*MutateKeywordPlanCampaignResult)(nil), // 3: google.ads.googleads.v16.services.MutateKeywordPlanCampaignResult +var file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_goTypes = []interface{}{ + (*MutateKeywordPlanCampaignsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateKeywordPlanCampaignsRequest + (*KeywordPlanCampaignOperation)(nil), // 1: google.ads.googleads.v17.services.KeywordPlanCampaignOperation + (*MutateKeywordPlanCampaignsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateKeywordPlanCampaignsResponse + (*MutateKeywordPlanCampaignResult)(nil), // 3: google.ads.googleads.v17.services.MutateKeywordPlanCampaignResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.KeywordPlanCampaign)(nil), // 5: google.ads.googleads.v16.resources.KeywordPlanCampaign + (*resources.KeywordPlanCampaign)(nil), // 5: google.ads.googleads.v17.resources.KeywordPlanCampaign (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateKeywordPlanCampaignsRequest.operations:type_name -> google.ads.googleads.v16.services.KeywordPlanCampaignOperation - 4, // 1: google.ads.googleads.v16.services.KeywordPlanCampaignOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v16.services.KeywordPlanCampaignOperation.create:type_name -> google.ads.googleads.v16.resources.KeywordPlanCampaign - 5, // 3: google.ads.googleads.v16.services.KeywordPlanCampaignOperation.update:type_name -> google.ads.googleads.v16.resources.KeywordPlanCampaign - 6, // 4: google.ads.googleads.v16.services.MutateKeywordPlanCampaignsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 5: google.ads.googleads.v16.services.MutateKeywordPlanCampaignsResponse.results:type_name -> google.ads.googleads.v16.services.MutateKeywordPlanCampaignResult - 0, // 6: google.ads.googleads.v16.services.KeywordPlanCampaignService.MutateKeywordPlanCampaigns:input_type -> google.ads.googleads.v16.services.MutateKeywordPlanCampaignsRequest - 2, // 7: google.ads.googleads.v16.services.KeywordPlanCampaignService.MutateKeywordPlanCampaigns:output_type -> google.ads.googleads.v16.services.MutateKeywordPlanCampaignsResponse +var file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateKeywordPlanCampaignsRequest.operations:type_name -> google.ads.googleads.v17.services.KeywordPlanCampaignOperation + 4, // 1: google.ads.googleads.v17.services.KeywordPlanCampaignOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v17.services.KeywordPlanCampaignOperation.create:type_name -> google.ads.googleads.v17.resources.KeywordPlanCampaign + 5, // 3: google.ads.googleads.v17.services.KeywordPlanCampaignOperation.update:type_name -> google.ads.googleads.v17.resources.KeywordPlanCampaign + 6, // 4: google.ads.googleads.v17.services.MutateKeywordPlanCampaignsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 5: google.ads.googleads.v17.services.MutateKeywordPlanCampaignsResponse.results:type_name -> google.ads.googleads.v17.services.MutateKeywordPlanCampaignResult + 0, // 6: google.ads.googleads.v17.services.KeywordPlanCampaignService.MutateKeywordPlanCampaigns:input_type -> google.ads.googleads.v17.services.MutateKeywordPlanCampaignsRequest + 2, // 7: google.ads.googleads.v17.services.KeywordPlanCampaignService.MutateKeywordPlanCampaigns:output_type -> google.ads.googleads.v17.services.MutateKeywordPlanCampaignsResponse 7, // [7:8] is the sub-list for method output_type 6, // [6:7] is the sub-list for method input_type 6, // [6:6] is the sub-list for extension type_name @@ -511,13 +511,13 @@ var file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_d 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_init() } -func file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_init() { - if File_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_init() } +func file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_init() { + if File_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateKeywordPlanCampaignsRequest); i { case 0: return &v.state @@ -529,7 +529,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_ return nil } } - file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*KeywordPlanCampaignOperation); i { case 0: return &v.state @@ -541,7 +541,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_ return nil } } - file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateKeywordPlanCampaignsResponse); i { case 0: return &v.state @@ -553,7 +553,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_ return nil } } - file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateKeywordPlanCampaignResult); i { case 0: return &v.state @@ -566,7 +566,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_ } } } - file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*KeywordPlanCampaignOperation_Create)(nil), (*KeywordPlanCampaignOperation_Update)(nil), (*KeywordPlanCampaignOperation_Remove)(nil), @@ -575,18 +575,18 @@ func file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_ out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto = out.File - file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_keyword_plan_campaign_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto = out.File + file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_keyword_plan_campaign_service_proto_depIdxs = nil } diff --git a/services/keyword_plan_campaign_service_grpc.pb.go b/services/keyword_plan_campaign_service_grpc.pb.go index b9ffd8fe..80031ac6 100644 --- a/services/keyword_plan_campaign_service_grpc.pb.go +++ b/services/keyword_plan_campaign_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/keyword_plan_campaign_service.proto +// source: google/ads/googleads/v17/services/keyword_plan_campaign_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - KeywordPlanCampaignService_MutateKeywordPlanCampaigns_FullMethodName = "/google.ads.googleads.v16.services.KeywordPlanCampaignService/MutateKeywordPlanCampaigns" + KeywordPlanCampaignService_MutateKeywordPlanCampaigns_FullMethodName = "/google.ads.googleads.v17.services.KeywordPlanCampaignService/MutateKeywordPlanCampaigns" ) // KeywordPlanCampaignServiceClient is the client API for KeywordPlanCampaignService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage Keyword Plan campaigns. type KeywordPlanCampaignServiceClient interface { // Creates, updates, or removes Keyword Plan campaigns. Operation statuses are // returned. @@ -72,8 +74,9 @@ func NewKeywordPlanCampaignServiceClient(cc grpc.ClientConnInterface) KeywordPla } func (c *keywordPlanCampaignServiceClient) MutateKeywordPlanCampaigns(ctx context.Context, in *MutateKeywordPlanCampaignsRequest, opts ...grpc.CallOption) (*MutateKeywordPlanCampaignsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateKeywordPlanCampaignsResponse) - err := c.cc.Invoke(ctx, KeywordPlanCampaignService_MutateKeywordPlanCampaigns_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, KeywordPlanCampaignService_MutateKeywordPlanCampaigns_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -83,6 +86,8 @@ func (c *keywordPlanCampaignServiceClient) MutateKeywordPlanCampaigns(ctx contex // KeywordPlanCampaignServiceServer is the server API for KeywordPlanCampaignService service. // All implementations must embed UnimplementedKeywordPlanCampaignServiceServer // for forward compatibility +// +// Service to manage Keyword Plan campaigns. type KeywordPlanCampaignServiceServer interface { // Creates, updates, or removes Keyword Plan campaigns. Operation statuses are // returned. @@ -151,7 +156,7 @@ func _KeywordPlanCampaignService_MutateKeywordPlanCampaigns_Handler(srv interfac // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var KeywordPlanCampaignService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.KeywordPlanCampaignService", + ServiceName: "google.ads.googleads.v17.services.KeywordPlanCampaignService", HandlerType: (*KeywordPlanCampaignServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -160,5 +165,5 @@ var KeywordPlanCampaignService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/keyword_plan_campaign_service.proto", + Metadata: "google/ads/googleads/v17/services/keyword_plan_campaign_service.proto", } diff --git a/services/keyword_plan_idea_service.pb.go b/services/keyword_plan_idea_service.pb.go index 7b031894..a7af80c1 100644 --- a/services/keyword_plan_idea_service.pb.go +++ b/services/keyword_plan_idea_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/keyword_plan_idea_service.proto +// source: google/ads/googleads/v17/services/keyword_plan_idea_service.proto package services @@ -38,7 +38,7 @@ const ( ) // Request message for -// [KeywordPlanIdeaService.GenerateKeywordIdeas][google.ads.googleads.v16.services.KeywordPlanIdeaService.GenerateKeywordIdeas]. +// [KeywordPlanIdeaService.GenerateKeywordIdeas][google.ads.googleads.v17.services.KeywordPlanIdeaService.GenerateKeywordIdeas]. type GenerateKeywordIdeasRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -72,9 +72,9 @@ type GenerateKeywordIdeasRequest struct { PageSize int32 `protobuf:"varint,13,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` // Targeting network. // If not set, Google Search And Partners Network will be used. - KeywordPlanNetwork enums.KeywordPlanNetworkEnum_KeywordPlanNetwork `protobuf:"varint,9,opt,name=keyword_plan_network,json=keywordPlanNetwork,proto3,enum=google.ads.googleads.v16.enums.KeywordPlanNetworkEnum_KeywordPlanNetwork" json:"keyword_plan_network,omitempty"` + KeywordPlanNetwork enums.KeywordPlanNetworkEnum_KeywordPlanNetwork `protobuf:"varint,9,opt,name=keyword_plan_network,json=keywordPlanNetwork,proto3,enum=google.ads.googleads.v17.enums.KeywordPlanNetworkEnum_KeywordPlanNetwork" json:"keyword_plan_network,omitempty"` // The keyword annotations to include in response. - KeywordAnnotation []enums.KeywordPlanKeywordAnnotationEnum_KeywordPlanKeywordAnnotation `protobuf:"varint,17,rep,packed,name=keyword_annotation,json=keywordAnnotation,proto3,enum=google.ads.googleads.v16.enums.KeywordPlanKeywordAnnotationEnum_KeywordPlanKeywordAnnotation" json:"keyword_annotation,omitempty"` + KeywordAnnotation []enums.KeywordPlanKeywordAnnotationEnum_KeywordPlanKeywordAnnotation `protobuf:"varint,17,rep,packed,name=keyword_annotation,json=keywordAnnotation,proto3,enum=google.ads.googleads.v17.enums.KeywordPlanKeywordAnnotationEnum_KeywordPlanKeywordAnnotation" json:"keyword_annotation,omitempty"` // The aggregate fields to include in response. AggregateMetrics *common.KeywordPlanAggregateMetrics `protobuf:"bytes,16,opt,name=aggregate_metrics,json=aggregateMetrics,proto3" json:"aggregate_metrics,omitempty"` // The options for historical metrics data. @@ -93,7 +93,7 @@ type GenerateKeywordIdeasRequest struct { func (x *GenerateKeywordIdeasRequest) Reset() { *x = GenerateKeywordIdeasRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -106,7 +106,7 @@ func (x *GenerateKeywordIdeasRequest) String() string { func (*GenerateKeywordIdeasRequest) ProtoMessage() {} func (x *GenerateKeywordIdeasRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -119,7 +119,7 @@ func (x *GenerateKeywordIdeasRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GenerateKeywordIdeasRequest.ProtoReflect.Descriptor instead. func (*GenerateKeywordIdeasRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{0} } func (x *GenerateKeywordIdeasRequest) GetCustomerId() string { @@ -275,7 +275,7 @@ type KeywordAndUrlSeed struct { func (x *KeywordAndUrlSeed) Reset() { *x = KeywordAndUrlSeed{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -288,7 +288,7 @@ func (x *KeywordAndUrlSeed) String() string { func (*KeywordAndUrlSeed) ProtoMessage() {} func (x *KeywordAndUrlSeed) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -301,7 +301,7 @@ func (x *KeywordAndUrlSeed) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordAndUrlSeed.ProtoReflect.Descriptor instead. func (*KeywordAndUrlSeed) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{1} } func (x *KeywordAndUrlSeed) GetUrl() string { @@ -331,7 +331,7 @@ type KeywordSeed struct { func (x *KeywordSeed) Reset() { *x = KeywordSeed{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -344,7 +344,7 @@ func (x *KeywordSeed) String() string { func (*KeywordSeed) ProtoMessage() {} func (x *KeywordSeed) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -357,7 +357,7 @@ func (x *KeywordSeed) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordSeed.ProtoReflect.Descriptor instead. func (*KeywordSeed) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{2} } func (x *KeywordSeed) GetKeywords() []string { @@ -381,7 +381,7 @@ type SiteSeed struct { func (x *SiteSeed) Reset() { *x = SiteSeed{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -394,7 +394,7 @@ func (x *SiteSeed) String() string { func (*SiteSeed) ProtoMessage() {} func (x *SiteSeed) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -407,7 +407,7 @@ func (x *SiteSeed) ProtoReflect() protoreflect.Message { // Deprecated: Use SiteSeed.ProtoReflect.Descriptor instead. func (*SiteSeed) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{3} } func (x *SiteSeed) GetSite() string { @@ -430,7 +430,7 @@ type UrlSeed struct { func (x *UrlSeed) Reset() { *x = UrlSeed{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -443,7 +443,7 @@ func (x *UrlSeed) String() string { func (*UrlSeed) ProtoMessage() {} func (x *UrlSeed) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -456,7 +456,7 @@ func (x *UrlSeed) ProtoReflect() protoreflect.Message { // Deprecated: Use UrlSeed.ProtoReflect.Descriptor instead. func (*UrlSeed) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{4} } func (x *UrlSeed) GetUrl() string { @@ -467,7 +467,7 @@ func (x *UrlSeed) GetUrl() string { } // Response message for -// [KeywordPlanIdeaService.GenerateKeywordIdeas][google.ads.googleads.v16.services.KeywordPlanIdeaService.GenerateKeywordIdeas]. +// [KeywordPlanIdeaService.GenerateKeywordIdeas][google.ads.googleads.v17.services.KeywordPlanIdeaService.GenerateKeywordIdeas]. type GenerateKeywordIdeaResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -489,7 +489,7 @@ type GenerateKeywordIdeaResponse struct { func (x *GenerateKeywordIdeaResponse) Reset() { *x = GenerateKeywordIdeaResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -502,7 +502,7 @@ func (x *GenerateKeywordIdeaResponse) String() string { func (*GenerateKeywordIdeaResponse) ProtoMessage() {} func (x *GenerateKeywordIdeaResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -515,7 +515,7 @@ func (x *GenerateKeywordIdeaResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GenerateKeywordIdeaResponse.ProtoReflect.Descriptor instead. func (*GenerateKeywordIdeaResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{5} } func (x *GenerateKeywordIdeaResponse) GetResults() []*GenerateKeywordIdeaResult { @@ -572,7 +572,7 @@ type GenerateKeywordIdeaResult struct { func (x *GenerateKeywordIdeaResult) Reset() { *x = GenerateKeywordIdeaResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -585,7 +585,7 @@ func (x *GenerateKeywordIdeaResult) String() string { func (*GenerateKeywordIdeaResult) ProtoMessage() {} func (x *GenerateKeywordIdeaResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[6] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -598,7 +598,7 @@ func (x *GenerateKeywordIdeaResult) ProtoReflect() protoreflect.Message { // Deprecated: Use GenerateKeywordIdeaResult.ProtoReflect.Descriptor instead. func (*GenerateKeywordIdeaResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{6} } func (x *GenerateKeywordIdeaResult) GetText() string { @@ -630,7 +630,7 @@ func (x *GenerateKeywordIdeaResult) GetCloseVariants() []string { } // Request message for -// [KeywordPlanIdeaService.GenerateKeywordHistoricalMetrics][google.ads.googleads.v16.services.KeywordPlanIdeaService.GenerateKeywordHistoricalMetrics]. +// [KeywordPlanIdeaService.GenerateKeywordHistoricalMetrics][google.ads.googleads.v17.services.KeywordPlanIdeaService.GenerateKeywordHistoricalMetrics]. type GenerateKeywordHistoricalMetricsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -657,7 +657,7 @@ type GenerateKeywordHistoricalMetricsRequest struct { GeoTargetConstants []string `protobuf:"bytes,6,rep,name=geo_target_constants,json=geoTargetConstants,proto3" json:"geo_target_constants,omitempty"` // Targeting network. // If not set, Google Search And Partners Network will be used. - KeywordPlanNetwork enums.KeywordPlanNetworkEnum_KeywordPlanNetwork `protobuf:"varint,7,opt,name=keyword_plan_network,json=keywordPlanNetwork,proto3,enum=google.ads.googleads.v16.enums.KeywordPlanNetworkEnum_KeywordPlanNetwork" json:"keyword_plan_network,omitempty"` + KeywordPlanNetwork enums.KeywordPlanNetworkEnum_KeywordPlanNetwork `protobuf:"varint,7,opt,name=keyword_plan_network,json=keywordPlanNetwork,proto3,enum=google.ads.googleads.v17.enums.KeywordPlanNetworkEnum_KeywordPlanNetwork" json:"keyword_plan_network,omitempty"` // The aggregate fields to include in response. AggregateMetrics *common.KeywordPlanAggregateMetrics `protobuf:"bytes,8,opt,name=aggregate_metrics,json=aggregateMetrics,proto3" json:"aggregate_metrics,omitempty"` // The options for historical metrics data. @@ -667,7 +667,7 @@ type GenerateKeywordHistoricalMetricsRequest struct { func (x *GenerateKeywordHistoricalMetricsRequest) Reset() { *x = GenerateKeywordHistoricalMetricsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -680,7 +680,7 @@ func (x *GenerateKeywordHistoricalMetricsRequest) String() string { func (*GenerateKeywordHistoricalMetricsRequest) ProtoMessage() {} func (x *GenerateKeywordHistoricalMetricsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[7] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -693,7 +693,7 @@ func (x *GenerateKeywordHistoricalMetricsRequest) ProtoReflect() protoreflect.Me // Deprecated: Use GenerateKeywordHistoricalMetricsRequest.ProtoReflect.Descriptor instead. func (*GenerateKeywordHistoricalMetricsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{7} } func (x *GenerateKeywordHistoricalMetricsRequest) GetCustomerId() string { @@ -753,7 +753,7 @@ func (x *GenerateKeywordHistoricalMetricsRequest) GetHistoricalMetricsOptions() } // Response message for -// [KeywordPlanIdeaService.GenerateKeywordHistoricalMetrics][google.ads.googleads.v16.services.KeywordPlanIdeaService.GenerateKeywordHistoricalMetrics]. +// [KeywordPlanIdeaService.GenerateKeywordHistoricalMetrics][google.ads.googleads.v17.services.KeywordPlanIdeaService.GenerateKeywordHistoricalMetrics]. type GenerateKeywordHistoricalMetricsResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -768,7 +768,7 @@ type GenerateKeywordHistoricalMetricsResponse struct { func (x *GenerateKeywordHistoricalMetricsResponse) Reset() { *x = GenerateKeywordHistoricalMetricsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -781,7 +781,7 @@ func (x *GenerateKeywordHistoricalMetricsResponse) String() string { func (*GenerateKeywordHistoricalMetricsResponse) ProtoMessage() {} func (x *GenerateKeywordHistoricalMetricsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[8] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -794,7 +794,7 @@ func (x *GenerateKeywordHistoricalMetricsResponse) ProtoReflect() protoreflect.M // Deprecated: Use GenerateKeywordHistoricalMetricsResponse.ProtoReflect.Descriptor instead. func (*GenerateKeywordHistoricalMetricsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{8} } func (x *GenerateKeywordHistoricalMetricsResponse) GetResults() []*GenerateKeywordHistoricalMetricsResult { @@ -834,7 +834,7 @@ type GenerateKeywordHistoricalMetricsResult struct { func (x *GenerateKeywordHistoricalMetricsResult) Reset() { *x = GenerateKeywordHistoricalMetricsResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -847,7 +847,7 @@ func (x *GenerateKeywordHistoricalMetricsResult) String() string { func (*GenerateKeywordHistoricalMetricsResult) ProtoMessage() {} func (x *GenerateKeywordHistoricalMetricsResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[9] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -860,7 +860,7 @@ func (x *GenerateKeywordHistoricalMetricsResult) ProtoReflect() protoreflect.Mes // Deprecated: Use GenerateKeywordHistoricalMetricsResult.ProtoReflect.Descriptor instead. func (*GenerateKeywordHistoricalMetricsResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{9} + return file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{9} } func (x *GenerateKeywordHistoricalMetricsResult) GetText() string { @@ -885,7 +885,7 @@ func (x *GenerateKeywordHistoricalMetricsResult) GetKeywordMetrics() *common.Key } // Request message for -// [KeywordPlanIdeaService.GenerateAdGroupThemes][google.ads.googleads.v16.services.KeywordPlanIdeaService.GenerateAdGroupThemes]. +// [KeywordPlanIdeaService.GenerateAdGroupThemes][google.ads.googleads.v17.services.KeywordPlanIdeaService.GenerateAdGroupThemes]. type GenerateAdGroupThemesRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -904,7 +904,7 @@ type GenerateAdGroupThemesRequest struct { func (x *GenerateAdGroupThemesRequest) Reset() { *x = GenerateAdGroupThemesRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -917,7 +917,7 @@ func (x *GenerateAdGroupThemesRequest) String() string { func (*GenerateAdGroupThemesRequest) ProtoMessage() {} func (x *GenerateAdGroupThemesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[10] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -930,7 +930,7 @@ func (x *GenerateAdGroupThemesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GenerateAdGroupThemesRequest.ProtoReflect.Descriptor instead. func (*GenerateAdGroupThemesRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{10} + return file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{10} } func (x *GenerateAdGroupThemesRequest) GetCustomerId() string { @@ -955,7 +955,7 @@ func (x *GenerateAdGroupThemesRequest) GetAdGroups() []string { } // Response message for -// [KeywordPlanIdeaService.GenerateAdGroupThemes][google.ads.googleads.v16.services.KeywordPlanIdeaService.GenerateAdGroupThemes]. +// [KeywordPlanIdeaService.GenerateAdGroupThemes][google.ads.googleads.v17.services.KeywordPlanIdeaService.GenerateAdGroupThemes]. type GenerateAdGroupThemesResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -970,7 +970,7 @@ type GenerateAdGroupThemesResponse struct { func (x *GenerateAdGroupThemesResponse) Reset() { *x = GenerateAdGroupThemesResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -983,7 +983,7 @@ func (x *GenerateAdGroupThemesResponse) String() string { func (*GenerateAdGroupThemesResponse) ProtoMessage() {} func (x *GenerateAdGroupThemesResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[11] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -996,7 +996,7 @@ func (x *GenerateAdGroupThemesResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GenerateAdGroupThemesResponse.ProtoReflect.Descriptor instead. func (*GenerateAdGroupThemesResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{11} + return file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{11} } func (x *GenerateAdGroupThemesResponse) GetAdGroupKeywordSuggestions() []*AdGroupKeywordSuggestion { @@ -1024,7 +1024,7 @@ type AdGroupKeywordSuggestion struct { // The normalized version of keyword_text for BROAD/EXACT/PHRASE suggestions. SuggestedKeywordText string `protobuf:"bytes,2,opt,name=suggested_keyword_text,json=suggestedKeywordText,proto3" json:"suggested_keyword_text,omitempty"` // The suggested keyword match type. - SuggestedMatchType enums.KeywordMatchTypeEnum_KeywordMatchType `protobuf:"varint,3,opt,name=suggested_match_type,json=suggestedMatchType,proto3,enum=google.ads.googleads.v16.enums.KeywordMatchTypeEnum_KeywordMatchType" json:"suggested_match_type,omitempty"` + SuggestedMatchType enums.KeywordMatchTypeEnum_KeywordMatchType `protobuf:"varint,3,opt,name=suggested_match_type,json=suggestedMatchType,proto3,enum=google.ads.googleads.v17.enums.KeywordMatchTypeEnum_KeywordMatchType" json:"suggested_match_type,omitempty"` // The suggested AdGroup for the keyword. // Resource name format: `customers/{customer_id}/adGroups/{ad_group_id}` SuggestedAdGroup string `protobuf:"bytes,4,opt,name=suggested_ad_group,json=suggestedAdGroup,proto3" json:"suggested_ad_group,omitempty"` @@ -1036,7 +1036,7 @@ type AdGroupKeywordSuggestion struct { func (x *AdGroupKeywordSuggestion) Reset() { *x = AdGroupKeywordSuggestion{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[12] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1049,7 +1049,7 @@ func (x *AdGroupKeywordSuggestion) String() string { func (*AdGroupKeywordSuggestion) ProtoMessage() {} func (x *AdGroupKeywordSuggestion) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[12] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[12] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1062,7 +1062,7 @@ func (x *AdGroupKeywordSuggestion) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupKeywordSuggestion.ProtoReflect.Descriptor instead. func (*AdGroupKeywordSuggestion) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{12} + return file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{12} } func (x *AdGroupKeywordSuggestion) GetKeywordText() string { @@ -1122,7 +1122,7 @@ type UnusableAdGroup struct { func (x *UnusableAdGroup) Reset() { *x = UnusableAdGroup{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[13] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1135,7 +1135,7 @@ func (x *UnusableAdGroup) String() string { func (*UnusableAdGroup) ProtoMessage() {} func (x *UnusableAdGroup) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[13] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[13] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1148,7 +1148,7 @@ func (x *UnusableAdGroup) ProtoReflect() protoreflect.Message { // Deprecated: Use UnusableAdGroup.ProtoReflect.Descriptor instead. func (*UnusableAdGroup) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{13} + return file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{13} } func (x *UnusableAdGroup) GetAdGroup() string { @@ -1191,7 +1191,7 @@ type GenerateKeywordForecastMetricsRequest struct { func (x *GenerateKeywordForecastMetricsRequest) Reset() { *x = GenerateKeywordForecastMetricsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[14] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1204,7 +1204,7 @@ func (x *GenerateKeywordForecastMetricsRequest) String() string { func (*GenerateKeywordForecastMetricsRequest) ProtoMessage() {} func (x *GenerateKeywordForecastMetricsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[14] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[14] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1217,7 +1217,7 @@ func (x *GenerateKeywordForecastMetricsRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use GenerateKeywordForecastMetricsRequest.ProtoReflect.Descriptor instead. func (*GenerateKeywordForecastMetricsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{14} + return file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{14} } func (x *GenerateKeywordForecastMetricsRequest) GetCustomerId() string { @@ -1262,7 +1262,7 @@ type CampaignToForecast struct { // Locations to be targeted. Locations must be unique. GeoModifiers []*CriterionBidModifier `protobuf:"bytes,2,rep,name=geo_modifiers,json=geoModifiers,proto3" json:"geo_modifiers,omitempty"` // Required. The network used for targeting. - KeywordPlanNetwork enums.KeywordPlanNetworkEnum_KeywordPlanNetwork `protobuf:"varint,3,opt,name=keyword_plan_network,json=keywordPlanNetwork,proto3,enum=google.ads.googleads.v16.enums.KeywordPlanNetworkEnum_KeywordPlanNetwork" json:"keyword_plan_network,omitempty"` + KeywordPlanNetwork enums.KeywordPlanNetworkEnum_KeywordPlanNetwork `protobuf:"varint,3,opt,name=keyword_plan_network,json=keywordPlanNetwork,proto3,enum=google.ads.googleads.v17.enums.KeywordPlanNetworkEnum_KeywordPlanNetwork" json:"keyword_plan_network,omitempty"` // The list of negative keywords to be used in the campaign when doing the // forecast. NegativeKeywords []*common.KeywordInfo `protobuf:"bytes,4,rep,name=negative_keywords,json=negativeKeywords,proto3" json:"negative_keywords,omitempty"` @@ -1280,7 +1280,7 @@ type CampaignToForecast struct { func (x *CampaignToForecast) Reset() { *x = CampaignToForecast{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[15] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1293,7 +1293,7 @@ func (x *CampaignToForecast) String() string { func (*CampaignToForecast) ProtoMessage() {} func (x *CampaignToForecast) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[15] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[15] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1306,7 +1306,7 @@ func (x *CampaignToForecast) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignToForecast.ProtoReflect.Descriptor instead. func (*CampaignToForecast) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{15} + return file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{15} } func (x *CampaignToForecast) GetLanguageConstants() []string { @@ -1379,7 +1379,7 @@ type ForecastAdGroup struct { func (x *ForecastAdGroup) Reset() { *x = ForecastAdGroup{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[16] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1392,7 +1392,7 @@ func (x *ForecastAdGroup) String() string { func (*ForecastAdGroup) ProtoMessage() {} func (x *ForecastAdGroup) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[16] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[16] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1405,7 +1405,7 @@ func (x *ForecastAdGroup) ProtoReflect() protoreflect.Message { // Deprecated: Use ForecastAdGroup.ProtoReflect.Descriptor instead. func (*ForecastAdGroup) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{16} + return file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{16} } func (x *ForecastAdGroup) GetMaxCpcBidMicros() int64 { @@ -1447,7 +1447,7 @@ type BiddableKeyword struct { func (x *BiddableKeyword) Reset() { *x = BiddableKeyword{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[17] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1460,7 +1460,7 @@ func (x *BiddableKeyword) String() string { func (*BiddableKeyword) ProtoMessage() {} func (x *BiddableKeyword) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[17] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[17] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1473,7 +1473,7 @@ func (x *BiddableKeyword) ProtoReflect() protoreflect.Message { // Deprecated: Use BiddableKeyword.ProtoReflect.Descriptor instead. func (*BiddableKeyword) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{17} + return file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{17} } func (x *BiddableKeyword) GetKeyword() *common.KeywordInfo { @@ -1507,7 +1507,7 @@ type CriterionBidModifier struct { func (x *CriterionBidModifier) Reset() { *x = CriterionBidModifier{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[18] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1520,7 +1520,7 @@ func (x *CriterionBidModifier) String() string { func (*CriterionBidModifier) ProtoMessage() {} func (x *CriterionBidModifier) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[18] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[18] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1533,7 +1533,7 @@ func (x *CriterionBidModifier) ProtoReflect() protoreflect.Message { // Deprecated: Use CriterionBidModifier.ProtoReflect.Descriptor instead. func (*CriterionBidModifier) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{18} + return file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{18} } func (x *CriterionBidModifier) GetGeoTargetConstant() string { @@ -1568,7 +1568,7 @@ type ManualCpcBiddingStrategy struct { func (x *ManualCpcBiddingStrategy) Reset() { *x = ManualCpcBiddingStrategy{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[19] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1581,7 +1581,7 @@ func (x *ManualCpcBiddingStrategy) String() string { func (*ManualCpcBiddingStrategy) ProtoMessage() {} func (x *ManualCpcBiddingStrategy) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[19] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[19] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1594,7 +1594,7 @@ func (x *ManualCpcBiddingStrategy) ProtoReflect() protoreflect.Message { // Deprecated: Use ManualCpcBiddingStrategy.ProtoReflect.Descriptor instead. func (*ManualCpcBiddingStrategy) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{19} + return file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{19} } func (x *ManualCpcBiddingStrategy) GetDailyBudgetMicros() int64 { @@ -1628,7 +1628,7 @@ type MaximizeClicksBiddingStrategy struct { func (x *MaximizeClicksBiddingStrategy) Reset() { *x = MaximizeClicksBiddingStrategy{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[20] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[20] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1641,7 +1641,7 @@ func (x *MaximizeClicksBiddingStrategy) String() string { func (*MaximizeClicksBiddingStrategy) ProtoMessage() {} func (x *MaximizeClicksBiddingStrategy) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[20] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[20] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1654,7 +1654,7 @@ func (x *MaximizeClicksBiddingStrategy) ProtoReflect() protoreflect.Message { // Deprecated: Use MaximizeClicksBiddingStrategy.ProtoReflect.Descriptor instead. func (*MaximizeClicksBiddingStrategy) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{20} + return file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{20} } func (x *MaximizeClicksBiddingStrategy) GetDailyTargetSpendMicros() int64 { @@ -1685,7 +1685,7 @@ type MaximizeConversionsBiddingStrategy struct { func (x *MaximizeConversionsBiddingStrategy) Reset() { *x = MaximizeConversionsBiddingStrategy{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[21] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[21] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1698,7 +1698,7 @@ func (x *MaximizeConversionsBiddingStrategy) String() string { func (*MaximizeConversionsBiddingStrategy) ProtoMessage() {} func (x *MaximizeConversionsBiddingStrategy) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[21] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[21] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1711,7 +1711,7 @@ func (x *MaximizeConversionsBiddingStrategy) ProtoReflect() protoreflect.Message // Deprecated: Use MaximizeConversionsBiddingStrategy.ProtoReflect.Descriptor instead. func (*MaximizeConversionsBiddingStrategy) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{21} + return file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{21} } func (x *MaximizeConversionsBiddingStrategy) GetDailyTargetSpendMicros() int64 { @@ -1734,7 +1734,7 @@ type GenerateKeywordForecastMetricsResponse struct { func (x *GenerateKeywordForecastMetricsResponse) Reset() { *x = GenerateKeywordForecastMetricsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[22] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1747,7 +1747,7 @@ func (x *GenerateKeywordForecastMetricsResponse) String() string { func (*GenerateKeywordForecastMetricsResponse) ProtoMessage() {} func (x *GenerateKeywordForecastMetricsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[22] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[22] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1760,7 +1760,7 @@ func (x *GenerateKeywordForecastMetricsResponse) ProtoReflect() protoreflect.Mes // Deprecated: Use GenerateKeywordForecastMetricsResponse.ProtoReflect.Descriptor instead. func (*GenerateKeywordForecastMetricsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{22} + return file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{22} } func (x *GenerateKeywordForecastMetricsResponse) GetCampaignForecastMetrics() *KeywordForecastMetrics { @@ -1797,7 +1797,7 @@ type KeywordForecastMetrics struct { func (x *KeywordForecastMetrics) Reset() { *x = KeywordForecastMetrics{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[23] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[23] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1810,7 +1810,7 @@ func (x *KeywordForecastMetrics) String() string { func (*KeywordForecastMetrics) ProtoMessage() {} func (x *KeywordForecastMetrics) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[23] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[23] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1823,7 +1823,7 @@ func (x *KeywordForecastMetrics) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordForecastMetrics.ProtoReflect.Descriptor instead. func (*KeywordForecastMetrics) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{23} + return file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{23} } func (x *KeywordForecastMetrics) GetImpressions() float64 { @@ -1901,7 +1901,7 @@ type CampaignToForecast_CampaignBiddingStrategy struct { func (x *CampaignToForecast_CampaignBiddingStrategy) Reset() { *x = CampaignToForecast_CampaignBiddingStrategy{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[24] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[24] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1914,7 +1914,7 @@ func (x *CampaignToForecast_CampaignBiddingStrategy) String() string { func (*CampaignToForecast_CampaignBiddingStrategy) ProtoMessage() {} func (x *CampaignToForecast_CampaignBiddingStrategy) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[24] + mi := &file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[24] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1927,7 +1927,7 @@ func (x *CampaignToForecast_CampaignBiddingStrategy) ProtoReflect() protoreflect // Deprecated: Use CampaignToForecast_CampaignBiddingStrategy.ProtoReflect.Descriptor instead. func (*CampaignToForecast_CampaignBiddingStrategy) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{15, 0} + return file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{15, 0} } func (m *CampaignToForecast_CampaignBiddingStrategy) GetBiddingStrategy() isCampaignToForecast_CampaignBiddingStrategy_BiddingStrategy { @@ -1986,35 +1986,35 @@ func (*CampaignToForecast_CampaignBiddingStrategy_MaximizeClicksBiddingStrategy) func (*CampaignToForecast_CampaignBiddingStrategy_MaximizeConversionsBiddingStrategy) isCampaignToForecast_CampaignBiddingStrategy_BiddingStrategy() { } -var File_google_ads_googleads_v16_services_keyword_plan_idea_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_keyword_plan_idea_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_keyword_plan_idea_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x69, 0x64, 0x65, 0x61, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 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, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 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, 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, 0x63, 0x6f, + 0x67, 0x6f, 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, 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, 0x6b, + 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, 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, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, + 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, 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, 0x6b, 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, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, @@ -2041,7 +2041,7 @@ var file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDe 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x7b, 0x0a, 0x14, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x18, 0x09, 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, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x52, @@ -2049,7 +2049,7 @@ var file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDe 0x6f, 0x72, 0x6b, 0x12, 0x8c, 0x01, 0x0a, 0x12, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, + 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, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x41, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x4b, 0x65, @@ -2058,37 +2058,37 @@ var file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDe 0x6f, 0x6e, 0x12, 0x69, 0x0a, 0x11, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x18, 0x10, 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, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x73, 0x52, 0x10, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x12, 0x77, 0x0a, 0x1a, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x69, 0x63, 0x61, 0x6c, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x12, 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, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x69, 0x63, 0x61, 0x6c, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x18, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x69, 0x63, 0x61, 0x6c, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x67, 0x0a, 0x14, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x61, 0x6e, 0x64, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x73, 0x65, 0x65, 0x64, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x41, 0x6e, 0x64, 0x55, 0x72, 0x6c, 0x53, 0x65, 0x65, 0x64, 0x48, 0x00, 0x52, 0x11, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x41, 0x6e, 0x64, 0x55, 0x72, 0x6c, 0x53, 0x65, 0x65, 0x64, 0x12, 0x53, 0x0a, 0x0c, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x73, 0x65, 0x65, 0x64, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x53, 0x65, 0x65, 0x64, 0x48, 0x00, 0x52, 0x0b, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x53, 0x65, 0x65, 0x64, 0x12, 0x47, 0x0a, 0x08, 0x75, 0x72, 0x6c, 0x5f, 0x73, 0x65, 0x65, 0x64, 0x18, 0x05, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x72, 0x6c, 0x53, 0x65, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x72, 0x6c, 0x53, 0x65, 0x65, 0x64, 0x48, 0x00, 0x52, 0x07, 0x75, 0x72, 0x6c, 0x53, 0x65, 0x65, 0x64, 0x12, 0x4a, 0x0a, 0x09, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x73, 0x65, 0x65, 0x64, 0x18, 0x0b, 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, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x53, 0x65, 0x65, 0x64, 0x48, 0x00, 0x52, 0x08, 0x73, 0x69, 0x74, 0x65, 0x53, 0x65, 0x65, 0x64, 0x42, 0x06, 0x0a, 0x04, 0x73, 0x65, 0x65, 0x64, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x22, 0x4e, @@ -2109,14 +2109,14 @@ var file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDe 0x79, 0x77, 0x6f, 0x72, 0x64, 0x49, 0x64, 0x65, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x56, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x49, 0x64, 0x65, 0x61, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x7c, 0x0a, 0x18, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x04, 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, 0x4b, 0x65, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x52, 0x16, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, @@ -2131,14 +2131,14 @@ var file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDe 0x78, 0x74, 0x88, 0x01, 0x01, 0x12, 0x6f, 0x0a, 0x14, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x65, 0x61, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 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, + 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, 0x50, 0x6c, 0x61, 0x6e, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x69, 0x63, 0x61, 0x6c, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x52, 0x12, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x49, 0x64, 0x65, 0x61, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x12, 0x64, 0x0a, 0x13, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x06, 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, + 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, 0x41, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x12, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x41, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x25, 0x0a, 0x0e, @@ -2163,7 +2163,7 @@ var file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDe 0x0a, 0x14, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x18, 0x07, 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, 0x4b, 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, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x52, 0x12, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, @@ -2171,14 +2171,14 @@ var file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDe 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x18, 0x08, 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, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, + 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x73, 0x52, 0x10, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x12, 0x77, 0x0a, 0x1a, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x69, 0x63, 0x61, 0x6c, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 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, 0x6d, 0x6f, 0x6e, 0x2e, 0x48, 0x69, 0x73, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x69, 0x63, 0x61, 0x6c, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x18, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x69, 0x63, 0x61, 0x6c, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, @@ -2188,14 +2188,14 @@ var file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDe 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x63, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x69, 0x63, 0x61, 0x6c, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x7c, 0x0a, 0x18, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 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, 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, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x52, 0x16, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x4d, @@ -2209,7 +2209,7 @@ var file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDe 0x61, 0x72, 0x69, 0x61, 0x6e, 0x74, 0x73, 0x12, 0x66, 0x0a, 0x0f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 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, 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, 0x50, 0x6c, 0x61, 0x6e, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x69, 0x63, 0x61, 0x6c, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x52, 0x0e, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x42, @@ -2228,14 +2228,14 @@ var file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDe 0x5f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x73, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x19, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x60, 0x0a, 0x12, 0x75, 0x6e, 0x75, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x6e, 0x75, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x10, 0x75, 0x6e, 0x75, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x22, 0xc9, 0x02, 0x0a, 0x18, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, @@ -2249,7 +2249,7 @@ var file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDe 0x67, 0x67, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 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, 0x72, + 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, 0x12, 0x73, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x54, @@ -2274,12 +2274,12 @@ var file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDe 0x53, 0x0a, 0x0f, 0x66, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x18, 0x03, 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, 0x44, 0x61, 0x74, 0x65, 0x52, + 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x61, 0x74, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x52, 0x0e, 0x66, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x50, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x12, 0x56, 0x0a, 0x08, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x54, 0x6f, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x08, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x22, 0xea, @@ -2290,13 +2290,13 @@ var file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDe 0x61, 0x6e, 0x74, 0x73, 0x12, 0x5c, 0x0a, 0x0d, 0x67, 0x65, 0x6f, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x0c, 0x67, 0x65, 0x6f, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x73, 0x12, 0x80, 0x01, 0x0a, 0x14, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x18, 0x03, 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, + 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, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x42, 0x03, 0xe0, 0x41, @@ -2304,13 +2304,13 @@ var file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDe 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x12, 0x59, 0x0a, 0x11, 0x6e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 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, 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, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x10, 0x6e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x12, 0x7d, 0x0a, 0x10, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x54, 0x6f, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0f, @@ -2320,7 +2320,7 @@ var file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDe 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x4f, 0x0a, 0x09, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x18, 0x07, 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, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x08, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x1a, 0xd6, 0x03, 0x0a, 0x17, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x69, 0x64, 0x64, 0x69, @@ -2328,7 +2328,7 @@ var file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDe 0x6e, 0x75, 0x61, 0x6c, 0x5f, 0x63, 0x70, 0x63, 0x5f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x43, 0x70, 0x63, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x48, 0x00, 0x52, 0x18, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x43, 0x70, 0x63, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, @@ -2336,7 +2336,7 @@ var file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDe 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x5f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x18, 0x02, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x78, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x48, 0x00, 0x52, 0x1d, 0x6d, 0x61, 0x78, 0x69, 0x6d, 0x69, 0x7a, @@ -2346,7 +2346,7 @@ var file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDe 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x18, 0x03, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x78, 0x69, 0x6d, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x78, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x48, 0x00, 0x52, 0x22, 0x6d, 0x61, 0x78, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, @@ -2361,13 +2361,13 @@ var file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDe 0x01, 0x12, 0x64, 0x0a, 0x11, 0x62, 0x69, 0x64, 0x64, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x61, 0x62, 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x10, 0x62, 0x69, 0x64, 0x64, 0x61, 0x62, 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x12, 0x59, 0x0a, 0x11, 0x6e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 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, + 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, 0x10, 0x6e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x63, 0x70, 0x63, 0x5f, 0x62, @@ -2375,7 +2375,7 @@ var file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDe 0x64, 0x64, 0x61, 0x62, 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x4b, 0x0a, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 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, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 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, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x30, 0x0a, 0x12, 0x6d, 0x61, 0x78, 0x5f, 0x63, 0x70, 0x63, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, @@ -2425,7 +2425,7 @@ var file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDe 0x66, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x18, 0x01, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x48, 0x00, 0x52, 0x17, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x88, 0x01, 0x01, 0x42, @@ -2468,60 +2468,60 @@ var file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDe 0xd6, 0x01, 0x0a, 0x14, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x49, 0x64, 0x65, 0x61, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x49, 0x64, 0x65, 0x61, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x49, 0x64, 0x65, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x3e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x38, - 0x3a, 0x01, 0x2a, 0x22, 0x33, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x3a, 0x01, 0x2a, 0x22, 0x33, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x3a, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x49, 0x64, 0x65, 0x61, 0x73, 0x12, 0x87, 0x02, 0x0a, 0x20, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x69, 0x63, 0x61, 0x6c, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x69, 0x63, 0x61, 0x6c, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x69, 0x63, 0x61, 0x6c, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x4a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x44, 0x3a, 0x01, - 0x2a, 0x22, 0x3f, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x2a, 0x22, 0x3f, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x3a, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x69, 0x63, 0x61, 0x6c, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x12, 0xdb, 0x01, 0x0a, 0x15, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x54, 0x68, 0x65, 0x6d, 0x65, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x54, 0x68, 0x65, 0x6d, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x54, 0x68, 0x65, 0x6d, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, - 0x3f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x39, 0x3a, 0x01, 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x31, 0x36, + 0x3f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x39, 0x3a, 0x01, 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x3a, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x54, 0x68, 0x65, 0x6d, 0x65, 0x73, 0x12, 0xff, 0x01, 0x0a, 0x1e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x12, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x48, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x42, - 0x3a, 0x01, 0x2a, 0x22, 0x3d, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x3a, 0x01, 0x2a, 0x22, 0x3d, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x3a, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x72, 0x69, @@ -2531,118 +2531,118 @@ var file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDe 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x87, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1b, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x49, 0x64, 0x65, 0x61, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, - 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, + 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescData = file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDesc + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescData = file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDescData -} - -var file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes = make([]protoimpl.MessageInfo, 25) -var file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_goTypes = []interface{}{ - (*GenerateKeywordIdeasRequest)(nil), // 0: google.ads.googleads.v16.services.GenerateKeywordIdeasRequest - (*KeywordAndUrlSeed)(nil), // 1: google.ads.googleads.v16.services.KeywordAndUrlSeed - (*KeywordSeed)(nil), // 2: google.ads.googleads.v16.services.KeywordSeed - (*SiteSeed)(nil), // 3: google.ads.googleads.v16.services.SiteSeed - (*UrlSeed)(nil), // 4: google.ads.googleads.v16.services.UrlSeed - (*GenerateKeywordIdeaResponse)(nil), // 5: google.ads.googleads.v16.services.GenerateKeywordIdeaResponse - (*GenerateKeywordIdeaResult)(nil), // 6: google.ads.googleads.v16.services.GenerateKeywordIdeaResult - (*GenerateKeywordHistoricalMetricsRequest)(nil), // 7: google.ads.googleads.v16.services.GenerateKeywordHistoricalMetricsRequest - (*GenerateKeywordHistoricalMetricsResponse)(nil), // 8: google.ads.googleads.v16.services.GenerateKeywordHistoricalMetricsResponse - (*GenerateKeywordHistoricalMetricsResult)(nil), // 9: google.ads.googleads.v16.services.GenerateKeywordHistoricalMetricsResult - (*GenerateAdGroupThemesRequest)(nil), // 10: google.ads.googleads.v16.services.GenerateAdGroupThemesRequest - (*GenerateAdGroupThemesResponse)(nil), // 11: google.ads.googleads.v16.services.GenerateAdGroupThemesResponse - (*AdGroupKeywordSuggestion)(nil), // 12: google.ads.googleads.v16.services.AdGroupKeywordSuggestion - (*UnusableAdGroup)(nil), // 13: google.ads.googleads.v16.services.UnusableAdGroup - (*GenerateKeywordForecastMetricsRequest)(nil), // 14: google.ads.googleads.v16.services.GenerateKeywordForecastMetricsRequest - (*CampaignToForecast)(nil), // 15: google.ads.googleads.v16.services.CampaignToForecast - (*ForecastAdGroup)(nil), // 16: google.ads.googleads.v16.services.ForecastAdGroup - (*BiddableKeyword)(nil), // 17: google.ads.googleads.v16.services.BiddableKeyword - (*CriterionBidModifier)(nil), // 18: google.ads.googleads.v16.services.CriterionBidModifier - (*ManualCpcBiddingStrategy)(nil), // 19: google.ads.googleads.v16.services.ManualCpcBiddingStrategy - (*MaximizeClicksBiddingStrategy)(nil), // 20: google.ads.googleads.v16.services.MaximizeClicksBiddingStrategy - (*MaximizeConversionsBiddingStrategy)(nil), // 21: google.ads.googleads.v16.services.MaximizeConversionsBiddingStrategy - (*GenerateKeywordForecastMetricsResponse)(nil), // 22: google.ads.googleads.v16.services.GenerateKeywordForecastMetricsResponse - (*KeywordForecastMetrics)(nil), // 23: google.ads.googleads.v16.services.KeywordForecastMetrics - (*CampaignToForecast_CampaignBiddingStrategy)(nil), // 24: google.ads.googleads.v16.services.CampaignToForecast.CampaignBiddingStrategy - (enums.KeywordPlanNetworkEnum_KeywordPlanNetwork)(0), // 25: google.ads.googleads.v16.enums.KeywordPlanNetworkEnum.KeywordPlanNetwork - (enums.KeywordPlanKeywordAnnotationEnum_KeywordPlanKeywordAnnotation)(0), // 26: google.ads.googleads.v16.enums.KeywordPlanKeywordAnnotationEnum.KeywordPlanKeywordAnnotation - (*common.KeywordPlanAggregateMetrics)(nil), // 27: google.ads.googleads.v16.common.KeywordPlanAggregateMetrics - (*common.HistoricalMetricsOptions)(nil), // 28: google.ads.googleads.v16.common.HistoricalMetricsOptions - (*common.KeywordPlanAggregateMetricResults)(nil), // 29: google.ads.googleads.v16.common.KeywordPlanAggregateMetricResults - (*common.KeywordPlanHistoricalMetrics)(nil), // 30: google.ads.googleads.v16.common.KeywordPlanHistoricalMetrics - (*common.KeywordAnnotations)(nil), // 31: google.ads.googleads.v16.common.KeywordAnnotations - (enums.KeywordMatchTypeEnum_KeywordMatchType)(0), // 32: google.ads.googleads.v16.enums.KeywordMatchTypeEnum.KeywordMatchType - (*common.DateRange)(nil), // 33: google.ads.googleads.v16.common.DateRange - (*common.KeywordInfo)(nil), // 34: google.ads.googleads.v16.common.KeywordInfo -} -var file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_depIdxs = []int32{ - 25, // 0: google.ads.googleads.v16.services.GenerateKeywordIdeasRequest.keyword_plan_network:type_name -> google.ads.googleads.v16.enums.KeywordPlanNetworkEnum.KeywordPlanNetwork - 26, // 1: google.ads.googleads.v16.services.GenerateKeywordIdeasRequest.keyword_annotation:type_name -> google.ads.googleads.v16.enums.KeywordPlanKeywordAnnotationEnum.KeywordPlanKeywordAnnotation - 27, // 2: google.ads.googleads.v16.services.GenerateKeywordIdeasRequest.aggregate_metrics:type_name -> google.ads.googleads.v16.common.KeywordPlanAggregateMetrics - 28, // 3: google.ads.googleads.v16.services.GenerateKeywordIdeasRequest.historical_metrics_options:type_name -> google.ads.googleads.v16.common.HistoricalMetricsOptions - 1, // 4: google.ads.googleads.v16.services.GenerateKeywordIdeasRequest.keyword_and_url_seed:type_name -> google.ads.googleads.v16.services.KeywordAndUrlSeed - 2, // 5: google.ads.googleads.v16.services.GenerateKeywordIdeasRequest.keyword_seed:type_name -> google.ads.googleads.v16.services.KeywordSeed - 4, // 6: google.ads.googleads.v16.services.GenerateKeywordIdeasRequest.url_seed:type_name -> google.ads.googleads.v16.services.UrlSeed - 3, // 7: google.ads.googleads.v16.services.GenerateKeywordIdeasRequest.site_seed:type_name -> google.ads.googleads.v16.services.SiteSeed - 6, // 8: google.ads.googleads.v16.services.GenerateKeywordIdeaResponse.results:type_name -> google.ads.googleads.v16.services.GenerateKeywordIdeaResult - 29, // 9: google.ads.googleads.v16.services.GenerateKeywordIdeaResponse.aggregate_metric_results:type_name -> google.ads.googleads.v16.common.KeywordPlanAggregateMetricResults - 30, // 10: google.ads.googleads.v16.services.GenerateKeywordIdeaResult.keyword_idea_metrics:type_name -> google.ads.googleads.v16.common.KeywordPlanHistoricalMetrics - 31, // 11: google.ads.googleads.v16.services.GenerateKeywordIdeaResult.keyword_annotations:type_name -> google.ads.googleads.v16.common.KeywordAnnotations - 25, // 12: google.ads.googleads.v16.services.GenerateKeywordHistoricalMetricsRequest.keyword_plan_network:type_name -> google.ads.googleads.v16.enums.KeywordPlanNetworkEnum.KeywordPlanNetwork - 27, // 13: google.ads.googleads.v16.services.GenerateKeywordHistoricalMetricsRequest.aggregate_metrics:type_name -> google.ads.googleads.v16.common.KeywordPlanAggregateMetrics - 28, // 14: google.ads.googleads.v16.services.GenerateKeywordHistoricalMetricsRequest.historical_metrics_options:type_name -> google.ads.googleads.v16.common.HistoricalMetricsOptions - 9, // 15: google.ads.googleads.v16.services.GenerateKeywordHistoricalMetricsResponse.results:type_name -> google.ads.googleads.v16.services.GenerateKeywordHistoricalMetricsResult - 29, // 16: google.ads.googleads.v16.services.GenerateKeywordHistoricalMetricsResponse.aggregate_metric_results:type_name -> google.ads.googleads.v16.common.KeywordPlanAggregateMetricResults - 30, // 17: google.ads.googleads.v16.services.GenerateKeywordHistoricalMetricsResult.keyword_metrics:type_name -> google.ads.googleads.v16.common.KeywordPlanHistoricalMetrics - 12, // 18: google.ads.googleads.v16.services.GenerateAdGroupThemesResponse.ad_group_keyword_suggestions:type_name -> google.ads.googleads.v16.services.AdGroupKeywordSuggestion - 13, // 19: google.ads.googleads.v16.services.GenerateAdGroupThemesResponse.unusable_ad_groups:type_name -> google.ads.googleads.v16.services.UnusableAdGroup - 32, // 20: google.ads.googleads.v16.services.AdGroupKeywordSuggestion.suggested_match_type:type_name -> google.ads.googleads.v16.enums.KeywordMatchTypeEnum.KeywordMatchType - 33, // 21: google.ads.googleads.v16.services.GenerateKeywordForecastMetricsRequest.forecast_period:type_name -> google.ads.googleads.v16.common.DateRange - 15, // 22: google.ads.googleads.v16.services.GenerateKeywordForecastMetricsRequest.campaign:type_name -> google.ads.googleads.v16.services.CampaignToForecast - 18, // 23: google.ads.googleads.v16.services.CampaignToForecast.geo_modifiers:type_name -> google.ads.googleads.v16.services.CriterionBidModifier - 25, // 24: google.ads.googleads.v16.services.CampaignToForecast.keyword_plan_network:type_name -> google.ads.googleads.v16.enums.KeywordPlanNetworkEnum.KeywordPlanNetwork - 34, // 25: google.ads.googleads.v16.services.CampaignToForecast.negative_keywords:type_name -> google.ads.googleads.v16.common.KeywordInfo - 24, // 26: google.ads.googleads.v16.services.CampaignToForecast.bidding_strategy:type_name -> google.ads.googleads.v16.services.CampaignToForecast.CampaignBiddingStrategy - 16, // 27: google.ads.googleads.v16.services.CampaignToForecast.ad_groups:type_name -> google.ads.googleads.v16.services.ForecastAdGroup - 17, // 28: google.ads.googleads.v16.services.ForecastAdGroup.biddable_keywords:type_name -> google.ads.googleads.v16.services.BiddableKeyword - 34, // 29: google.ads.googleads.v16.services.ForecastAdGroup.negative_keywords:type_name -> google.ads.googleads.v16.common.KeywordInfo - 34, // 30: google.ads.googleads.v16.services.BiddableKeyword.keyword:type_name -> google.ads.googleads.v16.common.KeywordInfo - 23, // 31: google.ads.googleads.v16.services.GenerateKeywordForecastMetricsResponse.campaign_forecast_metrics:type_name -> google.ads.googleads.v16.services.KeywordForecastMetrics - 19, // 32: google.ads.googleads.v16.services.CampaignToForecast.CampaignBiddingStrategy.manual_cpc_bidding_strategy:type_name -> google.ads.googleads.v16.services.ManualCpcBiddingStrategy - 20, // 33: google.ads.googleads.v16.services.CampaignToForecast.CampaignBiddingStrategy.maximize_clicks_bidding_strategy:type_name -> google.ads.googleads.v16.services.MaximizeClicksBiddingStrategy - 21, // 34: google.ads.googleads.v16.services.CampaignToForecast.CampaignBiddingStrategy.maximize_conversions_bidding_strategy:type_name -> google.ads.googleads.v16.services.MaximizeConversionsBiddingStrategy - 0, // 35: google.ads.googleads.v16.services.KeywordPlanIdeaService.GenerateKeywordIdeas:input_type -> google.ads.googleads.v16.services.GenerateKeywordIdeasRequest - 7, // 36: google.ads.googleads.v16.services.KeywordPlanIdeaService.GenerateKeywordHistoricalMetrics:input_type -> google.ads.googleads.v16.services.GenerateKeywordHistoricalMetricsRequest - 10, // 37: google.ads.googleads.v16.services.KeywordPlanIdeaService.GenerateAdGroupThemes:input_type -> google.ads.googleads.v16.services.GenerateAdGroupThemesRequest - 14, // 38: google.ads.googleads.v16.services.KeywordPlanIdeaService.GenerateKeywordForecastMetrics:input_type -> google.ads.googleads.v16.services.GenerateKeywordForecastMetricsRequest - 5, // 39: google.ads.googleads.v16.services.KeywordPlanIdeaService.GenerateKeywordIdeas:output_type -> google.ads.googleads.v16.services.GenerateKeywordIdeaResponse - 8, // 40: google.ads.googleads.v16.services.KeywordPlanIdeaService.GenerateKeywordHistoricalMetrics:output_type -> google.ads.googleads.v16.services.GenerateKeywordHistoricalMetricsResponse - 11, // 41: google.ads.googleads.v16.services.KeywordPlanIdeaService.GenerateAdGroupThemes:output_type -> google.ads.googleads.v16.services.GenerateAdGroupThemesResponse - 22, // 42: google.ads.googleads.v16.services.KeywordPlanIdeaService.GenerateKeywordForecastMetrics:output_type -> google.ads.googleads.v16.services.GenerateKeywordForecastMetricsResponse + return file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDescData +} + +var file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes = make([]protoimpl.MessageInfo, 25) +var file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_goTypes = []interface{}{ + (*GenerateKeywordIdeasRequest)(nil), // 0: google.ads.googleads.v17.services.GenerateKeywordIdeasRequest + (*KeywordAndUrlSeed)(nil), // 1: google.ads.googleads.v17.services.KeywordAndUrlSeed + (*KeywordSeed)(nil), // 2: google.ads.googleads.v17.services.KeywordSeed + (*SiteSeed)(nil), // 3: google.ads.googleads.v17.services.SiteSeed + (*UrlSeed)(nil), // 4: google.ads.googleads.v17.services.UrlSeed + (*GenerateKeywordIdeaResponse)(nil), // 5: google.ads.googleads.v17.services.GenerateKeywordIdeaResponse + (*GenerateKeywordIdeaResult)(nil), // 6: google.ads.googleads.v17.services.GenerateKeywordIdeaResult + (*GenerateKeywordHistoricalMetricsRequest)(nil), // 7: google.ads.googleads.v17.services.GenerateKeywordHistoricalMetricsRequest + (*GenerateKeywordHistoricalMetricsResponse)(nil), // 8: google.ads.googleads.v17.services.GenerateKeywordHistoricalMetricsResponse + (*GenerateKeywordHistoricalMetricsResult)(nil), // 9: google.ads.googleads.v17.services.GenerateKeywordHistoricalMetricsResult + (*GenerateAdGroupThemesRequest)(nil), // 10: google.ads.googleads.v17.services.GenerateAdGroupThemesRequest + (*GenerateAdGroupThemesResponse)(nil), // 11: google.ads.googleads.v17.services.GenerateAdGroupThemesResponse + (*AdGroupKeywordSuggestion)(nil), // 12: google.ads.googleads.v17.services.AdGroupKeywordSuggestion + (*UnusableAdGroup)(nil), // 13: google.ads.googleads.v17.services.UnusableAdGroup + (*GenerateKeywordForecastMetricsRequest)(nil), // 14: google.ads.googleads.v17.services.GenerateKeywordForecastMetricsRequest + (*CampaignToForecast)(nil), // 15: google.ads.googleads.v17.services.CampaignToForecast + (*ForecastAdGroup)(nil), // 16: google.ads.googleads.v17.services.ForecastAdGroup + (*BiddableKeyword)(nil), // 17: google.ads.googleads.v17.services.BiddableKeyword + (*CriterionBidModifier)(nil), // 18: google.ads.googleads.v17.services.CriterionBidModifier + (*ManualCpcBiddingStrategy)(nil), // 19: google.ads.googleads.v17.services.ManualCpcBiddingStrategy + (*MaximizeClicksBiddingStrategy)(nil), // 20: google.ads.googleads.v17.services.MaximizeClicksBiddingStrategy + (*MaximizeConversionsBiddingStrategy)(nil), // 21: google.ads.googleads.v17.services.MaximizeConversionsBiddingStrategy + (*GenerateKeywordForecastMetricsResponse)(nil), // 22: google.ads.googleads.v17.services.GenerateKeywordForecastMetricsResponse + (*KeywordForecastMetrics)(nil), // 23: google.ads.googleads.v17.services.KeywordForecastMetrics + (*CampaignToForecast_CampaignBiddingStrategy)(nil), // 24: google.ads.googleads.v17.services.CampaignToForecast.CampaignBiddingStrategy + (enums.KeywordPlanNetworkEnum_KeywordPlanNetwork)(0), // 25: google.ads.googleads.v17.enums.KeywordPlanNetworkEnum.KeywordPlanNetwork + (enums.KeywordPlanKeywordAnnotationEnum_KeywordPlanKeywordAnnotation)(0), // 26: google.ads.googleads.v17.enums.KeywordPlanKeywordAnnotationEnum.KeywordPlanKeywordAnnotation + (*common.KeywordPlanAggregateMetrics)(nil), // 27: google.ads.googleads.v17.common.KeywordPlanAggregateMetrics + (*common.HistoricalMetricsOptions)(nil), // 28: google.ads.googleads.v17.common.HistoricalMetricsOptions + (*common.KeywordPlanAggregateMetricResults)(nil), // 29: google.ads.googleads.v17.common.KeywordPlanAggregateMetricResults + (*common.KeywordPlanHistoricalMetrics)(nil), // 30: google.ads.googleads.v17.common.KeywordPlanHistoricalMetrics + (*common.KeywordAnnotations)(nil), // 31: google.ads.googleads.v17.common.KeywordAnnotations + (enums.KeywordMatchTypeEnum_KeywordMatchType)(0), // 32: google.ads.googleads.v17.enums.KeywordMatchTypeEnum.KeywordMatchType + (*common.DateRange)(nil), // 33: google.ads.googleads.v17.common.DateRange + (*common.KeywordInfo)(nil), // 34: google.ads.googleads.v17.common.KeywordInfo +} +var file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_depIdxs = []int32{ + 25, // 0: google.ads.googleads.v17.services.GenerateKeywordIdeasRequest.keyword_plan_network:type_name -> google.ads.googleads.v17.enums.KeywordPlanNetworkEnum.KeywordPlanNetwork + 26, // 1: google.ads.googleads.v17.services.GenerateKeywordIdeasRequest.keyword_annotation:type_name -> google.ads.googleads.v17.enums.KeywordPlanKeywordAnnotationEnum.KeywordPlanKeywordAnnotation + 27, // 2: google.ads.googleads.v17.services.GenerateKeywordIdeasRequest.aggregate_metrics:type_name -> google.ads.googleads.v17.common.KeywordPlanAggregateMetrics + 28, // 3: google.ads.googleads.v17.services.GenerateKeywordIdeasRequest.historical_metrics_options:type_name -> google.ads.googleads.v17.common.HistoricalMetricsOptions + 1, // 4: google.ads.googleads.v17.services.GenerateKeywordIdeasRequest.keyword_and_url_seed:type_name -> google.ads.googleads.v17.services.KeywordAndUrlSeed + 2, // 5: google.ads.googleads.v17.services.GenerateKeywordIdeasRequest.keyword_seed:type_name -> google.ads.googleads.v17.services.KeywordSeed + 4, // 6: google.ads.googleads.v17.services.GenerateKeywordIdeasRequest.url_seed:type_name -> google.ads.googleads.v17.services.UrlSeed + 3, // 7: google.ads.googleads.v17.services.GenerateKeywordIdeasRequest.site_seed:type_name -> google.ads.googleads.v17.services.SiteSeed + 6, // 8: google.ads.googleads.v17.services.GenerateKeywordIdeaResponse.results:type_name -> google.ads.googleads.v17.services.GenerateKeywordIdeaResult + 29, // 9: google.ads.googleads.v17.services.GenerateKeywordIdeaResponse.aggregate_metric_results:type_name -> google.ads.googleads.v17.common.KeywordPlanAggregateMetricResults + 30, // 10: google.ads.googleads.v17.services.GenerateKeywordIdeaResult.keyword_idea_metrics:type_name -> google.ads.googleads.v17.common.KeywordPlanHistoricalMetrics + 31, // 11: google.ads.googleads.v17.services.GenerateKeywordIdeaResult.keyword_annotations:type_name -> google.ads.googleads.v17.common.KeywordAnnotations + 25, // 12: google.ads.googleads.v17.services.GenerateKeywordHistoricalMetricsRequest.keyword_plan_network:type_name -> google.ads.googleads.v17.enums.KeywordPlanNetworkEnum.KeywordPlanNetwork + 27, // 13: google.ads.googleads.v17.services.GenerateKeywordHistoricalMetricsRequest.aggregate_metrics:type_name -> google.ads.googleads.v17.common.KeywordPlanAggregateMetrics + 28, // 14: google.ads.googleads.v17.services.GenerateKeywordHistoricalMetricsRequest.historical_metrics_options:type_name -> google.ads.googleads.v17.common.HistoricalMetricsOptions + 9, // 15: google.ads.googleads.v17.services.GenerateKeywordHistoricalMetricsResponse.results:type_name -> google.ads.googleads.v17.services.GenerateKeywordHistoricalMetricsResult + 29, // 16: google.ads.googleads.v17.services.GenerateKeywordHistoricalMetricsResponse.aggregate_metric_results:type_name -> google.ads.googleads.v17.common.KeywordPlanAggregateMetricResults + 30, // 17: google.ads.googleads.v17.services.GenerateKeywordHistoricalMetricsResult.keyword_metrics:type_name -> google.ads.googleads.v17.common.KeywordPlanHistoricalMetrics + 12, // 18: google.ads.googleads.v17.services.GenerateAdGroupThemesResponse.ad_group_keyword_suggestions:type_name -> google.ads.googleads.v17.services.AdGroupKeywordSuggestion + 13, // 19: google.ads.googleads.v17.services.GenerateAdGroupThemesResponse.unusable_ad_groups:type_name -> google.ads.googleads.v17.services.UnusableAdGroup + 32, // 20: google.ads.googleads.v17.services.AdGroupKeywordSuggestion.suggested_match_type:type_name -> google.ads.googleads.v17.enums.KeywordMatchTypeEnum.KeywordMatchType + 33, // 21: google.ads.googleads.v17.services.GenerateKeywordForecastMetricsRequest.forecast_period:type_name -> google.ads.googleads.v17.common.DateRange + 15, // 22: google.ads.googleads.v17.services.GenerateKeywordForecastMetricsRequest.campaign:type_name -> google.ads.googleads.v17.services.CampaignToForecast + 18, // 23: google.ads.googleads.v17.services.CampaignToForecast.geo_modifiers:type_name -> google.ads.googleads.v17.services.CriterionBidModifier + 25, // 24: google.ads.googleads.v17.services.CampaignToForecast.keyword_plan_network:type_name -> google.ads.googleads.v17.enums.KeywordPlanNetworkEnum.KeywordPlanNetwork + 34, // 25: google.ads.googleads.v17.services.CampaignToForecast.negative_keywords:type_name -> google.ads.googleads.v17.common.KeywordInfo + 24, // 26: google.ads.googleads.v17.services.CampaignToForecast.bidding_strategy:type_name -> google.ads.googleads.v17.services.CampaignToForecast.CampaignBiddingStrategy + 16, // 27: google.ads.googleads.v17.services.CampaignToForecast.ad_groups:type_name -> google.ads.googleads.v17.services.ForecastAdGroup + 17, // 28: google.ads.googleads.v17.services.ForecastAdGroup.biddable_keywords:type_name -> google.ads.googleads.v17.services.BiddableKeyword + 34, // 29: google.ads.googleads.v17.services.ForecastAdGroup.negative_keywords:type_name -> google.ads.googleads.v17.common.KeywordInfo + 34, // 30: google.ads.googleads.v17.services.BiddableKeyword.keyword:type_name -> google.ads.googleads.v17.common.KeywordInfo + 23, // 31: google.ads.googleads.v17.services.GenerateKeywordForecastMetricsResponse.campaign_forecast_metrics:type_name -> google.ads.googleads.v17.services.KeywordForecastMetrics + 19, // 32: google.ads.googleads.v17.services.CampaignToForecast.CampaignBiddingStrategy.manual_cpc_bidding_strategy:type_name -> google.ads.googleads.v17.services.ManualCpcBiddingStrategy + 20, // 33: google.ads.googleads.v17.services.CampaignToForecast.CampaignBiddingStrategy.maximize_clicks_bidding_strategy:type_name -> google.ads.googleads.v17.services.MaximizeClicksBiddingStrategy + 21, // 34: google.ads.googleads.v17.services.CampaignToForecast.CampaignBiddingStrategy.maximize_conversions_bidding_strategy:type_name -> google.ads.googleads.v17.services.MaximizeConversionsBiddingStrategy + 0, // 35: google.ads.googleads.v17.services.KeywordPlanIdeaService.GenerateKeywordIdeas:input_type -> google.ads.googleads.v17.services.GenerateKeywordIdeasRequest + 7, // 36: google.ads.googleads.v17.services.KeywordPlanIdeaService.GenerateKeywordHistoricalMetrics:input_type -> google.ads.googleads.v17.services.GenerateKeywordHistoricalMetricsRequest + 10, // 37: google.ads.googleads.v17.services.KeywordPlanIdeaService.GenerateAdGroupThemes:input_type -> google.ads.googleads.v17.services.GenerateAdGroupThemesRequest + 14, // 38: google.ads.googleads.v17.services.KeywordPlanIdeaService.GenerateKeywordForecastMetrics:input_type -> google.ads.googleads.v17.services.GenerateKeywordForecastMetricsRequest + 5, // 39: google.ads.googleads.v17.services.KeywordPlanIdeaService.GenerateKeywordIdeas:output_type -> google.ads.googleads.v17.services.GenerateKeywordIdeaResponse + 8, // 40: google.ads.googleads.v17.services.KeywordPlanIdeaService.GenerateKeywordHistoricalMetrics:output_type -> google.ads.googleads.v17.services.GenerateKeywordHistoricalMetricsResponse + 11, // 41: google.ads.googleads.v17.services.KeywordPlanIdeaService.GenerateAdGroupThemes:output_type -> google.ads.googleads.v17.services.GenerateAdGroupThemesResponse + 22, // 42: google.ads.googleads.v17.services.KeywordPlanIdeaService.GenerateKeywordForecastMetrics:output_type -> google.ads.googleads.v17.services.GenerateKeywordForecastMetricsResponse 39, // [39:43] is the sub-list for method output_type 35, // [35:39] is the sub-list for method input_type 35, // [35:35] is the sub-list for extension type_name @@ -2650,13 +2650,13 @@ var file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_depId 0, // [0:35] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_init() } -func file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_init() { - if File_google_ads_googleads_v16_services_keyword_plan_idea_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_init() } +func file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_init() { + if File_google_ads_googleads_v17_services_keyword_plan_idea_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GenerateKeywordIdeasRequest); i { case 0: return &v.state @@ -2668,7 +2668,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_init return nil } } - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*KeywordAndUrlSeed); i { case 0: return &v.state @@ -2680,7 +2680,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_init return nil } } - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*KeywordSeed); i { case 0: return &v.state @@ -2692,7 +2692,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_init return nil } } - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SiteSeed); i { case 0: return &v.state @@ -2704,7 +2704,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_init return nil } } - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*UrlSeed); i { case 0: return &v.state @@ -2716,7 +2716,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_init return nil } } - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GenerateKeywordIdeaResponse); i { case 0: return &v.state @@ -2728,7 +2728,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_init return nil } } - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GenerateKeywordIdeaResult); i { case 0: return &v.state @@ -2740,7 +2740,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_init return nil } } - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GenerateKeywordHistoricalMetricsRequest); i { case 0: return &v.state @@ -2752,7 +2752,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_init return nil } } - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GenerateKeywordHistoricalMetricsResponse); i { case 0: return &v.state @@ -2764,7 +2764,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_init return nil } } - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GenerateKeywordHistoricalMetricsResult); i { case 0: return &v.state @@ -2776,7 +2776,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_init return nil } } - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GenerateAdGroupThemesRequest); i { case 0: return &v.state @@ -2788,7 +2788,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_init return nil } } - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GenerateAdGroupThemesResponse); i { case 0: return &v.state @@ -2800,7 +2800,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_init return nil } } - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdGroupKeywordSuggestion); i { case 0: return &v.state @@ -2812,7 +2812,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_init return nil } } - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*UnusableAdGroup); i { case 0: return &v.state @@ -2824,7 +2824,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_init return nil } } - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GenerateKeywordForecastMetricsRequest); i { case 0: return &v.state @@ -2836,7 +2836,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_init return nil } } - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignToForecast); i { case 0: return &v.state @@ -2848,7 +2848,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_init return nil } } - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ForecastAdGroup); i { case 0: return &v.state @@ -2860,7 +2860,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_init return nil } } - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BiddableKeyword); i { case 0: return &v.state @@ -2872,7 +2872,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_init return nil } } - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CriterionBidModifier); i { case 0: return &v.state @@ -2884,7 +2884,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_init return nil } } - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ManualCpcBiddingStrategy); i { case 0: return &v.state @@ -2896,7 +2896,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_init return nil } } - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MaximizeClicksBiddingStrategy); i { case 0: return &v.state @@ -2908,7 +2908,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_init return nil } } - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MaximizeConversionsBiddingStrategy); i { case 0: return &v.state @@ -2920,7 +2920,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_init return nil } } - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GenerateKeywordForecastMetricsResponse); i { case 0: return &v.state @@ -2932,7 +2932,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_init return nil } } - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*KeywordForecastMetrics); i { case 0: return &v.state @@ -2944,7 +2944,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_init return nil } } - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignToForecast_CampaignBiddingStrategy); i { case 0: return &v.state @@ -2957,28 +2957,28 @@ func file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_init } } } - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[0].OneofWrappers = []interface{}{ (*GenerateKeywordIdeasRequest_KeywordAndUrlSeed)(nil), (*GenerateKeywordIdeasRequest_KeywordSeed)(nil), (*GenerateKeywordIdeasRequest_UrlSeed)(nil), (*GenerateKeywordIdeasRequest_SiteSeed)(nil), } - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[1].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[3].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[4].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[6].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[7].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[9].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[14].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[15].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[16].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[17].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[18].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[19].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[20].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[22].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[23].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes[24].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[1].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[3].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[4].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[6].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[7].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[9].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[14].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[15].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[16].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[17].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[18].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[19].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[20].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[22].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[23].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes[24].OneofWrappers = []interface{}{ (*CampaignToForecast_CampaignBiddingStrategy_ManualCpcBiddingStrategy)(nil), (*CampaignToForecast_CampaignBiddingStrategy_MaximizeClicksBiddingStrategy)(nil), (*CampaignToForecast_CampaignBiddingStrategy_MaximizeConversionsBiddingStrategy)(nil), @@ -2987,18 +2987,18 @@ func file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_init out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDesc, NumEnums: 0, NumMessages: 25, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_keyword_plan_idea_service_proto = out.File - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_keyword_plan_idea_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_keyword_plan_idea_service_proto = out.File + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_keyword_plan_idea_service_proto_depIdxs = nil } diff --git a/services/keyword_plan_idea_service_grpc.pb.go b/services/keyword_plan_idea_service_grpc.pb.go index ea65a92f..5e872c58 100644 --- a/services/keyword_plan_idea_service_grpc.pb.go +++ b/services/keyword_plan_idea_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/keyword_plan_idea_service.proto +// source: google/ads/googleads/v17/services/keyword_plan_idea_service.proto package services @@ -29,19 +29,21 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - KeywordPlanIdeaService_GenerateKeywordIdeas_FullMethodName = "/google.ads.googleads.v16.services.KeywordPlanIdeaService/GenerateKeywordIdeas" - KeywordPlanIdeaService_GenerateKeywordHistoricalMetrics_FullMethodName = "/google.ads.googleads.v16.services.KeywordPlanIdeaService/GenerateKeywordHistoricalMetrics" - KeywordPlanIdeaService_GenerateAdGroupThemes_FullMethodName = "/google.ads.googleads.v16.services.KeywordPlanIdeaService/GenerateAdGroupThemes" - KeywordPlanIdeaService_GenerateKeywordForecastMetrics_FullMethodName = "/google.ads.googleads.v16.services.KeywordPlanIdeaService/GenerateKeywordForecastMetrics" + KeywordPlanIdeaService_GenerateKeywordIdeas_FullMethodName = "/google.ads.googleads.v17.services.KeywordPlanIdeaService/GenerateKeywordIdeas" + KeywordPlanIdeaService_GenerateKeywordHistoricalMetrics_FullMethodName = "/google.ads.googleads.v17.services.KeywordPlanIdeaService/GenerateKeywordHistoricalMetrics" + KeywordPlanIdeaService_GenerateAdGroupThemes_FullMethodName = "/google.ads.googleads.v17.services.KeywordPlanIdeaService/GenerateAdGroupThemes" + KeywordPlanIdeaService_GenerateKeywordForecastMetrics_FullMethodName = "/google.ads.googleads.v17.services.KeywordPlanIdeaService/GenerateKeywordForecastMetrics" ) // KeywordPlanIdeaServiceClient is the client API for KeywordPlanIdeaService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to generate keyword ideas. type KeywordPlanIdeaServiceClient interface { // Returns a list of keyword ideas. // @@ -105,8 +107,9 @@ func NewKeywordPlanIdeaServiceClient(cc grpc.ClientConnInterface) KeywordPlanIde } func (c *keywordPlanIdeaServiceClient) GenerateKeywordIdeas(ctx context.Context, in *GenerateKeywordIdeasRequest, opts ...grpc.CallOption) (*GenerateKeywordIdeaResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(GenerateKeywordIdeaResponse) - err := c.cc.Invoke(ctx, KeywordPlanIdeaService_GenerateKeywordIdeas_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, KeywordPlanIdeaService_GenerateKeywordIdeas_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -114,8 +117,9 @@ func (c *keywordPlanIdeaServiceClient) GenerateKeywordIdeas(ctx context.Context, } func (c *keywordPlanIdeaServiceClient) GenerateKeywordHistoricalMetrics(ctx context.Context, in *GenerateKeywordHistoricalMetricsRequest, opts ...grpc.CallOption) (*GenerateKeywordHistoricalMetricsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(GenerateKeywordHistoricalMetricsResponse) - err := c.cc.Invoke(ctx, KeywordPlanIdeaService_GenerateKeywordHistoricalMetrics_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, KeywordPlanIdeaService_GenerateKeywordHistoricalMetrics_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -123,8 +127,9 @@ func (c *keywordPlanIdeaServiceClient) GenerateKeywordHistoricalMetrics(ctx cont } func (c *keywordPlanIdeaServiceClient) GenerateAdGroupThemes(ctx context.Context, in *GenerateAdGroupThemesRequest, opts ...grpc.CallOption) (*GenerateAdGroupThemesResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(GenerateAdGroupThemesResponse) - err := c.cc.Invoke(ctx, KeywordPlanIdeaService_GenerateAdGroupThemes_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, KeywordPlanIdeaService_GenerateAdGroupThemes_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -132,8 +137,9 @@ func (c *keywordPlanIdeaServiceClient) GenerateAdGroupThemes(ctx context.Context } func (c *keywordPlanIdeaServiceClient) GenerateKeywordForecastMetrics(ctx context.Context, in *GenerateKeywordForecastMetricsRequest, opts ...grpc.CallOption) (*GenerateKeywordForecastMetricsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(GenerateKeywordForecastMetricsResponse) - err := c.cc.Invoke(ctx, KeywordPlanIdeaService_GenerateKeywordForecastMetrics_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, KeywordPlanIdeaService_GenerateKeywordForecastMetrics_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -143,6 +149,8 @@ func (c *keywordPlanIdeaServiceClient) GenerateKeywordForecastMetrics(ctx contex // KeywordPlanIdeaServiceServer is the server API for KeywordPlanIdeaService service. // All implementations must embed UnimplementedKeywordPlanIdeaServiceServer // for forward compatibility +// +// Service to generate keyword ideas. type KeywordPlanIdeaServiceServer interface { // Returns a list of keyword ideas. // @@ -304,7 +312,7 @@ func _KeywordPlanIdeaService_GenerateKeywordForecastMetrics_Handler(srv interfac // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var KeywordPlanIdeaService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.KeywordPlanIdeaService", + ServiceName: "google.ads.googleads.v17.services.KeywordPlanIdeaService", HandlerType: (*KeywordPlanIdeaServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -325,5 +333,5 @@ var KeywordPlanIdeaService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/keyword_plan_idea_service.proto", + Metadata: "google/ads/googleads/v17/services/keyword_plan_idea_service.proto", } diff --git a/services/keyword_plan_service.pb.go b/services/keyword_plan_service.pb.go index f8510d4c..598bd876 100644 --- a/services/keyword_plan_service.pb.go +++ b/services/keyword_plan_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/keyword_plan_service.proto +// source: google/ads/googleads/v17/services/keyword_plan_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [KeywordPlanService.MutateKeywordPlans][google.ads.googleads.v16.services.KeywordPlanService.MutateKeywordPlans]. +// [KeywordPlanService.MutateKeywordPlans][google.ads.googleads.v17.services.KeywordPlanService.MutateKeywordPlans]. type MutateKeywordPlansRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -62,7 +62,7 @@ type MutateKeywordPlansRequest struct { func (x *MutateKeywordPlansRequest) Reset() { *x = MutateKeywordPlansRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_keyword_plan_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75,7 +75,7 @@ func (x *MutateKeywordPlansRequest) String() string { func (*MutateKeywordPlansRequest) ProtoMessage() {} func (x *MutateKeywordPlansRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_keyword_plan_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88,7 +88,7 @@ func (x *MutateKeywordPlansRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateKeywordPlansRequest.ProtoReflect.Descriptor instead. func (*MutateKeywordPlansRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_keyword_plan_service_proto_rawDescGZIP(), []int{0} } func (x *MutateKeywordPlansRequest) GetCustomerId() string { @@ -141,7 +141,7 @@ type KeywordPlanOperation struct { func (x *KeywordPlanOperation) Reset() { *x = KeywordPlanOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_keyword_plan_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -154,7 +154,7 @@ func (x *KeywordPlanOperation) String() string { func (*KeywordPlanOperation) ProtoMessage() {} func (x *KeywordPlanOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_keyword_plan_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -167,7 +167,7 @@ func (x *KeywordPlanOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanOperation.ProtoReflect.Descriptor instead. func (*KeywordPlanOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_keyword_plan_service_proto_rawDescGZIP(), []int{1} } func (x *KeywordPlanOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -252,7 +252,7 @@ type MutateKeywordPlansResponse struct { func (x *MutateKeywordPlansResponse) Reset() { *x = MutateKeywordPlansResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_keyword_plan_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -265,7 +265,7 @@ func (x *MutateKeywordPlansResponse) String() string { func (*MutateKeywordPlansResponse) ProtoMessage() {} func (x *MutateKeywordPlansResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_keyword_plan_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -278,7 +278,7 @@ func (x *MutateKeywordPlansResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateKeywordPlansResponse.ProtoReflect.Descriptor instead. func (*MutateKeywordPlansResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_keyword_plan_service_proto_rawDescGZIP(), []int{2} } func (x *MutateKeywordPlansResponse) GetPartialFailureError() *status.Status { @@ -308,7 +308,7 @@ type MutateKeywordPlansResult struct { func (x *MutateKeywordPlansResult) Reset() { *x = MutateKeywordPlansResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_plan_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_keyword_plan_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -321,7 +321,7 @@ func (x *MutateKeywordPlansResult) String() string { func (*MutateKeywordPlansResult) ProtoMessage() {} func (x *MutateKeywordPlansResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_plan_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_keyword_plan_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -334,7 +334,7 @@ func (x *MutateKeywordPlansResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateKeywordPlansResult.ProtoReflect.Descriptor instead. func (*MutateKeywordPlansResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_plan_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_keyword_plan_service_proto_rawDescGZIP(), []int{3} } func (x *MutateKeywordPlansResult) GetResourceName() string { @@ -344,17 +344,17 @@ func (x *MutateKeywordPlansResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_keyword_plan_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_keyword_plan_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_keyword_plan_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_keyword_plan_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, @@ -374,7 +374,7 @@ var file_google_ads_googleads_v16_services_keyword_plan_service_proto_rawDesc = 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5c, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, @@ -390,12 +390,12 @@ var file_google_ads_googleads_v16_services_keyword_plan_service_proto_rawDesc = 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x49, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 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, 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, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x49, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x02, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, + 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x43, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x29, 0xfa, 0x41, 0x26, 0x0a, 0x24, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, @@ -411,7 +411,7 @@ var file_google_ads_googleads_v16_services_keyword_plan_service_proto_rawDesc = 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x55, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x6a, 0x0a, 0x18, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, @@ -425,16 +425,16 @@ var file_google_ads_googleads_v16_services_keyword_plan_service_proto_rawDesc = 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xe9, 0x01, 0x0a, 0x12, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x56, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x37, 0x3a, 0x01, 0x2a, 0x22, 0x32, 0x2f, - 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, + 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, @@ -443,55 +443,55 @@ var file_google_ads_googleads_v16_services_keyword_plan_service_proto_rawDesc = 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x83, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x17, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, + 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_keyword_plan_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_keyword_plan_service_proto_rawDescData = file_google_ads_googleads_v16_services_keyword_plan_service_proto_rawDesc + file_google_ads_googleads_v17_services_keyword_plan_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_keyword_plan_service_proto_rawDescData = file_google_ads_googleads_v17_services_keyword_plan_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_keyword_plan_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_keyword_plan_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_keyword_plan_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_keyword_plan_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_keyword_plan_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_keyword_plan_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_keyword_plan_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_keyword_plan_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_keyword_plan_service_proto_rawDescData + return file_google_ads_googleads_v17_services_keyword_plan_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_keyword_plan_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_keyword_plan_service_proto_goTypes = []interface{}{ - (*MutateKeywordPlansRequest)(nil), // 0: google.ads.googleads.v16.services.MutateKeywordPlansRequest - (*KeywordPlanOperation)(nil), // 1: google.ads.googleads.v16.services.KeywordPlanOperation - (*MutateKeywordPlansResponse)(nil), // 2: google.ads.googleads.v16.services.MutateKeywordPlansResponse - (*MutateKeywordPlansResult)(nil), // 3: google.ads.googleads.v16.services.MutateKeywordPlansResult +var file_google_ads_googleads_v17_services_keyword_plan_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_keyword_plan_service_proto_goTypes = []interface{}{ + (*MutateKeywordPlansRequest)(nil), // 0: google.ads.googleads.v17.services.MutateKeywordPlansRequest + (*KeywordPlanOperation)(nil), // 1: google.ads.googleads.v17.services.KeywordPlanOperation + (*MutateKeywordPlansResponse)(nil), // 2: google.ads.googleads.v17.services.MutateKeywordPlansResponse + (*MutateKeywordPlansResult)(nil), // 3: google.ads.googleads.v17.services.MutateKeywordPlansResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.KeywordPlan)(nil), // 5: google.ads.googleads.v16.resources.KeywordPlan + (*resources.KeywordPlan)(nil), // 5: google.ads.googleads.v17.resources.KeywordPlan (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v16_services_keyword_plan_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateKeywordPlansRequest.operations:type_name -> google.ads.googleads.v16.services.KeywordPlanOperation - 4, // 1: google.ads.googleads.v16.services.KeywordPlanOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v16.services.KeywordPlanOperation.create:type_name -> google.ads.googleads.v16.resources.KeywordPlan - 5, // 3: google.ads.googleads.v16.services.KeywordPlanOperation.update:type_name -> google.ads.googleads.v16.resources.KeywordPlan - 6, // 4: google.ads.googleads.v16.services.MutateKeywordPlansResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 5: google.ads.googleads.v16.services.MutateKeywordPlansResponse.results:type_name -> google.ads.googleads.v16.services.MutateKeywordPlansResult - 0, // 6: google.ads.googleads.v16.services.KeywordPlanService.MutateKeywordPlans:input_type -> google.ads.googleads.v16.services.MutateKeywordPlansRequest - 2, // 7: google.ads.googleads.v16.services.KeywordPlanService.MutateKeywordPlans:output_type -> google.ads.googleads.v16.services.MutateKeywordPlansResponse +var file_google_ads_googleads_v17_services_keyword_plan_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateKeywordPlansRequest.operations:type_name -> google.ads.googleads.v17.services.KeywordPlanOperation + 4, // 1: google.ads.googleads.v17.services.KeywordPlanOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v17.services.KeywordPlanOperation.create:type_name -> google.ads.googleads.v17.resources.KeywordPlan + 5, // 3: google.ads.googleads.v17.services.KeywordPlanOperation.update:type_name -> google.ads.googleads.v17.resources.KeywordPlan + 6, // 4: google.ads.googleads.v17.services.MutateKeywordPlansResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 5: google.ads.googleads.v17.services.MutateKeywordPlansResponse.results:type_name -> google.ads.googleads.v17.services.MutateKeywordPlansResult + 0, // 6: google.ads.googleads.v17.services.KeywordPlanService.MutateKeywordPlans:input_type -> google.ads.googleads.v17.services.MutateKeywordPlansRequest + 2, // 7: google.ads.googleads.v17.services.KeywordPlanService.MutateKeywordPlans:output_type -> google.ads.googleads.v17.services.MutateKeywordPlansResponse 7, // [7:8] is the sub-list for method output_type 6, // [6:7] is the sub-list for method input_type 6, // [6:6] is the sub-list for extension type_name @@ -499,13 +499,13 @@ var file_google_ads_googleads_v16_services_keyword_plan_service_proto_depIdxs = 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_keyword_plan_service_proto_init() } -func file_google_ads_googleads_v16_services_keyword_plan_service_proto_init() { - if File_google_ads_googleads_v16_services_keyword_plan_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_keyword_plan_service_proto_init() } +func file_google_ads_googleads_v17_services_keyword_plan_service_proto_init() { + if File_google_ads_googleads_v17_services_keyword_plan_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_keyword_plan_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateKeywordPlansRequest); i { case 0: return &v.state @@ -517,7 +517,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_keyword_plan_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*KeywordPlanOperation); i { case 0: return &v.state @@ -529,7 +529,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_keyword_plan_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateKeywordPlansResponse); i { case 0: return &v.state @@ -541,7 +541,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_keyword_plan_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_plan_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateKeywordPlansResult); i { case 0: return &v.state @@ -554,7 +554,7 @@ func file_google_ads_googleads_v16_services_keyword_plan_service_proto_init() { } } } - file_google_ads_googleads_v16_services_keyword_plan_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_keyword_plan_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*KeywordPlanOperation_Create)(nil), (*KeywordPlanOperation_Update)(nil), (*KeywordPlanOperation_Remove)(nil), @@ -563,18 +563,18 @@ func file_google_ads_googleads_v16_services_keyword_plan_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_keyword_plan_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_keyword_plan_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_keyword_plan_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_keyword_plan_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_keyword_plan_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_keyword_plan_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_keyword_plan_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_keyword_plan_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_keyword_plan_service_proto = out.File - file_google_ads_googleads_v16_services_keyword_plan_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_keyword_plan_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_keyword_plan_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_keyword_plan_service_proto = out.File + file_google_ads_googleads_v17_services_keyword_plan_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_keyword_plan_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_keyword_plan_service_proto_depIdxs = nil } diff --git a/services/keyword_plan_service_grpc.pb.go b/services/keyword_plan_service_grpc.pb.go index ba40f44a..ada818da 100644 --- a/services/keyword_plan_service_grpc.pb.go +++ b/services/keyword_plan_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/keyword_plan_service.proto +// source: google/ads/googleads/v17/services/keyword_plan_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - KeywordPlanService_MutateKeywordPlans_FullMethodName = "/google.ads.googleads.v16.services.KeywordPlanService/MutateKeywordPlans" + KeywordPlanService_MutateKeywordPlans_FullMethodName = "/google.ads.googleads.v17.services.KeywordPlanService/MutateKeywordPlans" ) // KeywordPlanServiceClient is the client API for KeywordPlanService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage keyword plans. type KeywordPlanServiceClient interface { // Creates, updates, or removes keyword plans. Operation statuses are // returned. @@ -70,8 +72,9 @@ func NewKeywordPlanServiceClient(cc grpc.ClientConnInterface) KeywordPlanService } func (c *keywordPlanServiceClient) MutateKeywordPlans(ctx context.Context, in *MutateKeywordPlansRequest, opts ...grpc.CallOption) (*MutateKeywordPlansResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateKeywordPlansResponse) - err := c.cc.Invoke(ctx, KeywordPlanService_MutateKeywordPlans_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, KeywordPlanService_MutateKeywordPlans_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -81,6 +84,8 @@ func (c *keywordPlanServiceClient) MutateKeywordPlans(ctx context.Context, in *M // KeywordPlanServiceServer is the server API for KeywordPlanService service. // All implementations must embed UnimplementedKeywordPlanServiceServer // for forward compatibility +// +// Service to manage keyword plans. type KeywordPlanServiceServer interface { // Creates, updates, or removes keyword plans. Operation statuses are // returned. @@ -146,7 +151,7 @@ func _KeywordPlanService_MutateKeywordPlans_Handler(srv interface{}, ctx context // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var KeywordPlanService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.KeywordPlanService", + ServiceName: "google.ads.googleads.v17.services.KeywordPlanService", HandlerType: (*KeywordPlanServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -155,5 +160,5 @@ var KeywordPlanService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/keyword_plan_service.proto", + Metadata: "google/ads/googleads/v17/services/keyword_plan_service.proto", } diff --git a/services/keyword_theme_constant_service.pb.go b/services/keyword_theme_constant_service.pb.go index 4510222f..538e9680 100644 --- a/services/keyword_theme_constant_service.pb.go +++ b/services/keyword_theme_constant_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/keyword_theme_constant_service.proto +// source: google/ads/googleads/v17/services/keyword_theme_constant_service.proto package services @@ -37,7 +37,7 @@ const ( ) // Request message for -// [KeywordThemeConstantService.SuggestKeywordThemeConstants][google.ads.googleads.v16.services.KeywordThemeConstantService.SuggestKeywordThemeConstants]. +// [KeywordThemeConstantService.SuggestKeywordThemeConstants][google.ads.googleads.v17.services.KeywordThemeConstantService.SuggestKeywordThemeConstants]. type SuggestKeywordThemeConstantsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -57,7 +57,7 @@ type SuggestKeywordThemeConstantsRequest struct { func (x *SuggestKeywordThemeConstantsRequest) Reset() { *x = SuggestKeywordThemeConstantsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_keyword_theme_constant_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -70,7 +70,7 @@ func (x *SuggestKeywordThemeConstantsRequest) String() string { func (*SuggestKeywordThemeConstantsRequest) ProtoMessage() {} func (x *SuggestKeywordThemeConstantsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_keyword_theme_constant_service_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 *SuggestKeywordThemeConstantsRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use SuggestKeywordThemeConstantsRequest.ProtoReflect.Descriptor instead. func (*SuggestKeywordThemeConstantsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_keyword_theme_constant_service_proto_rawDescGZIP(), []int{0} } func (x *SuggestKeywordThemeConstantsRequest) GetQueryText() string { @@ -108,7 +108,7 @@ func (x *SuggestKeywordThemeConstantsRequest) GetLanguageCode() string { } // Response message for -// [KeywordThemeConstantService.SuggestKeywordThemeConstants][google.ads.googleads.v16.services.KeywordThemeConstantService.SuggestKeywordThemeConstants]. +// [KeywordThemeConstantService.SuggestKeywordThemeConstants][google.ads.googleads.v17.services.KeywordThemeConstantService.SuggestKeywordThemeConstants]. type SuggestKeywordThemeConstantsResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -121,7 +121,7 @@ type SuggestKeywordThemeConstantsResponse struct { func (x *SuggestKeywordThemeConstantsResponse) Reset() { *x = SuggestKeywordThemeConstantsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_keyword_theme_constant_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -134,7 +134,7 @@ func (x *SuggestKeywordThemeConstantsResponse) String() string { func (*SuggestKeywordThemeConstantsResponse) ProtoMessage() {} func (x *SuggestKeywordThemeConstantsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_keyword_theme_constant_service_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 *SuggestKeywordThemeConstantsResponse) ProtoReflect() protoreflect.Messa // Deprecated: Use SuggestKeywordThemeConstantsResponse.ProtoReflect.Descriptor instead. func (*SuggestKeywordThemeConstantsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_keyword_theme_constant_service_proto_rawDescGZIP(), []int{1} } func (x *SuggestKeywordThemeConstantsResponse) GetKeywordThemeConstants() []*resources.KeywordThemeConstant { @@ -157,18 +157,18 @@ func (x *SuggestKeywordThemeConstantsResponse) GetKeywordThemeConstants() []*res return nil } -var File_google_ads_googleads_v16_services_keyword_theme_constant_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_keyword_theme_constant_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_keyword_theme_constant_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x74, 0x68, 0x65, 0x6d, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3f, 0x67, 0x6f, 0x6f, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, + 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x74, 0x68, 0x65, 0x6d, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, @@ -189,7 +189,7 @@ var file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_ 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x74, 0x68, 0x65, 0x6d, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 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, 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, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x54, 0x68, 0x65, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x52, 0x15, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x54, 0x68, 0x65, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x73, 0x32, 0xc5, 0x02, @@ -198,15 +198,15 @@ var file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_ 0x0a, 0x1c, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x54, 0x68, 0x65, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x54, 0x68, 0x65, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, 0x67, 0x65, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x54, 0x68, 0x65, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, - 0x2d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x3a, 0x01, 0x2a, 0x22, 0x22, 0x2f, 0x76, 0x31, 0x36, + 0x2d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x3a, 0x01, 0x2a, 0x22, 0x22, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x54, 0x68, 0x65, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x73, 0x3a, 0x73, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, @@ -215,46 +215,46 @@ var file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_ 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x8c, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x20, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x54, 0x68, 0x65, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, + 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_rawDescData = file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_rawDesc + file_google_ads_googleads_v17_services_keyword_theme_constant_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_keyword_theme_constant_service_proto_rawDescData = file_google_ads_googleads_v17_services_keyword_theme_constant_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_keyword_theme_constant_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_keyword_theme_constant_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_keyword_theme_constant_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_keyword_theme_constant_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_rawDescData + return file_google_ads_googleads_v17_services_keyword_theme_constant_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_goTypes = []interface{}{ - (*SuggestKeywordThemeConstantsRequest)(nil), // 0: google.ads.googleads.v16.services.SuggestKeywordThemeConstantsRequest - (*SuggestKeywordThemeConstantsResponse)(nil), // 1: google.ads.googleads.v16.services.SuggestKeywordThemeConstantsResponse - (*resources.KeywordThemeConstant)(nil), // 2: google.ads.googleads.v16.resources.KeywordThemeConstant +var file_google_ads_googleads_v17_services_keyword_theme_constant_service_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v17_services_keyword_theme_constant_service_proto_goTypes = []interface{}{ + (*SuggestKeywordThemeConstantsRequest)(nil), // 0: google.ads.googleads.v17.services.SuggestKeywordThemeConstantsRequest + (*SuggestKeywordThemeConstantsResponse)(nil), // 1: google.ads.googleads.v17.services.SuggestKeywordThemeConstantsResponse + (*resources.KeywordThemeConstant)(nil), // 2: google.ads.googleads.v17.resources.KeywordThemeConstant } -var file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v16.services.SuggestKeywordThemeConstantsResponse.keyword_theme_constants:type_name -> google.ads.googleads.v16.resources.KeywordThemeConstant - 0, // 1: google.ads.googleads.v16.services.KeywordThemeConstantService.SuggestKeywordThemeConstants:input_type -> google.ads.googleads.v16.services.SuggestKeywordThemeConstantsRequest - 1, // 2: google.ads.googleads.v16.services.KeywordThemeConstantService.SuggestKeywordThemeConstants:output_type -> google.ads.googleads.v16.services.SuggestKeywordThemeConstantsResponse +var file_google_ads_googleads_v17_services_keyword_theme_constant_service_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v17.services.SuggestKeywordThemeConstantsResponse.keyword_theme_constants:type_name -> google.ads.googleads.v17.resources.KeywordThemeConstant + 0, // 1: google.ads.googleads.v17.services.KeywordThemeConstantService.SuggestKeywordThemeConstants:input_type -> google.ads.googleads.v17.services.SuggestKeywordThemeConstantsRequest + 1, // 2: google.ads.googleads.v17.services.KeywordThemeConstantService.SuggestKeywordThemeConstants:output_type -> google.ads.googleads.v17.services.SuggestKeywordThemeConstantsResponse 2, // [2:3] is the sub-list for method output_type 1, // [1:2] is the sub-list for method input_type 1, // [1:1] is the sub-list for extension type_name @@ -262,13 +262,13 @@ var file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_ 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_init() } -func file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_init() { - if File_google_ads_googleads_v16_services_keyword_theme_constant_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_keyword_theme_constant_service_proto_init() } +func file_google_ads_googleads_v17_services_keyword_theme_constant_service_proto_init() { + if File_google_ads_googleads_v17_services_keyword_theme_constant_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_theme_constant_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SuggestKeywordThemeConstantsRequest); i { case 0: return &v.state @@ -280,7 +280,7 @@ func file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto return nil } } - file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_keyword_theme_constant_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SuggestKeywordThemeConstantsResponse); i { case 0: return &v.state @@ -297,18 +297,18 @@ func file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_keyword_theme_constant_service_proto_rawDesc, NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_keyword_theme_constant_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_keyword_theme_constant_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_keyword_theme_constant_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_keyword_theme_constant_service_proto = out.File - file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_keyword_theme_constant_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_keyword_theme_constant_service_proto = out.File + file_google_ads_googleads_v17_services_keyword_theme_constant_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_keyword_theme_constant_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_keyword_theme_constant_service_proto_depIdxs = nil } diff --git a/services/keyword_theme_constant_service_grpc.pb.go b/services/keyword_theme_constant_service_grpc.pb.go index 9659c00a..a6f419de 100644 --- a/services/keyword_theme_constant_service_grpc.pb.go +++ b/services/keyword_theme_constant_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/keyword_theme_constant_service.proto +// source: google/ads/googleads/v17/services/keyword_theme_constant_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - KeywordThemeConstantService_SuggestKeywordThemeConstants_FullMethodName = "/google.ads.googleads.v16.services.KeywordThemeConstantService/SuggestKeywordThemeConstants" + KeywordThemeConstantService_SuggestKeywordThemeConstants_FullMethodName = "/google.ads.googleads.v17.services.KeywordThemeConstantService/SuggestKeywordThemeConstants" ) // KeywordThemeConstantServiceClient is the client API for KeywordThemeConstantService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to fetch Smart Campaign keyword themes. type KeywordThemeConstantServiceClient interface { // Returns KeywordThemeConstant suggestions by keyword themes. // @@ -62,8 +64,9 @@ func NewKeywordThemeConstantServiceClient(cc grpc.ClientConnInterface) KeywordTh } func (c *keywordThemeConstantServiceClient) SuggestKeywordThemeConstants(ctx context.Context, in *SuggestKeywordThemeConstantsRequest, opts ...grpc.CallOption) (*SuggestKeywordThemeConstantsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(SuggestKeywordThemeConstantsResponse) - err := c.cc.Invoke(ctx, KeywordThemeConstantService_SuggestKeywordThemeConstants_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, KeywordThemeConstantService_SuggestKeywordThemeConstants_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -73,6 +76,8 @@ func (c *keywordThemeConstantServiceClient) SuggestKeywordThemeConstants(ctx con // KeywordThemeConstantServiceServer is the server API for KeywordThemeConstantService service. // All implementations must embed UnimplementedKeywordThemeConstantServiceServer // for forward compatibility +// +// Service to fetch Smart Campaign keyword themes. type KeywordThemeConstantServiceServer interface { // Returns KeywordThemeConstant suggestions by keyword themes. // @@ -131,7 +136,7 @@ func _KeywordThemeConstantService_SuggestKeywordThemeConstants_Handler(srv inter // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var KeywordThemeConstantService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.KeywordThemeConstantService", + ServiceName: "google.ads.googleads.v17.services.KeywordThemeConstantService", HandlerType: (*KeywordThemeConstantServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -140,5 +145,5 @@ var KeywordThemeConstantService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/keyword_theme_constant_service.proto", + Metadata: "google/ads/googleads/v17/services/keyword_theme_constant_service.proto", } diff --git a/services/label_service.pb.go b/services/label_service.pb.go index cb54b9a0..199a6047 100644 --- a/services/label_service.pb.go +++ b/services/label_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/label_service.proto +// source: google/ads/googleads/v17/services/label_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [LabelService.MutateLabels][google.ads.googleads.v16.services.LabelService.MutateLabels]. +// [LabelService.MutateLabels][google.ads.googleads.v17.services.LabelService.MutateLabels]. type MutateLabelsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -60,13 +60,13 @@ type MutateLabelsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateLabelsRequest) Reset() { *x = MutateLabelsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_label_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_label_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateLabelsRequest) String() string { func (*MutateLabelsRequest) ProtoMessage() {} func (x *MutateLabelsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_label_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_label_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateLabelsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateLabelsRequest.ProtoReflect.Descriptor instead. func (*MutateLabelsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_label_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_label_service_proto_rawDescGZIP(), []int{0} } func (x *MutateLabelsRequest) GetCustomerId() string { @@ -151,7 +151,7 @@ type LabelOperation struct { func (x *LabelOperation) Reset() { *x = LabelOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_label_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_label_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164,7 +164,7 @@ func (x *LabelOperation) String() string { func (*LabelOperation) ProtoMessage() {} func (x *LabelOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_label_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_label_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177,7 +177,7 @@ func (x *LabelOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use LabelOperation.ProtoReflect.Descriptor instead. func (*LabelOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_label_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_label_service_proto_rawDescGZIP(), []int{1} } func (x *LabelOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -261,7 +261,7 @@ type MutateLabelsResponse struct { func (x *MutateLabelsResponse) Reset() { *x = MutateLabelsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_label_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_label_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -274,7 +274,7 @@ func (x *MutateLabelsResponse) String() string { func (*MutateLabelsResponse) ProtoMessage() {} func (x *MutateLabelsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_label_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_label_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -287,7 +287,7 @@ func (x *MutateLabelsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateLabelsResponse.ProtoReflect.Descriptor instead. func (*MutateLabelsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_label_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_label_service_proto_rawDescGZIP(), []int{2} } func (x *MutateLabelsResponse) GetPartialFailureError() *status.Status { @@ -320,7 +320,7 @@ type MutateLabelResult struct { func (x *MutateLabelResult) Reset() { *x = MutateLabelResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_label_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_label_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -333,7 +333,7 @@ func (x *MutateLabelResult) String() string { func (*MutateLabelResult) ProtoMessage() {} func (x *MutateLabelResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_label_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_label_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -346,7 +346,7 @@ func (x *MutateLabelResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateLabelResult.ProtoReflect.Descriptor instead. func (*MutateLabelResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_label_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_label_service_proto_rawDescGZIP(), []int{3} } func (x *MutateLabelResult) GetResourceName() string { @@ -363,20 +363,20 @@ func (x *MutateLabelResult) GetLabel() *resources.Label { return nil } -var File_google_ads_googleads_v16_services_label_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_label_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_label_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_label_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, 0x65, 0x73, 0x70, 0x6f, + 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, @@ -396,7 +396,7 @@ var file_google_ads_googleads_v16_services_label_service_proto_rawDesc = []byte{ 0x49, 0x64, 0x12, 0x56, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x18, 0x03, 0x20, @@ -407,7 +407,7 @@ var file_google_ads_googleads_v16_services_label_service_proto_rawDesc = []byte{ 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, @@ -419,11 +419,11 @@ var file_google_ads_googleads_v16_services_label_service_proto_rawDesc = []byte{ 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x43, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4c, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x43, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 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, 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, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x3d, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x23, 0xfa, 0x41, 0x20, 0x0a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, @@ -438,7 +438,7 @@ var file_google_ads_googleads_v16_services_label_service_proto_rawDesc = []byte{ 0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x4e, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x9e, 0x01, 0x0a, 0x11, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, @@ -449,20 +449,20 @@ var file_google_ads_googleads_v16_services_label_service_proto_rawDesc = []byte{ 0x65, 0x6c, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x3f, 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 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, 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, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x32, 0xa9, 0x02, 0x0a, 0x0c, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xd1, 0x01, 0x0a, 0x0c, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x12, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x50, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, - 0xd3, 0xe4, 0x93, 0x02, 0x31, 0x3a, 0x01, 0x2a, 0x22, 0x2c, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, + 0xd3, 0xe4, 0x93, 0x02, 0x31, 0x3a, 0x01, 0x2a, 0x22, 0x2c, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, @@ -471,58 +471,58 @@ var file_google_ads_googleads_v16_services_label_service_proto_rawDesc = []byte{ 0x77, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0xfd, 0x01, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x11, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, + 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, + 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_label_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_label_service_proto_rawDescData = file_google_ads_googleads_v16_services_label_service_proto_rawDesc + file_google_ads_googleads_v17_services_label_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_label_service_proto_rawDescData = file_google_ads_googleads_v17_services_label_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_label_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_label_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_label_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_label_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_label_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_label_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_label_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_label_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_label_service_proto_rawDescData + return file_google_ads_googleads_v17_services_label_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_label_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_label_service_proto_goTypes = []interface{}{ - (*MutateLabelsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateLabelsRequest - (*LabelOperation)(nil), // 1: google.ads.googleads.v16.services.LabelOperation - (*MutateLabelsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateLabelsResponse - (*MutateLabelResult)(nil), // 3: google.ads.googleads.v16.services.MutateLabelResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_label_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_label_service_proto_goTypes = []interface{}{ + (*MutateLabelsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateLabelsRequest + (*LabelOperation)(nil), // 1: google.ads.googleads.v17.services.LabelOperation + (*MutateLabelsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateLabelsResponse + (*MutateLabelResult)(nil), // 3: google.ads.googleads.v17.services.MutateLabelResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.Label)(nil), // 6: google.ads.googleads.v16.resources.Label + (*resources.Label)(nil), // 6: google.ads.googleads.v17.resources.Label (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_label_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateLabelsRequest.operations:type_name -> google.ads.googleads.v16.services.LabelOperation - 4, // 1: google.ads.googleads.v16.services.MutateLabelsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.LabelOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.LabelOperation.create:type_name -> google.ads.googleads.v16.resources.Label - 6, // 4: google.ads.googleads.v16.services.LabelOperation.update:type_name -> google.ads.googleads.v16.resources.Label - 7, // 5: google.ads.googleads.v16.services.MutateLabelsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v16.services.MutateLabelsResponse.results:type_name -> google.ads.googleads.v16.services.MutateLabelResult - 6, // 7: google.ads.googleads.v16.services.MutateLabelResult.label:type_name -> google.ads.googleads.v16.resources.Label - 0, // 8: google.ads.googleads.v16.services.LabelService.MutateLabels:input_type -> google.ads.googleads.v16.services.MutateLabelsRequest - 2, // 9: google.ads.googleads.v16.services.LabelService.MutateLabels:output_type -> google.ads.googleads.v16.services.MutateLabelsResponse +var file_google_ads_googleads_v17_services_label_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateLabelsRequest.operations:type_name -> google.ads.googleads.v17.services.LabelOperation + 4, // 1: google.ads.googleads.v17.services.MutateLabelsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.LabelOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.LabelOperation.create:type_name -> google.ads.googleads.v17.resources.Label + 6, // 4: google.ads.googleads.v17.services.LabelOperation.update:type_name -> google.ads.googleads.v17.resources.Label + 7, // 5: google.ads.googleads.v17.services.MutateLabelsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v17.services.MutateLabelsResponse.results:type_name -> google.ads.googleads.v17.services.MutateLabelResult + 6, // 7: google.ads.googleads.v17.services.MutateLabelResult.label:type_name -> google.ads.googleads.v17.resources.Label + 0, // 8: google.ads.googleads.v17.services.LabelService.MutateLabels:input_type -> google.ads.googleads.v17.services.MutateLabelsRequest + 2, // 9: google.ads.googleads.v17.services.LabelService.MutateLabels:output_type -> google.ads.googleads.v17.services.MutateLabelsResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -530,13 +530,13 @@ var file_google_ads_googleads_v16_services_label_service_proto_depIdxs = []int32 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_label_service_proto_init() } -func file_google_ads_googleads_v16_services_label_service_proto_init() { - if File_google_ads_googleads_v16_services_label_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_label_service_proto_init() } +func file_google_ads_googleads_v17_services_label_service_proto_init() { + if File_google_ads_googleads_v17_services_label_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_label_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_label_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateLabelsRequest); i { case 0: return &v.state @@ -548,7 +548,7 @@ func file_google_ads_googleads_v16_services_label_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_label_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_label_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*LabelOperation); i { case 0: return &v.state @@ -560,7 +560,7 @@ func file_google_ads_googleads_v16_services_label_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_label_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_label_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateLabelsResponse); i { case 0: return &v.state @@ -572,7 +572,7 @@ func file_google_ads_googleads_v16_services_label_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_label_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_label_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateLabelResult); i { case 0: return &v.state @@ -585,7 +585,7 @@ func file_google_ads_googleads_v16_services_label_service_proto_init() { } } } - file_google_ads_googleads_v16_services_label_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_label_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*LabelOperation_Create)(nil), (*LabelOperation_Update)(nil), (*LabelOperation_Remove)(nil), @@ -594,18 +594,18 @@ func file_google_ads_googleads_v16_services_label_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_label_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_label_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_label_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_label_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_label_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_label_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_label_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_label_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_label_service_proto = out.File - file_google_ads_googleads_v16_services_label_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_label_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_label_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_label_service_proto = out.File + file_google_ads_googleads_v17_services_label_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_label_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_label_service_proto_depIdxs = nil } diff --git a/services/label_service_grpc.pb.go b/services/label_service_grpc.pb.go index 7a6974f0..9c361e24 100644 --- a/services/label_service_grpc.pb.go +++ b/services/label_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/label_service.proto +// source: google/ads/googleads/v17/services/label_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - LabelService_MutateLabels_FullMethodName = "/google.ads.googleads.v16.services.LabelService/MutateLabels" + LabelService_MutateLabels_FullMethodName = "/google.ads.googleads.v17.services.LabelService/MutateLabels" ) // LabelServiceClient is the client API for LabelService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage labels. type LabelServiceClient interface { // Creates, updates, or removes labels. Operation statuses are returned. // @@ -79,8 +81,9 @@ func NewLabelServiceClient(cc grpc.ClientConnInterface) LabelServiceClient { } func (c *labelServiceClient) MutateLabels(ctx context.Context, in *MutateLabelsRequest, opts ...grpc.CallOption) (*MutateLabelsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateLabelsResponse) - err := c.cc.Invoke(ctx, LabelService_MutateLabels_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, LabelService_MutateLabels_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -90,6 +93,8 @@ func (c *labelServiceClient) MutateLabels(ctx context.Context, in *MutateLabelsR // LabelServiceServer is the server API for LabelService service. // All implementations must embed UnimplementedLabelServiceServer // for forward compatibility +// +// Service to manage labels. type LabelServiceServer interface { // Creates, updates, or removes labels. Operation statuses are returned. // @@ -164,7 +169,7 @@ func _LabelService_MutateLabels_Handler(srv interface{}, ctx context.Context, de // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var LabelService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.LabelService", + ServiceName: "google.ads.googleads.v17.services.LabelService", HandlerType: (*LabelServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -173,5 +178,5 @@ var LabelService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/label_service.proto", + Metadata: "google/ads/googleads/v17/services/label_service.proto", } diff --git a/services/local_services_lead_service.pb.go b/services/local_services_lead_service.pb.go new file mode 100644 index 00000000..b4cbd542 --- /dev/null +++ b/services/local_services_lead_service.pb.go @@ -0,0 +1,507 @@ +// Copyright 2024 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/services/local_services_lead_service.proto + +package services + +import ( + _ "google.golang.org/genproto/googleapis/api/annotations" + status "google.golang.org/genproto/googleapis/rpc/status" + 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) +) + +// Request message for +// [LocalServicesLeadService.AppendLeadConversation][google.ads.googleads.v17.services.LocalServicesLeadService.AppendLeadConversation]. +type AppendLeadConversationRequest struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + // Required. The Id of the customer which owns the leads onto which the + // conversations will be appended. + CustomerId string `protobuf:"bytes,1,opt,name=customer_id,json=customerId,proto3" json:"customer_id,omitempty"` + // Required. Conversations that are being appended. + Conversations []*Conversation `protobuf:"bytes,2,rep,name=conversations,proto3" json:"conversations,omitempty"` +} + +func (x *AppendLeadConversationRequest) Reset() { + *x = AppendLeadConversationRequest{} + if protoimpl.UnsafeEnabled { + mi := &file_google_ads_googleads_v17_services_local_services_lead_service_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *AppendLeadConversationRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*AppendLeadConversationRequest) ProtoMessage() {} + +func (x *AppendLeadConversationRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v17_services_local_services_lead_service_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 AppendLeadConversationRequest.ProtoReflect.Descriptor instead. +func (*AppendLeadConversationRequest) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v17_services_local_services_lead_service_proto_rawDescGZIP(), []int{0} +} + +func (x *AppendLeadConversationRequest) GetCustomerId() string { + if x != nil { + return x.CustomerId + } + return "" +} + +func (x *AppendLeadConversationRequest) GetConversations() []*Conversation { + if x != nil { + return x.Conversations + } + return nil +} + +// Response message for +// [LocalServicesLeadService.AppendLeadConversation][google.ads.googleads.v17.services.LocalServicesLeadService.AppendLeadConversation]. +type AppendLeadConversationResponse struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + // Required. List of append conversation operation results. + Responses []*ConversationOrError `protobuf:"bytes,1,rep,name=responses,proto3" json:"responses,omitempty"` +} + +func (x *AppendLeadConversationResponse) Reset() { + *x = AppendLeadConversationResponse{} + if protoimpl.UnsafeEnabled { + mi := &file_google_ads_googleads_v17_services_local_services_lead_service_proto_msgTypes[1] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *AppendLeadConversationResponse) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*AppendLeadConversationResponse) ProtoMessage() {} + +func (x *AppendLeadConversationResponse) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v17_services_local_services_lead_service_proto_msgTypes[1] + 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 AppendLeadConversationResponse.ProtoReflect.Descriptor instead. +func (*AppendLeadConversationResponse) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v17_services_local_services_lead_service_proto_rawDescGZIP(), []int{1} +} + +func (x *AppendLeadConversationResponse) GetResponses() []*ConversationOrError { + if x != nil { + return x.Responses + } + return nil +} + +// Details of the conversation that needs to be appended. +type Conversation struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + // Required. The resource name of the local services lead that the + // conversation should be applied to. + LocalServicesLead string `protobuf:"bytes,1,opt,name=local_services_lead,json=localServicesLead,proto3" json:"local_services_lead,omitempty"` + // Required. Text message that user wanted to append to lead. + Text string `protobuf:"bytes,2,opt,name=text,proto3" json:"text,omitempty"` +} + +func (x *Conversation) Reset() { + *x = Conversation{} + if protoimpl.UnsafeEnabled { + mi := &file_google_ads_googleads_v17_services_local_services_lead_service_proto_msgTypes[2] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *Conversation) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*Conversation) ProtoMessage() {} + +func (x *Conversation) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v17_services_local_services_lead_service_proto_msgTypes[2] + 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 Conversation.ProtoReflect.Descriptor instead. +func (*Conversation) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v17_services_local_services_lead_service_proto_rawDescGZIP(), []int{2} +} + +func (x *Conversation) GetLocalServicesLead() string { + if x != nil { + return x.LocalServicesLead + } + return "" +} + +func (x *Conversation) GetText() string { + if x != nil { + return x.Text + } + return "" +} + +// Result of the append conversation operation. +type ConversationOrError struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + // Append operation response + // + // Types that are assignable to AppendLeadConversationResponse: + // + // *ConversationOrError_LocalServicesLeadConversation + // *ConversationOrError_PartialFailureError + AppendLeadConversationResponse isConversationOrError_AppendLeadConversationResponse `protobuf_oneof:"append_lead_conversation_response"` +} + +func (x *ConversationOrError) Reset() { + *x = ConversationOrError{} + if protoimpl.UnsafeEnabled { + mi := &file_google_ads_googleads_v17_services_local_services_lead_service_proto_msgTypes[3] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *ConversationOrError) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ConversationOrError) ProtoMessage() {} + +func (x *ConversationOrError) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v17_services_local_services_lead_service_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 ConversationOrError.ProtoReflect.Descriptor instead. +func (*ConversationOrError) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v17_services_local_services_lead_service_proto_rawDescGZIP(), []int{3} +} + +func (m *ConversationOrError) GetAppendLeadConversationResponse() isConversationOrError_AppendLeadConversationResponse { + if m != nil { + return m.AppendLeadConversationResponse + } + return nil +} + +func (x *ConversationOrError) GetLocalServicesLeadConversation() string { + if x, ok := x.GetAppendLeadConversationResponse().(*ConversationOrError_LocalServicesLeadConversation); ok { + return x.LocalServicesLeadConversation + } + return "" +} + +func (x *ConversationOrError) GetPartialFailureError() *status.Status { + if x, ok := x.GetAppendLeadConversationResponse().(*ConversationOrError_PartialFailureError); ok { + return x.PartialFailureError + } + return nil +} + +type isConversationOrError_AppendLeadConversationResponse interface { + isConversationOrError_AppendLeadConversationResponse() +} + +type ConversationOrError_LocalServicesLeadConversation struct { + // The resource name of the appended local services lead conversation. + LocalServicesLeadConversation string `protobuf:"bytes,1,opt,name=local_services_lead_conversation,json=localServicesLeadConversation,proto3,oneof"` +} + +type ConversationOrError_PartialFailureError struct { + // Failure status when the request could not be processed. + PartialFailureError *status.Status `protobuf:"bytes,2,opt,name=partial_failure_error,json=partialFailureError,proto3,oneof"` +} + +func (*ConversationOrError_LocalServicesLeadConversation) isConversationOrError_AppendLeadConversationResponse() { +} + +func (*ConversationOrError_PartialFailureError) isConversationOrError_AppendLeadConversationResponse() { +} + +var File_google_ads_googleads_v17_services_local_services_lead_service_proto protoreflect.FileDescriptor + +var file_google_ads_googleads_v17_services_local_services_lead_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x73, 0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 0x73, 0x5f, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, + 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 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, + 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, + 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, + 0x70, 0x69, 0x2f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 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, 0x1a, 0x17, 0x67, 0x6f, 0x6f, + 0x67, 0x6c, 0x65, 0x2f, 0x72, 0x70, 0x63, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, + 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xa1, 0x01, 0x0a, 0x1d, 0x41, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x4c, + 0x65, 0x61, 0x64, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, + 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, + 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5a, 0x0a, 0x0d, + 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, + 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x76, 0x65, + 0x72, 0x73, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x7b, 0x0a, 0x1e, 0x41, 0x70, 0x70, 0x65, + 0x6e, 0x64, 0x4c, 0x65, 0x61, 0x64, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x59, 0x0a, 0x09, 0x72, 0x65, + 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x72, + 0x45, 0x72, 0x72, 0x6f, 0x72, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x09, 0x72, 0x65, 0x73, 0x70, + 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x22, 0x8b, 0x01, 0x0a, 0x0c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, + 0x73, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x62, 0x0a, 0x13, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, + 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x5f, 0x6c, 0x65, 0x61, 0x64, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x09, 0x42, 0x32, 0xe0, 0x41, 0x02, 0xfa, 0x41, 0x2c, 0x0a, 0x2a, 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, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x73, 0x4c, 0x65, 0x61, 0x64, 0x52, 0x11, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, + 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x4c, 0x65, 0x61, 0x64, 0x12, 0x17, 0x0a, 0x04, 0x74, 0x65, + 0x78, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x04, 0x74, + 0x65, 0x78, 0x74, 0x22, 0xcf, 0x01, 0x0a, 0x13, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x49, 0x0a, 0x20, 0x6c, + 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x5f, 0x6c, 0x65, + 0x61, 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x1d, 0x6c, 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, 0x12, 0x48, 0x0a, 0x15, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, + 0x6c, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x72, + 0x70, 0x63, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x48, 0x00, 0x52, 0x13, 0x70, 0x61, 0x72, + 0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x42, 0x23, 0x0a, 0x21, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x5f, 0x6c, 0x65, 0x61, 0x64, 0x5f, + 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x73, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x32, 0xed, 0x02, 0x0a, 0x18, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, + 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x4c, 0x65, 0x61, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x12, 0x89, 0x02, 0x0a, 0x16, 0x41, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x4c, 0x65, 0x61, + 0x64, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x73, 0x2e, 0x41, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x4c, 0x65, 0x61, 0x64, 0x43, 0x6f, 0x6e, 0x76, + 0x65, 0x72, 0x73, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, + 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x4c, 0x65, 0x61, 0x64, 0x43, 0x6f, + 0x6e, 0x76, 0x65, 0x72, 0x73, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x73, 0x65, 0x22, 0x6a, 0xda, 0x41, 0x19, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, + 0x69, 0x64, 0x2c, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, + 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x48, 0x3a, 0x01, 0x2a, 0x22, 0x43, 0x2f, 0x76, 0x31, 0x37, 0x2f, + 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x53, + 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3a, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x4c, 0x65, + 0x61, 0x64, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x45, + 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0xd2, 0x41, 0x27, 0x68, 0x74, + 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, + 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x89, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, + 0x1d, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x4c, 0x65, + 0x61, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, + 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, + 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, + 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, + 0x41, 0xaa, 0x02, 0x21, 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, 0x53, 0x65, 0x72, + 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, +} + +var ( + file_google_ads_googleads_v17_services_local_services_lead_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_local_services_lead_service_proto_rawDescData = file_google_ads_googleads_v17_services_local_services_lead_service_proto_rawDesc +) + +func file_google_ads_googleads_v17_services_local_services_lead_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_local_services_lead_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_local_services_lead_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_local_services_lead_service_proto_rawDescData) + }) + return file_google_ads_googleads_v17_services_local_services_lead_service_proto_rawDescData +} + +var file_google_ads_googleads_v17_services_local_services_lead_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_local_services_lead_service_proto_goTypes = []interface{}{ + (*AppendLeadConversationRequest)(nil), // 0: google.ads.googleads.v17.services.AppendLeadConversationRequest + (*AppendLeadConversationResponse)(nil), // 1: google.ads.googleads.v17.services.AppendLeadConversationResponse + (*Conversation)(nil), // 2: google.ads.googleads.v17.services.Conversation + (*ConversationOrError)(nil), // 3: google.ads.googleads.v17.services.ConversationOrError + (*status.Status)(nil), // 4: google.rpc.Status +} +var file_google_ads_googleads_v17_services_local_services_lead_service_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v17.services.AppendLeadConversationRequest.conversations:type_name -> google.ads.googleads.v17.services.Conversation + 3, // 1: google.ads.googleads.v17.services.AppendLeadConversationResponse.responses:type_name -> google.ads.googleads.v17.services.ConversationOrError + 4, // 2: google.ads.googleads.v17.services.ConversationOrError.partial_failure_error:type_name -> google.rpc.Status + 0, // 3: google.ads.googleads.v17.services.LocalServicesLeadService.AppendLeadConversation:input_type -> google.ads.googleads.v17.services.AppendLeadConversationRequest + 1, // 4: google.ads.googleads.v17.services.LocalServicesLeadService.AppendLeadConversation:output_type -> google.ads.googleads.v17.services.AppendLeadConversationResponse + 4, // [4:5] is the sub-list for method output_type + 3, // [3:4] 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_v17_services_local_services_lead_service_proto_init() } +func file_google_ads_googleads_v17_services_local_services_lead_service_proto_init() { + if File_google_ads_googleads_v17_services_local_services_lead_service_proto != nil { + return + } + if !protoimpl.UnsafeEnabled { + file_google_ads_googleads_v17_services_local_services_lead_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*AppendLeadConversationRequest); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_google_ads_googleads_v17_services_local_services_lead_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*AppendLeadConversationResponse); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_google_ads_googleads_v17_services_local_services_lead_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*Conversation); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_google_ads_googleads_v17_services_local_services_lead_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*ConversationOrError); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + } + file_google_ads_googleads_v17_services_local_services_lead_service_proto_msgTypes[3].OneofWrappers = []interface{}{ + (*ConversationOrError_LocalServicesLeadConversation)(nil), + (*ConversationOrError_PartialFailureError)(nil), + } + type x struct{} + out := protoimpl.TypeBuilder{ + File: protoimpl.DescBuilder{ + GoPackagePath: reflect.TypeOf(x{}).PkgPath(), + RawDescriptor: file_google_ads_googleads_v17_services_local_services_lead_service_proto_rawDesc, + NumEnums: 0, + NumMessages: 4, + NumExtensions: 0, + NumServices: 1, + }, + GoTypes: file_google_ads_googleads_v17_services_local_services_lead_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_local_services_lead_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_local_services_lead_service_proto_msgTypes, + }.Build() + File_google_ads_googleads_v17_services_local_services_lead_service_proto = out.File + file_google_ads_googleads_v17_services_local_services_lead_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_local_services_lead_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_local_services_lead_service_proto_depIdxs = nil +} diff --git a/services/local_services_lead_service_grpc.pb.go b/services/local_services_lead_service_grpc.pb.go new file mode 100644 index 00000000..ba82b466 --- /dev/null +++ b/services/local_services_lead_service_grpc.pb.go @@ -0,0 +1,133 @@ +// Copyright 2024 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-grpc. DO NOT EDIT. +// versions: +// - protoc-gen-go-grpc v1.4.0 +// - protoc v4.24.4 +// source: google/ads/googleads/v17/services/local_services_lead_service.proto + +package services + +import ( + context "context" + grpc "google.golang.org/grpc" + codes "google.golang.org/grpc/codes" + status "google.golang.org/grpc/status" +) + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the grpc package it is being compiled against. +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 + +const ( + LocalServicesLeadService_AppendLeadConversation_FullMethodName = "/google.ads.googleads.v17.services.LocalServicesLeadService/AppendLeadConversation" +) + +// LocalServicesLeadServiceClient is the client API for LocalServicesLeadService service. +// +// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// This service allows management of LocalServicesLead resources. +type LocalServicesLeadServiceClient interface { + // RPC to append Local Services Lead Conversation resources to Local Services + // Lead resources. + AppendLeadConversation(ctx context.Context, in *AppendLeadConversationRequest, opts ...grpc.CallOption) (*AppendLeadConversationResponse, error) +} + +type localServicesLeadServiceClient struct { + cc grpc.ClientConnInterface +} + +func NewLocalServicesLeadServiceClient(cc grpc.ClientConnInterface) LocalServicesLeadServiceClient { + return &localServicesLeadServiceClient{cc} +} + +func (c *localServicesLeadServiceClient) AppendLeadConversation(ctx context.Context, in *AppendLeadConversationRequest, opts ...grpc.CallOption) (*AppendLeadConversationResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) + out := new(AppendLeadConversationResponse) + err := c.cc.Invoke(ctx, LocalServicesLeadService_AppendLeadConversation_FullMethodName, in, out, cOpts...) + if err != nil { + return nil, err + } + return out, nil +} + +// LocalServicesLeadServiceServer is the server API for LocalServicesLeadService service. +// All implementations must embed UnimplementedLocalServicesLeadServiceServer +// for forward compatibility +// +// This service allows management of LocalServicesLead resources. +type LocalServicesLeadServiceServer interface { + // RPC to append Local Services Lead Conversation resources to Local Services + // Lead resources. + AppendLeadConversation(context.Context, *AppendLeadConversationRequest) (*AppendLeadConversationResponse, error) + mustEmbedUnimplementedLocalServicesLeadServiceServer() +} + +// UnimplementedLocalServicesLeadServiceServer must be embedded to have forward compatible implementations. +type UnimplementedLocalServicesLeadServiceServer struct { +} + +func (UnimplementedLocalServicesLeadServiceServer) AppendLeadConversation(context.Context, *AppendLeadConversationRequest) (*AppendLeadConversationResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method AppendLeadConversation not implemented") +} +func (UnimplementedLocalServicesLeadServiceServer) mustEmbedUnimplementedLocalServicesLeadServiceServer() { +} + +// UnsafeLocalServicesLeadServiceServer may be embedded to opt out of forward compatibility for this service. +// Use of this interface is not recommended, as added methods to LocalServicesLeadServiceServer will +// result in compilation errors. +type UnsafeLocalServicesLeadServiceServer interface { + mustEmbedUnimplementedLocalServicesLeadServiceServer() +} + +func RegisterLocalServicesLeadServiceServer(s grpc.ServiceRegistrar, srv LocalServicesLeadServiceServer) { + s.RegisterService(&LocalServicesLeadService_ServiceDesc, srv) +} + +func _LocalServicesLeadService_AppendLeadConversation_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(AppendLeadConversationRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(LocalServicesLeadServiceServer).AppendLeadConversation(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: LocalServicesLeadService_AppendLeadConversation_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(LocalServicesLeadServiceServer).AppendLeadConversation(ctx, req.(*AppendLeadConversationRequest)) + } + return interceptor(ctx, in, info, handler) +} + +// LocalServicesLeadService_ServiceDesc is the grpc.ServiceDesc for LocalServicesLeadService service. +// It's only intended for direct use with grpc.RegisterService, +// and not to be introspected or modified (even as a copy) +var LocalServicesLeadService_ServiceDesc = grpc.ServiceDesc{ + ServiceName: "google.ads.googleads.v17.services.LocalServicesLeadService", + HandlerType: (*LocalServicesLeadServiceServer)(nil), + Methods: []grpc.MethodDesc{ + { + MethodName: "AppendLeadConversation", + Handler: _LocalServicesLeadService_AppendLeadConversation_Handler, + }, + }, + Streams: []grpc.StreamDesc{}, + Metadata: "google/ads/googleads/v17/services/local_services_lead_service.proto", +} diff --git a/services/offline_user_data_job_service.pb.go b/services/offline_user_data_job_service.pb.go index 1b26d23c..050d6180 100644 --- a/services/offline_user_data_job_service.pb.go +++ b/services/offline_user_data_job_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/offline_user_data_job_service.proto +// source: google/ads/googleads/v17/services/offline_user_data_job_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [OfflineUserDataJobService.CreateOfflineUserDataJob][google.ads.googleads.v16.services.OfflineUserDataJobService.CreateOfflineUserDataJob]. +// [OfflineUserDataJobService.CreateOfflineUserDataJob][google.ads.googleads.v17.services.OfflineUserDataJobService.CreateOfflineUserDataJob]. type CreateOfflineUserDataJobRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -63,7 +63,7 @@ type CreateOfflineUserDataJobRequest struct { func (x *CreateOfflineUserDataJobRequest) Reset() { *x = CreateOfflineUserDataJobRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76,7 +76,7 @@ func (x *CreateOfflineUserDataJobRequest) String() string { func (*CreateOfflineUserDataJobRequest) ProtoMessage() {} func (x *CreateOfflineUserDataJobRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_offline_user_data_job_service_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 *CreateOfflineUserDataJobRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateOfflineUserDataJobRequest.ProtoReflect.Descriptor instead. func (*CreateOfflineUserDataJobRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_rawDescGZIP(), []int{0} } func (x *CreateOfflineUserDataJobRequest) GetCustomerId() string { @@ -121,7 +121,7 @@ func (x *CreateOfflineUserDataJobRequest) GetEnableMatchRateRangePreview() bool } // Response message for -// [OfflineUserDataJobService.CreateOfflineUserDataJob][google.ads.googleads.v16.services.OfflineUserDataJobService.CreateOfflineUserDataJob]. +// [OfflineUserDataJobService.CreateOfflineUserDataJob][google.ads.googleads.v17.services.OfflineUserDataJobService.CreateOfflineUserDataJob]. type CreateOfflineUserDataJobResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -134,7 +134,7 @@ type CreateOfflineUserDataJobResponse struct { func (x *CreateOfflineUserDataJobResponse) Reset() { *x = CreateOfflineUserDataJobResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -147,7 +147,7 @@ func (x *CreateOfflineUserDataJobResponse) String() string { func (*CreateOfflineUserDataJobResponse) ProtoMessage() {} func (x *CreateOfflineUserDataJobResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -160,7 +160,7 @@ func (x *CreateOfflineUserDataJobResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateOfflineUserDataJobResponse.ProtoReflect.Descriptor instead. func (*CreateOfflineUserDataJobResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_rawDescGZIP(), []int{1} } func (x *CreateOfflineUserDataJobResponse) GetResourceName() string { @@ -171,7 +171,7 @@ func (x *CreateOfflineUserDataJobResponse) GetResourceName() string { } // Request message for -// [OfflineUserDataJobService.RunOfflineUserDataJob][google.ads.googleads.v16.services.OfflineUserDataJobService.RunOfflineUserDataJob]. +// [OfflineUserDataJobService.RunOfflineUserDataJob][google.ads.googleads.v17.services.OfflineUserDataJobService.RunOfflineUserDataJob]. type RunOfflineUserDataJobRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -187,7 +187,7 @@ type RunOfflineUserDataJobRequest struct { func (x *RunOfflineUserDataJobRequest) Reset() { *x = RunOfflineUserDataJobRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -200,7 +200,7 @@ func (x *RunOfflineUserDataJobRequest) String() string { func (*RunOfflineUserDataJobRequest) ProtoMessage() {} func (x *RunOfflineUserDataJobRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -213,7 +213,7 @@ func (x *RunOfflineUserDataJobRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RunOfflineUserDataJobRequest.ProtoReflect.Descriptor instead. func (*RunOfflineUserDataJobRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_rawDescGZIP(), []int{2} } func (x *RunOfflineUserDataJobRequest) GetResourceName() string { @@ -231,7 +231,7 @@ func (x *RunOfflineUserDataJobRequest) GetValidateOnly() bool { } // Request message for -// [OfflineUserDataJobService.AddOfflineUserDataJobOperations][google.ads.googleads.v16.services.OfflineUserDataJobService.AddOfflineUserDataJobOperations]. +// [OfflineUserDataJobService.AddOfflineUserDataJobOperations][google.ads.googleads.v17.services.OfflineUserDataJobService.AddOfflineUserDataJobOperations]. type AddOfflineUserDataJobOperationsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -255,7 +255,7 @@ type AddOfflineUserDataJobOperationsRequest struct { func (x *AddOfflineUserDataJobOperationsRequest) Reset() { *x = AddOfflineUserDataJobOperationsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -268,7 +268,7 @@ func (x *AddOfflineUserDataJobOperationsRequest) String() string { func (*AddOfflineUserDataJobOperationsRequest) ProtoMessage() {} func (x *AddOfflineUserDataJobOperationsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -281,7 +281,7 @@ func (x *AddOfflineUserDataJobOperationsRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use AddOfflineUserDataJobOperationsRequest.ProtoReflect.Descriptor instead. func (*AddOfflineUserDataJobOperationsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_rawDescGZIP(), []int{3} } func (x *AddOfflineUserDataJobOperationsRequest) GetResourceName() string { @@ -338,7 +338,7 @@ type OfflineUserDataJobOperation struct { func (x *OfflineUserDataJobOperation) Reset() { *x = OfflineUserDataJobOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -351,7 +351,7 @@ func (x *OfflineUserDataJobOperation) String() string { func (*OfflineUserDataJobOperation) ProtoMessage() {} func (x *OfflineUserDataJobOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -364,7 +364,7 @@ func (x *OfflineUserDataJobOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use OfflineUserDataJobOperation.ProtoReflect.Descriptor instead. func (*OfflineUserDataJobOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_rawDescGZIP(), []int{4} } func (m *OfflineUserDataJobOperation) GetOperation() isOfflineUserDataJobOperation_Operation { @@ -424,7 +424,7 @@ func (*OfflineUserDataJobOperation_Remove) isOfflineUserDataJobOperation_Operati func (*OfflineUserDataJobOperation_RemoveAll) isOfflineUserDataJobOperation_Operation() {} // Response message for -// [OfflineUserDataJobService.AddOfflineUserDataJobOperations][google.ads.googleads.v16.services.OfflineUserDataJobService.AddOfflineUserDataJobOperations]. +// [OfflineUserDataJobService.AddOfflineUserDataJobOperations][google.ads.googleads.v17.services.OfflineUserDataJobService.AddOfflineUserDataJobOperations]. type AddOfflineUserDataJobOperationsResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -443,7 +443,7 @@ type AddOfflineUserDataJobOperationsResponse struct { func (x *AddOfflineUserDataJobOperationsResponse) Reset() { *x = AddOfflineUserDataJobOperationsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -456,7 +456,7 @@ func (x *AddOfflineUserDataJobOperationsResponse) String() string { func (*AddOfflineUserDataJobOperationsResponse) ProtoMessage() {} func (x *AddOfflineUserDataJobOperationsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -469,7 +469,7 @@ func (x *AddOfflineUserDataJobOperationsResponse) ProtoReflect() protoreflect.Me // Deprecated: Use AddOfflineUserDataJobOperationsResponse.ProtoReflect.Descriptor instead. func (*AddOfflineUserDataJobOperationsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_rawDescGZIP(), []int{5} } func (x *AddOfflineUserDataJobOperationsResponse) GetPartialFailureError() *status.Status { @@ -486,21 +486,21 @@ func (x *AddOfflineUserDataJobOperationsResponse) GetWarning() *status.Status { return nil } -var File_google_ads_googleads_v16_services_offline_user_data_job_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_offline_user_data_job_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_offline_user_data_job_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x37, 0x67, 0x6f, 0x6f, 0x67, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 0x2f, 0x6f, 0x66, 0x66, 0x6c, + 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, 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, 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, 0x2f, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6a, 0x6f, 0x62, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, @@ -523,7 +523,7 @@ var file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_r 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x4d, 0x0a, 0x03, 0x6a, 0x6f, 0x62, 0x18, 0x02, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4f, 0x66, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x03, 0x6a, 0x6f, 0x62, 0x12, 0x23, 0x0a, 0x0d, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, @@ -567,7 +567,7 @@ var file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_r 0x62, 0x6c, 0x65, 0x57, 0x61, 0x72, 0x6e, 0x69, 0x6e, 0x67, 0x73, 0x88, 0x01, 0x01, 0x12, 0x63, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x03, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, @@ -581,11 +581,11 @@ var file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_r 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x43, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, + 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x43, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 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, 0x55, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x12, 0x1f, 0x0a, 0x0a, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x5f, 0x61, 0x6c, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x09, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x41, @@ -605,41 +605,41 @@ var file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_r 0xfb, 0x01, 0x0a, 0x18, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x56, 0xda, 0x41, 0x0f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6a, 0x6f, 0x62, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3e, 0x3a, - 0x01, 0x2a, 0x22, 0x39, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x01, 0x2a, 0x22, 0x39, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x73, 0x3a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0xa4, 0x02, 0x0a, 0x1f, 0x41, 0x64, 0x64, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x64, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x64, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x6a, 0xda, 0x41, 0x18, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x49, 0x3a, 0x01, 0x2a, 0x22, 0x44, - 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, + 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x2a, 0x2f, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x73, 0x2f, 0x2a, 0x7d, 0x3a, 0x61, 0x64, 0x64, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0xa8, 0x02, 0x0a, 0x15, 0x52, 0x75, 0x6e, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x75, 0x6e, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x6e, 0x67, 0x72, 0x75, 0x6e, @@ -647,11 +647,11 @@ var file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_r 0x01, 0xca, 0x41, 0x56, 0x0a, 0x15, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x3d, 0x67, 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, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xda, 0x41, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3f, - 0x3a, 0x01, 0x2a, 0x22, 0x3a, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x3a, 0x01, 0x2a, 0x22, 0x3a, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x2a, 0x2f, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x73, 0x2f, 0x2a, 0x7d, 0x3a, 0x72, 0x75, 0x6e, 0x1a, @@ -661,62 +661,62 @@ var file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_r 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x8a, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1e, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, - 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, + 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_rawDescData = file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_rawDesc + file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_rawDescData = file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_rawDescData -} - -var file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) -var file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_goTypes = []interface{}{ - (*CreateOfflineUserDataJobRequest)(nil), // 0: google.ads.googleads.v16.services.CreateOfflineUserDataJobRequest - (*CreateOfflineUserDataJobResponse)(nil), // 1: google.ads.googleads.v16.services.CreateOfflineUserDataJobResponse - (*RunOfflineUserDataJobRequest)(nil), // 2: google.ads.googleads.v16.services.RunOfflineUserDataJobRequest - (*AddOfflineUserDataJobOperationsRequest)(nil), // 3: google.ads.googleads.v16.services.AddOfflineUserDataJobOperationsRequest - (*OfflineUserDataJobOperation)(nil), // 4: google.ads.googleads.v16.services.OfflineUserDataJobOperation - (*AddOfflineUserDataJobOperationsResponse)(nil), // 5: google.ads.googleads.v16.services.AddOfflineUserDataJobOperationsResponse - (*resources.OfflineUserDataJob)(nil), // 6: google.ads.googleads.v16.resources.OfflineUserDataJob - (*common.UserData)(nil), // 7: google.ads.googleads.v16.common.UserData + return file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_rawDescData +} + +var file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) +var file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_goTypes = []interface{}{ + (*CreateOfflineUserDataJobRequest)(nil), // 0: google.ads.googleads.v17.services.CreateOfflineUserDataJobRequest + (*CreateOfflineUserDataJobResponse)(nil), // 1: google.ads.googleads.v17.services.CreateOfflineUserDataJobResponse + (*RunOfflineUserDataJobRequest)(nil), // 2: google.ads.googleads.v17.services.RunOfflineUserDataJobRequest + (*AddOfflineUserDataJobOperationsRequest)(nil), // 3: google.ads.googleads.v17.services.AddOfflineUserDataJobOperationsRequest + (*OfflineUserDataJobOperation)(nil), // 4: google.ads.googleads.v17.services.OfflineUserDataJobOperation + (*AddOfflineUserDataJobOperationsResponse)(nil), // 5: google.ads.googleads.v17.services.AddOfflineUserDataJobOperationsResponse + (*resources.OfflineUserDataJob)(nil), // 6: google.ads.googleads.v17.resources.OfflineUserDataJob + (*common.UserData)(nil), // 7: google.ads.googleads.v17.common.UserData (*status.Status)(nil), // 8: google.rpc.Status (*longrunningpb.Operation)(nil), // 9: google.longrunning.Operation } -var file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_depIdxs = []int32{ - 6, // 0: google.ads.googleads.v16.services.CreateOfflineUserDataJobRequest.job:type_name -> google.ads.googleads.v16.resources.OfflineUserDataJob - 4, // 1: google.ads.googleads.v16.services.AddOfflineUserDataJobOperationsRequest.operations:type_name -> google.ads.googleads.v16.services.OfflineUserDataJobOperation - 7, // 2: google.ads.googleads.v16.services.OfflineUserDataJobOperation.create:type_name -> google.ads.googleads.v16.common.UserData - 7, // 3: google.ads.googleads.v16.services.OfflineUserDataJobOperation.remove:type_name -> google.ads.googleads.v16.common.UserData - 8, // 4: google.ads.googleads.v16.services.AddOfflineUserDataJobOperationsResponse.partial_failure_error:type_name -> google.rpc.Status - 8, // 5: google.ads.googleads.v16.services.AddOfflineUserDataJobOperationsResponse.warning:type_name -> google.rpc.Status - 0, // 6: google.ads.googleads.v16.services.OfflineUserDataJobService.CreateOfflineUserDataJob:input_type -> google.ads.googleads.v16.services.CreateOfflineUserDataJobRequest - 3, // 7: google.ads.googleads.v16.services.OfflineUserDataJobService.AddOfflineUserDataJobOperations:input_type -> google.ads.googleads.v16.services.AddOfflineUserDataJobOperationsRequest - 2, // 8: google.ads.googleads.v16.services.OfflineUserDataJobService.RunOfflineUserDataJob:input_type -> google.ads.googleads.v16.services.RunOfflineUserDataJobRequest - 1, // 9: google.ads.googleads.v16.services.OfflineUserDataJobService.CreateOfflineUserDataJob:output_type -> google.ads.googleads.v16.services.CreateOfflineUserDataJobResponse - 5, // 10: google.ads.googleads.v16.services.OfflineUserDataJobService.AddOfflineUserDataJobOperations:output_type -> google.ads.googleads.v16.services.AddOfflineUserDataJobOperationsResponse - 9, // 11: google.ads.googleads.v16.services.OfflineUserDataJobService.RunOfflineUserDataJob:output_type -> google.longrunning.Operation +var file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_depIdxs = []int32{ + 6, // 0: google.ads.googleads.v17.services.CreateOfflineUserDataJobRequest.job:type_name -> google.ads.googleads.v17.resources.OfflineUserDataJob + 4, // 1: google.ads.googleads.v17.services.AddOfflineUserDataJobOperationsRequest.operations:type_name -> google.ads.googleads.v17.services.OfflineUserDataJobOperation + 7, // 2: google.ads.googleads.v17.services.OfflineUserDataJobOperation.create:type_name -> google.ads.googleads.v17.common.UserData + 7, // 3: google.ads.googleads.v17.services.OfflineUserDataJobOperation.remove:type_name -> google.ads.googleads.v17.common.UserData + 8, // 4: google.ads.googleads.v17.services.AddOfflineUserDataJobOperationsResponse.partial_failure_error:type_name -> google.rpc.Status + 8, // 5: google.ads.googleads.v17.services.AddOfflineUserDataJobOperationsResponse.warning:type_name -> google.rpc.Status + 0, // 6: google.ads.googleads.v17.services.OfflineUserDataJobService.CreateOfflineUserDataJob:input_type -> google.ads.googleads.v17.services.CreateOfflineUserDataJobRequest + 3, // 7: google.ads.googleads.v17.services.OfflineUserDataJobService.AddOfflineUserDataJobOperations:input_type -> google.ads.googleads.v17.services.AddOfflineUserDataJobOperationsRequest + 2, // 8: google.ads.googleads.v17.services.OfflineUserDataJobService.RunOfflineUserDataJob:input_type -> google.ads.googleads.v17.services.RunOfflineUserDataJobRequest + 1, // 9: google.ads.googleads.v17.services.OfflineUserDataJobService.CreateOfflineUserDataJob:output_type -> google.ads.googleads.v17.services.CreateOfflineUserDataJobResponse + 5, // 10: google.ads.googleads.v17.services.OfflineUserDataJobService.AddOfflineUserDataJobOperations:output_type -> google.ads.googleads.v17.services.AddOfflineUserDataJobOperationsResponse + 9, // 11: google.ads.googleads.v17.services.OfflineUserDataJobService.RunOfflineUserDataJob:output_type -> google.longrunning.Operation 9, // [9:12] is the sub-list for method output_type 6, // [6:9] is the sub-list for method input_type 6, // [6:6] is the sub-list for extension type_name @@ -724,13 +724,13 @@ var file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_d 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_init() } -func file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_init() { - if File_google_ads_googleads_v16_services_offline_user_data_job_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_init() } +func file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_init() { + if File_google_ads_googleads_v17_services_offline_user_data_job_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateOfflineUserDataJobRequest); i { case 0: return &v.state @@ -742,7 +742,7 @@ func file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_ return nil } } - file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateOfflineUserDataJobResponse); i { case 0: return &v.state @@ -754,7 +754,7 @@ func file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_ return nil } } - file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RunOfflineUserDataJobRequest); i { case 0: return &v.state @@ -766,7 +766,7 @@ func file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_ return nil } } - file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AddOfflineUserDataJobOperationsRequest); i { case 0: return &v.state @@ -778,7 +778,7 @@ func file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_ return nil } } - file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*OfflineUserDataJobOperation); i { case 0: return &v.state @@ -790,7 +790,7 @@ func file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_ return nil } } - file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AddOfflineUserDataJobOperationsResponse); i { case 0: return &v.state @@ -803,8 +803,8 @@ func file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_ } } } - file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_msgTypes[3].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_msgTypes[4].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_msgTypes[3].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_msgTypes[4].OneofWrappers = []interface{}{ (*OfflineUserDataJobOperation_Create)(nil), (*OfflineUserDataJobOperation_Remove)(nil), (*OfflineUserDataJobOperation_RemoveAll)(nil), @@ -813,18 +813,18 @@ func file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_ out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_rawDesc, NumEnums: 0, NumMessages: 6, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_offline_user_data_job_service_proto = out.File - file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_offline_user_data_job_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_offline_user_data_job_service_proto = out.File + file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_offline_user_data_job_service_proto_depIdxs = nil } diff --git a/services/offline_user_data_job_service_grpc.pb.go b/services/offline_user_data_job_service_grpc.pb.go index add4e1bb..4fdaeed1 100644 --- a/services/offline_user_data_job_service_grpc.pb.go +++ b/services/offline_user_data_job_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/offline_user_data_job_service.proto +// source: google/ads/googleads/v17/services/offline_user_data_job_service.proto package services @@ -30,18 +30,20 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - OfflineUserDataJobService_CreateOfflineUserDataJob_FullMethodName = "/google.ads.googleads.v16.services.OfflineUserDataJobService/CreateOfflineUserDataJob" - OfflineUserDataJobService_AddOfflineUserDataJobOperations_FullMethodName = "/google.ads.googleads.v16.services.OfflineUserDataJobService/AddOfflineUserDataJobOperations" - OfflineUserDataJobService_RunOfflineUserDataJob_FullMethodName = "/google.ads.googleads.v16.services.OfflineUserDataJobService/RunOfflineUserDataJob" + OfflineUserDataJobService_CreateOfflineUserDataJob_FullMethodName = "/google.ads.googleads.v17.services.OfflineUserDataJobService/CreateOfflineUserDataJob" + OfflineUserDataJobService_AddOfflineUserDataJobOperations_FullMethodName = "/google.ads.googleads.v17.services.OfflineUserDataJobService/AddOfflineUserDataJobOperations" + OfflineUserDataJobService_RunOfflineUserDataJob_FullMethodName = "/google.ads.googleads.v17.services.OfflineUserDataJobService/RunOfflineUserDataJob" ) // OfflineUserDataJobServiceClient is the client API for OfflineUserDataJobService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage offline user data jobs. type OfflineUserDataJobServiceClient interface { // Creates an offline user data job. // @@ -100,8 +102,9 @@ func NewOfflineUserDataJobServiceClient(cc grpc.ClientConnInterface) OfflineUser } func (c *offlineUserDataJobServiceClient) CreateOfflineUserDataJob(ctx context.Context, in *CreateOfflineUserDataJobRequest, opts ...grpc.CallOption) (*CreateOfflineUserDataJobResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(CreateOfflineUserDataJobResponse) - err := c.cc.Invoke(ctx, OfflineUserDataJobService_CreateOfflineUserDataJob_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, OfflineUserDataJobService_CreateOfflineUserDataJob_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -109,8 +112,9 @@ func (c *offlineUserDataJobServiceClient) CreateOfflineUserDataJob(ctx context.C } func (c *offlineUserDataJobServiceClient) AddOfflineUserDataJobOperations(ctx context.Context, in *AddOfflineUserDataJobOperationsRequest, opts ...grpc.CallOption) (*AddOfflineUserDataJobOperationsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(AddOfflineUserDataJobOperationsResponse) - err := c.cc.Invoke(ctx, OfflineUserDataJobService_AddOfflineUserDataJobOperations_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, OfflineUserDataJobService_AddOfflineUserDataJobOperations_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -118,8 +122,9 @@ func (c *offlineUserDataJobServiceClient) AddOfflineUserDataJobOperations(ctx co } func (c *offlineUserDataJobServiceClient) RunOfflineUserDataJob(ctx context.Context, in *RunOfflineUserDataJobRequest, opts ...grpc.CallOption) (*longrunningpb.Operation, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(longrunningpb.Operation) - err := c.cc.Invoke(ctx, OfflineUserDataJobService_RunOfflineUserDataJob_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, OfflineUserDataJobService_RunOfflineUserDataJob_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -129,6 +134,8 @@ func (c *offlineUserDataJobServiceClient) RunOfflineUserDataJob(ctx context.Cont // OfflineUserDataJobServiceServer is the server API for OfflineUserDataJobService service. // All implementations must embed UnimplementedOfflineUserDataJobServiceServer // for forward compatibility +// +// Service to manage offline user data jobs. type OfflineUserDataJobServiceServer interface { // Creates an offline user data job. // @@ -264,7 +271,7 @@ func _OfflineUserDataJobService_RunOfflineUserDataJob_Handler(srv interface{}, c // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var OfflineUserDataJobService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.OfflineUserDataJobService", + ServiceName: "google.ads.googleads.v17.services.OfflineUserDataJobService", HandlerType: (*OfflineUserDataJobServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -281,5 +288,5 @@ var OfflineUserDataJobService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/offline_user_data_job_service.proto", + Metadata: "google/ads/googleads/v17/services/offline_user_data_job_service.proto", } diff --git a/services/payments_account_service.pb.go b/services/payments_account_service.pb.go index 37686af3..76fbdc17 100644 --- a/services/payments_account_service.pb.go +++ b/services/payments_account_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/payments_account_service.proto +// source: google/ads/googleads/v17/services/payments_account_service.proto package services @@ -50,7 +50,7 @@ type ListPaymentsAccountsRequest struct { func (x *ListPaymentsAccountsRequest) Reset() { *x = ListPaymentsAccountsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_payments_account_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_payments_account_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -63,7 +63,7 @@ func (x *ListPaymentsAccountsRequest) String() string { func (*ListPaymentsAccountsRequest) ProtoMessage() {} func (x *ListPaymentsAccountsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_payments_account_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_payments_account_service_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 *ListPaymentsAccountsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListPaymentsAccountsRequest.ProtoReflect.Descriptor instead. func (*ListPaymentsAccountsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_payments_account_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_payments_account_service_proto_rawDescGZIP(), []int{0} } func (x *ListPaymentsAccountsRequest) GetCustomerId() string { @@ -87,7 +87,7 @@ func (x *ListPaymentsAccountsRequest) GetCustomerId() string { } // Response message for -// [PaymentsAccountService.ListPaymentsAccounts][google.ads.googleads.v16.services.PaymentsAccountService.ListPaymentsAccounts]. +// [PaymentsAccountService.ListPaymentsAccounts][google.ads.googleads.v17.services.PaymentsAccountService.ListPaymentsAccounts]. type ListPaymentsAccountsResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -100,7 +100,7 @@ type ListPaymentsAccountsResponse struct { func (x *ListPaymentsAccountsResponse) Reset() { *x = ListPaymentsAccountsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_payments_account_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_payments_account_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *ListPaymentsAccountsResponse) String() string { func (*ListPaymentsAccountsResponse) ProtoMessage() {} func (x *ListPaymentsAccountsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_payments_account_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_payments_account_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,7 +126,7 @@ func (x *ListPaymentsAccountsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListPaymentsAccountsResponse.ProtoReflect.Descriptor instead. func (*ListPaymentsAccountsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_payments_account_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_payments_account_service_proto_rawDescGZIP(), []int{1} } func (x *ListPaymentsAccountsResponse) GetPaymentsAccounts() []*resources.PaymentsAccount { @@ -136,17 +136,17 @@ func (x *ListPaymentsAccountsResponse) GetPaymentsAccounts() []*resources.Paymen return nil } -var File_google_ads_googleads_v16_services_payments_account_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_payments_account_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_payments_account_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_payments_account_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, @@ -164,23 +164,23 @@ var file_google_ads_googleads_v16_services_payments_account_service_proto_rawDes 0x0a, 0x11, 0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 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, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x50, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x10, 0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x32, 0xc0, 0x02, 0x0a, 0x16, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xde, 0x01, 0x0a, 0x14, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x45, 0xda, 0x41, 0x0b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x31, 0x12, 0x2f, 0x2f, 0x76, 0x31, - 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, + 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, @@ -189,46 +189,46 @@ var file_google_ads_googleads_v16_services_payments_account_service_proto_rawDes 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x87, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1b, 0x50, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1b, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, + 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, + 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_payments_account_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_payments_account_service_proto_rawDescData = file_google_ads_googleads_v16_services_payments_account_service_proto_rawDesc + file_google_ads_googleads_v17_services_payments_account_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_payments_account_service_proto_rawDescData = file_google_ads_googleads_v17_services_payments_account_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_payments_account_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_payments_account_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_payments_account_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_payments_account_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_payments_account_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_payments_account_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_payments_account_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_payments_account_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_payments_account_service_proto_rawDescData + return file_google_ads_googleads_v17_services_payments_account_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_payments_account_service_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v16_services_payments_account_service_proto_goTypes = []interface{}{ - (*ListPaymentsAccountsRequest)(nil), // 0: google.ads.googleads.v16.services.ListPaymentsAccountsRequest - (*ListPaymentsAccountsResponse)(nil), // 1: google.ads.googleads.v16.services.ListPaymentsAccountsResponse - (*resources.PaymentsAccount)(nil), // 2: google.ads.googleads.v16.resources.PaymentsAccount +var file_google_ads_googleads_v17_services_payments_account_service_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v17_services_payments_account_service_proto_goTypes = []interface{}{ + (*ListPaymentsAccountsRequest)(nil), // 0: google.ads.googleads.v17.services.ListPaymentsAccountsRequest + (*ListPaymentsAccountsResponse)(nil), // 1: google.ads.googleads.v17.services.ListPaymentsAccountsResponse + (*resources.PaymentsAccount)(nil), // 2: google.ads.googleads.v17.resources.PaymentsAccount } -var file_google_ads_googleads_v16_services_payments_account_service_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v16.services.ListPaymentsAccountsResponse.payments_accounts:type_name -> google.ads.googleads.v16.resources.PaymentsAccount - 0, // 1: google.ads.googleads.v16.services.PaymentsAccountService.ListPaymentsAccounts:input_type -> google.ads.googleads.v16.services.ListPaymentsAccountsRequest - 1, // 2: google.ads.googleads.v16.services.PaymentsAccountService.ListPaymentsAccounts:output_type -> google.ads.googleads.v16.services.ListPaymentsAccountsResponse +var file_google_ads_googleads_v17_services_payments_account_service_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v17.services.ListPaymentsAccountsResponse.payments_accounts:type_name -> google.ads.googleads.v17.resources.PaymentsAccount + 0, // 1: google.ads.googleads.v17.services.PaymentsAccountService.ListPaymentsAccounts:input_type -> google.ads.googleads.v17.services.ListPaymentsAccountsRequest + 1, // 2: google.ads.googleads.v17.services.PaymentsAccountService.ListPaymentsAccounts:output_type -> google.ads.googleads.v17.services.ListPaymentsAccountsResponse 2, // [2:3] is the sub-list for method output_type 1, // [1:2] is the sub-list for method input_type 1, // [1:1] is the sub-list for extension type_name @@ -236,13 +236,13 @@ var file_google_ads_googleads_v16_services_payments_account_service_proto_depIdx 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_payments_account_service_proto_init() } -func file_google_ads_googleads_v16_services_payments_account_service_proto_init() { - if File_google_ads_googleads_v16_services_payments_account_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_payments_account_service_proto_init() } +func file_google_ads_googleads_v17_services_payments_account_service_proto_init() { + if File_google_ads_googleads_v17_services_payments_account_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_payments_account_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_payments_account_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListPaymentsAccountsRequest); i { case 0: return &v.state @@ -254,7 +254,7 @@ func file_google_ads_googleads_v16_services_payments_account_service_proto_init( return nil } } - file_google_ads_googleads_v16_services_payments_account_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_payments_account_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListPaymentsAccountsResponse); i { case 0: return &v.state @@ -271,18 +271,18 @@ func file_google_ads_googleads_v16_services_payments_account_service_proto_init( out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_payments_account_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_payments_account_service_proto_rawDesc, NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_payments_account_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_payments_account_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_payments_account_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_payments_account_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_payments_account_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_payments_account_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_payments_account_service_proto = out.File - file_google_ads_googleads_v16_services_payments_account_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_payments_account_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_payments_account_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_payments_account_service_proto = out.File + file_google_ads_googleads_v17_services_payments_account_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_payments_account_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_payments_account_service_proto_depIdxs = nil } diff --git a/services/payments_account_service_grpc.pb.go b/services/payments_account_service_grpc.pb.go index a0f10843..90b45476 100644 --- a/services/payments_account_service_grpc.pb.go +++ b/services/payments_account_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/payments_account_service.proto +// source: google/ads/googleads/v17/services/payments_account_service.proto package services @@ -29,16 +29,19 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - PaymentsAccountService_ListPaymentsAccounts_FullMethodName = "/google.ads.googleads.v16.services.PaymentsAccountService/ListPaymentsAccounts" + PaymentsAccountService_ListPaymentsAccounts_FullMethodName = "/google.ads.googleads.v17.services.PaymentsAccountService/ListPaymentsAccounts" ) // PaymentsAccountServiceClient is the client API for PaymentsAccountService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to provide payments accounts that can be used to set up consolidated +// billing. type PaymentsAccountServiceClient interface { // Returns all payments accounts associated with all managers // between the login customer ID and specified serving customer in the @@ -65,8 +68,9 @@ func NewPaymentsAccountServiceClient(cc grpc.ClientConnInterface) PaymentsAccoun } func (c *paymentsAccountServiceClient) ListPaymentsAccounts(ctx context.Context, in *ListPaymentsAccountsRequest, opts ...grpc.CallOption) (*ListPaymentsAccountsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(ListPaymentsAccountsResponse) - err := c.cc.Invoke(ctx, PaymentsAccountService_ListPaymentsAccounts_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, PaymentsAccountService_ListPaymentsAccounts_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -76,6 +80,9 @@ func (c *paymentsAccountServiceClient) ListPaymentsAccounts(ctx context.Context, // PaymentsAccountServiceServer is the server API for PaymentsAccountService service. // All implementations must embed UnimplementedPaymentsAccountServiceServer // for forward compatibility +// +// Service to provide payments accounts that can be used to set up consolidated +// billing. type PaymentsAccountServiceServer interface { // Returns all payments accounts associated with all managers // between the login customer ID and specified serving customer in the @@ -137,7 +144,7 @@ func _PaymentsAccountService_ListPaymentsAccounts_Handler(srv interface{}, ctx c // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var PaymentsAccountService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.PaymentsAccountService", + ServiceName: "google.ads.googleads.v17.services.PaymentsAccountService", HandlerType: (*PaymentsAccountServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -146,5 +153,5 @@ var PaymentsAccountService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/payments_account_service.proto", + Metadata: "google/ads/googleads/v17/services/payments_account_service.proto", } diff --git a/services/product_link_invitation_service.pb.go b/services/product_link_invitation_service.pb.go index 42586ec5..9f95d3f7 100644 --- a/services/product_link_invitation_service.pb.go +++ b/services/product_link_invitation_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/product_link_invitation_service.proto +// source: google/ads/googleads/v17/services/product_link_invitation_service.proto package services @@ -38,7 +38,7 @@ const ( ) // Request message for -// [ProductLinkInvitationService.CreateProductLinkInvitation][google.ads.googleads.v16.services.ProductLinkInvitationService.CreateProductLinkInvitation]. +// [ProductLinkInvitationService.CreateProductLinkInvitation][google.ads.googleads.v17.services.ProductLinkInvitationService.CreateProductLinkInvitation]. type CreateProductLinkInvitationRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -53,7 +53,7 @@ type CreateProductLinkInvitationRequest struct { func (x *CreateProductLinkInvitationRequest) Reset() { *x = CreateProductLinkInvitationRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_product_link_invitation_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_product_link_invitation_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -66,7 +66,7 @@ func (x *CreateProductLinkInvitationRequest) String() string { func (*CreateProductLinkInvitationRequest) ProtoMessage() {} func (x *CreateProductLinkInvitationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_product_link_invitation_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_product_link_invitation_service_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 *CreateProductLinkInvitationRequest) ProtoReflect() protoreflect.Message // Deprecated: Use CreateProductLinkInvitationRequest.ProtoReflect.Descriptor instead. func (*CreateProductLinkInvitationRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_product_link_invitation_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_product_link_invitation_service_proto_rawDescGZIP(), []int{0} } func (x *CreateProductLinkInvitationRequest) GetCustomerId() string { @@ -109,7 +109,7 @@ type CreateProductLinkInvitationResponse struct { func (x *CreateProductLinkInvitationResponse) Reset() { *x = CreateProductLinkInvitationResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_product_link_invitation_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_product_link_invitation_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -122,7 +122,7 @@ func (x *CreateProductLinkInvitationResponse) String() string { func (*CreateProductLinkInvitationResponse) ProtoMessage() {} func (x *CreateProductLinkInvitationResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_product_link_invitation_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_product_link_invitation_service_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 *CreateProductLinkInvitationResponse) ProtoReflect() protoreflect.Messag // Deprecated: Use CreateProductLinkInvitationResponse.ProtoReflect.Descriptor instead. func (*CreateProductLinkInvitationResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_product_link_invitation_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_product_link_invitation_service_proto_rawDescGZIP(), []int{1} } func (x *CreateProductLinkInvitationResponse) GetResourceName() string { @@ -146,7 +146,7 @@ func (x *CreateProductLinkInvitationResponse) GetResourceName() string { } // Request message for -// [ProductLinkInvitationService.UpdateProductLinkInvitation][google.ads.googleads.v16.services.ProductLinkInvitationService.UpdateProductLinkInvitation]. +// [ProductLinkInvitationService.UpdateProductLinkInvitation][google.ads.googleads.v17.services.ProductLinkInvitationService.UpdateProductLinkInvitation]. type UpdateProductLinkInvitationRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -155,7 +155,7 @@ type UpdateProductLinkInvitationRequest struct { // Required. The ID of the customer being modified. CustomerId string `protobuf:"bytes,1,opt,name=customer_id,json=customerId,proto3" json:"customer_id,omitempty"` // Required. The product link invitation to be created. - ProductLinkInvitationStatus enums.ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus `protobuf:"varint,2,opt,name=product_link_invitation_status,json=productLinkInvitationStatus,proto3,enum=google.ads.googleads.v16.enums.ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus" json:"product_link_invitation_status,omitempty"` + ProductLinkInvitationStatus enums.ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus `protobuf:"varint,2,opt,name=product_link_invitation_status,json=productLinkInvitationStatus,proto3,enum=google.ads.googleads.v17.enums.ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus" json:"product_link_invitation_status,omitempty"` // Required. Resource name of the product link invitation. ResourceName string `protobuf:"bytes,3,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` } @@ -163,7 +163,7 @@ type UpdateProductLinkInvitationRequest struct { func (x *UpdateProductLinkInvitationRequest) Reset() { *x = UpdateProductLinkInvitationRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_product_link_invitation_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_product_link_invitation_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -176,7 +176,7 @@ func (x *UpdateProductLinkInvitationRequest) String() string { func (*UpdateProductLinkInvitationRequest) ProtoMessage() {} func (x *UpdateProductLinkInvitationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_product_link_invitation_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_product_link_invitation_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -189,7 +189,7 @@ func (x *UpdateProductLinkInvitationRequest) ProtoReflect() protoreflect.Message // Deprecated: Use UpdateProductLinkInvitationRequest.ProtoReflect.Descriptor instead. func (*UpdateProductLinkInvitationRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_product_link_invitation_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_product_link_invitation_service_proto_rawDescGZIP(), []int{2} } func (x *UpdateProductLinkInvitationRequest) GetCustomerId() string { @@ -226,7 +226,7 @@ type UpdateProductLinkInvitationResponse struct { func (x *UpdateProductLinkInvitationResponse) Reset() { *x = UpdateProductLinkInvitationResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_product_link_invitation_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_product_link_invitation_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -239,7 +239,7 @@ func (x *UpdateProductLinkInvitationResponse) String() string { func (*UpdateProductLinkInvitationResponse) ProtoMessage() {} func (x *UpdateProductLinkInvitationResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_product_link_invitation_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_product_link_invitation_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -252,7 +252,7 @@ func (x *UpdateProductLinkInvitationResponse) ProtoReflect() protoreflect.Messag // Deprecated: Use UpdateProductLinkInvitationResponse.ProtoReflect.Descriptor instead. func (*UpdateProductLinkInvitationResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_product_link_invitation_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_product_link_invitation_service_proto_rawDescGZIP(), []int{3} } func (x *UpdateProductLinkInvitationResponse) GetResourceName() string { @@ -281,7 +281,7 @@ type RemoveProductLinkInvitationRequest struct { func (x *RemoveProductLinkInvitationRequest) Reset() { *x = RemoveProductLinkInvitationRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_product_link_invitation_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_product_link_invitation_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -294,7 +294,7 @@ func (x *RemoveProductLinkInvitationRequest) String() string { func (*RemoveProductLinkInvitationRequest) ProtoMessage() {} func (x *RemoveProductLinkInvitationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_product_link_invitation_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_product_link_invitation_service_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -307,7 +307,7 @@ func (x *RemoveProductLinkInvitationRequest) ProtoReflect() protoreflect.Message // Deprecated: Use RemoveProductLinkInvitationRequest.ProtoReflect.Descriptor instead. func (*RemoveProductLinkInvitationRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_product_link_invitation_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v17_services_product_link_invitation_service_proto_rawDescGZIP(), []int{4} } func (x *RemoveProductLinkInvitationRequest) GetCustomerId() string { @@ -337,7 +337,7 @@ type RemoveProductLinkInvitationResponse struct { func (x *RemoveProductLinkInvitationResponse) Reset() { *x = RemoveProductLinkInvitationResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_product_link_invitation_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_product_link_invitation_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -350,7 +350,7 @@ func (x *RemoveProductLinkInvitationResponse) String() string { func (*RemoveProductLinkInvitationResponse) ProtoMessage() {} func (x *RemoveProductLinkInvitationResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_product_link_invitation_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_product_link_invitation_service_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -363,7 +363,7 @@ func (x *RemoveProductLinkInvitationResponse) ProtoReflect() protoreflect.Messag // Deprecated: Use RemoveProductLinkInvitationResponse.ProtoReflect.Descriptor instead. func (*RemoveProductLinkInvitationResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_product_link_invitation_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v17_services_product_link_invitation_service_proto_rawDescGZIP(), []int{5} } func (x *RemoveProductLinkInvitationResponse) GetResourceName() string { @@ -373,22 +373,22 @@ func (x *RemoveProductLinkInvitationResponse) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_product_link_invitation_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_product_link_invitation_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_product_link_invitation_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_product_link_invitation_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x43, 0x67, 0x6f, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 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, 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, 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, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, @@ -406,7 +406,7 @@ var file_google_ads_googleads_v16_services_product_link_invitation_service_proto 0x72, 0x49, 0x64, 0x12, 0x76, 0x0a, 0x17, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 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, + 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, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x15, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, @@ -427,7 +427,7 @@ var file_google_ads_googleads_v16_services_product_link_invitation_service_proto 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, 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, + 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, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x49, @@ -472,29 +472,29 @@ var file_google_ads_googleads_v16_services_product_link_invitation_service_proto 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x6d, 0xda, 0x41, 0x23, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x41, 0x3a, 0x01, 0x2a, 0x22, 0x3c, 0x2f, 0x76, 0x31, - 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, + 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x3a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0xb1, 0x02, 0x0a, 0x1b, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x70, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x82, 0x01, 0xda, 0x41, 0x38, 0x63, 0x75, @@ -502,24 +502,24 @@ var file_google_ads_googleads_v16_services_product_link_invitation_service_proto 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x41, 0x3a, 0x01, 0x2a, 0x22, - 0x3c, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, + 0x3c, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x3a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x91, 0x02, 0x0a, 0x1b, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x63, 0xda, 0x41, 0x19, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x41, - 0x3a, 0x01, 0x2a, 0x22, 0x3c, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x3a, 0x01, 0x2a, 0x22, 0x3c, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x3a, 0x72, 0x65, 0x6d, 0x6f, 0x76, @@ -529,56 +529,56 @@ var file_google_ads_googleads_v16_services_product_link_invitation_service_proto 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x8d, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x21, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, + 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_product_link_invitation_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_product_link_invitation_service_proto_rawDescData = file_google_ads_googleads_v16_services_product_link_invitation_service_proto_rawDesc + file_google_ads_googleads_v17_services_product_link_invitation_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_product_link_invitation_service_proto_rawDescData = file_google_ads_googleads_v17_services_product_link_invitation_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_product_link_invitation_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_product_link_invitation_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_product_link_invitation_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_product_link_invitation_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_product_link_invitation_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_product_link_invitation_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_product_link_invitation_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_product_link_invitation_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_product_link_invitation_service_proto_rawDescData -} - -var file_google_ads_googleads_v16_services_product_link_invitation_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) -var file_google_ads_googleads_v16_services_product_link_invitation_service_proto_goTypes = []interface{}{ - (*CreateProductLinkInvitationRequest)(nil), // 0: google.ads.googleads.v16.services.CreateProductLinkInvitationRequest - (*CreateProductLinkInvitationResponse)(nil), // 1: google.ads.googleads.v16.services.CreateProductLinkInvitationResponse - (*UpdateProductLinkInvitationRequest)(nil), // 2: google.ads.googleads.v16.services.UpdateProductLinkInvitationRequest - (*UpdateProductLinkInvitationResponse)(nil), // 3: google.ads.googleads.v16.services.UpdateProductLinkInvitationResponse - (*RemoveProductLinkInvitationRequest)(nil), // 4: google.ads.googleads.v16.services.RemoveProductLinkInvitationRequest - (*RemoveProductLinkInvitationResponse)(nil), // 5: google.ads.googleads.v16.services.RemoveProductLinkInvitationResponse - (*resources.ProductLinkInvitation)(nil), // 6: google.ads.googleads.v16.resources.ProductLinkInvitation - (enums.ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus)(0), // 7: google.ads.googleads.v16.enums.ProductLinkInvitationStatusEnum.ProductLinkInvitationStatus -} -var file_google_ads_googleads_v16_services_product_link_invitation_service_proto_depIdxs = []int32{ - 6, // 0: google.ads.googleads.v16.services.CreateProductLinkInvitationRequest.product_link_invitation:type_name -> google.ads.googleads.v16.resources.ProductLinkInvitation - 7, // 1: google.ads.googleads.v16.services.UpdateProductLinkInvitationRequest.product_link_invitation_status:type_name -> google.ads.googleads.v16.enums.ProductLinkInvitationStatusEnum.ProductLinkInvitationStatus - 0, // 2: google.ads.googleads.v16.services.ProductLinkInvitationService.CreateProductLinkInvitation:input_type -> google.ads.googleads.v16.services.CreateProductLinkInvitationRequest - 2, // 3: google.ads.googleads.v16.services.ProductLinkInvitationService.UpdateProductLinkInvitation:input_type -> google.ads.googleads.v16.services.UpdateProductLinkInvitationRequest - 4, // 4: google.ads.googleads.v16.services.ProductLinkInvitationService.RemoveProductLinkInvitation:input_type -> google.ads.googleads.v16.services.RemoveProductLinkInvitationRequest - 1, // 5: google.ads.googleads.v16.services.ProductLinkInvitationService.CreateProductLinkInvitation:output_type -> google.ads.googleads.v16.services.CreateProductLinkInvitationResponse - 3, // 6: google.ads.googleads.v16.services.ProductLinkInvitationService.UpdateProductLinkInvitation:output_type -> google.ads.googleads.v16.services.UpdateProductLinkInvitationResponse - 5, // 7: google.ads.googleads.v16.services.ProductLinkInvitationService.RemoveProductLinkInvitation:output_type -> google.ads.googleads.v16.services.RemoveProductLinkInvitationResponse + return file_google_ads_googleads_v17_services_product_link_invitation_service_proto_rawDescData +} + +var file_google_ads_googleads_v17_services_product_link_invitation_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) +var file_google_ads_googleads_v17_services_product_link_invitation_service_proto_goTypes = []interface{}{ + (*CreateProductLinkInvitationRequest)(nil), // 0: google.ads.googleads.v17.services.CreateProductLinkInvitationRequest + (*CreateProductLinkInvitationResponse)(nil), // 1: google.ads.googleads.v17.services.CreateProductLinkInvitationResponse + (*UpdateProductLinkInvitationRequest)(nil), // 2: google.ads.googleads.v17.services.UpdateProductLinkInvitationRequest + (*UpdateProductLinkInvitationResponse)(nil), // 3: google.ads.googleads.v17.services.UpdateProductLinkInvitationResponse + (*RemoveProductLinkInvitationRequest)(nil), // 4: google.ads.googleads.v17.services.RemoveProductLinkInvitationRequest + (*RemoveProductLinkInvitationResponse)(nil), // 5: google.ads.googleads.v17.services.RemoveProductLinkInvitationResponse + (*resources.ProductLinkInvitation)(nil), // 6: google.ads.googleads.v17.resources.ProductLinkInvitation + (enums.ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus)(0), // 7: google.ads.googleads.v17.enums.ProductLinkInvitationStatusEnum.ProductLinkInvitationStatus +} +var file_google_ads_googleads_v17_services_product_link_invitation_service_proto_depIdxs = []int32{ + 6, // 0: google.ads.googleads.v17.services.CreateProductLinkInvitationRequest.product_link_invitation:type_name -> google.ads.googleads.v17.resources.ProductLinkInvitation + 7, // 1: google.ads.googleads.v17.services.UpdateProductLinkInvitationRequest.product_link_invitation_status:type_name -> google.ads.googleads.v17.enums.ProductLinkInvitationStatusEnum.ProductLinkInvitationStatus + 0, // 2: google.ads.googleads.v17.services.ProductLinkInvitationService.CreateProductLinkInvitation:input_type -> google.ads.googleads.v17.services.CreateProductLinkInvitationRequest + 2, // 3: google.ads.googleads.v17.services.ProductLinkInvitationService.UpdateProductLinkInvitation:input_type -> google.ads.googleads.v17.services.UpdateProductLinkInvitationRequest + 4, // 4: google.ads.googleads.v17.services.ProductLinkInvitationService.RemoveProductLinkInvitation:input_type -> google.ads.googleads.v17.services.RemoveProductLinkInvitationRequest + 1, // 5: google.ads.googleads.v17.services.ProductLinkInvitationService.CreateProductLinkInvitation:output_type -> google.ads.googleads.v17.services.CreateProductLinkInvitationResponse + 3, // 6: google.ads.googleads.v17.services.ProductLinkInvitationService.UpdateProductLinkInvitation:output_type -> google.ads.googleads.v17.services.UpdateProductLinkInvitationResponse + 5, // 7: google.ads.googleads.v17.services.ProductLinkInvitationService.RemoveProductLinkInvitation:output_type -> google.ads.googleads.v17.services.RemoveProductLinkInvitationResponse 5, // [5:8] is the sub-list for method output_type 2, // [2:5] is the sub-list for method input_type 2, // [2:2] is the sub-list for extension type_name @@ -586,13 +586,13 @@ var file_google_ads_googleads_v16_services_product_link_invitation_service_proto 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_product_link_invitation_service_proto_init() } -func file_google_ads_googleads_v16_services_product_link_invitation_service_proto_init() { - if File_google_ads_googleads_v16_services_product_link_invitation_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_product_link_invitation_service_proto_init() } +func file_google_ads_googleads_v17_services_product_link_invitation_service_proto_init() { + if File_google_ads_googleads_v17_services_product_link_invitation_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_product_link_invitation_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_product_link_invitation_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateProductLinkInvitationRequest); i { case 0: return &v.state @@ -604,7 +604,7 @@ func file_google_ads_googleads_v16_services_product_link_invitation_service_prot return nil } } - file_google_ads_googleads_v16_services_product_link_invitation_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_product_link_invitation_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateProductLinkInvitationResponse); i { case 0: return &v.state @@ -616,7 +616,7 @@ func file_google_ads_googleads_v16_services_product_link_invitation_service_prot return nil } } - file_google_ads_googleads_v16_services_product_link_invitation_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_product_link_invitation_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*UpdateProductLinkInvitationRequest); i { case 0: return &v.state @@ -628,7 +628,7 @@ func file_google_ads_googleads_v16_services_product_link_invitation_service_prot return nil } } - file_google_ads_googleads_v16_services_product_link_invitation_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_product_link_invitation_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*UpdateProductLinkInvitationResponse); i { case 0: return &v.state @@ -640,7 +640,7 @@ func file_google_ads_googleads_v16_services_product_link_invitation_service_prot return nil } } - file_google_ads_googleads_v16_services_product_link_invitation_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_product_link_invitation_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RemoveProductLinkInvitationRequest); i { case 0: return &v.state @@ -652,7 +652,7 @@ func file_google_ads_googleads_v16_services_product_link_invitation_service_prot return nil } } - file_google_ads_googleads_v16_services_product_link_invitation_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_product_link_invitation_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RemoveProductLinkInvitationResponse); i { case 0: return &v.state @@ -669,18 +669,18 @@ func file_google_ads_googleads_v16_services_product_link_invitation_service_prot out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_product_link_invitation_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_product_link_invitation_service_proto_rawDesc, NumEnums: 0, NumMessages: 6, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_product_link_invitation_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_product_link_invitation_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_product_link_invitation_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_product_link_invitation_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_product_link_invitation_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_product_link_invitation_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_product_link_invitation_service_proto = out.File - file_google_ads_googleads_v16_services_product_link_invitation_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_product_link_invitation_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_product_link_invitation_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_product_link_invitation_service_proto = out.File + file_google_ads_googleads_v17_services_product_link_invitation_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_product_link_invitation_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_product_link_invitation_service_proto_depIdxs = nil } diff --git a/services/product_link_invitation_service_grpc.pb.go b/services/product_link_invitation_service_grpc.pb.go index 8529d04d..7438d051 100644 --- a/services/product_link_invitation_service_grpc.pb.go +++ b/services/product_link_invitation_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/product_link_invitation_service.proto +// source: google/ads/googleads/v17/services/product_link_invitation_service.proto package services @@ -29,18 +29,21 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - ProductLinkInvitationService_CreateProductLinkInvitation_FullMethodName = "/google.ads.googleads.v16.services.ProductLinkInvitationService/CreateProductLinkInvitation" - ProductLinkInvitationService_UpdateProductLinkInvitation_FullMethodName = "/google.ads.googleads.v16.services.ProductLinkInvitationService/UpdateProductLinkInvitation" - ProductLinkInvitationService_RemoveProductLinkInvitation_FullMethodName = "/google.ads.googleads.v16.services.ProductLinkInvitationService/RemoveProductLinkInvitation" + ProductLinkInvitationService_CreateProductLinkInvitation_FullMethodName = "/google.ads.googleads.v17.services.ProductLinkInvitationService/CreateProductLinkInvitation" + ProductLinkInvitationService_UpdateProductLinkInvitation_FullMethodName = "/google.ads.googleads.v17.services.ProductLinkInvitationService/UpdateProductLinkInvitation" + ProductLinkInvitationService_RemoveProductLinkInvitation_FullMethodName = "/google.ads.googleads.v17.services.ProductLinkInvitationService/RemoveProductLinkInvitation" ) // ProductLinkInvitationServiceClient is the client API for ProductLinkInvitationService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// This service allows management of product link invitations from Google Ads +// accounts to other accounts. type ProductLinkInvitationServiceClient interface { // Creates a product link invitation. CreateProductLinkInvitation(ctx context.Context, in *CreateProductLinkInvitationRequest, opts ...grpc.CallOption) (*CreateProductLinkInvitationResponse, error) @@ -59,8 +62,9 @@ func NewProductLinkInvitationServiceClient(cc grpc.ClientConnInterface) ProductL } func (c *productLinkInvitationServiceClient) CreateProductLinkInvitation(ctx context.Context, in *CreateProductLinkInvitationRequest, opts ...grpc.CallOption) (*CreateProductLinkInvitationResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(CreateProductLinkInvitationResponse) - err := c.cc.Invoke(ctx, ProductLinkInvitationService_CreateProductLinkInvitation_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, ProductLinkInvitationService_CreateProductLinkInvitation_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -68,8 +72,9 @@ func (c *productLinkInvitationServiceClient) CreateProductLinkInvitation(ctx con } func (c *productLinkInvitationServiceClient) UpdateProductLinkInvitation(ctx context.Context, in *UpdateProductLinkInvitationRequest, opts ...grpc.CallOption) (*UpdateProductLinkInvitationResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(UpdateProductLinkInvitationResponse) - err := c.cc.Invoke(ctx, ProductLinkInvitationService_UpdateProductLinkInvitation_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, ProductLinkInvitationService_UpdateProductLinkInvitation_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -77,8 +82,9 @@ func (c *productLinkInvitationServiceClient) UpdateProductLinkInvitation(ctx con } func (c *productLinkInvitationServiceClient) RemoveProductLinkInvitation(ctx context.Context, in *RemoveProductLinkInvitationRequest, opts ...grpc.CallOption) (*RemoveProductLinkInvitationResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(RemoveProductLinkInvitationResponse) - err := c.cc.Invoke(ctx, ProductLinkInvitationService_RemoveProductLinkInvitation_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, ProductLinkInvitationService_RemoveProductLinkInvitation_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -88,6 +94,9 @@ func (c *productLinkInvitationServiceClient) RemoveProductLinkInvitation(ctx con // ProductLinkInvitationServiceServer is the server API for ProductLinkInvitationService service. // All implementations must embed UnimplementedProductLinkInvitationServiceServer // for forward compatibility +// +// This service allows management of product link invitations from Google Ads +// accounts to other accounts. type ProductLinkInvitationServiceServer interface { // Creates a product link invitation. CreateProductLinkInvitation(context.Context, *CreateProductLinkInvitationRequest) (*CreateProductLinkInvitationResponse, error) @@ -183,7 +192,7 @@ func _ProductLinkInvitationService_RemoveProductLinkInvitation_Handler(srv inter // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var ProductLinkInvitationService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.ProductLinkInvitationService", + ServiceName: "google.ads.googleads.v17.services.ProductLinkInvitationService", HandlerType: (*ProductLinkInvitationServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -200,5 +209,5 @@ var ProductLinkInvitationService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/product_link_invitation_service.proto", + Metadata: "google/ads/googleads/v17/services/product_link_invitation_service.proto", } diff --git a/services/product_link_service.pb.go b/services/product_link_service.pb.go index 7a4dbd50..b71aeb0e 100644 --- a/services/product_link_service.pb.go +++ b/services/product_link_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/product_link_service.proto +// source: google/ads/googleads/v17/services/product_link_service.proto package services @@ -37,7 +37,7 @@ const ( ) // Request message for -// [ProductLinkService.CreateProductLink][google.ads.googleads.v16.services.ProductLinkService.CreateProductLink]. +// [ProductLinkService.CreateProductLink][google.ads.googleads.v17.services.ProductLinkService.CreateProductLink]. type CreateProductLinkRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -52,7 +52,7 @@ type CreateProductLinkRequest struct { func (x *CreateProductLinkRequest) Reset() { *x = CreateProductLinkRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_product_link_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_product_link_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65,7 +65,7 @@ func (x *CreateProductLinkRequest) String() string { func (*CreateProductLinkRequest) ProtoMessage() {} func (x *CreateProductLinkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_product_link_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_product_link_service_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 *CreateProductLinkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateProductLinkRequest.ProtoReflect.Descriptor instead. func (*CreateProductLinkRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_product_link_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_product_link_service_proto_rawDescGZIP(), []int{0} } func (x *CreateProductLinkRequest) GetCustomerId() string { @@ -96,7 +96,7 @@ func (x *CreateProductLinkRequest) GetProductLink() *resources.ProductLink { } // Response message for -// [ProductLinkService.CreateProductLink][google.ads.googleads.v16.services.ProductLinkService.CreateProductLink]. +// [ProductLinkService.CreateProductLink][google.ads.googleads.v17.services.ProductLinkService.CreateProductLink]. type CreateProductLinkResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -109,7 +109,7 @@ type CreateProductLinkResponse struct { func (x *CreateProductLinkResponse) Reset() { *x = CreateProductLinkResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_product_link_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_product_link_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -122,7 +122,7 @@ func (x *CreateProductLinkResponse) String() string { func (*CreateProductLinkResponse) ProtoMessage() {} func (x *CreateProductLinkResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_product_link_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_product_link_service_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 *CreateProductLinkResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateProductLinkResponse.ProtoReflect.Descriptor instead. func (*CreateProductLinkResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_product_link_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_product_link_service_proto_rawDescGZIP(), []int{1} } func (x *CreateProductLinkResponse) GetResourceName() string { @@ -146,7 +146,7 @@ func (x *CreateProductLinkResponse) GetResourceName() string { } // Request message for -// [ProductLinkService.RemoveProductLink][google.ads.googleads.v16.services.ProductLinkService.RemoveProductLink]. +// [ProductLinkService.RemoveProductLink][google.ads.googleads.v17.services.ProductLinkService.RemoveProductLink]. type RemoveProductLinkRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -167,7 +167,7 @@ type RemoveProductLinkRequest struct { func (x *RemoveProductLinkRequest) Reset() { *x = RemoveProductLinkRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_product_link_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_product_link_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -180,7 +180,7 @@ func (x *RemoveProductLinkRequest) String() string { func (*RemoveProductLinkRequest) ProtoMessage() {} func (x *RemoveProductLinkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_product_link_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_product_link_service_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 *RemoveProductLinkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RemoveProductLinkRequest.ProtoReflect.Descriptor instead. func (*RemoveProductLinkRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_product_link_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_product_link_service_proto_rawDescGZIP(), []int{2} } func (x *RemoveProductLinkRequest) GetCustomerId() string { @@ -230,7 +230,7 @@ type RemoveProductLinkResponse struct { func (x *RemoveProductLinkResponse) Reset() { *x = RemoveProductLinkResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_product_link_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_product_link_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -243,7 +243,7 @@ func (x *RemoveProductLinkResponse) String() string { func (*RemoveProductLinkResponse) ProtoMessage() {} func (x *RemoveProductLinkResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_product_link_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_product_link_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -256,7 +256,7 @@ func (x *RemoveProductLinkResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RemoveProductLinkResponse.ProtoReflect.Descriptor instead. func (*RemoveProductLinkResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_product_link_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_product_link_service_proto_rawDescGZIP(), []int{3} } func (x *RemoveProductLinkResponse) GetResourceName() string { @@ -266,17 +266,17 @@ func (x *RemoveProductLinkResponse) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_product_link_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_product_link_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_product_link_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_product_link_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, @@ -292,7 +292,7 @@ var file_google_ads_googleads_v16_services_product_link_service_proto_rawDesc = 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x57, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x18, 0x02, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x22, 0x6b, 0x0a, 0x19, 0x43, 0x72, 0x65, 0x61, 0x74, @@ -325,30 +325,30 @@ var file_google_ads_googleads_v16_services_product_link_service_proto_rawDesc = 0x69, 0x63, 0x65, 0x12, 0xe8, 0x01, 0x0a, 0x11, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x72, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x58, 0xda, 0x41, 0x18, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x6c, 0x69, 0x6e, - 0x6b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x37, 0x3a, 0x01, 0x2a, 0x22, 0x32, 0x2f, 0x76, 0x31, 0x36, + 0x6b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x37, 0x3a, 0x01, 0x2a, 0x22, 0x32, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x73, 0x3a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0xe9, 0x01, 0x0a, 0x11, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x12, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x59, 0xda, 0x41, 0x19, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x82, 0xd3, 0xe4, - 0x93, 0x02, 0x37, 0x3a, 0x01, 0x2a, 0x22, 0x32, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, + 0x93, 0x02, 0x37, 0x3a, 0x01, 0x2a, 0x22, 0x32, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x73, 0x3a, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, @@ -358,49 +358,49 @@ var file_google_ads_googleads_v16_services_product_link_service_proto_rawDesc = 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x83, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x17, 0x50, 0x72, 0x6f, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x17, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, + 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, + 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_product_link_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_product_link_service_proto_rawDescData = file_google_ads_googleads_v16_services_product_link_service_proto_rawDesc + file_google_ads_googleads_v17_services_product_link_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_product_link_service_proto_rawDescData = file_google_ads_googleads_v17_services_product_link_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_product_link_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_product_link_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_product_link_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_product_link_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_product_link_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_product_link_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_product_link_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_product_link_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_product_link_service_proto_rawDescData -} - -var file_google_ads_googleads_v16_services_product_link_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_product_link_service_proto_goTypes = []interface{}{ - (*CreateProductLinkRequest)(nil), // 0: google.ads.googleads.v16.services.CreateProductLinkRequest - (*CreateProductLinkResponse)(nil), // 1: google.ads.googleads.v16.services.CreateProductLinkResponse - (*RemoveProductLinkRequest)(nil), // 2: google.ads.googleads.v16.services.RemoveProductLinkRequest - (*RemoveProductLinkResponse)(nil), // 3: google.ads.googleads.v16.services.RemoveProductLinkResponse - (*resources.ProductLink)(nil), // 4: google.ads.googleads.v16.resources.ProductLink -} -var file_google_ads_googleads_v16_services_product_link_service_proto_depIdxs = []int32{ - 4, // 0: google.ads.googleads.v16.services.CreateProductLinkRequest.product_link:type_name -> google.ads.googleads.v16.resources.ProductLink - 0, // 1: google.ads.googleads.v16.services.ProductLinkService.CreateProductLink:input_type -> google.ads.googleads.v16.services.CreateProductLinkRequest - 2, // 2: google.ads.googleads.v16.services.ProductLinkService.RemoveProductLink:input_type -> google.ads.googleads.v16.services.RemoveProductLinkRequest - 1, // 3: google.ads.googleads.v16.services.ProductLinkService.CreateProductLink:output_type -> google.ads.googleads.v16.services.CreateProductLinkResponse - 3, // 4: google.ads.googleads.v16.services.ProductLinkService.RemoveProductLink:output_type -> google.ads.googleads.v16.services.RemoveProductLinkResponse + return file_google_ads_googleads_v17_services_product_link_service_proto_rawDescData +} + +var file_google_ads_googleads_v17_services_product_link_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_product_link_service_proto_goTypes = []interface{}{ + (*CreateProductLinkRequest)(nil), // 0: google.ads.googleads.v17.services.CreateProductLinkRequest + (*CreateProductLinkResponse)(nil), // 1: google.ads.googleads.v17.services.CreateProductLinkResponse + (*RemoveProductLinkRequest)(nil), // 2: google.ads.googleads.v17.services.RemoveProductLinkRequest + (*RemoveProductLinkResponse)(nil), // 3: google.ads.googleads.v17.services.RemoveProductLinkResponse + (*resources.ProductLink)(nil), // 4: google.ads.googleads.v17.resources.ProductLink +} +var file_google_ads_googleads_v17_services_product_link_service_proto_depIdxs = []int32{ + 4, // 0: google.ads.googleads.v17.services.CreateProductLinkRequest.product_link:type_name -> google.ads.googleads.v17.resources.ProductLink + 0, // 1: google.ads.googleads.v17.services.ProductLinkService.CreateProductLink:input_type -> google.ads.googleads.v17.services.CreateProductLinkRequest + 2, // 2: google.ads.googleads.v17.services.ProductLinkService.RemoveProductLink:input_type -> google.ads.googleads.v17.services.RemoveProductLinkRequest + 1, // 3: google.ads.googleads.v17.services.ProductLinkService.CreateProductLink:output_type -> google.ads.googleads.v17.services.CreateProductLinkResponse + 3, // 4: google.ads.googleads.v17.services.ProductLinkService.RemoveProductLink:output_type -> google.ads.googleads.v17.services.RemoveProductLinkResponse 3, // [3:5] is the sub-list for method output_type 1, // [1:3] is the sub-list for method input_type 1, // [1:1] is the sub-list for extension type_name @@ -408,13 +408,13 @@ var file_google_ads_googleads_v16_services_product_link_service_proto_depIdxs = 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_product_link_service_proto_init() } -func file_google_ads_googleads_v16_services_product_link_service_proto_init() { - if File_google_ads_googleads_v16_services_product_link_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_product_link_service_proto_init() } +func file_google_ads_googleads_v17_services_product_link_service_proto_init() { + if File_google_ads_googleads_v17_services_product_link_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_product_link_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_product_link_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateProductLinkRequest); i { case 0: return &v.state @@ -426,7 +426,7 @@ func file_google_ads_googleads_v16_services_product_link_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_product_link_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_product_link_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateProductLinkResponse); i { case 0: return &v.state @@ -438,7 +438,7 @@ func file_google_ads_googleads_v16_services_product_link_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_product_link_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_product_link_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RemoveProductLinkRequest); i { case 0: return &v.state @@ -450,7 +450,7 @@ func file_google_ads_googleads_v16_services_product_link_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_product_link_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_product_link_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RemoveProductLinkResponse); i { case 0: return &v.state @@ -467,18 +467,18 @@ func file_google_ads_googleads_v16_services_product_link_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_product_link_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_product_link_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_product_link_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_product_link_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_product_link_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_product_link_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_product_link_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_product_link_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_product_link_service_proto = out.File - file_google_ads_googleads_v16_services_product_link_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_product_link_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_product_link_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_product_link_service_proto = out.File + file_google_ads_googleads_v17_services_product_link_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_product_link_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_product_link_service_proto_depIdxs = nil } diff --git a/services/product_link_service_grpc.pb.go b/services/product_link_service_grpc.pb.go index 15751a41..0bf3545d 100644 --- a/services/product_link_service_grpc.pb.go +++ b/services/product_link_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/product_link_service.proto +// source: google/ads/googleads/v17/services/product_link_service.proto package services @@ -29,17 +29,20 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - ProductLinkService_CreateProductLink_FullMethodName = "/google.ads.googleads.v16.services.ProductLinkService/CreateProductLink" - ProductLinkService_RemoveProductLink_FullMethodName = "/google.ads.googleads.v16.services.ProductLinkService/RemoveProductLink" + ProductLinkService_CreateProductLink_FullMethodName = "/google.ads.googleads.v17.services.ProductLinkService/CreateProductLink" + ProductLinkService_RemoveProductLink_FullMethodName = "/google.ads.googleads.v17.services.ProductLinkService/RemoveProductLink" ) // ProductLinkServiceClient is the client API for ProductLinkService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// This service allows management of links between a Google +// Ads customer and another product. type ProductLinkServiceClient interface { // Creates a product link. // @@ -79,8 +82,9 @@ func NewProductLinkServiceClient(cc grpc.ClientConnInterface) ProductLinkService } func (c *productLinkServiceClient) CreateProductLink(ctx context.Context, in *CreateProductLinkRequest, opts ...grpc.CallOption) (*CreateProductLinkResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(CreateProductLinkResponse) - err := c.cc.Invoke(ctx, ProductLinkService_CreateProductLink_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, ProductLinkService_CreateProductLink_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -88,8 +92,9 @@ func (c *productLinkServiceClient) CreateProductLink(ctx context.Context, in *Cr } func (c *productLinkServiceClient) RemoveProductLink(ctx context.Context, in *RemoveProductLinkRequest, opts ...grpc.CallOption) (*RemoveProductLinkResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(RemoveProductLinkResponse) - err := c.cc.Invoke(ctx, ProductLinkService_RemoveProductLink_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, ProductLinkService_RemoveProductLink_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -99,6 +104,9 @@ func (c *productLinkServiceClient) RemoveProductLink(ctx context.Context, in *Re // ProductLinkServiceServer is the server API for ProductLinkService service. // All implementations must embed UnimplementedProductLinkServiceServer // for forward compatibility +// +// This service allows management of links between a Google +// Ads customer and another product. type ProductLinkServiceServer interface { // Creates a product link. // @@ -193,7 +201,7 @@ func _ProductLinkService_RemoveProductLink_Handler(srv interface{}, ctx context. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var ProductLinkService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.ProductLinkService", + ServiceName: "google.ads.googleads.v17.services.ProductLinkService", HandlerType: (*ProductLinkServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -206,5 +214,5 @@ var ProductLinkService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/product_link_service.proto", + Metadata: "google/ads/googleads/v17/services/product_link_service.proto", } diff --git a/services/reach_plan_service.pb.go b/services/reach_plan_service.pb.go index f3ad7378..1ef01ab2 100644 --- a/services/reach_plan_service.pb.go +++ b/services/reach_plan_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/reach_plan_service.proto +// source: google/ads/googleads/v17/services/reach_plan_service.proto package services @@ -38,7 +38,7 @@ const ( ) // Request message for -// [ReachPlanService.ListPlannableLocations][google.ads.googleads.v16.services.ReachPlanService.ListPlannableLocations]. +// [ReachPlanService.ListPlannableLocations][google.ads.googleads.v17.services.ReachPlanService.ListPlannableLocations]. type ListPlannableLocationsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -48,7 +48,7 @@ type ListPlannableLocationsRequest struct { func (x *ListPlannableLocationsRequest) Reset() { *x = ListPlannableLocationsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -61,7 +61,7 @@ func (x *ListPlannableLocationsRequest) String() string { func (*ListPlannableLocationsRequest) ProtoMessage() {} func (x *ListPlannableLocationsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_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 *ListPlannableLocationsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListPlannableLocationsRequest.ProtoReflect.Descriptor instead. func (*ListPlannableLocationsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP(), []int{0} } // The list of plannable locations. @@ -93,7 +93,7 @@ type ListPlannableLocationsResponse struct { func (x *ListPlannableLocationsResponse) Reset() { *x = ListPlannableLocationsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -106,7 +106,7 @@ func (x *ListPlannableLocationsResponse) String() string { func (*ListPlannableLocationsResponse) ProtoMessage() {} func (x *ListPlannableLocationsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -119,7 +119,7 @@ func (x *ListPlannableLocationsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListPlannableLocationsResponse.ProtoReflect.Descriptor instead. func (*ListPlannableLocationsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP(), []int{1} } func (x *ListPlannableLocationsResponse) GetPlannableLocations() []*PlannableLocation { @@ -142,7 +142,7 @@ type PlannableLocation struct { // The parent country (not present if location is a country). // If present, will always be a GeoTargetConstant ID. Additional information // such as country name is provided by - // [ReachPlanService.ListPlannableLocations][google.ads.googleads.v16.services.ReachPlanService.ListPlannableLocations] + // [ReachPlanService.ListPlannableLocations][google.ads.googleads.v17.services.ReachPlanService.ListPlannableLocations] // or GoogleAdsService.Search/SearchStream. ParentCountryId *int64 `protobuf:"varint,6,opt,name=parent_country_id,json=parentCountryId,proto3,oneof" json:"parent_country_id,omitempty"` // The ISO-3166-1 alpha-2 country code that is associated with the location. @@ -155,7 +155,7 @@ type PlannableLocation struct { func (x *PlannableLocation) Reset() { *x = PlannableLocation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -168,7 +168,7 @@ func (x *PlannableLocation) String() string { func (*PlannableLocation) ProtoMessage() {} func (x *PlannableLocation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -181,7 +181,7 @@ func (x *PlannableLocation) ProtoReflect() protoreflect.Message { // Deprecated: Use PlannableLocation.ProtoReflect.Descriptor instead. func (*PlannableLocation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP(), []int{2} } func (x *PlannableLocation) GetId() string { @@ -227,14 +227,14 @@ type ListPlannableProductsRequest struct { // Required. The ID of the selected location for planning. To list the // available plannable location IDs use - // [ReachPlanService.ListPlannableLocations][google.ads.googleads.v16.services.ReachPlanService.ListPlannableLocations]. + // [ReachPlanService.ListPlannableLocations][google.ads.googleads.v17.services.ReachPlanService.ListPlannableLocations]. PlannableLocationId string `protobuf:"bytes,2,opt,name=plannable_location_id,json=plannableLocationId,proto3" json:"plannable_location_id,omitempty"` } func (x *ListPlannableProductsRequest) Reset() { *x = ListPlannableProductsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -247,7 +247,7 @@ func (x *ListPlannableProductsRequest) String() string { func (*ListPlannableProductsRequest) ProtoMessage() {} func (x *ListPlannableProductsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -260,7 +260,7 @@ func (x *ListPlannableProductsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListPlannableProductsRequest.ProtoReflect.Descriptor instead. func (*ListPlannableProductsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP(), []int{3} } func (x *ListPlannableProductsRequest) GetPlannableLocationId() string { @@ -283,7 +283,7 @@ type ListPlannableProductsResponse struct { func (x *ListPlannableProductsResponse) Reset() { *x = ListPlannableProductsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -296,7 +296,7 @@ func (x *ListPlannableProductsResponse) String() string { func (*ListPlannableProductsResponse) ProtoMessage() {} func (x *ListPlannableProductsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -309,7 +309,7 @@ func (x *ListPlannableProductsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListPlannableProductsResponse.ProtoReflect.Descriptor instead. func (*ListPlannableProductsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP(), []int{4} } func (x *ListPlannableProductsResponse) GetProductMetadata() []*ProductMetadata { @@ -328,7 +328,7 @@ type ProductMetadata struct { // The code associated with the ad product (for example: BUMPER, // TRUEVIEW_IN_STREAM). // To list the available plannable product codes use - // [ReachPlanService.ListPlannableProducts][google.ads.googleads.v16.services.ReachPlanService.ListPlannableProducts]. + // [ReachPlanService.ListPlannableProducts][google.ads.googleads.v17.services.ReachPlanService.ListPlannableProducts]. PlannableProductCode *string `protobuf:"bytes,4,opt,name=plannable_product_code,json=plannableProductCode,proto3,oneof" json:"plannable_product_code,omitempty"` // The name associated with the ad product. PlannableProductName string `protobuf:"bytes,3,opt,name=plannable_product_name,json=plannableProductName,proto3" json:"plannable_product_name,omitempty"` @@ -339,7 +339,7 @@ type ProductMetadata struct { func (x *ProductMetadata) Reset() { *x = ProductMetadata{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -352,7 +352,7 @@ func (x *ProductMetadata) String() string { func (*ProductMetadata) ProtoMessage() {} func (x *ProductMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -365,7 +365,7 @@ func (x *ProductMetadata) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductMetadata.ProtoReflect.Descriptor instead. func (*ProductMetadata) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP(), []int{5} } func (x *ProductMetadata) GetPlannableProductCode() string { @@ -398,7 +398,7 @@ type PlannableTargeting struct { // Allowed plannable age ranges for the product for which metrics will be // reported. Actual targeting is computed by mapping this age range onto // standard Google common.AgeRangeInfo values. - AgeRanges []enums.ReachPlanAgeRangeEnum_ReachPlanAgeRange `protobuf:"varint,1,rep,packed,name=age_ranges,json=ageRanges,proto3,enum=google.ads.googleads.v16.enums.ReachPlanAgeRangeEnum_ReachPlanAgeRange" json:"age_ranges,omitempty"` + AgeRanges []enums.ReachPlanAgeRangeEnum_ReachPlanAgeRange `protobuf:"varint,1,rep,packed,name=age_ranges,json=ageRanges,proto3,enum=google.ads.googleads.v17.enums.ReachPlanAgeRangeEnum_ReachPlanAgeRange" json:"age_ranges,omitempty"` // Targetable genders for the ad product. Genders []*common.GenderInfo `protobuf:"bytes,2,rep,name=genders,proto3" json:"genders,omitempty"` // Targetable devices for the ad product. @@ -407,7 +407,7 @@ type PlannableTargeting struct { // GOOGLE_PREFERRED_BUMPER, and GOOGLE_PREFERRED_SHORT products. Devices []*common.DeviceInfo `protobuf:"bytes,3,rep,name=devices,proto3" json:"devices,omitempty"` // Targetable networks for the ad product. - Networks []enums.ReachPlanNetworkEnum_ReachPlanNetwork `protobuf:"varint,4,rep,packed,name=networks,proto3,enum=google.ads.googleads.v16.enums.ReachPlanNetworkEnum_ReachPlanNetwork" json:"networks,omitempty"` + Networks []enums.ReachPlanNetworkEnum_ReachPlanNetwork `protobuf:"varint,4,rep,packed,name=networks,proto3,enum=google.ads.googleads.v17.enums.ReachPlanNetworkEnum_ReachPlanNetwork" json:"networks,omitempty"` // Targetable YouTube Select Lineups for the ad product. YoutubeSelectLineups []*YouTubeSelectLineUp `protobuf:"bytes,5,rep,name=youtube_select_lineups,json=youtubeSelectLineups,proto3" json:"youtube_select_lineups,omitempty"` // Targetable surface combinations for the ad product. @@ -417,7 +417,7 @@ type PlannableTargeting struct { func (x *PlannableTargeting) Reset() { *x = PlannableTargeting{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -430,7 +430,7 @@ func (x *PlannableTargeting) String() string { func (*PlannableTargeting) ProtoMessage() {} func (x *PlannableTargeting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[6] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -443,7 +443,7 @@ func (x *PlannableTargeting) ProtoReflect() protoreflect.Message { // Deprecated: Use PlannableTargeting.ProtoReflect.Descriptor instead. func (*PlannableTargeting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP(), []int{6} } func (x *PlannableTargeting) GetAgeRanges() []enums.ReachPlanAgeRangeEnum_ReachPlanAgeRange { @@ -489,7 +489,7 @@ func (x *PlannableTargeting) GetSurfaceTargeting() *SurfaceTargetingCombinations } // Request message for -// [ReachPlanService.GenerateReachForecast][google.ads.googleads.v16.services.ReachPlanService.GenerateReachForecast]. +// [ReachPlanService.GenerateReachForecast][google.ads.googleads.v17.services.ReachPlanService.GenerateReachForecast]. type GenerateReachForecastRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -556,7 +556,7 @@ type GenerateReachForecastRequest struct { func (x *GenerateReachForecastRequest) Reset() { *x = GenerateReachForecastRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -569,7 +569,7 @@ func (x *GenerateReachForecastRequest) String() string { func (*GenerateReachForecastRequest) ProtoMessage() {} func (x *GenerateReachForecastRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[7] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -582,7 +582,7 @@ func (x *GenerateReachForecastRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GenerateReachForecastRequest.ProtoReflect.Descriptor instead. func (*GenerateReachForecastRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP(), []int{7} } func (x *GenerateReachForecastRequest) GetCustomerId() string { @@ -677,7 +677,7 @@ type EffectiveFrequencyLimit struct { func (x *EffectiveFrequencyLimit) Reset() { *x = EffectiveFrequencyLimit{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -690,7 +690,7 @@ func (x *EffectiveFrequencyLimit) String() string { func (*EffectiveFrequencyLimit) ProtoMessage() {} func (x *EffectiveFrequencyLimit) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[8] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -703,7 +703,7 @@ func (x *EffectiveFrequencyLimit) ProtoReflect() protoreflect.Message { // Deprecated: Use EffectiveFrequencyLimit.ProtoReflect.Descriptor instead. func (*EffectiveFrequencyLimit) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP(), []int{8} } func (x *EffectiveFrequencyLimit) GetEffectiveFrequencyBreakdownLimit() int32 { @@ -723,13 +723,13 @@ type FrequencyCap struct { // Required. The number of impressions, inclusive. Impressions int32 `protobuf:"varint,3,opt,name=impressions,proto3" json:"impressions,omitempty"` // Required. The type of time unit. - 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"` } func (x *FrequencyCap) Reset() { *x = FrequencyCap{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -742,7 +742,7 @@ func (x *FrequencyCap) String() string { func (*FrequencyCap) ProtoMessage() {} func (x *FrequencyCap) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[9] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -755,7 +755,7 @@ func (x *FrequencyCap) ProtoReflect() protoreflect.Message { // Deprecated: Use FrequencyCap.ProtoReflect.Descriptor instead. func (*FrequencyCap) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP(), []int{9} + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP(), []int{9} } func (x *FrequencyCap) GetImpressions() int32 { @@ -780,7 +780,7 @@ type Targeting struct { // The ID of the selected location. Plannable location IDs can be // obtained from - // [ReachPlanService.ListPlannableLocations][google.ads.googleads.v16.services.ReachPlanService.ListPlannableLocations]. + // [ReachPlanService.ListPlannableLocations][google.ads.googleads.v17.services.ReachPlanService.ListPlannableLocations]. // // Requests must set either this field or `plannable_location_ids`. // @@ -793,26 +793,26 @@ type Targeting struct { // `parent_country_id`. Planning for more than `parent_county` is not // supported. Plannable location IDs and their `parent_country_id` can be // obtained from - // [ReachPlanService.ListPlannableLocations][google.ads.googleads.v16.services.ReachPlanService.ListPlannableLocations]. + // [ReachPlanService.ListPlannableLocations][google.ads.googleads.v17.services.ReachPlanService.ListPlannableLocations]. // // Requests must set either this field or `plannable_location_id`. PlannableLocationIds []string `protobuf:"bytes,8,rep,name=plannable_location_ids,json=plannableLocationIds,proto3" json:"plannable_location_ids,omitempty"` // Targeted age range. // An unset value is equivalent to targeting all ages. - AgeRange enums.ReachPlanAgeRangeEnum_ReachPlanAgeRange `protobuf:"varint,2,opt,name=age_range,json=ageRange,proto3,enum=google.ads.googleads.v16.enums.ReachPlanAgeRangeEnum_ReachPlanAgeRange" json:"age_range,omitempty"` + AgeRange enums.ReachPlanAgeRangeEnum_ReachPlanAgeRange `protobuf:"varint,2,opt,name=age_range,json=ageRange,proto3,enum=google.ads.googleads.v17.enums.ReachPlanAgeRangeEnum_ReachPlanAgeRange" json:"age_range,omitempty"` // Targeted genders. // An unset value is equivalent to targeting MALE and FEMALE. Genders []*common.GenderInfo `protobuf:"bytes,3,rep,name=genders,proto3" json:"genders,omitempty"` // Targeted devices. // If not specified, targets all applicable devices. Applicable devices vary // by product and region and can be obtained from - // [ReachPlanService.ListPlannableProducts][google.ads.googleads.v16.services.ReachPlanService.ListPlannableProducts]. + // [ReachPlanService.ListPlannableProducts][google.ads.googleads.v17.services.ReachPlanService.ListPlannableProducts]. Devices []*common.DeviceInfo `protobuf:"bytes,4,rep,name=devices,proto3" json:"devices,omitempty"` // Targetable network for the ad product. // If not specified, targets all applicable networks. Applicable networks vary // by product and region and can be obtained from - // [ReachPlanService.ListPlannableProducts][google.ads.googleads.v16.services.ReachPlanService.ListPlannableProducts]. - Network enums.ReachPlanNetworkEnum_ReachPlanNetwork `protobuf:"varint,5,opt,name=network,proto3,enum=google.ads.googleads.v16.enums.ReachPlanNetworkEnum_ReachPlanNetwork" json:"network,omitempty"` + // [ReachPlanService.ListPlannableProducts][google.ads.googleads.v17.services.ReachPlanService.ListPlannableProducts]. + Network enums.ReachPlanNetworkEnum_ReachPlanNetwork `protobuf:"varint,5,opt,name=network,proto3,enum=google.ads.googleads.v17.enums.ReachPlanNetworkEnum_ReachPlanNetwork" json:"network,omitempty"` // Targeted audiences. // If not specified, does not target any specific audience. AudienceTargeting *AudienceTargeting `protobuf:"bytes,7,opt,name=audience_targeting,json=audienceTargeting,proto3" json:"audience_targeting,omitempty"` @@ -821,7 +821,7 @@ type Targeting struct { func (x *Targeting) Reset() { *x = Targeting{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -834,7 +834,7 @@ func (x *Targeting) String() string { func (*Targeting) ProtoMessage() {} func (x *Targeting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[10] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -847,7 +847,7 @@ func (x *Targeting) ProtoReflect() protoreflect.Message { // Deprecated: Use Targeting.ProtoReflect.Descriptor instead. func (*Targeting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP(), []int{10} + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP(), []int{10} } func (x *Targeting) GetPlannableLocationId() string { @@ -921,7 +921,7 @@ type CampaignDuration struct { func (x *CampaignDuration) Reset() { *x = CampaignDuration{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -934,7 +934,7 @@ func (x *CampaignDuration) String() string { func (*CampaignDuration) ProtoMessage() {} func (x *CampaignDuration) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[11] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -947,7 +947,7 @@ func (x *CampaignDuration) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignDuration.ProtoReflect.Descriptor instead. func (*CampaignDuration) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP(), []int{11} + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP(), []int{11} } func (x *CampaignDuration) GetDurationInDays() int32 { @@ -973,7 +973,7 @@ type PlannedProduct struct { // Required. Selected product for planning. // The code associated with the ad product (for example: Trueview, Bumper). // To list the available plannable product codes use - // [ReachPlanService.ListPlannableProducts][google.ads.googleads.v16.services.ReachPlanService.ListPlannableProducts]. + // [ReachPlanService.ListPlannableProducts][google.ads.googleads.v17.services.ReachPlanService.ListPlannableProducts]. PlannableProductCode *string `protobuf:"bytes,3,opt,name=plannable_product_code,json=plannableProductCode,proto3,oneof" json:"plannable_product_code,omitempty"` // Required. Maximum budget allocation in micros for the selected product. // The value is specified in the selected planning currency_code. @@ -981,14 +981,14 @@ type PlannedProduct struct { BudgetMicros *int64 `protobuf:"varint,4,opt,name=budget_micros,json=budgetMicros,proto3,oneof" json:"budget_micros,omitempty"` // Targeting settings for the selected product. // To list the available targeting for each product use - // [ReachPlanService.ListPlannableProducts][google.ads.googleads.v16.services.ReachPlanService.ListPlannableProducts]. + // [ReachPlanService.ListPlannableProducts][google.ads.googleads.v17.services.ReachPlanService.ListPlannableProducts]. AdvancedProductTargeting *AdvancedProductTargeting `protobuf:"bytes,5,opt,name=advanced_product_targeting,json=advancedProductTargeting,proto3" json:"advanced_product_targeting,omitempty"` } func (x *PlannedProduct) Reset() { *x = PlannedProduct{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[12] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1001,7 +1001,7 @@ func (x *PlannedProduct) String() string { func (*PlannedProduct) ProtoMessage() {} func (x *PlannedProduct) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[12] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[12] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1014,7 +1014,7 @@ func (x *PlannedProduct) ProtoReflect() protoreflect.Message { // Deprecated: Use PlannedProduct.ProtoReflect.Descriptor instead. func (*PlannedProduct) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP(), []int{12} + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP(), []int{12} } func (x *PlannedProduct) GetPlannableProductCode() string { @@ -1053,7 +1053,7 @@ type GenerateReachForecastResponse struct { func (x *GenerateReachForecastResponse) Reset() { *x = GenerateReachForecastResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[13] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1066,7 +1066,7 @@ func (x *GenerateReachForecastResponse) String() string { func (*GenerateReachForecastResponse) ProtoMessage() {} func (x *GenerateReachForecastResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[13] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[13] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1079,7 +1079,7 @@ func (x *GenerateReachForecastResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GenerateReachForecastResponse.ProtoReflect.Descriptor instead. func (*GenerateReachForecastResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP(), []int{13} + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP(), []int{13} } func (x *GenerateReachForecastResponse) GetOnTargetAudienceMetrics() *OnTargetAudienceMetrics { @@ -1109,7 +1109,7 @@ type ReachCurve struct { func (x *ReachCurve) Reset() { *x = ReachCurve{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[14] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1122,7 +1122,7 @@ func (x *ReachCurve) String() string { func (*ReachCurve) ProtoMessage() {} func (x *ReachCurve) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[14] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[14] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1135,7 +1135,7 @@ func (x *ReachCurve) ProtoReflect() protoreflect.Message { // Deprecated: Use ReachCurve.ProtoReflect.Descriptor instead. func (*ReachCurve) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP(), []int{14} + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP(), []int{14} } func (x *ReachCurve) GetReachForecasts() []*ReachForecast { @@ -1163,7 +1163,7 @@ type ReachForecast struct { func (x *ReachForecast) Reset() { *x = ReachForecast{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[15] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1176,7 +1176,7 @@ func (x *ReachForecast) String() string { func (*ReachForecast) ProtoMessage() {} func (x *ReachForecast) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[15] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[15] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1189,7 +1189,7 @@ func (x *ReachForecast) ProtoReflect() protoreflect.Message { // Deprecated: Use ReachForecast.ProtoReflect.Descriptor instead. func (*ReachForecast) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP(), []int{15} + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP(), []int{15} } func (x *ReachForecast) GetCostMicros() int64 { @@ -1278,7 +1278,7 @@ type Forecast struct { func (x *Forecast) Reset() { *x = Forecast{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[16] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1291,7 +1291,7 @@ func (x *Forecast) String() string { func (*Forecast) ProtoMessage() {} func (x *Forecast) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[16] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[16] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1304,7 +1304,7 @@ func (x *Forecast) ProtoReflect() protoreflect.Message { // Deprecated: Use Forecast.ProtoReflect.Descriptor instead. func (*Forecast) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP(), []int{16} + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP(), []int{16} } func (x *Forecast) GetOnTargetReach() int64 { @@ -1406,7 +1406,7 @@ type PlannedProductReachForecast struct { func (x *PlannedProductReachForecast) Reset() { *x = PlannedProductReachForecast{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[17] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1419,7 +1419,7 @@ func (x *PlannedProductReachForecast) String() string { func (*PlannedProductReachForecast) ProtoMessage() {} func (x *PlannedProductReachForecast) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[17] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[17] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1432,7 +1432,7 @@ func (x *PlannedProductReachForecast) ProtoReflect() protoreflect.Message { // Deprecated: Use PlannedProductReachForecast.ProtoReflect.Descriptor instead. func (*PlannedProductReachForecast) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP(), []int{17} + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP(), []int{17} } func (x *PlannedProductReachForecast) GetPlannableProductCode() string { @@ -1518,7 +1518,7 @@ type PlannedProductForecast struct { func (x *PlannedProductForecast) Reset() { *x = PlannedProductForecast{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[18] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1531,7 +1531,7 @@ func (x *PlannedProductForecast) String() string { func (*PlannedProductForecast) ProtoMessage() {} func (x *PlannedProductForecast) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[18] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[18] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1544,7 +1544,7 @@ func (x *PlannedProductForecast) ProtoReflect() protoreflect.Message { // Deprecated: Use PlannedProductForecast.ProtoReflect.Descriptor instead. func (*PlannedProductForecast) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP(), []int{18} + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP(), []int{18} } func (x *PlannedProductForecast) GetOnTargetReach() int64 { @@ -1645,7 +1645,7 @@ type OnTargetAudienceMetrics struct { func (x *OnTargetAudienceMetrics) Reset() { *x = OnTargetAudienceMetrics{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[19] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1658,7 +1658,7 @@ func (x *OnTargetAudienceMetrics) String() string { func (*OnTargetAudienceMetrics) ProtoMessage() {} func (x *OnTargetAudienceMetrics) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[19] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[19] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1671,7 +1671,7 @@ func (x *OnTargetAudienceMetrics) ProtoReflect() protoreflect.Message { // Deprecated: Use OnTargetAudienceMetrics.ProtoReflect.Descriptor instead. func (*OnTargetAudienceMetrics) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP(), []int{19} + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP(), []int{19} } func (x *OnTargetAudienceMetrics) GetYoutubeAudienceSize() int64 { @@ -1722,7 +1722,7 @@ type EffectiveFrequencyBreakdown struct { func (x *EffectiveFrequencyBreakdown) Reset() { *x = EffectiveFrequencyBreakdown{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[20] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[20] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1735,7 +1735,7 @@ func (x *EffectiveFrequencyBreakdown) String() string { func (*EffectiveFrequencyBreakdown) ProtoMessage() {} func (x *EffectiveFrequencyBreakdown) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[20] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[20] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1748,7 +1748,7 @@ func (x *EffectiveFrequencyBreakdown) ProtoReflect() protoreflect.Message { // Deprecated: Use EffectiveFrequencyBreakdown.ProtoReflect.Descriptor instead. func (*EffectiveFrequencyBreakdown) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP(), []int{20} + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP(), []int{20} } func (x *EffectiveFrequencyBreakdown) GetEffectiveFrequency() int32 { @@ -1799,7 +1799,7 @@ type ForecastMetricOptions struct { func (x *ForecastMetricOptions) Reset() { *x = ForecastMetricOptions{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[21] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[21] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1812,7 +1812,7 @@ func (x *ForecastMetricOptions) String() string { func (*ForecastMetricOptions) ProtoMessage() {} func (x *ForecastMetricOptions) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[21] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[21] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1825,7 +1825,7 @@ func (x *ForecastMetricOptions) ProtoReflect() protoreflect.Message { // Deprecated: Use ForecastMetricOptions.ProtoReflect.Descriptor instead. func (*ForecastMetricOptions) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP(), []int{21} + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP(), []int{21} } func (x *ForecastMetricOptions) GetIncludeCoview() bool { @@ -1848,7 +1848,7 @@ type AudienceTargeting struct { func (x *AudienceTargeting) Reset() { *x = AudienceTargeting{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[22] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1861,7 +1861,7 @@ func (x *AudienceTargeting) String() string { func (*AudienceTargeting) ProtoMessage() {} func (x *AudienceTargeting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[22] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[22] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1874,7 +1874,7 @@ func (x *AudienceTargeting) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceTargeting.ProtoReflect.Descriptor instead. func (*AudienceTargeting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP(), []int{22} + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP(), []int{22} } func (x *AudienceTargeting) GetUserInterest() []*common.UserInterestInfo { @@ -1909,7 +1909,7 @@ type AdvancedProductTargeting struct { func (x *AdvancedProductTargeting) Reset() { *x = AdvancedProductTargeting{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[23] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[23] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1922,7 +1922,7 @@ func (x *AdvancedProductTargeting) String() string { func (*AdvancedProductTargeting) ProtoMessage() {} func (x *AdvancedProductTargeting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[23] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[23] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1935,7 +1935,7 @@ func (x *AdvancedProductTargeting) ProtoReflect() protoreflect.Message { // Deprecated: Use AdvancedProductTargeting.ProtoReflect.Descriptor instead. func (*AdvancedProductTargeting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP(), []int{23} + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP(), []int{23} } func (x *AdvancedProductTargeting) GetSurfaceTargetingSettings() *SurfaceTargeting { @@ -1991,7 +1991,7 @@ type YouTubeSelectSettings struct { func (x *YouTubeSelectSettings) Reset() { *x = YouTubeSelectSettings{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[24] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[24] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2004,7 +2004,7 @@ func (x *YouTubeSelectSettings) String() string { func (*YouTubeSelectSettings) ProtoMessage() {} func (x *YouTubeSelectSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[24] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[24] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2017,7 +2017,7 @@ func (x *YouTubeSelectSettings) ProtoReflect() protoreflect.Message { // Deprecated: Use YouTubeSelectSettings.ProtoReflect.Descriptor instead. func (*YouTubeSelectSettings) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP(), []int{24} + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP(), []int{24} } func (x *YouTubeSelectSettings) GetLineupId() int64 { @@ -2042,7 +2042,7 @@ type YouTubeSelectLineUp struct { func (x *YouTubeSelectLineUp) Reset() { *x = YouTubeSelectLineUp{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[25] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[25] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2055,7 +2055,7 @@ func (x *YouTubeSelectLineUp) String() string { func (*YouTubeSelectLineUp) ProtoMessage() {} func (x *YouTubeSelectLineUp) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[25] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[25] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2068,7 +2068,7 @@ func (x *YouTubeSelectLineUp) ProtoReflect() protoreflect.Message { // Deprecated: Use YouTubeSelectLineUp.ProtoReflect.Descriptor instead. func (*YouTubeSelectLineUp) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP(), []int{25} + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP(), []int{25} } func (x *YouTubeSelectLineUp) GetLineupId() int64 { @@ -2100,7 +2100,7 @@ type SurfaceTargetingCombinations struct { func (x *SurfaceTargetingCombinations) Reset() { *x = SurfaceTargetingCombinations{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[26] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[26] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2113,7 +2113,7 @@ func (x *SurfaceTargetingCombinations) String() string { func (*SurfaceTargetingCombinations) ProtoMessage() {} func (x *SurfaceTargetingCombinations) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[26] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[26] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2126,7 +2126,7 @@ func (x *SurfaceTargetingCombinations) ProtoReflect() protoreflect.Message { // Deprecated: Use SurfaceTargetingCombinations.ProtoReflect.Descriptor instead. func (*SurfaceTargetingCombinations) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP(), []int{26} + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP(), []int{26} } func (x *SurfaceTargetingCombinations) GetDefaultTargeting() *SurfaceTargeting { @@ -2151,13 +2151,13 @@ type SurfaceTargeting struct { unknownFields protoimpl.UnknownFields // List of surfaces available to target. - Surfaces []enums.ReachPlanSurfaceEnum_ReachPlanSurface `protobuf:"varint,1,rep,packed,name=surfaces,proto3,enum=google.ads.googleads.v16.enums.ReachPlanSurfaceEnum_ReachPlanSurface" json:"surfaces,omitempty"` + Surfaces []enums.ReachPlanSurfaceEnum_ReachPlanSurface `protobuf:"varint,1,rep,packed,name=surfaces,proto3,enum=google.ads.googleads.v17.enums.ReachPlanSurfaceEnum_ReachPlanSurface" json:"surfaces,omitempty"` } func (x *SurfaceTargeting) Reset() { *x = SurfaceTargeting{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[27] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[27] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2170,7 +2170,7 @@ func (x *SurfaceTargeting) String() string { func (*SurfaceTargeting) ProtoMessage() {} func (x *SurfaceTargeting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[27] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[27] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2183,7 +2183,7 @@ func (x *SurfaceTargeting) ProtoReflect() protoreflect.Message { // Deprecated: Use SurfaceTargeting.ProtoReflect.Descriptor instead. func (*SurfaceTargeting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP(), []int{27} + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP(), []int{27} } func (x *SurfaceTargeting) GetSurfaces() []enums.ReachPlanSurfaceEnum_ReachPlanSurface { @@ -2201,7 +2201,7 @@ type TargetFrequencySettings struct { // Required. The time unit used to describe the time frame for // target_frequency. - TimeUnit enums.TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit `protobuf:"varint,1,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,1,opt,name=time_unit,json=timeUnit,proto3,enum=google.ads.googleads.v17.enums.TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit" json:"time_unit,omitempty"` // Required. The target frequency goal per selected time unit. TargetFrequency int32 `protobuf:"varint,2,opt,name=target_frequency,json=targetFrequency,proto3" json:"target_frequency,omitempty"` } @@ -2209,7 +2209,7 @@ type TargetFrequencySettings struct { func (x *TargetFrequencySettings) Reset() { *x = TargetFrequencySettings{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[28] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[28] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2222,7 +2222,7 @@ func (x *TargetFrequencySettings) String() string { func (*TargetFrequencySettings) ProtoMessage() {} func (x *TargetFrequencySettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[28] + mi := &file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[28] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2235,7 +2235,7 @@ func (x *TargetFrequencySettings) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetFrequencySettings.ProtoReflect.Descriptor instead. func (*TargetFrequencySettings) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP(), []int{28} + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP(), []int{28} } func (x *TargetFrequencySettings) GetTimeUnit() enums.TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit { @@ -2252,38 +2252,38 @@ func (x *TargetFrequencySettings) GetTargetFrequency() int32 { return 0 } -var File_google_ads_googleads_v16_services_reach_plan_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_reach_plan_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_reach_plan_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 0x6e, + 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, 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, + 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, 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, 0x66, 0x72, 0x65, + 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, 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, 0x72, 0x65, 0x61, 0x63, 0x68, + 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, 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, 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, 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, 0x72, + 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, 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, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x66, + 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, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, @@ -2298,7 +2298,7 @@ var file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDesc = [] 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x65, 0x0a, 0x13, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x12, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x8d, 0x02, 0x0a, 0x11, @@ -2329,7 +2329,7 @@ var file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDesc = [] 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5d, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x0f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x22, 0x85, 0x02, 0x0a, 0x0f, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, @@ -2344,7 +2344,7 @@ var file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDesc = [] 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x6c, 0x61, 0x6e, 0x6e, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x12, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x42, 0x19, 0x0a, 0x17, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, @@ -2353,35 +2353,35 @@ var file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDesc = [] 0x69, 0x6e, 0x67, 0x12, 0x66, 0x0a, 0x0a, 0x61, 0x67, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 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, 0x61, 0x63, 0x68, 0x50, 0x6c, + 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x52, 0x09, 0x61, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x12, 0x45, 0x0a, 0x07, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 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, 0x2e, 0x47, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x73, 0x12, 0x45, 0x0a, 0x07, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x73, 0x18, 0x03, 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, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x73, 0x12, 0x61, 0x0a, 0x08, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x18, 0x04, 0x20, 0x03, 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, 0x52, 0x65, 0x61, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x52, 0x08, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x12, 0x6c, 0x0a, 0x16, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x73, 0x18, 0x05, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x65, 0x55, 0x70, 0x52, 0x14, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x73, 0x12, 0x6c, 0x0a, 0x11, 0x73, 0x75, 0x72, 0x66, 0x61, 0x63, 0x65, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x06, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x72, 0x66, 0x61, 0x63, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x10, 0x73, 0x75, 0x72, 0x66, 0x61, 0x63, 0x65, 0x54, @@ -2395,7 +2395,7 @@ var file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDesc = [] 0x63, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x88, 0x01, 0x01, 0x12, 0x65, 0x0a, 0x11, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x10, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, @@ -2406,7 +2406,7 @@ var file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDesc = [] 0x65, 0x5f, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x63, 0x61, 0x70, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x08, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x61, 0x70, 0x52, 0x19, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x61, 0x70, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x3b, 0x0a, 0x17, 0x6d, 0x69, 0x6e, @@ -2417,25 +2417,25 @@ var file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDesc = [] 0x69, 0x76, 0x65, 0x5f, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x0c, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x45, 0x66, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x45, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x48, 0x03, 0x52, 0x17, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x88, 0x01, 0x01, 0x12, 0x4a, 0x0a, 0x09, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x09, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x61, 0x0a, 0x10, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x73, 0x18, 0x07, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x6c, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x65, 0x64, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0f, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x65, 0x64, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x73, 0x12, 0x70, 0x0a, 0x17, 0x66, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0d, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x15, 0x66, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x4f, 0x70, 0x74, @@ -2463,7 +2463,7 @@ var file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDesc = [] 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x6f, 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, + 0x6c, 0x65, 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, 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, 0x42, 0x03, 0xe0, @@ -2478,29 +2478,29 @@ var file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDesc = [] 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x12, 0x64, 0x0a, 0x09, 0x61, 0x67, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x18, 0x02, 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, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x52, 0x08, 0x61, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x45, 0x0a, 0x07, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x73, 0x18, 0x03, 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, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x73, 0x12, 0x45, 0x0a, 0x07, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x73, 0x18, 0x04, 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, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, + 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x73, 0x12, 0x5f, 0x0a, 0x07, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x18, 0x05, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x52, 0x07, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x12, 0x63, 0x0a, 0x12, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x11, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x42, 0x18, 0x0a, 0x16, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, @@ -2511,7 +2511,7 @@ var file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDesc = [] 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x44, 0x61, 0x79, 0x73, 0x88, 0x01, 0x01, 0x12, 0x49, 0x0a, 0x0a, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x18, 0x03, 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, + 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, 0x61, 0x74, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x52, 0x09, 0x64, 0x61, 0x74, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x5f, 0x64, 0x61, 0x79, @@ -2527,7 +2527,7 @@ var file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDesc = [] 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x05, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x76, 0x61, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x76, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x18, 0x61, 0x64, 0x76, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x42, 0x19, @@ -2539,20 +2539,20 @@ var file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDesc = [] 0x1a, 0x6f, 0x6e, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x18, 0x01, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4f, 0x6e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x52, 0x17, 0x6f, 0x6e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x12, 0x4e, 0x0a, 0x0b, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x63, 0x75, 0x72, 0x76, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x61, 0x63, 0x68, 0x43, 0x75, 0x72, 0x76, 0x65, 0x52, 0x0a, 0x72, 0x65, 0x61, 0x63, 0x68, 0x43, 0x75, 0x72, 0x76, 0x65, 0x22, 0x67, 0x0a, 0x0a, 0x52, 0x65, 0x61, 0x63, 0x68, 0x43, 0x75, 0x72, 0x76, 0x65, 0x12, 0x59, 0x0a, 0x0f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x66, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x61, 0x63, 0x68, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x52, 0x0e, 0x72, 0x65, 0x61, 0x63, 0x68, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x73, 0x22, 0x81, 0x02, 0x0a, 0x0d, 0x52, 0x65, 0x61, 0x63, 0x68, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, @@ -2560,13 +2560,13 @@ var file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDesc = [] 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x6f, 0x73, 0x74, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x12, 0x47, 0x0a, 0x08, 0x66, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x52, 0x08, 0x66, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x12, 0x85, 0x01, 0x0a, 0x1f, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x66, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x73, 0x18, 0x04, 0x20, 0x03, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x65, 0x64, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x52, 0x65, 0x61, 0x63, 0x68, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x52, 0x1c, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x65, 0x64, 0x50, 0x72, @@ -2591,7 +2591,7 @@ var file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDesc = [] 0x74, 0x69, 0x76, 0x65, 0x5f, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x62, 0x72, 0x65, 0x61, 0x6b, 0x64, 0x6f, 0x77, 0x6e, 0x73, 0x18, 0x0a, 0x20, 0x03, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x45, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x42, 0x72, 0x65, 0x61, 0x6b, 0x64, 0x6f, 0x77, 0x6e, 0x52, 0x1c, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, @@ -2638,7 +2638,7 @@ var file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDesc = [] 0x6e, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x50, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x65, 0x64, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x52, 0x16, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x65, 0x64, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x22, 0xe2, 0x05, @@ -2730,7 +2730,7 @@ var file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDesc = [] 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x56, 0x0a, 0x0d, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 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, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0c, 0x75, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x22, 0x8f, 0x03, 0x0a, 0x18, 0x41, 0x64, 0x76, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x50, 0x72, 0x6f, @@ -2738,14 +2738,14 @@ var file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDesc = [] 0x1a, 0x73, 0x75, 0x72, 0x66, 0x61, 0x63, 0x65, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x72, 0x66, 0x61, 0x63, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x18, 0x73, 0x75, 0x72, 0x66, 0x61, 0x63, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x76, 0x0a, 0x19, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x17, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, @@ -2753,7 +2753,7 @@ var file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDesc = [] 0x75, 0x62, 0x65, 0x5f, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x59, 0x6f, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x48, 0x00, 0x52, 0x15, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x42, 0x14, 0x0a, 0x12, @@ -2772,21 +2772,21 @@ var file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDesc = [] 0x0a, 0x11, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x01, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x72, 0x66, 0x61, 0x63, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x10, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x7d, 0x0a, 0x20, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x72, 0x66, 0x61, 0x63, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x1e, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x75, 0x0a, 0x10, 0x53, 0x75, 0x72, 0x66, 0x61, 0x63, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x61, 0x0a, 0x08, 0x73, 0x75, 0x72, 0x66, 0x61, 0x63, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 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, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x53, 0x75, 0x72, 0x66, 0x61, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x53, 0x75, 0x72, 0x66, 0x61, 0x63, 0x65, 0x52, 0x08, 0x73, 0x75, @@ -2794,7 +2794,7 @@ var file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDesc = [] 0x74, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x75, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x75, 0x6e, 0x69, 0x74, 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, + 0x64, 0x73, 0x2e, 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, 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, @@ -2807,44 +2807,44 @@ var file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDesc = [] 0x01, 0x0a, 0x16, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x26, - 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x3a, 0x01, 0x2a, 0x22, 0x1b, 0x2f, 0x76, 0x31, 0x36, 0x3a, + 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x3a, 0x01, 0x2a, 0x22, 0x1b, 0x2f, 0x76, 0x31, 0x37, 0x3a, 0x6c, 0x69, 0x73, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0xd9, 0x01, 0x0a, 0x15, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x3d, 0xda, 0x41, 0x15, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x82, 0xd3, 0xe4, - 0x93, 0x02, 0x1f, 0x3a, 0x01, 0x2a, 0x22, 0x1a, 0x2f, 0x76, 0x31, 0x36, 0x3a, 0x6c, 0x69, 0x73, + 0x93, 0x02, 0x1f, 0x3a, 0x01, 0x2a, 0x22, 0x1a, 0x2f, 0x76, 0x31, 0x37, 0x3a, 0x6c, 0x69, 0x73, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x73, 0x12, 0x8c, 0x02, 0x0a, 0x15, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x61, 0x63, 0x68, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x61, 0x63, 0x68, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x61, 0x63, 0x68, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x70, 0xda, 0x41, 0x2e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x39, 0x3a, 0x01, 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x31, - 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, + 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x3a, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x61, 0x63, 0x68, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, @@ -2853,122 +2853,122 @@ var file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDesc = [] 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x81, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x15, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, + 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescData = file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDesc + file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescData = file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDescData -} - -var file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes = make([]protoimpl.MessageInfo, 29) -var file_google_ads_googleads_v16_services_reach_plan_service_proto_goTypes = []interface{}{ - (*ListPlannableLocationsRequest)(nil), // 0: google.ads.googleads.v16.services.ListPlannableLocationsRequest - (*ListPlannableLocationsResponse)(nil), // 1: google.ads.googleads.v16.services.ListPlannableLocationsResponse - (*PlannableLocation)(nil), // 2: google.ads.googleads.v16.services.PlannableLocation - (*ListPlannableProductsRequest)(nil), // 3: google.ads.googleads.v16.services.ListPlannableProductsRequest - (*ListPlannableProductsResponse)(nil), // 4: google.ads.googleads.v16.services.ListPlannableProductsResponse - (*ProductMetadata)(nil), // 5: google.ads.googleads.v16.services.ProductMetadata - (*PlannableTargeting)(nil), // 6: google.ads.googleads.v16.services.PlannableTargeting - (*GenerateReachForecastRequest)(nil), // 7: google.ads.googleads.v16.services.GenerateReachForecastRequest - (*EffectiveFrequencyLimit)(nil), // 8: google.ads.googleads.v16.services.EffectiveFrequencyLimit - (*FrequencyCap)(nil), // 9: google.ads.googleads.v16.services.FrequencyCap - (*Targeting)(nil), // 10: google.ads.googleads.v16.services.Targeting - (*CampaignDuration)(nil), // 11: google.ads.googleads.v16.services.CampaignDuration - (*PlannedProduct)(nil), // 12: google.ads.googleads.v16.services.PlannedProduct - (*GenerateReachForecastResponse)(nil), // 13: google.ads.googleads.v16.services.GenerateReachForecastResponse - (*ReachCurve)(nil), // 14: google.ads.googleads.v16.services.ReachCurve - (*ReachForecast)(nil), // 15: google.ads.googleads.v16.services.ReachForecast - (*Forecast)(nil), // 16: google.ads.googleads.v16.services.Forecast - (*PlannedProductReachForecast)(nil), // 17: google.ads.googleads.v16.services.PlannedProductReachForecast - (*PlannedProductForecast)(nil), // 18: google.ads.googleads.v16.services.PlannedProductForecast - (*OnTargetAudienceMetrics)(nil), // 19: google.ads.googleads.v16.services.OnTargetAudienceMetrics - (*EffectiveFrequencyBreakdown)(nil), // 20: google.ads.googleads.v16.services.EffectiveFrequencyBreakdown - (*ForecastMetricOptions)(nil), // 21: google.ads.googleads.v16.services.ForecastMetricOptions - (*AudienceTargeting)(nil), // 22: google.ads.googleads.v16.services.AudienceTargeting - (*AdvancedProductTargeting)(nil), // 23: google.ads.googleads.v16.services.AdvancedProductTargeting - (*YouTubeSelectSettings)(nil), // 24: google.ads.googleads.v16.services.YouTubeSelectSettings - (*YouTubeSelectLineUp)(nil), // 25: google.ads.googleads.v16.services.YouTubeSelectLineUp - (*SurfaceTargetingCombinations)(nil), // 26: google.ads.googleads.v16.services.SurfaceTargetingCombinations - (*SurfaceTargeting)(nil), // 27: google.ads.googleads.v16.services.SurfaceTargeting - (*TargetFrequencySettings)(nil), // 28: google.ads.googleads.v16.services.TargetFrequencySettings - (enums.ReachPlanAgeRangeEnum_ReachPlanAgeRange)(0), // 29: google.ads.googleads.v16.enums.ReachPlanAgeRangeEnum.ReachPlanAgeRange - (*common.GenderInfo)(nil), // 30: google.ads.googleads.v16.common.GenderInfo - (*common.DeviceInfo)(nil), // 31: google.ads.googleads.v16.common.DeviceInfo - (enums.ReachPlanNetworkEnum_ReachPlanNetwork)(0), // 32: google.ads.googleads.v16.enums.ReachPlanNetworkEnum.ReachPlanNetwork - (enums.FrequencyCapTimeUnitEnum_FrequencyCapTimeUnit)(0), // 33: google.ads.googleads.v16.enums.FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit - (*common.DateRange)(nil), // 34: google.ads.googleads.v16.common.DateRange - (*common.UserInterestInfo)(nil), // 35: google.ads.googleads.v16.common.UserInterestInfo - (enums.ReachPlanSurfaceEnum_ReachPlanSurface)(0), // 36: google.ads.googleads.v16.enums.ReachPlanSurfaceEnum.ReachPlanSurface - (enums.TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit)(0), // 37: google.ads.googleads.v16.enums.TargetFrequencyTimeUnitEnum.TargetFrequencyTimeUnit -} -var file_google_ads_googleads_v16_services_reach_plan_service_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v16.services.ListPlannableLocationsResponse.plannable_locations:type_name -> google.ads.googleads.v16.services.PlannableLocation - 5, // 1: google.ads.googleads.v16.services.ListPlannableProductsResponse.product_metadata:type_name -> google.ads.googleads.v16.services.ProductMetadata - 6, // 2: google.ads.googleads.v16.services.ProductMetadata.plannable_targeting:type_name -> google.ads.googleads.v16.services.PlannableTargeting - 29, // 3: google.ads.googleads.v16.services.PlannableTargeting.age_ranges:type_name -> google.ads.googleads.v16.enums.ReachPlanAgeRangeEnum.ReachPlanAgeRange - 30, // 4: google.ads.googleads.v16.services.PlannableTargeting.genders:type_name -> google.ads.googleads.v16.common.GenderInfo - 31, // 5: google.ads.googleads.v16.services.PlannableTargeting.devices:type_name -> google.ads.googleads.v16.common.DeviceInfo - 32, // 6: google.ads.googleads.v16.services.PlannableTargeting.networks:type_name -> google.ads.googleads.v16.enums.ReachPlanNetworkEnum.ReachPlanNetwork - 25, // 7: google.ads.googleads.v16.services.PlannableTargeting.youtube_select_lineups:type_name -> google.ads.googleads.v16.services.YouTubeSelectLineUp - 26, // 8: google.ads.googleads.v16.services.PlannableTargeting.surface_targeting:type_name -> google.ads.googleads.v16.services.SurfaceTargetingCombinations - 11, // 9: google.ads.googleads.v16.services.GenerateReachForecastRequest.campaign_duration:type_name -> google.ads.googleads.v16.services.CampaignDuration - 9, // 10: google.ads.googleads.v16.services.GenerateReachForecastRequest.cookie_frequency_cap_setting:type_name -> google.ads.googleads.v16.services.FrequencyCap - 8, // 11: google.ads.googleads.v16.services.GenerateReachForecastRequest.effective_frequency_limit:type_name -> google.ads.googleads.v16.services.EffectiveFrequencyLimit - 10, // 12: google.ads.googleads.v16.services.GenerateReachForecastRequest.targeting:type_name -> google.ads.googleads.v16.services.Targeting - 12, // 13: google.ads.googleads.v16.services.GenerateReachForecastRequest.planned_products:type_name -> google.ads.googleads.v16.services.PlannedProduct - 21, // 14: google.ads.googleads.v16.services.GenerateReachForecastRequest.forecast_metric_options:type_name -> google.ads.googleads.v16.services.ForecastMetricOptions - 33, // 15: google.ads.googleads.v16.services.FrequencyCap.time_unit:type_name -> google.ads.googleads.v16.enums.FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit - 29, // 16: google.ads.googleads.v16.services.Targeting.age_range:type_name -> google.ads.googleads.v16.enums.ReachPlanAgeRangeEnum.ReachPlanAgeRange - 30, // 17: google.ads.googleads.v16.services.Targeting.genders:type_name -> google.ads.googleads.v16.common.GenderInfo - 31, // 18: google.ads.googleads.v16.services.Targeting.devices:type_name -> google.ads.googleads.v16.common.DeviceInfo - 32, // 19: google.ads.googleads.v16.services.Targeting.network:type_name -> google.ads.googleads.v16.enums.ReachPlanNetworkEnum.ReachPlanNetwork - 22, // 20: google.ads.googleads.v16.services.Targeting.audience_targeting:type_name -> google.ads.googleads.v16.services.AudienceTargeting - 34, // 21: google.ads.googleads.v16.services.CampaignDuration.date_range:type_name -> google.ads.googleads.v16.common.DateRange - 23, // 22: google.ads.googleads.v16.services.PlannedProduct.advanced_product_targeting:type_name -> google.ads.googleads.v16.services.AdvancedProductTargeting - 19, // 23: google.ads.googleads.v16.services.GenerateReachForecastResponse.on_target_audience_metrics:type_name -> google.ads.googleads.v16.services.OnTargetAudienceMetrics - 14, // 24: google.ads.googleads.v16.services.GenerateReachForecastResponse.reach_curve:type_name -> google.ads.googleads.v16.services.ReachCurve - 15, // 25: google.ads.googleads.v16.services.ReachCurve.reach_forecasts:type_name -> google.ads.googleads.v16.services.ReachForecast - 16, // 26: google.ads.googleads.v16.services.ReachForecast.forecast:type_name -> google.ads.googleads.v16.services.Forecast - 17, // 27: google.ads.googleads.v16.services.ReachForecast.planned_product_reach_forecasts:type_name -> google.ads.googleads.v16.services.PlannedProductReachForecast - 20, // 28: google.ads.googleads.v16.services.Forecast.effective_frequency_breakdowns:type_name -> google.ads.googleads.v16.services.EffectiveFrequencyBreakdown - 18, // 29: google.ads.googleads.v16.services.PlannedProductReachForecast.planned_product_forecast:type_name -> google.ads.googleads.v16.services.PlannedProductForecast - 35, // 30: google.ads.googleads.v16.services.AudienceTargeting.user_interest:type_name -> google.ads.googleads.v16.common.UserInterestInfo - 27, // 31: google.ads.googleads.v16.services.AdvancedProductTargeting.surface_targeting_settings:type_name -> google.ads.googleads.v16.services.SurfaceTargeting - 28, // 32: google.ads.googleads.v16.services.AdvancedProductTargeting.target_frequency_settings:type_name -> google.ads.googleads.v16.services.TargetFrequencySettings - 24, // 33: google.ads.googleads.v16.services.AdvancedProductTargeting.youtube_select_settings:type_name -> google.ads.googleads.v16.services.YouTubeSelectSettings - 27, // 34: google.ads.googleads.v16.services.SurfaceTargetingCombinations.default_targeting:type_name -> google.ads.googleads.v16.services.SurfaceTargeting - 27, // 35: google.ads.googleads.v16.services.SurfaceTargetingCombinations.available_targeting_combinations:type_name -> google.ads.googleads.v16.services.SurfaceTargeting - 36, // 36: google.ads.googleads.v16.services.SurfaceTargeting.surfaces:type_name -> google.ads.googleads.v16.enums.ReachPlanSurfaceEnum.ReachPlanSurface - 37, // 37: google.ads.googleads.v16.services.TargetFrequencySettings.time_unit:type_name -> google.ads.googleads.v16.enums.TargetFrequencyTimeUnitEnum.TargetFrequencyTimeUnit - 0, // 38: google.ads.googleads.v16.services.ReachPlanService.ListPlannableLocations:input_type -> google.ads.googleads.v16.services.ListPlannableLocationsRequest - 3, // 39: google.ads.googleads.v16.services.ReachPlanService.ListPlannableProducts:input_type -> google.ads.googleads.v16.services.ListPlannableProductsRequest - 7, // 40: google.ads.googleads.v16.services.ReachPlanService.GenerateReachForecast:input_type -> google.ads.googleads.v16.services.GenerateReachForecastRequest - 1, // 41: google.ads.googleads.v16.services.ReachPlanService.ListPlannableLocations:output_type -> google.ads.googleads.v16.services.ListPlannableLocationsResponse - 4, // 42: google.ads.googleads.v16.services.ReachPlanService.ListPlannableProducts:output_type -> google.ads.googleads.v16.services.ListPlannableProductsResponse - 13, // 43: google.ads.googleads.v16.services.ReachPlanService.GenerateReachForecast:output_type -> google.ads.googleads.v16.services.GenerateReachForecastResponse + return file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDescData +} + +var file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes = make([]protoimpl.MessageInfo, 29) +var file_google_ads_googleads_v17_services_reach_plan_service_proto_goTypes = []interface{}{ + (*ListPlannableLocationsRequest)(nil), // 0: google.ads.googleads.v17.services.ListPlannableLocationsRequest + (*ListPlannableLocationsResponse)(nil), // 1: google.ads.googleads.v17.services.ListPlannableLocationsResponse + (*PlannableLocation)(nil), // 2: google.ads.googleads.v17.services.PlannableLocation + (*ListPlannableProductsRequest)(nil), // 3: google.ads.googleads.v17.services.ListPlannableProductsRequest + (*ListPlannableProductsResponse)(nil), // 4: google.ads.googleads.v17.services.ListPlannableProductsResponse + (*ProductMetadata)(nil), // 5: google.ads.googleads.v17.services.ProductMetadata + (*PlannableTargeting)(nil), // 6: google.ads.googleads.v17.services.PlannableTargeting + (*GenerateReachForecastRequest)(nil), // 7: google.ads.googleads.v17.services.GenerateReachForecastRequest + (*EffectiveFrequencyLimit)(nil), // 8: google.ads.googleads.v17.services.EffectiveFrequencyLimit + (*FrequencyCap)(nil), // 9: google.ads.googleads.v17.services.FrequencyCap + (*Targeting)(nil), // 10: google.ads.googleads.v17.services.Targeting + (*CampaignDuration)(nil), // 11: google.ads.googleads.v17.services.CampaignDuration + (*PlannedProduct)(nil), // 12: google.ads.googleads.v17.services.PlannedProduct + (*GenerateReachForecastResponse)(nil), // 13: google.ads.googleads.v17.services.GenerateReachForecastResponse + (*ReachCurve)(nil), // 14: google.ads.googleads.v17.services.ReachCurve + (*ReachForecast)(nil), // 15: google.ads.googleads.v17.services.ReachForecast + (*Forecast)(nil), // 16: google.ads.googleads.v17.services.Forecast + (*PlannedProductReachForecast)(nil), // 17: google.ads.googleads.v17.services.PlannedProductReachForecast + (*PlannedProductForecast)(nil), // 18: google.ads.googleads.v17.services.PlannedProductForecast + (*OnTargetAudienceMetrics)(nil), // 19: google.ads.googleads.v17.services.OnTargetAudienceMetrics + (*EffectiveFrequencyBreakdown)(nil), // 20: google.ads.googleads.v17.services.EffectiveFrequencyBreakdown + (*ForecastMetricOptions)(nil), // 21: google.ads.googleads.v17.services.ForecastMetricOptions + (*AudienceTargeting)(nil), // 22: google.ads.googleads.v17.services.AudienceTargeting + (*AdvancedProductTargeting)(nil), // 23: google.ads.googleads.v17.services.AdvancedProductTargeting + (*YouTubeSelectSettings)(nil), // 24: google.ads.googleads.v17.services.YouTubeSelectSettings + (*YouTubeSelectLineUp)(nil), // 25: google.ads.googleads.v17.services.YouTubeSelectLineUp + (*SurfaceTargetingCombinations)(nil), // 26: google.ads.googleads.v17.services.SurfaceTargetingCombinations + (*SurfaceTargeting)(nil), // 27: google.ads.googleads.v17.services.SurfaceTargeting + (*TargetFrequencySettings)(nil), // 28: google.ads.googleads.v17.services.TargetFrequencySettings + (enums.ReachPlanAgeRangeEnum_ReachPlanAgeRange)(0), // 29: google.ads.googleads.v17.enums.ReachPlanAgeRangeEnum.ReachPlanAgeRange + (*common.GenderInfo)(nil), // 30: google.ads.googleads.v17.common.GenderInfo + (*common.DeviceInfo)(nil), // 31: google.ads.googleads.v17.common.DeviceInfo + (enums.ReachPlanNetworkEnum_ReachPlanNetwork)(0), // 32: google.ads.googleads.v17.enums.ReachPlanNetworkEnum.ReachPlanNetwork + (enums.FrequencyCapTimeUnitEnum_FrequencyCapTimeUnit)(0), // 33: google.ads.googleads.v17.enums.FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit + (*common.DateRange)(nil), // 34: google.ads.googleads.v17.common.DateRange + (*common.UserInterestInfo)(nil), // 35: google.ads.googleads.v17.common.UserInterestInfo + (enums.ReachPlanSurfaceEnum_ReachPlanSurface)(0), // 36: google.ads.googleads.v17.enums.ReachPlanSurfaceEnum.ReachPlanSurface + (enums.TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit)(0), // 37: google.ads.googleads.v17.enums.TargetFrequencyTimeUnitEnum.TargetFrequencyTimeUnit +} +var file_google_ads_googleads_v17_services_reach_plan_service_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v17.services.ListPlannableLocationsResponse.plannable_locations:type_name -> google.ads.googleads.v17.services.PlannableLocation + 5, // 1: google.ads.googleads.v17.services.ListPlannableProductsResponse.product_metadata:type_name -> google.ads.googleads.v17.services.ProductMetadata + 6, // 2: google.ads.googleads.v17.services.ProductMetadata.plannable_targeting:type_name -> google.ads.googleads.v17.services.PlannableTargeting + 29, // 3: google.ads.googleads.v17.services.PlannableTargeting.age_ranges:type_name -> google.ads.googleads.v17.enums.ReachPlanAgeRangeEnum.ReachPlanAgeRange + 30, // 4: google.ads.googleads.v17.services.PlannableTargeting.genders:type_name -> google.ads.googleads.v17.common.GenderInfo + 31, // 5: google.ads.googleads.v17.services.PlannableTargeting.devices:type_name -> google.ads.googleads.v17.common.DeviceInfo + 32, // 6: google.ads.googleads.v17.services.PlannableTargeting.networks:type_name -> google.ads.googleads.v17.enums.ReachPlanNetworkEnum.ReachPlanNetwork + 25, // 7: google.ads.googleads.v17.services.PlannableTargeting.youtube_select_lineups:type_name -> google.ads.googleads.v17.services.YouTubeSelectLineUp + 26, // 8: google.ads.googleads.v17.services.PlannableTargeting.surface_targeting:type_name -> google.ads.googleads.v17.services.SurfaceTargetingCombinations + 11, // 9: google.ads.googleads.v17.services.GenerateReachForecastRequest.campaign_duration:type_name -> google.ads.googleads.v17.services.CampaignDuration + 9, // 10: google.ads.googleads.v17.services.GenerateReachForecastRequest.cookie_frequency_cap_setting:type_name -> google.ads.googleads.v17.services.FrequencyCap + 8, // 11: google.ads.googleads.v17.services.GenerateReachForecastRequest.effective_frequency_limit:type_name -> google.ads.googleads.v17.services.EffectiveFrequencyLimit + 10, // 12: google.ads.googleads.v17.services.GenerateReachForecastRequest.targeting:type_name -> google.ads.googleads.v17.services.Targeting + 12, // 13: google.ads.googleads.v17.services.GenerateReachForecastRequest.planned_products:type_name -> google.ads.googleads.v17.services.PlannedProduct + 21, // 14: google.ads.googleads.v17.services.GenerateReachForecastRequest.forecast_metric_options:type_name -> google.ads.googleads.v17.services.ForecastMetricOptions + 33, // 15: google.ads.googleads.v17.services.FrequencyCap.time_unit:type_name -> google.ads.googleads.v17.enums.FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit + 29, // 16: google.ads.googleads.v17.services.Targeting.age_range:type_name -> google.ads.googleads.v17.enums.ReachPlanAgeRangeEnum.ReachPlanAgeRange + 30, // 17: google.ads.googleads.v17.services.Targeting.genders:type_name -> google.ads.googleads.v17.common.GenderInfo + 31, // 18: google.ads.googleads.v17.services.Targeting.devices:type_name -> google.ads.googleads.v17.common.DeviceInfo + 32, // 19: google.ads.googleads.v17.services.Targeting.network:type_name -> google.ads.googleads.v17.enums.ReachPlanNetworkEnum.ReachPlanNetwork + 22, // 20: google.ads.googleads.v17.services.Targeting.audience_targeting:type_name -> google.ads.googleads.v17.services.AudienceTargeting + 34, // 21: google.ads.googleads.v17.services.CampaignDuration.date_range:type_name -> google.ads.googleads.v17.common.DateRange + 23, // 22: google.ads.googleads.v17.services.PlannedProduct.advanced_product_targeting:type_name -> google.ads.googleads.v17.services.AdvancedProductTargeting + 19, // 23: google.ads.googleads.v17.services.GenerateReachForecastResponse.on_target_audience_metrics:type_name -> google.ads.googleads.v17.services.OnTargetAudienceMetrics + 14, // 24: google.ads.googleads.v17.services.GenerateReachForecastResponse.reach_curve:type_name -> google.ads.googleads.v17.services.ReachCurve + 15, // 25: google.ads.googleads.v17.services.ReachCurve.reach_forecasts:type_name -> google.ads.googleads.v17.services.ReachForecast + 16, // 26: google.ads.googleads.v17.services.ReachForecast.forecast:type_name -> google.ads.googleads.v17.services.Forecast + 17, // 27: google.ads.googleads.v17.services.ReachForecast.planned_product_reach_forecasts:type_name -> google.ads.googleads.v17.services.PlannedProductReachForecast + 20, // 28: google.ads.googleads.v17.services.Forecast.effective_frequency_breakdowns:type_name -> google.ads.googleads.v17.services.EffectiveFrequencyBreakdown + 18, // 29: google.ads.googleads.v17.services.PlannedProductReachForecast.planned_product_forecast:type_name -> google.ads.googleads.v17.services.PlannedProductForecast + 35, // 30: google.ads.googleads.v17.services.AudienceTargeting.user_interest:type_name -> google.ads.googleads.v17.common.UserInterestInfo + 27, // 31: google.ads.googleads.v17.services.AdvancedProductTargeting.surface_targeting_settings:type_name -> google.ads.googleads.v17.services.SurfaceTargeting + 28, // 32: google.ads.googleads.v17.services.AdvancedProductTargeting.target_frequency_settings:type_name -> google.ads.googleads.v17.services.TargetFrequencySettings + 24, // 33: google.ads.googleads.v17.services.AdvancedProductTargeting.youtube_select_settings:type_name -> google.ads.googleads.v17.services.YouTubeSelectSettings + 27, // 34: google.ads.googleads.v17.services.SurfaceTargetingCombinations.default_targeting:type_name -> google.ads.googleads.v17.services.SurfaceTargeting + 27, // 35: google.ads.googleads.v17.services.SurfaceTargetingCombinations.available_targeting_combinations:type_name -> google.ads.googleads.v17.services.SurfaceTargeting + 36, // 36: google.ads.googleads.v17.services.SurfaceTargeting.surfaces:type_name -> google.ads.googleads.v17.enums.ReachPlanSurfaceEnum.ReachPlanSurface + 37, // 37: google.ads.googleads.v17.services.TargetFrequencySettings.time_unit:type_name -> google.ads.googleads.v17.enums.TargetFrequencyTimeUnitEnum.TargetFrequencyTimeUnit + 0, // 38: google.ads.googleads.v17.services.ReachPlanService.ListPlannableLocations:input_type -> google.ads.googleads.v17.services.ListPlannableLocationsRequest + 3, // 39: google.ads.googleads.v17.services.ReachPlanService.ListPlannableProducts:input_type -> google.ads.googleads.v17.services.ListPlannableProductsRequest + 7, // 40: google.ads.googleads.v17.services.ReachPlanService.GenerateReachForecast:input_type -> google.ads.googleads.v17.services.GenerateReachForecastRequest + 1, // 41: google.ads.googleads.v17.services.ReachPlanService.ListPlannableLocations:output_type -> google.ads.googleads.v17.services.ListPlannableLocationsResponse + 4, // 42: google.ads.googleads.v17.services.ReachPlanService.ListPlannableProducts:output_type -> google.ads.googleads.v17.services.ListPlannableProductsResponse + 13, // 43: google.ads.googleads.v17.services.ReachPlanService.GenerateReachForecast:output_type -> google.ads.googleads.v17.services.GenerateReachForecastResponse 41, // [41:44] is the sub-list for method output_type 38, // [38:41] is the sub-list for method input_type 38, // [38:38] is the sub-list for extension type_name @@ -2976,13 +2976,13 @@ var file_google_ads_googleads_v16_services_reach_plan_service_proto_depIdxs = [] 0, // [0:38] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_reach_plan_service_proto_init() } -func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { - if File_google_ads_googleads_v16_services_reach_plan_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_reach_plan_service_proto_init() } +func file_google_ads_googleads_v17_services_reach_plan_service_proto_init() { + if File_google_ads_googleads_v17_services_reach_plan_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListPlannableLocationsRequest); i { case 0: return &v.state @@ -2994,7 +2994,7 @@ func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListPlannableLocationsResponse); i { case 0: return &v.state @@ -3006,7 +3006,7 @@ func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*PlannableLocation); i { case 0: return &v.state @@ -3018,7 +3018,7 @@ func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListPlannableProductsRequest); i { case 0: return &v.state @@ -3030,7 +3030,7 @@ func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListPlannableProductsResponse); i { case 0: return &v.state @@ -3042,7 +3042,7 @@ func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ProductMetadata); i { case 0: return &v.state @@ -3054,7 +3054,7 @@ func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*PlannableTargeting); i { case 0: return &v.state @@ -3066,7 +3066,7 @@ func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GenerateReachForecastRequest); i { case 0: return &v.state @@ -3078,7 +3078,7 @@ func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*EffectiveFrequencyLimit); i { case 0: return &v.state @@ -3090,7 +3090,7 @@ func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*FrequencyCap); i { case 0: return &v.state @@ -3102,7 +3102,7 @@ func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Targeting); i { case 0: return &v.state @@ -3114,7 +3114,7 @@ func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CampaignDuration); i { case 0: return &v.state @@ -3126,7 +3126,7 @@ func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*PlannedProduct); i { case 0: return &v.state @@ -3138,7 +3138,7 @@ func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GenerateReachForecastResponse); i { case 0: return &v.state @@ -3150,7 +3150,7 @@ func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ReachCurve); i { case 0: return &v.state @@ -3162,7 +3162,7 @@ func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ReachForecast); i { case 0: return &v.state @@ -3174,7 +3174,7 @@ func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Forecast); i { case 0: return &v.state @@ -3186,7 +3186,7 @@ func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*PlannedProductReachForecast); i { case 0: return &v.state @@ -3198,7 +3198,7 @@ func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*PlannedProductForecast); i { case 0: return &v.state @@ -3210,7 +3210,7 @@ func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*OnTargetAudienceMetrics); i { case 0: return &v.state @@ -3222,7 +3222,7 @@ func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*EffectiveFrequencyBreakdown); i { case 0: return &v.state @@ -3234,7 +3234,7 @@ func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ForecastMetricOptions); i { case 0: return &v.state @@ -3246,7 +3246,7 @@ func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AudienceTargeting); i { case 0: return &v.state @@ -3258,7 +3258,7 @@ func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdvancedProductTargeting); i { case 0: return &v.state @@ -3270,7 +3270,7 @@ func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*YouTubeSelectSettings); i { case 0: return &v.state @@ -3282,7 +3282,7 @@ func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*YouTubeSelectLineUp); i { case 0: return &v.state @@ -3294,7 +3294,7 @@ func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SurfaceTargetingCombinations); i { case 0: return &v.state @@ -3306,7 +3306,7 @@ func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SurfaceTargeting); i { case 0: return &v.state @@ -3318,7 +3318,7 @@ func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TargetFrequencySettings); i { case 0: return &v.state @@ -3331,35 +3331,35 @@ func file_google_ads_googleads_v16_services_reach_plan_service_proto_init() { } } } - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[2].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[5].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[7].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[10].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[11].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[12].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[16].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[18].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[19].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[20].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes[23].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[2].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[5].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[7].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[10].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[11].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[12].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[16].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[18].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[19].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[20].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes[23].OneofWrappers = []interface{}{ (*AdvancedProductTargeting_YoutubeSelectSettings)(nil), } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDesc, NumEnums: 0, NumMessages: 29, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_reach_plan_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_reach_plan_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_reach_plan_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_reach_plan_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_reach_plan_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_reach_plan_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_reach_plan_service_proto = out.File - file_google_ads_googleads_v16_services_reach_plan_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_reach_plan_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_reach_plan_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_reach_plan_service_proto = out.File + file_google_ads_googleads_v17_services_reach_plan_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_reach_plan_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_reach_plan_service_proto_depIdxs = nil } diff --git a/services/reach_plan_service_grpc.pb.go b/services/reach_plan_service_grpc.pb.go index 853ae54c..2338d87a 100644 --- a/services/reach_plan_service_grpc.pb.go +++ b/services/reach_plan_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/reach_plan_service.proto +// source: google/ads/googleads/v17/services/reach_plan_service.proto package services @@ -29,18 +29,24 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - ReachPlanService_ListPlannableLocations_FullMethodName = "/google.ads.googleads.v16.services.ReachPlanService/ListPlannableLocations" - ReachPlanService_ListPlannableProducts_FullMethodName = "/google.ads.googleads.v16.services.ReachPlanService/ListPlannableProducts" - ReachPlanService_GenerateReachForecast_FullMethodName = "/google.ads.googleads.v16.services.ReachPlanService/GenerateReachForecast" + ReachPlanService_ListPlannableLocations_FullMethodName = "/google.ads.googleads.v17.services.ReachPlanService/ListPlannableLocations" + ReachPlanService_ListPlannableProducts_FullMethodName = "/google.ads.googleads.v17.services.ReachPlanService/ListPlannableProducts" + ReachPlanService_GenerateReachForecast_FullMethodName = "/google.ads.googleads.v17.services.ReachPlanService/GenerateReachForecast" ) // ReachPlanServiceClient is the client API for ReachPlanService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Reach Plan Service gives users information about audience size that can +// be reached through advertisement on YouTube. In particular, +// GenerateReachForecast provides estimated number of people of specified +// demographics that can be reached by an ad in a given market by a campaign of +// certain duration with a defined budget. type ReachPlanServiceClient interface { // Returns the list of plannable locations (for example, countries). // @@ -90,8 +96,9 @@ func NewReachPlanServiceClient(cc grpc.ClientConnInterface) ReachPlanServiceClie } func (c *reachPlanServiceClient) ListPlannableLocations(ctx context.Context, in *ListPlannableLocationsRequest, opts ...grpc.CallOption) (*ListPlannableLocationsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(ListPlannableLocationsResponse) - err := c.cc.Invoke(ctx, ReachPlanService_ListPlannableLocations_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, ReachPlanService_ListPlannableLocations_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -99,8 +106,9 @@ func (c *reachPlanServiceClient) ListPlannableLocations(ctx context.Context, in } func (c *reachPlanServiceClient) ListPlannableProducts(ctx context.Context, in *ListPlannableProductsRequest, opts ...grpc.CallOption) (*ListPlannableProductsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(ListPlannableProductsResponse) - err := c.cc.Invoke(ctx, ReachPlanService_ListPlannableProducts_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, ReachPlanService_ListPlannableProducts_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -108,8 +116,9 @@ func (c *reachPlanServiceClient) ListPlannableProducts(ctx context.Context, in * } func (c *reachPlanServiceClient) GenerateReachForecast(ctx context.Context, in *GenerateReachForecastRequest, opts ...grpc.CallOption) (*GenerateReachForecastResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(GenerateReachForecastResponse) - err := c.cc.Invoke(ctx, ReachPlanService_GenerateReachForecast_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, ReachPlanService_GenerateReachForecast_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -119,6 +128,12 @@ func (c *reachPlanServiceClient) GenerateReachForecast(ctx context.Context, in * // ReachPlanServiceServer is the server API for ReachPlanService service. // All implementations must embed UnimplementedReachPlanServiceServer // for forward compatibility +// +// Reach Plan Service gives users information about audience size that can +// be reached through advertisement on YouTube. In particular, +// GenerateReachForecast provides estimated number of people of specified +// demographics that can be reached by an ad in a given market by a campaign of +// certain duration with a defined budget. type ReachPlanServiceServer interface { // Returns the list of plannable locations (for example, countries). // @@ -244,7 +259,7 @@ func _ReachPlanService_GenerateReachForecast_Handler(srv interface{}, ctx contex // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var ReachPlanService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.ReachPlanService", + ServiceName: "google.ads.googleads.v17.services.ReachPlanService", HandlerType: (*ReachPlanServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -261,5 +276,5 @@ var ReachPlanService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/reach_plan_service.proto", + Metadata: "google/ads/googleads/v17/services/reach_plan_service.proto", } diff --git a/services/recommendation_service.pb.go b/services/recommendation_service.pb.go index 71307e65..fd5d8cab 100644 --- a/services/recommendation_service.pb.go +++ b/services/recommendation_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/recommendation_service.proto +// source: google/ads/googleads/v17/services/recommendation_service.proto package services @@ -80,11 +80,11 @@ func (x ApplyRecommendationOperation_AdAssetApplyParameters_ApplyScope) String() } func (ApplyRecommendationOperation_AdAssetApplyParameters_ApplyScope) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v16_services_recommendation_service_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v17_services_recommendation_service_proto_enumTypes[0].Descriptor() } func (ApplyRecommendationOperation_AdAssetApplyParameters_ApplyScope) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v16_services_recommendation_service_proto_enumTypes[0] + return &file_google_ads_googleads_v17_services_recommendation_service_proto_enumTypes[0] } func (x ApplyRecommendationOperation_AdAssetApplyParameters_ApplyScope) Number() protoreflect.EnumNumber { @@ -93,11 +93,11 @@ func (x ApplyRecommendationOperation_AdAssetApplyParameters_ApplyScope) Number() // Deprecated: Use ApplyRecommendationOperation_AdAssetApplyParameters_ApplyScope.Descriptor instead. func (ApplyRecommendationOperation_AdAssetApplyParameters_ApplyScope) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{1, 14, 0} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{1, 14, 0} } // Request message for -// [RecommendationService.ApplyRecommendation][google.ads.googleads.v16.services.RecommendationService.ApplyRecommendation]. +// [RecommendationService.ApplyRecommendation][google.ads.googleads.v17.services.RecommendationService.ApplyRecommendation]. type ApplyRecommendationRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -119,7 +119,7 @@ type ApplyRecommendationRequest struct { func (x *ApplyRecommendationRequest) Reset() { *x = ApplyRecommendationRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -132,7 +132,7 @@ func (x *ApplyRecommendationRequest) String() string { func (*ApplyRecommendationRequest) ProtoMessage() {} func (x *ApplyRecommendationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -145,7 +145,7 @@ func (x *ApplyRecommendationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ApplyRecommendationRequest.ProtoReflect.Descriptor instead. func (*ApplyRecommendationRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{0} } func (x *ApplyRecommendationRequest) GetCustomerId() string { @@ -212,7 +212,7 @@ type ApplyRecommendationOperation struct { func (x *ApplyRecommendationOperation) Reset() { *x = ApplyRecommendationOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -225,7 +225,7 @@ func (x *ApplyRecommendationOperation) String() string { func (*ApplyRecommendationOperation) ProtoMessage() {} func (x *ApplyRecommendationOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -238,7 +238,7 @@ func (x *ApplyRecommendationOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use ApplyRecommendationOperation.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{1} } func (x *ApplyRecommendationOperation) GetResourceName() string { @@ -622,7 +622,7 @@ func (*ApplyRecommendationOperation_SetTargetRoas) isApplyRecommendationOperatio func (*ApplyRecommendationOperation_LeadFormAsset) isApplyRecommendationOperation_ApplyParameters() {} // Response message for -// [RecommendationService.ApplyRecommendation][google.ads.googleads.v16.services.RecommendationService.ApplyRecommendation]. +// [RecommendationService.ApplyRecommendation][google.ads.googleads.v17.services.RecommendationService.ApplyRecommendation]. type ApplyRecommendationResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -640,7 +640,7 @@ type ApplyRecommendationResponse struct { func (x *ApplyRecommendationResponse) Reset() { *x = ApplyRecommendationResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -653,7 +653,7 @@ func (x *ApplyRecommendationResponse) String() string { func (*ApplyRecommendationResponse) ProtoMessage() {} func (x *ApplyRecommendationResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -666,7 +666,7 @@ func (x *ApplyRecommendationResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ApplyRecommendationResponse.ProtoReflect.Descriptor instead. func (*ApplyRecommendationResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{2} } func (x *ApplyRecommendationResponse) GetResults() []*ApplyRecommendationResult { @@ -696,7 +696,7 @@ type ApplyRecommendationResult struct { func (x *ApplyRecommendationResult) Reset() { *x = ApplyRecommendationResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -709,7 +709,7 @@ func (x *ApplyRecommendationResult) String() string { func (*ApplyRecommendationResult) ProtoMessage() {} func (x *ApplyRecommendationResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -722,7 +722,7 @@ func (x *ApplyRecommendationResult) ProtoReflect() protoreflect.Message { // Deprecated: Use ApplyRecommendationResult.ProtoReflect.Descriptor instead. func (*ApplyRecommendationResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{3} } func (x *ApplyRecommendationResult) GetResourceName() string { @@ -733,7 +733,7 @@ func (x *ApplyRecommendationResult) GetResourceName() string { } // Request message for -// [RecommendationService.DismissRecommendation][google.ads.googleads.v16.services.RecommendationService.DismissRecommendation]. +// [RecommendationService.DismissRecommendation][google.ads.googleads.v17.services.RecommendationService.DismissRecommendation]. type DismissRecommendationRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -755,7 +755,7 @@ type DismissRecommendationRequest struct { func (x *DismissRecommendationRequest) Reset() { *x = DismissRecommendationRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -768,7 +768,7 @@ func (x *DismissRecommendationRequest) String() string { func (*DismissRecommendationRequest) ProtoMessage() {} func (x *DismissRecommendationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -781,7 +781,7 @@ func (x *DismissRecommendationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DismissRecommendationRequest.ProtoReflect.Descriptor instead. func (*DismissRecommendationRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{4} } func (x *DismissRecommendationRequest) GetCustomerId() string { @@ -806,7 +806,7 @@ func (x *DismissRecommendationRequest) GetPartialFailure() bool { } // Response message for -// [RecommendationService.DismissRecommendation][google.ads.googleads.v16.services.RecommendationService.DismissRecommendation]. +// [RecommendationService.DismissRecommendation][google.ads.googleads.v17.services.RecommendationService.DismissRecommendation]. type DismissRecommendationResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -824,7 +824,7 @@ type DismissRecommendationResponse struct { func (x *DismissRecommendationResponse) Reset() { *x = DismissRecommendationResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -837,7 +837,7 @@ func (x *DismissRecommendationResponse) String() string { func (*DismissRecommendationResponse) ProtoMessage() {} func (x *DismissRecommendationResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -850,7 +850,7 @@ func (x *DismissRecommendationResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DismissRecommendationResponse.ProtoReflect.Descriptor instead. func (*DismissRecommendationResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{5} } func (x *DismissRecommendationResponse) GetResults() []*DismissRecommendationResponse_DismissRecommendationResult { @@ -868,7 +868,7 @@ func (x *DismissRecommendationResponse) GetPartialFailureError() *status.Status } // Request message for -// [RecommendationService.GenerateRecommendations][google.ads.googleads.v16.services.RecommendationService.GenerateRecommendations]. +// [RecommendationService.GenerateRecommendations][google.ads.googleads.v17.services.RecommendationService.GenerateRecommendations]. type GenerateRecommendationsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -888,12 +888,12 @@ type GenerateRecommendationsRequest struct { // KEYWORD, MAXIMIZE_CLICKS_OPT_IN, MAXIMIZE_CONVERSIONS_OPT_IN, // MAXIMIZE_CONVERSION_VALUE_OPT_IN, SET_TARGET_CPA, SET_TARGET_ROAS, // SITELINK_ASSET, TARGET_CPA_OPT_IN, TARGET_ROAS_OPT_IN - RecommendationTypes []enums.RecommendationTypeEnum_RecommendationType `protobuf:"varint,2,rep,packed,name=recommendation_types,json=recommendationTypes,proto3,enum=google.ads.googleads.v16.enums.RecommendationTypeEnum_RecommendationType" json:"recommendation_types,omitempty"` + RecommendationTypes []enums.RecommendationTypeEnum_RecommendationType `protobuf:"varint,2,rep,packed,name=recommendation_types,json=recommendationTypes,proto3,enum=google.ads.googleads.v17.enums.RecommendationTypeEnum_RecommendationType" json:"recommendation_types,omitempty"` // Required. Advertising channel type of the campaign. // The following advertising_channel_types are supported for recommendation // generation: // PERFORMANCE_MAX and SEARCH - AdvertisingChannelType enums.AdvertisingChannelTypeEnum_AdvertisingChannelType `protobuf:"varint,3,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,3,opt,name=advertising_channel_type,json=advertisingChannelType,proto3,enum=google.ads.googleads.v17.enums.AdvertisingChannelTypeEnum_AdvertisingChannelType" json:"advertising_channel_type,omitempty"` // Optional. Number of sitelinks on the campaign. // This field is necessary for the following recommendation_types: // SITELINK_ASSET @@ -903,7 +903,7 @@ type GenerateRecommendationsRequest struct { // MAXIMIZE_CLICKS_OPT_IN, MAXIMIZE_CONVERSIONS_OPT_IN, // MAXIMIZE_CONVERSION_VALUE_OPT_IN, SET_TARGET_CPA, SET_TARGET_ROAS, // TARGET_CPA_OPT_IN, TARGET_ROAS_OPT_IN - ConversionTrackingStatus *enums.ConversionTrackingStatusEnum_ConversionTrackingStatus `protobuf:"varint,5,opt,name=conversion_tracking_status,json=conversionTrackingStatus,proto3,enum=google.ads.googleads.v16.enums.ConversionTrackingStatusEnum_ConversionTrackingStatus,oneof" json:"conversion_tracking_status,omitempty"` + ConversionTrackingStatus *enums.ConversionTrackingStatusEnum_ConversionTrackingStatus `protobuf:"varint,5,opt,name=conversion_tracking_status,json=conversionTrackingStatus,proto3,enum=google.ads.googleads.v17.enums.ConversionTrackingStatusEnum_ConversionTrackingStatus,oneof" json:"conversion_tracking_status,omitempty"` // Optional. Current bidding information of the campaign. // This field is necessary for the following recommendation_types: // MAXIMIZE_CLICKS_OPT_IN, MAXIMIZE_CONVERSIONS_OPT_IN, @@ -924,7 +924,7 @@ type GenerateRecommendationsRequest struct { func (x *GenerateRecommendationsRequest) Reset() { *x = GenerateRecommendationsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -937,7 +937,7 @@ func (x *GenerateRecommendationsRequest) String() string { func (*GenerateRecommendationsRequest) ProtoMessage() {} func (x *GenerateRecommendationsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[6] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -950,7 +950,7 @@ func (x *GenerateRecommendationsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GenerateRecommendationsRequest.ProtoReflect.Descriptor instead. func (*GenerateRecommendationsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{6} } func (x *GenerateRecommendationsRequest) GetCustomerId() string { @@ -1010,7 +1010,7 @@ func (x *GenerateRecommendationsRequest) GetSeedInfo() *GenerateRecommendationsR } // Response message for -// [RecommendationService.GenerateRecommendations][google.ads.googleads.v16.services.RecommendationService.GenerateRecommendations]. +// [RecommendationService.GenerateRecommendations][google.ads.googleads.v17.services.RecommendationService.GenerateRecommendations]. type GenerateRecommendationsResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -1026,7 +1026,7 @@ type GenerateRecommendationsResponse struct { func (x *GenerateRecommendationsResponse) Reset() { *x = GenerateRecommendationsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1039,7 +1039,7 @@ func (x *GenerateRecommendationsResponse) String() string { func (*GenerateRecommendationsResponse) ProtoMessage() {} func (x *GenerateRecommendationsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[7] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1052,7 +1052,7 @@ func (x *GenerateRecommendationsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GenerateRecommendationsResponse.ProtoReflect.Descriptor instead. func (*GenerateRecommendationsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{7} } func (x *GenerateRecommendationsResponse) GetRecommendations() []*resources.Recommendation { @@ -1076,7 +1076,7 @@ type ApplyRecommendationOperation_CampaignBudgetParameters struct { func (x *ApplyRecommendationOperation_CampaignBudgetParameters) Reset() { *x = ApplyRecommendationOperation_CampaignBudgetParameters{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1089,7 +1089,7 @@ func (x *ApplyRecommendationOperation_CampaignBudgetParameters) String() string func (*ApplyRecommendationOperation_CampaignBudgetParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_CampaignBudgetParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[8] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1102,7 +1102,7 @@ func (x *ApplyRecommendationOperation_CampaignBudgetParameters) ProtoReflect() p // Deprecated: Use ApplyRecommendationOperation_CampaignBudgetParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_CampaignBudgetParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{1, 0} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{1, 0} } func (x *ApplyRecommendationOperation_CampaignBudgetParameters) GetNewBudgetAmountMicros() int64 { @@ -1130,7 +1130,7 @@ type ApplyRecommendationOperation_ForecastingSetTargetRoasParameters struct { func (x *ApplyRecommendationOperation_ForecastingSetTargetRoasParameters) Reset() { *x = ApplyRecommendationOperation_ForecastingSetTargetRoasParameters{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1143,7 +1143,7 @@ func (x *ApplyRecommendationOperation_ForecastingSetTargetRoasParameters) String func (*ApplyRecommendationOperation_ForecastingSetTargetRoasParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_ForecastingSetTargetRoasParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[9] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1156,7 +1156,7 @@ func (x *ApplyRecommendationOperation_ForecastingSetTargetRoasParameters) ProtoR // Deprecated: Use ApplyRecommendationOperation_ForecastingSetTargetRoasParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_ForecastingSetTargetRoasParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{1, 1} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{1, 1} } func (x *ApplyRecommendationOperation_ForecastingSetTargetRoasParameters) GetTargetRoas() float64 { @@ -1187,7 +1187,7 @@ type ApplyRecommendationOperation_TextAdParameters struct { func (x *ApplyRecommendationOperation_TextAdParameters) Reset() { *x = ApplyRecommendationOperation_TextAdParameters{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1200,7 +1200,7 @@ func (x *ApplyRecommendationOperation_TextAdParameters) String() string { func (*ApplyRecommendationOperation_TextAdParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_TextAdParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[10] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1213,7 +1213,7 @@ func (x *ApplyRecommendationOperation_TextAdParameters) ProtoReflect() protorefl // Deprecated: Use ApplyRecommendationOperation_TextAdParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_TextAdParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{1, 2} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{1, 2} } func (x *ApplyRecommendationOperation_TextAdParameters) GetAd() *resources.Ad { @@ -1232,7 +1232,7 @@ type ApplyRecommendationOperation_KeywordParameters struct { // The ad group resource to add keyword to. This is a required field. AdGroup *string `protobuf:"bytes,4,opt,name=ad_group,json=adGroup,proto3,oneof" json:"ad_group,omitempty"` // The match type of the keyword. This is a required field. - 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"` // Optional, CPC bid to set for the keyword. If not set, keyword will use // bid based on bidding strategy used by target ad group. CpcBidMicros *int64 `protobuf:"varint,5,opt,name=cpc_bid_micros,json=cpcBidMicros,proto3,oneof" json:"cpc_bid_micros,omitempty"` @@ -1241,7 +1241,7 @@ type ApplyRecommendationOperation_KeywordParameters struct { func (x *ApplyRecommendationOperation_KeywordParameters) Reset() { *x = ApplyRecommendationOperation_KeywordParameters{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1254,7 +1254,7 @@ func (x *ApplyRecommendationOperation_KeywordParameters) String() string { func (*ApplyRecommendationOperation_KeywordParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_KeywordParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[11] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1267,7 +1267,7 @@ func (x *ApplyRecommendationOperation_KeywordParameters) ProtoReflect() protoref // Deprecated: Use ApplyRecommendationOperation_KeywordParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_KeywordParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{1, 3} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{1, 3} } func (x *ApplyRecommendationOperation_KeywordParameters) GetAdGroup() string { @@ -1307,7 +1307,7 @@ type ApplyRecommendationOperation_TargetCpaOptInParameters struct { func (x *ApplyRecommendationOperation_TargetCpaOptInParameters) Reset() { *x = ApplyRecommendationOperation_TargetCpaOptInParameters{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[12] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1320,7 +1320,7 @@ func (x *ApplyRecommendationOperation_TargetCpaOptInParameters) String() string func (*ApplyRecommendationOperation_TargetCpaOptInParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_TargetCpaOptInParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[12] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[12] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1333,7 +1333,7 @@ func (x *ApplyRecommendationOperation_TargetCpaOptInParameters) ProtoReflect() p // Deprecated: Use ApplyRecommendationOperation_TargetCpaOptInParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_TargetCpaOptInParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{1, 4} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{1, 4} } func (x *ApplyRecommendationOperation_TargetCpaOptInParameters) GetTargetCpaMicros() int64 { @@ -1367,7 +1367,7 @@ type ApplyRecommendationOperation_TargetRoasOptInParameters struct { func (x *ApplyRecommendationOperation_TargetRoasOptInParameters) Reset() { *x = ApplyRecommendationOperation_TargetRoasOptInParameters{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[13] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1380,7 +1380,7 @@ func (x *ApplyRecommendationOperation_TargetRoasOptInParameters) String() string func (*ApplyRecommendationOperation_TargetRoasOptInParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_TargetRoasOptInParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[13] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[13] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1393,7 +1393,7 @@ func (x *ApplyRecommendationOperation_TargetRoasOptInParameters) ProtoReflect() // Deprecated: Use ApplyRecommendationOperation_TargetRoasOptInParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_TargetRoasOptInParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{1, 5} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{1, 5} } func (x *ApplyRecommendationOperation_TargetRoasOptInParameters) GetTargetRoas() float64 { @@ -1423,7 +1423,7 @@ type ApplyRecommendationOperation_CalloutExtensionParameters struct { func (x *ApplyRecommendationOperation_CalloutExtensionParameters) Reset() { *x = ApplyRecommendationOperation_CalloutExtensionParameters{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[14] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1436,7 +1436,7 @@ func (x *ApplyRecommendationOperation_CalloutExtensionParameters) String() strin func (*ApplyRecommendationOperation_CalloutExtensionParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_CalloutExtensionParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[14] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[14] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1449,7 +1449,7 @@ func (x *ApplyRecommendationOperation_CalloutExtensionParameters) ProtoReflect() // Deprecated: Use ApplyRecommendationOperation_CalloutExtensionParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_CalloutExtensionParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{1, 6} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{1, 6} } func (x *ApplyRecommendationOperation_CalloutExtensionParameters) GetCalloutExtensions() []*common.CalloutFeedItem { @@ -1472,7 +1472,7 @@ type ApplyRecommendationOperation_CallExtensionParameters struct { func (x *ApplyRecommendationOperation_CallExtensionParameters) Reset() { *x = ApplyRecommendationOperation_CallExtensionParameters{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[15] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1485,7 +1485,7 @@ func (x *ApplyRecommendationOperation_CallExtensionParameters) String() string { func (*ApplyRecommendationOperation_CallExtensionParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_CallExtensionParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[15] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[15] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1498,7 +1498,7 @@ func (x *ApplyRecommendationOperation_CallExtensionParameters) ProtoReflect() pr // Deprecated: Use ApplyRecommendationOperation_CallExtensionParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_CallExtensionParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{1, 7} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{1, 7} } func (x *ApplyRecommendationOperation_CallExtensionParameters) GetCallExtensions() []*common.CallFeedItem { @@ -1521,7 +1521,7 @@ type ApplyRecommendationOperation_SitelinkExtensionParameters struct { func (x *ApplyRecommendationOperation_SitelinkExtensionParameters) Reset() { *x = ApplyRecommendationOperation_SitelinkExtensionParameters{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[16] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1534,7 +1534,7 @@ func (x *ApplyRecommendationOperation_SitelinkExtensionParameters) String() stri func (*ApplyRecommendationOperation_SitelinkExtensionParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_SitelinkExtensionParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[16] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[16] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1547,7 +1547,7 @@ func (x *ApplyRecommendationOperation_SitelinkExtensionParameters) ProtoReflect( // Deprecated: Use ApplyRecommendationOperation_SitelinkExtensionParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_SitelinkExtensionParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{1, 8} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{1, 8} } func (x *ApplyRecommendationOperation_SitelinkExtensionParameters) GetSitelinkExtensions() []*common.SitelinkFeedItem { @@ -1570,7 +1570,7 @@ type ApplyRecommendationOperation_CalloutAssetParameters struct { func (x *ApplyRecommendationOperation_CalloutAssetParameters) Reset() { *x = ApplyRecommendationOperation_CalloutAssetParameters{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[17] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1583,7 +1583,7 @@ func (x *ApplyRecommendationOperation_CalloutAssetParameters) String() string { func (*ApplyRecommendationOperation_CalloutAssetParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_CalloutAssetParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[17] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[17] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1596,7 +1596,7 @@ func (x *ApplyRecommendationOperation_CalloutAssetParameters) ProtoReflect() pro // Deprecated: Use ApplyRecommendationOperation_CalloutAssetParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_CalloutAssetParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{1, 9} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{1, 9} } func (x *ApplyRecommendationOperation_CalloutAssetParameters) GetAdAssetApplyParameters() *ApplyRecommendationOperation_AdAssetApplyParameters { @@ -1619,7 +1619,7 @@ type ApplyRecommendationOperation_CallAssetParameters struct { func (x *ApplyRecommendationOperation_CallAssetParameters) Reset() { *x = ApplyRecommendationOperation_CallAssetParameters{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[18] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1632,7 +1632,7 @@ func (x *ApplyRecommendationOperation_CallAssetParameters) String() string { func (*ApplyRecommendationOperation_CallAssetParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_CallAssetParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[18] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[18] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1645,7 +1645,7 @@ func (x *ApplyRecommendationOperation_CallAssetParameters) ProtoReflect() protor // Deprecated: Use ApplyRecommendationOperation_CallAssetParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_CallAssetParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{1, 10} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{1, 10} } func (x *ApplyRecommendationOperation_CallAssetParameters) GetAdAssetApplyParameters() *ApplyRecommendationOperation_AdAssetApplyParameters { @@ -1668,7 +1668,7 @@ type ApplyRecommendationOperation_SitelinkAssetParameters struct { func (x *ApplyRecommendationOperation_SitelinkAssetParameters) Reset() { *x = ApplyRecommendationOperation_SitelinkAssetParameters{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[19] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1681,7 +1681,7 @@ func (x *ApplyRecommendationOperation_SitelinkAssetParameters) String() string { func (*ApplyRecommendationOperation_SitelinkAssetParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_SitelinkAssetParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[19] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[19] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1694,7 +1694,7 @@ func (x *ApplyRecommendationOperation_SitelinkAssetParameters) ProtoReflect() pr // Deprecated: Use ApplyRecommendationOperation_SitelinkAssetParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_SitelinkAssetParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{1, 11} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{1, 11} } func (x *ApplyRecommendationOperation_SitelinkAssetParameters) GetAdAssetApplyParameters() *ApplyRecommendationOperation_AdAssetApplyParameters { @@ -1717,7 +1717,7 @@ type ApplyRecommendationOperation_RaiseTargetCpaParameters struct { func (x *ApplyRecommendationOperation_RaiseTargetCpaParameters) Reset() { *x = ApplyRecommendationOperation_RaiseTargetCpaParameters{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[20] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[20] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1730,7 +1730,7 @@ func (x *ApplyRecommendationOperation_RaiseTargetCpaParameters) String() string func (*ApplyRecommendationOperation_RaiseTargetCpaParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_RaiseTargetCpaParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[20] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[20] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1743,7 +1743,7 @@ func (x *ApplyRecommendationOperation_RaiseTargetCpaParameters) ProtoReflect() p // Deprecated: Use ApplyRecommendationOperation_RaiseTargetCpaParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_RaiseTargetCpaParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{1, 12} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{1, 12} } func (x *ApplyRecommendationOperation_RaiseTargetCpaParameters) GetTargetCpaMultiplier() float64 { @@ -1766,7 +1766,7 @@ type ApplyRecommendationOperation_LowerTargetRoasParameters struct { func (x *ApplyRecommendationOperation_LowerTargetRoasParameters) Reset() { *x = ApplyRecommendationOperation_LowerTargetRoasParameters{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[21] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[21] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1779,7 +1779,7 @@ func (x *ApplyRecommendationOperation_LowerTargetRoasParameters) String() string func (*ApplyRecommendationOperation_LowerTargetRoasParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_LowerTargetRoasParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[21] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[21] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1792,7 +1792,7 @@ func (x *ApplyRecommendationOperation_LowerTargetRoasParameters) ProtoReflect() // Deprecated: Use ApplyRecommendationOperation_LowerTargetRoasParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_LowerTargetRoasParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{1, 13} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{1, 13} } func (x *ApplyRecommendationOperation_LowerTargetRoasParameters) GetTargetRoasMultiplier() float64 { @@ -1819,13 +1819,13 @@ type ApplyRecommendationOperation_AdAssetApplyParameters struct { // recommendation. Assets at the customer scope will apply to the entire // account. Assets at the campaign scope will override any attached at the // customer scope. - Scope ApplyRecommendationOperation_AdAssetApplyParameters_ApplyScope `protobuf:"varint,3,opt,name=scope,proto3,enum=google.ads.googleads.v16.services.ApplyRecommendationOperation_AdAssetApplyParameters_ApplyScope" json:"scope,omitempty"` + Scope ApplyRecommendationOperation_AdAssetApplyParameters_ApplyScope `protobuf:"varint,3,opt,name=scope,proto3,enum=google.ads.googleads.v17.services.ApplyRecommendationOperation_AdAssetApplyParameters_ApplyScope" json:"scope,omitempty"` } func (x *ApplyRecommendationOperation_AdAssetApplyParameters) Reset() { *x = ApplyRecommendationOperation_AdAssetApplyParameters{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[22] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1838,7 +1838,7 @@ func (x *ApplyRecommendationOperation_AdAssetApplyParameters) String() string { func (*ApplyRecommendationOperation_AdAssetApplyParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_AdAssetApplyParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[22] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[22] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1851,7 +1851,7 @@ func (x *ApplyRecommendationOperation_AdAssetApplyParameters) ProtoReflect() pro // Deprecated: Use ApplyRecommendationOperation_AdAssetApplyParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_AdAssetApplyParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{1, 14} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{1, 14} } func (x *ApplyRecommendationOperation_AdAssetApplyParameters) GetNewAssets() []*resources.Asset { @@ -1889,7 +1889,7 @@ type ApplyRecommendationOperation_MoveUnusedBudgetParameters struct { func (x *ApplyRecommendationOperation_MoveUnusedBudgetParameters) Reset() { *x = ApplyRecommendationOperation_MoveUnusedBudgetParameters{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[23] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[23] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1902,7 +1902,7 @@ func (x *ApplyRecommendationOperation_MoveUnusedBudgetParameters) String() strin func (*ApplyRecommendationOperation_MoveUnusedBudgetParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_MoveUnusedBudgetParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[23] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[23] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1915,7 +1915,7 @@ func (x *ApplyRecommendationOperation_MoveUnusedBudgetParameters) ProtoReflect() // Deprecated: Use ApplyRecommendationOperation_MoveUnusedBudgetParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_MoveUnusedBudgetParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{1, 15} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{1, 15} } func (x *ApplyRecommendationOperation_MoveUnusedBudgetParameters) GetBudgetMicrosToMove() int64 { @@ -1939,7 +1939,7 @@ type ApplyRecommendationOperation_ResponsiveSearchAdAssetParameters struct { func (x *ApplyRecommendationOperation_ResponsiveSearchAdAssetParameters) Reset() { *x = ApplyRecommendationOperation_ResponsiveSearchAdAssetParameters{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[24] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[24] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1952,7 +1952,7 @@ func (x *ApplyRecommendationOperation_ResponsiveSearchAdAssetParameters) String( func (*ApplyRecommendationOperation_ResponsiveSearchAdAssetParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_ResponsiveSearchAdAssetParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[24] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[24] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1965,7 +1965,7 @@ func (x *ApplyRecommendationOperation_ResponsiveSearchAdAssetParameters) ProtoRe // Deprecated: Use ApplyRecommendationOperation_ResponsiveSearchAdAssetParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_ResponsiveSearchAdAssetParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{1, 16} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{1, 16} } func (x *ApplyRecommendationOperation_ResponsiveSearchAdAssetParameters) GetUpdatedAd() *resources.Ad { @@ -1989,7 +1989,7 @@ type ApplyRecommendationOperation_ResponsiveSearchAdImproveAdStrengthParameters func (x *ApplyRecommendationOperation_ResponsiveSearchAdImproveAdStrengthParameters) Reset() { *x = ApplyRecommendationOperation_ResponsiveSearchAdImproveAdStrengthParameters{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[25] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[25] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2002,7 +2002,7 @@ func (x *ApplyRecommendationOperation_ResponsiveSearchAdImproveAdStrengthParamet func (*ApplyRecommendationOperation_ResponsiveSearchAdImproveAdStrengthParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_ResponsiveSearchAdImproveAdStrengthParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[25] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[25] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2015,7 +2015,7 @@ func (x *ApplyRecommendationOperation_ResponsiveSearchAdImproveAdStrengthParamet // Deprecated: Use ApplyRecommendationOperation_ResponsiveSearchAdImproveAdStrengthParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_ResponsiveSearchAdImproveAdStrengthParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{1, 17} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{1, 17} } func (x *ApplyRecommendationOperation_ResponsiveSearchAdImproveAdStrengthParameters) GetUpdatedAd() *resources.Ad { @@ -2038,7 +2038,7 @@ type ApplyRecommendationOperation_ResponsiveSearchAdParameters struct { func (x *ApplyRecommendationOperation_ResponsiveSearchAdParameters) Reset() { *x = ApplyRecommendationOperation_ResponsiveSearchAdParameters{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[26] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[26] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2051,7 +2051,7 @@ func (x *ApplyRecommendationOperation_ResponsiveSearchAdParameters) String() str func (*ApplyRecommendationOperation_ResponsiveSearchAdParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_ResponsiveSearchAdParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[26] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[26] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2064,7 +2064,7 @@ func (x *ApplyRecommendationOperation_ResponsiveSearchAdParameters) ProtoReflect // Deprecated: Use ApplyRecommendationOperation_ResponsiveSearchAdParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_ResponsiveSearchAdParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{1, 18} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{1, 18} } func (x *ApplyRecommendationOperation_ResponsiveSearchAdParameters) GetAd() *resources.Ad { @@ -2090,7 +2090,7 @@ type ApplyRecommendationOperation_RaiseTargetCpaBidTooLowParameters struct { func (x *ApplyRecommendationOperation_RaiseTargetCpaBidTooLowParameters) Reset() { *x = ApplyRecommendationOperation_RaiseTargetCpaBidTooLowParameters{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[27] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[27] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2103,7 +2103,7 @@ func (x *ApplyRecommendationOperation_RaiseTargetCpaBidTooLowParameters) String( func (*ApplyRecommendationOperation_RaiseTargetCpaBidTooLowParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_RaiseTargetCpaBidTooLowParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[27] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[27] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2116,7 +2116,7 @@ func (x *ApplyRecommendationOperation_RaiseTargetCpaBidTooLowParameters) ProtoRe // Deprecated: Use ApplyRecommendationOperation_RaiseTargetCpaBidTooLowParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_RaiseTargetCpaBidTooLowParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{1, 19} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{1, 19} } func (x *ApplyRecommendationOperation_RaiseTargetCpaBidTooLowParameters) GetTargetMultiplier() float64 { @@ -2139,7 +2139,7 @@ type ApplyRecommendationOperation_UseBroadMatchKeywordParameters struct { func (x *ApplyRecommendationOperation_UseBroadMatchKeywordParameters) Reset() { *x = ApplyRecommendationOperation_UseBroadMatchKeywordParameters{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[28] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[28] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2152,7 +2152,7 @@ func (x *ApplyRecommendationOperation_UseBroadMatchKeywordParameters) String() s func (*ApplyRecommendationOperation_UseBroadMatchKeywordParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_UseBroadMatchKeywordParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[28] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[28] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2165,7 +2165,7 @@ func (x *ApplyRecommendationOperation_UseBroadMatchKeywordParameters) ProtoRefle // Deprecated: Use ApplyRecommendationOperation_UseBroadMatchKeywordParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_UseBroadMatchKeywordParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{1, 20} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{1, 20} } func (x *ApplyRecommendationOperation_UseBroadMatchKeywordParameters) GetNewBudgetAmountMicros() int64 { @@ -2190,7 +2190,7 @@ type ApplyRecommendationOperation_ForecastingSetTargetCpaParameters struct { func (x *ApplyRecommendationOperation_ForecastingSetTargetCpaParameters) Reset() { *x = ApplyRecommendationOperation_ForecastingSetTargetCpaParameters{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[29] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[29] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2203,7 +2203,7 @@ func (x *ApplyRecommendationOperation_ForecastingSetTargetCpaParameters) String( func (*ApplyRecommendationOperation_ForecastingSetTargetCpaParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_ForecastingSetTargetCpaParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[29] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[29] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2216,7 +2216,7 @@ func (x *ApplyRecommendationOperation_ForecastingSetTargetCpaParameters) ProtoRe // Deprecated: Use ApplyRecommendationOperation_ForecastingSetTargetCpaParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_ForecastingSetTargetCpaParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{1, 21} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{1, 21} } func (x *ApplyRecommendationOperation_ForecastingSetTargetCpaParameters) GetTargetCpaMicros() int64 { @@ -2251,7 +2251,7 @@ type ApplyRecommendationOperation_LeadFormAssetParameters struct { func (x *ApplyRecommendationOperation_LeadFormAssetParameters) Reset() { *x = ApplyRecommendationOperation_LeadFormAssetParameters{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[30] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[30] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2264,7 +2264,7 @@ func (x *ApplyRecommendationOperation_LeadFormAssetParameters) String() string { func (*ApplyRecommendationOperation_LeadFormAssetParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_LeadFormAssetParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[30] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[30] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2277,7 +2277,7 @@ func (x *ApplyRecommendationOperation_LeadFormAssetParameters) ProtoReflect() pr // Deprecated: Use ApplyRecommendationOperation_LeadFormAssetParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_LeadFormAssetParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{1, 22} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{1, 22} } func (x *ApplyRecommendationOperation_LeadFormAssetParameters) GetAdAssetApplyParameters() *ApplyRecommendationOperation_AdAssetApplyParameters { @@ -2307,7 +2307,7 @@ type DismissRecommendationRequest_DismissRecommendationOperation struct { func (x *DismissRecommendationRequest_DismissRecommendationOperation) Reset() { *x = DismissRecommendationRequest_DismissRecommendationOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[31] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[31] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2320,7 +2320,7 @@ func (x *DismissRecommendationRequest_DismissRecommendationOperation) String() s func (*DismissRecommendationRequest_DismissRecommendationOperation) ProtoMessage() {} func (x *DismissRecommendationRequest_DismissRecommendationOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[31] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[31] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2333,7 +2333,7 @@ func (x *DismissRecommendationRequest_DismissRecommendationOperation) ProtoRefle // Deprecated: Use DismissRecommendationRequest_DismissRecommendationOperation.ProtoReflect.Descriptor instead. func (*DismissRecommendationRequest_DismissRecommendationOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{4, 0} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{4, 0} } func (x *DismissRecommendationRequest_DismissRecommendationOperation) GetResourceName() string { @@ -2356,7 +2356,7 @@ type DismissRecommendationResponse_DismissRecommendationResult struct { func (x *DismissRecommendationResponse_DismissRecommendationResult) Reset() { *x = DismissRecommendationResponse_DismissRecommendationResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[32] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[32] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2369,7 +2369,7 @@ func (x *DismissRecommendationResponse_DismissRecommendationResult) String() str func (*DismissRecommendationResponse_DismissRecommendationResult) ProtoMessage() {} func (x *DismissRecommendationResponse_DismissRecommendationResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[32] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[32] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2382,7 +2382,7 @@ func (x *DismissRecommendationResponse_DismissRecommendationResult) ProtoReflect // Deprecated: Use DismissRecommendationResponse_DismissRecommendationResult.ProtoReflect.Descriptor instead. func (*DismissRecommendationResponse_DismissRecommendationResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{5, 0} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{5, 0} } func (x *DismissRecommendationResponse_DismissRecommendationResult) GetResourceName() string { @@ -2404,7 +2404,7 @@ type GenerateRecommendationsRequest_BiddingInfo struct { // MAXIMIZE_CLICKS_OPT_IN, MAXIMIZE_CONVERSIONS_OPT_IN, // MAXIMIZE_CONVERSION_VALUE_OPT_IN, SET_TARGET_CPA, SET_TARGET_ROAS, // TARGET_CPA_OPT_IN, TARGET_ROAS_OPT_IN - BiddingStrategyType *enums.BiddingStrategyTypeEnum_BiddingStrategyType `protobuf:"varint,1,opt,name=bidding_strategy_type,json=biddingStrategyType,proto3,enum=google.ads.googleads.v16.enums.BiddingStrategyTypeEnum_BiddingStrategyType,oneof" json:"bidding_strategy_type,omitempty"` + BiddingStrategyType *enums.BiddingStrategyTypeEnum_BiddingStrategyType `protobuf:"varint,1,opt,name=bidding_strategy_type,json=biddingStrategyType,proto3,enum=google.ads.googleads.v17.enums.BiddingStrategyTypeEnum_BiddingStrategyType,oneof" json:"bidding_strategy_type,omitempty"` // Optional details related to the bidding_strategy_type. // // Types that are assignable to BiddingStrategyTargetInfo: @@ -2417,7 +2417,7 @@ type GenerateRecommendationsRequest_BiddingInfo struct { func (x *GenerateRecommendationsRequest_BiddingInfo) Reset() { *x = GenerateRecommendationsRequest_BiddingInfo{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[33] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[33] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2430,7 +2430,7 @@ func (x *GenerateRecommendationsRequest_BiddingInfo) String() string { func (*GenerateRecommendationsRequest_BiddingInfo) ProtoMessage() {} func (x *GenerateRecommendationsRequest_BiddingInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[33] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[33] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2443,7 +2443,7 @@ func (x *GenerateRecommendationsRequest_BiddingInfo) ProtoReflect() protoreflect // Deprecated: Use GenerateRecommendationsRequest_BiddingInfo.ProtoReflect.Descriptor instead. func (*GenerateRecommendationsRequest_BiddingInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{6, 0} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{6, 0} } func (x *GenerateRecommendationsRequest_BiddingInfo) GetBiddingStrategyType() enums.BiddingStrategyTypeEnum_BiddingStrategyType { @@ -2508,7 +2508,7 @@ type GenerateRecommendationsRequest_AdGroupInfo struct { // This field is necessary for the following recommendation_types if // ad_group_info is set: // KEYWORD - AdGroupType *enums.AdGroupTypeEnum_AdGroupType `protobuf:"varint,1,opt,name=ad_group_type,json=adGroupType,proto3,enum=google.ads.googleads.v16.enums.AdGroupTypeEnum_AdGroupType,oneof" json:"ad_group_type,omitempty"` + AdGroupType *enums.AdGroupTypeEnum_AdGroupType `protobuf:"varint,1,opt,name=ad_group_type,json=adGroupType,proto3,enum=google.ads.googleads.v17.enums.AdGroupTypeEnum_AdGroupType,oneof" json:"ad_group_type,omitempty"` // Optional. Current keywords. // This field is optional for the following recommendation_types if // ad_group_info is set: @@ -2519,7 +2519,7 @@ type GenerateRecommendationsRequest_AdGroupInfo struct { func (x *GenerateRecommendationsRequest_AdGroupInfo) Reset() { *x = GenerateRecommendationsRequest_AdGroupInfo{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[34] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[34] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2532,7 +2532,7 @@ func (x *GenerateRecommendationsRequest_AdGroupInfo) String() string { func (*GenerateRecommendationsRequest_AdGroupInfo) ProtoMessage() {} func (x *GenerateRecommendationsRequest_AdGroupInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[34] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[34] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2545,7 +2545,7 @@ func (x *GenerateRecommendationsRequest_AdGroupInfo) ProtoReflect() protoreflect // Deprecated: Use GenerateRecommendationsRequest_AdGroupInfo.ProtoReflect.Descriptor instead. func (*GenerateRecommendationsRequest_AdGroupInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{6, 1} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{6, 1} } func (x *GenerateRecommendationsRequest_AdGroupInfo) GetAdGroupType() enums.AdGroupTypeEnum_AdGroupType { @@ -2578,7 +2578,7 @@ type GenerateRecommendationsRequest_SeedInfo struct { func (x *GenerateRecommendationsRequest_SeedInfo) Reset() { *x = GenerateRecommendationsRequest_SeedInfo{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[35] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[35] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2591,7 +2591,7 @@ func (x *GenerateRecommendationsRequest_SeedInfo) String() string { func (*GenerateRecommendationsRequest_SeedInfo) ProtoMessage() {} func (x *GenerateRecommendationsRequest_SeedInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[35] + mi := &file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[35] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2604,7 +2604,7 @@ func (x *GenerateRecommendationsRequest_SeedInfo) ProtoReflect() protoreflect.Me // Deprecated: Use GenerateRecommendationsRequest_SeedInfo.ProtoReflect.Descriptor instead. func (*GenerateRecommendationsRequest_SeedInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP(), []int{6, 2} + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP(), []int{6, 2} } func (x *GenerateRecommendationsRequest_SeedInfo) GetUrlSeed() string { @@ -2621,52 +2621,52 @@ func (x *GenerateRecommendationsRequest_SeedInfo) GetKeywordSeeds() []string { return nil } -var File_google_ads_googleads_v16_services_recommendation_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_recommendation_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_recommendation_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, + 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, 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, + 0x67, 0x6f, 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, 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, + 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, 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, 0x72, 0x74, + 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, 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, 0x6e, 0x67, + 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, 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, 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, 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, 0x6b, 0x65, 0x79, 0x77, 0x6f, + 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, 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, + 0x67, 0x6f, 0x6f, 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, 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, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, + 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x72, + 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, @@ -2684,7 +2684,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x65, 0x72, 0x49, 0x64, 0x12, 0x64, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, @@ -2700,7 +2700,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x83, 0x01, 0x0a, 0x0f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, @@ -2708,21 +2708,21 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x12, 0x6b, 0x0a, 0x07, 0x74, 0x65, 0x78, 0x74, 0x5f, 0x61, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x54, 0x65, 0x78, 0x74, 0x41, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x48, 0x00, 0x52, 0x06, 0x74, 0x65, 0x78, 0x74, 0x41, 0x64, 0x12, 0x6d, 0x0a, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x04, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x48, 0x00, 0x52, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x85, 0x01, 0x0a, 0x11, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x70, 0x61, 0x5f, 0x6f, 0x70, 0x74, 0x5f, 0x69, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x61, @@ -2731,7 +2731,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x6e, 0x12, 0x88, 0x01, 0x0a, 0x12, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x6f, 0x61, 0x73, 0x5f, 0x6f, 0x70, 0x74, 0x5f, 0x69, 0x6e, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x6f, 0x61, 0x73, 0x4f, 0x70, 0x74, 0x49, 0x6e, 0x50, @@ -2740,7 +2740,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x11, 0x63, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, @@ -2748,7 +2748,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x80, 0x01, 0x0a, 0x0e, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, @@ -2757,7 +2757,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x73, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, @@ -2766,7 +2766,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x6f, 0x76, 0x65, 0x5f, 0x75, 0x6e, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x76, 0x65, 0x55, 0x6e, 0x75, 0x73, 0x65, 0x64, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, @@ -2775,7 +2775,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x6f, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x61, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, @@ -2784,7 +2784,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x73, 0x65, 0x5f, 0x62, 0x72, 0x6f, 0x61, 0x64, 0x5f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x5e, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x42, 0x72, 0x6f, 0x61, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x77, 0x6f, @@ -2794,7 +2794,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x69, 0x76, 0x65, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x61, 0x64, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x64, 0x41, 0x73, 0x73, @@ -2805,7 +2805,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x6f, 0x76, 0x65, 0x5f, 0x61, 0x64, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x64, 0x49, 0x6d, @@ -2817,7 +2817,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x74, 0x5f, 0x63, 0x70, 0x61, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x74, 0x6f, 0x6f, 0x5f, 0x6c, 0x6f, 0x77, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x69, 0x73, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x61, 0x42, 0x69, 0x64, 0x54, 0x6f, 0x6f, 0x4c, 0x6f, 0x77, @@ -2827,7 +2827,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x73, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x6f, 0x61, 0x73, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x54, 0x61, 0x72, 0x67, 0x65, @@ -2836,7 +2836,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x74, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x6f, 0x61, 0x73, 0x12, 0x7d, 0x0a, 0x0d, 0x63, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x11, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, @@ -2844,7 +2844,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x74, 0x0a, 0x0a, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x41, 0x73, 0x73, 0x65, 0x74, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, @@ -2852,7 +2852,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x12, 0x80, 0x01, 0x0a, 0x0e, 0x73, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x13, 0x20, 0x01, 0x28, 0x0b, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x41, 0x73, 0x73, 0x65, 0x74, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, @@ -2860,7 +2860,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x73, 0x65, 0x74, 0x12, 0x84, 0x01, 0x0a, 0x10, 0x72, 0x61, 0x69, 0x73, 0x65, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x70, 0x61, 0x18, 0x14, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x69, 0x73, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x61, 0x50, 0x61, @@ -2869,7 +2869,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x6f, 0x77, 0x65, 0x72, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x6f, 0x61, 0x73, 0x18, 0x15, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x77, 0x65, 0x72, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x6f, 0x61, 0x73, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, @@ -2878,7 +2878,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x70, 0x61, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, @@ -2887,7 +2887,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x61, 0x12, 0x89, 0x01, 0x0a, 0x0e, 0x73, 0x65, 0x74, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x70, 0x61, 0x18, 0x17, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, @@ -2896,7 +2896,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x43, 0x70, 0x61, 0x12, 0x8c, 0x01, 0x0a, 0x0f, 0x73, 0x65, 0x74, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x6f, 0x61, 0x73, 0x18, 0x18, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x54, 0x61, 0x72, @@ -2905,7 +2905,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x61, 0x73, 0x12, 0x81, 0x01, 0x0a, 0x0f, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x19, 0x20, 0x01, 0x28, 0x0b, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x41, 0x73, 0x73, 0x65, 0x74, 0x50, 0x61, 0x72, 0x61, 0x6d, @@ -2933,7 +2933,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x63, 0x72, 0x6f, 0x73, 0x1a, 0x4a, 0x0a, 0x10, 0x54, 0x65, 0x78, 0x74, 0x41, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x12, 0x36, 0x0a, 0x02, 0x61, 0x64, 0x18, 0x01, 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, + 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, 0x64, 0x52, 0x02, 0x61, 0x64, 0x1a, 0xe4, 0x01, 0x0a, 0x11, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x12, 0x1e, 0x0a, 0x08, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, @@ -2941,7 +2941,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x6f, 0x75, 0x70, 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, + 0x73, 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, 0x12, 0x29, 0x0a, 0x0e, @@ -2980,7 +2980,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x12, 0x5f, 0x0a, 0x12, 0x63, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 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, + 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, 0x6f, 0x75, 0x74, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x11, 0x63, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x1a, 0x71, 0x0a, 0x17, 0x43, 0x61, 0x6c, 0x6c, @@ -2988,7 +2988,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x65, 0x72, 0x73, 0x12, 0x56, 0x0a, 0x0f, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 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, 0x6e, 0x2e, 0x43, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x0e, 0x63, 0x61, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x1a, 0x81, 0x01, 0x0a, 0x1b, 0x53, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, @@ -2996,7 +2996,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x69, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 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, 0x53, 0x69, 0x74, 0x65, 0x6c, + 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x12, 0x73, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x1a, 0xb1, 0x01, 0x0a, 0x16, 0x43, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, @@ -3004,7 +3004,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x64, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x79, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x50, 0x61, 0x72, 0x61, @@ -3015,7 +3015,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x61, 0x64, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x79, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x50, 0x61, 0x72, @@ -3026,7 +3026,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x12, 0x96, 0x01, 0x0a, 0x19, 0x61, 0x64, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x79, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x41, 0x70, 0x70, @@ -3047,14 +3047,14 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x65, 0x74, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x12, 0x48, 0x0a, 0x0a, 0x6e, 0x65, 0x77, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 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, + 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, 0x73, 0x73, 0x65, 0x74, 0x52, 0x09, 0x6e, 0x65, 0x77, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x65, 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0e, 0x65, 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x12, 0x7c, 0x0a, 0x05, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x18, 0x03, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x41, 0x70, 0x70, 0x6c, @@ -3076,7 +3076,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x41, 0x73, 0x73, 0x65, 0x74, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x12, 0x45, 0x0a, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x64, 0x18, 0x01, 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, + 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, 0x64, 0x52, 0x09, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x41, 0x64, 0x1a, 0x76, 0x0a, 0x2d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x64, 0x49, 0x6d, 0x70, 0x72, @@ -3084,13 +3084,13 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x12, 0x45, 0x0a, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x64, 0x18, 0x01, 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, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x52, 0x09, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x41, 0x64, 0x1a, 0x5b, 0x0a, 0x1c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x12, 0x3b, 0x0a, 0x02, 0x61, 0x64, 0x18, 0x01, 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, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x02, 0x61, 0x64, 0x1a, 0x55, 0x0a, 0x21, 0x52, 0x61, 0x69, 0x73, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x61, 0x42, 0x69, 0x64, 0x54, 0x6f, 0x6f, 0x4c, 0x6f, 0x77, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, @@ -3124,7 +3124,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x61, 0x70, 0x70, 0x6c, 0x79, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x42, 0x03, @@ -3144,7 +3144,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x56, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x46, 0x0a, 0x15, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x75, @@ -3165,7 +3165,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x83, 0x01, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x5e, 0x2e, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x44, 0x69, 0x73, 0x6d, 0x69, 0x73, 0x73, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x44, 0x69, 0x73, 0x6d, 0x69, 0x73, 0x73, 0x52, 0x65, 0x63, 0x6f, @@ -3183,7 +3183,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x76, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x44, 0x69, 0x73, 0x6d, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x44, 0x69, 0x73, 0x6d, 0x69, 0x73, 0x73, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x44, 0x69, 0x73, 0x6d, 0x69, 0x73, 0x73, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, @@ -3204,7 +3204,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x72, 0x49, 0x64, 0x12, 0x81, 0x01, 0x0a, 0x14, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x02, 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, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 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, 0x42, 0x03, 0xe0, @@ -3213,7 +3213,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 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, 0x41, 0x64, 0x76, 0x65, + 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, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, @@ -3226,7 +3226,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x1a, 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, 0x18, 0x05, 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, + 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, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x69, @@ -3235,7 +3235,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x88, 0x01, 0x01, 0x12, 0x7a, 0x0a, 0x0c, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x66, @@ -3243,14 +3243,14 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x88, 0x01, 0x01, 0x12, 0x76, 0x0a, 0x0d, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x0b, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x71, 0x0a, 0x09, 0x73, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x53, 0x65, 0x65, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x42, @@ -3259,7 +3259,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x6e, 0x66, 0x6f, 0x12, 0x84, 0x01, 0x0a, 0x15, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x5f, 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, + 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, 0x65, @@ -3277,13 +3277,13 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x69, 0x0a, 0x0d, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 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, 0x2e, 0x41, 0x64, + 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, 0x01, 0x48, 0x00, 0x52, 0x0b, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x54, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x4d, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 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, + 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, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x74, 0x79, 0x70, @@ -3304,49 +3304,49 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x65, 0x12, 0x5c, 0x0a, 0x0f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 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, 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, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x32, 0xeb, 0x06, 0x0a, 0x15, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xee, 0x01, 0x0a, 0x13, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x58, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, - 0x39, 0x3a, 0x01, 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x39, 0x3a, 0x01, 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x3a, 0x61, 0x70, 0x70, 0x6c, 0x79, 0x12, 0xf6, 0x01, 0x0a, 0x15, 0x44, 0x69, 0x73, 0x6d, 0x69, 0x73, 0x73, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x44, 0x69, 0x73, 0x6d, 0x69, 0x73, 0x73, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x44, 0x69, 0x73, 0x6d, 0x69, 0x73, 0x73, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5a, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3b, 0x3a, 0x01, 0x2a, 0x22, 0x36, 0x2f, 0x76, 0x31, - 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, + 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x3a, 0x64, 0x69, 0x73, 0x6d, 0x69, 0x73, 0x73, 0x12, 0xa0, 0x02, 0x0a, 0x17, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x7e, 0xda, 0x41, 0x39, 0x63, 0x75, 0x73, 0x74, 0x6f, @@ -3354,7 +3354,7 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2c, 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3c, 0x3a, 0x01, 0x2a, 0x22, 0x37, 0x2f, - 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, + 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x3a, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, @@ -3363,152 +3363,152 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc 0x77, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x86, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1a, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, - 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, + 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescData = file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc + file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescData = file_google_ads_googleads_v17_services_recommendation_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_recommendation_service_proto_rawDescData -} - -var file_google_ads_googleads_v16_services_recommendation_service_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes = make([]protoimpl.MessageInfo, 36) -var file_google_ads_googleads_v16_services_recommendation_service_proto_goTypes = []interface{}{ - (ApplyRecommendationOperation_AdAssetApplyParameters_ApplyScope)(0), // 0: google.ads.googleads.v16.services.ApplyRecommendationOperation.AdAssetApplyParameters.ApplyScope - (*ApplyRecommendationRequest)(nil), // 1: google.ads.googleads.v16.services.ApplyRecommendationRequest - (*ApplyRecommendationOperation)(nil), // 2: google.ads.googleads.v16.services.ApplyRecommendationOperation - (*ApplyRecommendationResponse)(nil), // 3: google.ads.googleads.v16.services.ApplyRecommendationResponse - (*ApplyRecommendationResult)(nil), // 4: google.ads.googleads.v16.services.ApplyRecommendationResult - (*DismissRecommendationRequest)(nil), // 5: google.ads.googleads.v16.services.DismissRecommendationRequest - (*DismissRecommendationResponse)(nil), // 6: google.ads.googleads.v16.services.DismissRecommendationResponse - (*GenerateRecommendationsRequest)(nil), // 7: google.ads.googleads.v16.services.GenerateRecommendationsRequest - (*GenerateRecommendationsResponse)(nil), // 8: google.ads.googleads.v16.services.GenerateRecommendationsResponse - (*ApplyRecommendationOperation_CampaignBudgetParameters)(nil), // 9: google.ads.googleads.v16.services.ApplyRecommendationOperation.CampaignBudgetParameters - (*ApplyRecommendationOperation_ForecastingSetTargetRoasParameters)(nil), // 10: google.ads.googleads.v16.services.ApplyRecommendationOperation.ForecastingSetTargetRoasParameters - (*ApplyRecommendationOperation_TextAdParameters)(nil), // 11: google.ads.googleads.v16.services.ApplyRecommendationOperation.TextAdParameters - (*ApplyRecommendationOperation_KeywordParameters)(nil), // 12: google.ads.googleads.v16.services.ApplyRecommendationOperation.KeywordParameters - (*ApplyRecommendationOperation_TargetCpaOptInParameters)(nil), // 13: google.ads.googleads.v16.services.ApplyRecommendationOperation.TargetCpaOptInParameters - (*ApplyRecommendationOperation_TargetRoasOptInParameters)(nil), // 14: google.ads.googleads.v16.services.ApplyRecommendationOperation.TargetRoasOptInParameters - (*ApplyRecommendationOperation_CalloutExtensionParameters)(nil), // 15: google.ads.googleads.v16.services.ApplyRecommendationOperation.CalloutExtensionParameters - (*ApplyRecommendationOperation_CallExtensionParameters)(nil), // 16: google.ads.googleads.v16.services.ApplyRecommendationOperation.CallExtensionParameters - (*ApplyRecommendationOperation_SitelinkExtensionParameters)(nil), // 17: google.ads.googleads.v16.services.ApplyRecommendationOperation.SitelinkExtensionParameters - (*ApplyRecommendationOperation_CalloutAssetParameters)(nil), // 18: google.ads.googleads.v16.services.ApplyRecommendationOperation.CalloutAssetParameters - (*ApplyRecommendationOperation_CallAssetParameters)(nil), // 19: google.ads.googleads.v16.services.ApplyRecommendationOperation.CallAssetParameters - (*ApplyRecommendationOperation_SitelinkAssetParameters)(nil), // 20: google.ads.googleads.v16.services.ApplyRecommendationOperation.SitelinkAssetParameters - (*ApplyRecommendationOperation_RaiseTargetCpaParameters)(nil), // 21: google.ads.googleads.v16.services.ApplyRecommendationOperation.RaiseTargetCpaParameters - (*ApplyRecommendationOperation_LowerTargetRoasParameters)(nil), // 22: google.ads.googleads.v16.services.ApplyRecommendationOperation.LowerTargetRoasParameters - (*ApplyRecommendationOperation_AdAssetApplyParameters)(nil), // 23: google.ads.googleads.v16.services.ApplyRecommendationOperation.AdAssetApplyParameters - (*ApplyRecommendationOperation_MoveUnusedBudgetParameters)(nil), // 24: google.ads.googleads.v16.services.ApplyRecommendationOperation.MoveUnusedBudgetParameters - (*ApplyRecommendationOperation_ResponsiveSearchAdAssetParameters)(nil), // 25: google.ads.googleads.v16.services.ApplyRecommendationOperation.ResponsiveSearchAdAssetParameters - (*ApplyRecommendationOperation_ResponsiveSearchAdImproveAdStrengthParameters)(nil), // 26: google.ads.googleads.v16.services.ApplyRecommendationOperation.ResponsiveSearchAdImproveAdStrengthParameters - (*ApplyRecommendationOperation_ResponsiveSearchAdParameters)(nil), // 27: google.ads.googleads.v16.services.ApplyRecommendationOperation.ResponsiveSearchAdParameters - (*ApplyRecommendationOperation_RaiseTargetCpaBidTooLowParameters)(nil), // 28: google.ads.googleads.v16.services.ApplyRecommendationOperation.RaiseTargetCpaBidTooLowParameters - (*ApplyRecommendationOperation_UseBroadMatchKeywordParameters)(nil), // 29: google.ads.googleads.v16.services.ApplyRecommendationOperation.UseBroadMatchKeywordParameters - (*ApplyRecommendationOperation_ForecastingSetTargetCpaParameters)(nil), // 30: google.ads.googleads.v16.services.ApplyRecommendationOperation.ForecastingSetTargetCpaParameters - (*ApplyRecommendationOperation_LeadFormAssetParameters)(nil), // 31: google.ads.googleads.v16.services.ApplyRecommendationOperation.LeadFormAssetParameters - (*DismissRecommendationRequest_DismissRecommendationOperation)(nil), // 32: google.ads.googleads.v16.services.DismissRecommendationRequest.DismissRecommendationOperation - (*DismissRecommendationResponse_DismissRecommendationResult)(nil), // 33: google.ads.googleads.v16.services.DismissRecommendationResponse.DismissRecommendationResult - (*GenerateRecommendationsRequest_BiddingInfo)(nil), // 34: google.ads.googleads.v16.services.GenerateRecommendationsRequest.BiddingInfo - (*GenerateRecommendationsRequest_AdGroupInfo)(nil), // 35: google.ads.googleads.v16.services.GenerateRecommendationsRequest.AdGroupInfo - (*GenerateRecommendationsRequest_SeedInfo)(nil), // 36: google.ads.googleads.v16.services.GenerateRecommendationsRequest.SeedInfo + return file_google_ads_googleads_v17_services_recommendation_service_proto_rawDescData +} + +var file_google_ads_googleads_v17_services_recommendation_service_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes = make([]protoimpl.MessageInfo, 36) +var file_google_ads_googleads_v17_services_recommendation_service_proto_goTypes = []interface{}{ + (ApplyRecommendationOperation_AdAssetApplyParameters_ApplyScope)(0), // 0: google.ads.googleads.v17.services.ApplyRecommendationOperation.AdAssetApplyParameters.ApplyScope + (*ApplyRecommendationRequest)(nil), // 1: google.ads.googleads.v17.services.ApplyRecommendationRequest + (*ApplyRecommendationOperation)(nil), // 2: google.ads.googleads.v17.services.ApplyRecommendationOperation + (*ApplyRecommendationResponse)(nil), // 3: google.ads.googleads.v17.services.ApplyRecommendationResponse + (*ApplyRecommendationResult)(nil), // 4: google.ads.googleads.v17.services.ApplyRecommendationResult + (*DismissRecommendationRequest)(nil), // 5: google.ads.googleads.v17.services.DismissRecommendationRequest + (*DismissRecommendationResponse)(nil), // 6: google.ads.googleads.v17.services.DismissRecommendationResponse + (*GenerateRecommendationsRequest)(nil), // 7: google.ads.googleads.v17.services.GenerateRecommendationsRequest + (*GenerateRecommendationsResponse)(nil), // 8: google.ads.googleads.v17.services.GenerateRecommendationsResponse + (*ApplyRecommendationOperation_CampaignBudgetParameters)(nil), // 9: google.ads.googleads.v17.services.ApplyRecommendationOperation.CampaignBudgetParameters + (*ApplyRecommendationOperation_ForecastingSetTargetRoasParameters)(nil), // 10: google.ads.googleads.v17.services.ApplyRecommendationOperation.ForecastingSetTargetRoasParameters + (*ApplyRecommendationOperation_TextAdParameters)(nil), // 11: google.ads.googleads.v17.services.ApplyRecommendationOperation.TextAdParameters + (*ApplyRecommendationOperation_KeywordParameters)(nil), // 12: google.ads.googleads.v17.services.ApplyRecommendationOperation.KeywordParameters + (*ApplyRecommendationOperation_TargetCpaOptInParameters)(nil), // 13: google.ads.googleads.v17.services.ApplyRecommendationOperation.TargetCpaOptInParameters + (*ApplyRecommendationOperation_TargetRoasOptInParameters)(nil), // 14: google.ads.googleads.v17.services.ApplyRecommendationOperation.TargetRoasOptInParameters + (*ApplyRecommendationOperation_CalloutExtensionParameters)(nil), // 15: google.ads.googleads.v17.services.ApplyRecommendationOperation.CalloutExtensionParameters + (*ApplyRecommendationOperation_CallExtensionParameters)(nil), // 16: google.ads.googleads.v17.services.ApplyRecommendationOperation.CallExtensionParameters + (*ApplyRecommendationOperation_SitelinkExtensionParameters)(nil), // 17: google.ads.googleads.v17.services.ApplyRecommendationOperation.SitelinkExtensionParameters + (*ApplyRecommendationOperation_CalloutAssetParameters)(nil), // 18: google.ads.googleads.v17.services.ApplyRecommendationOperation.CalloutAssetParameters + (*ApplyRecommendationOperation_CallAssetParameters)(nil), // 19: google.ads.googleads.v17.services.ApplyRecommendationOperation.CallAssetParameters + (*ApplyRecommendationOperation_SitelinkAssetParameters)(nil), // 20: google.ads.googleads.v17.services.ApplyRecommendationOperation.SitelinkAssetParameters + (*ApplyRecommendationOperation_RaiseTargetCpaParameters)(nil), // 21: google.ads.googleads.v17.services.ApplyRecommendationOperation.RaiseTargetCpaParameters + (*ApplyRecommendationOperation_LowerTargetRoasParameters)(nil), // 22: google.ads.googleads.v17.services.ApplyRecommendationOperation.LowerTargetRoasParameters + (*ApplyRecommendationOperation_AdAssetApplyParameters)(nil), // 23: google.ads.googleads.v17.services.ApplyRecommendationOperation.AdAssetApplyParameters + (*ApplyRecommendationOperation_MoveUnusedBudgetParameters)(nil), // 24: google.ads.googleads.v17.services.ApplyRecommendationOperation.MoveUnusedBudgetParameters + (*ApplyRecommendationOperation_ResponsiveSearchAdAssetParameters)(nil), // 25: google.ads.googleads.v17.services.ApplyRecommendationOperation.ResponsiveSearchAdAssetParameters + (*ApplyRecommendationOperation_ResponsiveSearchAdImproveAdStrengthParameters)(nil), // 26: google.ads.googleads.v17.services.ApplyRecommendationOperation.ResponsiveSearchAdImproveAdStrengthParameters + (*ApplyRecommendationOperation_ResponsiveSearchAdParameters)(nil), // 27: google.ads.googleads.v17.services.ApplyRecommendationOperation.ResponsiveSearchAdParameters + (*ApplyRecommendationOperation_RaiseTargetCpaBidTooLowParameters)(nil), // 28: google.ads.googleads.v17.services.ApplyRecommendationOperation.RaiseTargetCpaBidTooLowParameters + (*ApplyRecommendationOperation_UseBroadMatchKeywordParameters)(nil), // 29: google.ads.googleads.v17.services.ApplyRecommendationOperation.UseBroadMatchKeywordParameters + (*ApplyRecommendationOperation_ForecastingSetTargetCpaParameters)(nil), // 30: google.ads.googleads.v17.services.ApplyRecommendationOperation.ForecastingSetTargetCpaParameters + (*ApplyRecommendationOperation_LeadFormAssetParameters)(nil), // 31: google.ads.googleads.v17.services.ApplyRecommendationOperation.LeadFormAssetParameters + (*DismissRecommendationRequest_DismissRecommendationOperation)(nil), // 32: google.ads.googleads.v17.services.DismissRecommendationRequest.DismissRecommendationOperation + (*DismissRecommendationResponse_DismissRecommendationResult)(nil), // 33: google.ads.googleads.v17.services.DismissRecommendationResponse.DismissRecommendationResult + (*GenerateRecommendationsRequest_BiddingInfo)(nil), // 34: google.ads.googleads.v17.services.GenerateRecommendationsRequest.BiddingInfo + (*GenerateRecommendationsRequest_AdGroupInfo)(nil), // 35: google.ads.googleads.v17.services.GenerateRecommendationsRequest.AdGroupInfo + (*GenerateRecommendationsRequest_SeedInfo)(nil), // 36: google.ads.googleads.v17.services.GenerateRecommendationsRequest.SeedInfo (*status.Status)(nil), // 37: google.rpc.Status - (enums.RecommendationTypeEnum_RecommendationType)(0), // 38: google.ads.googleads.v16.enums.RecommendationTypeEnum.RecommendationType - (enums.AdvertisingChannelTypeEnum_AdvertisingChannelType)(0), // 39: google.ads.googleads.v16.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType - (enums.ConversionTrackingStatusEnum_ConversionTrackingStatus)(0), // 40: google.ads.googleads.v16.enums.ConversionTrackingStatusEnum.ConversionTrackingStatus - (*resources.Recommendation)(nil), // 41: google.ads.googleads.v16.resources.Recommendation - (*resources.Ad)(nil), // 42: google.ads.googleads.v16.resources.Ad - (enums.KeywordMatchTypeEnum_KeywordMatchType)(0), // 43: google.ads.googleads.v16.enums.KeywordMatchTypeEnum.KeywordMatchType - (*common.CalloutFeedItem)(nil), // 44: google.ads.googleads.v16.common.CalloutFeedItem - (*common.CallFeedItem)(nil), // 45: google.ads.googleads.v16.common.CallFeedItem - (*common.SitelinkFeedItem)(nil), // 46: google.ads.googleads.v16.common.SitelinkFeedItem - (*resources.Asset)(nil), // 47: google.ads.googleads.v16.resources.Asset - (enums.BiddingStrategyTypeEnum_BiddingStrategyType)(0), // 48: google.ads.googleads.v16.enums.BiddingStrategyTypeEnum.BiddingStrategyType - (enums.AdGroupTypeEnum_AdGroupType)(0), // 49: google.ads.googleads.v16.enums.AdGroupTypeEnum.AdGroupType - (*common.KeywordInfo)(nil), // 50: google.ads.googleads.v16.common.KeywordInfo -} -var file_google_ads_googleads_v16_services_recommendation_service_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v16.services.ApplyRecommendationRequest.operations:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation - 9, // 1: google.ads.googleads.v16.services.ApplyRecommendationOperation.campaign_budget:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation.CampaignBudgetParameters - 11, // 2: google.ads.googleads.v16.services.ApplyRecommendationOperation.text_ad:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation.TextAdParameters - 12, // 3: google.ads.googleads.v16.services.ApplyRecommendationOperation.keyword:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation.KeywordParameters - 13, // 4: google.ads.googleads.v16.services.ApplyRecommendationOperation.target_cpa_opt_in:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation.TargetCpaOptInParameters - 14, // 5: google.ads.googleads.v16.services.ApplyRecommendationOperation.target_roas_opt_in:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation.TargetRoasOptInParameters - 15, // 6: google.ads.googleads.v16.services.ApplyRecommendationOperation.callout_extension:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation.CalloutExtensionParameters - 16, // 7: google.ads.googleads.v16.services.ApplyRecommendationOperation.call_extension:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation.CallExtensionParameters - 17, // 8: google.ads.googleads.v16.services.ApplyRecommendationOperation.sitelink_extension:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation.SitelinkExtensionParameters - 24, // 9: google.ads.googleads.v16.services.ApplyRecommendationOperation.move_unused_budget:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation.MoveUnusedBudgetParameters - 27, // 10: google.ads.googleads.v16.services.ApplyRecommendationOperation.responsive_search_ad:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation.ResponsiveSearchAdParameters - 29, // 11: google.ads.googleads.v16.services.ApplyRecommendationOperation.use_broad_match_keyword:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation.UseBroadMatchKeywordParameters - 25, // 12: google.ads.googleads.v16.services.ApplyRecommendationOperation.responsive_search_ad_asset:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation.ResponsiveSearchAdAssetParameters - 26, // 13: google.ads.googleads.v16.services.ApplyRecommendationOperation.responsive_search_ad_improve_ad_strength:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation.ResponsiveSearchAdImproveAdStrengthParameters - 28, // 14: google.ads.googleads.v16.services.ApplyRecommendationOperation.raise_target_cpa_bid_too_low:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation.RaiseTargetCpaBidTooLowParameters - 10, // 15: google.ads.googleads.v16.services.ApplyRecommendationOperation.forecasting_set_target_roas:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation.ForecastingSetTargetRoasParameters - 18, // 16: google.ads.googleads.v16.services.ApplyRecommendationOperation.callout_asset:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation.CalloutAssetParameters - 19, // 17: google.ads.googleads.v16.services.ApplyRecommendationOperation.call_asset:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation.CallAssetParameters - 20, // 18: google.ads.googleads.v16.services.ApplyRecommendationOperation.sitelink_asset:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation.SitelinkAssetParameters - 21, // 19: google.ads.googleads.v16.services.ApplyRecommendationOperation.raise_target_cpa:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation.RaiseTargetCpaParameters - 22, // 20: google.ads.googleads.v16.services.ApplyRecommendationOperation.lower_target_roas:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation.LowerTargetRoasParameters - 30, // 21: google.ads.googleads.v16.services.ApplyRecommendationOperation.forecasting_set_target_cpa:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation.ForecastingSetTargetCpaParameters - 30, // 22: google.ads.googleads.v16.services.ApplyRecommendationOperation.set_target_cpa:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation.ForecastingSetTargetCpaParameters - 10, // 23: google.ads.googleads.v16.services.ApplyRecommendationOperation.set_target_roas:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation.ForecastingSetTargetRoasParameters - 31, // 24: google.ads.googleads.v16.services.ApplyRecommendationOperation.lead_form_asset:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation.LeadFormAssetParameters - 4, // 25: google.ads.googleads.v16.services.ApplyRecommendationResponse.results:type_name -> google.ads.googleads.v16.services.ApplyRecommendationResult - 37, // 26: google.ads.googleads.v16.services.ApplyRecommendationResponse.partial_failure_error:type_name -> google.rpc.Status - 32, // 27: google.ads.googleads.v16.services.DismissRecommendationRequest.operations:type_name -> google.ads.googleads.v16.services.DismissRecommendationRequest.DismissRecommendationOperation - 33, // 28: google.ads.googleads.v16.services.DismissRecommendationResponse.results:type_name -> google.ads.googleads.v16.services.DismissRecommendationResponse.DismissRecommendationResult - 37, // 29: google.ads.googleads.v16.services.DismissRecommendationResponse.partial_failure_error:type_name -> google.rpc.Status - 38, // 30: google.ads.googleads.v16.services.GenerateRecommendationsRequest.recommendation_types:type_name -> google.ads.googleads.v16.enums.RecommendationTypeEnum.RecommendationType - 39, // 31: google.ads.googleads.v16.services.GenerateRecommendationsRequest.advertising_channel_type:type_name -> google.ads.googleads.v16.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType - 40, // 32: google.ads.googleads.v16.services.GenerateRecommendationsRequest.conversion_tracking_status:type_name -> google.ads.googleads.v16.enums.ConversionTrackingStatusEnum.ConversionTrackingStatus - 34, // 33: google.ads.googleads.v16.services.GenerateRecommendationsRequest.bidding_info:type_name -> google.ads.googleads.v16.services.GenerateRecommendationsRequest.BiddingInfo - 35, // 34: google.ads.googleads.v16.services.GenerateRecommendationsRequest.ad_group_info:type_name -> google.ads.googleads.v16.services.GenerateRecommendationsRequest.AdGroupInfo - 36, // 35: google.ads.googleads.v16.services.GenerateRecommendationsRequest.seed_info:type_name -> google.ads.googleads.v16.services.GenerateRecommendationsRequest.SeedInfo - 41, // 36: google.ads.googleads.v16.services.GenerateRecommendationsResponse.recommendations:type_name -> google.ads.googleads.v16.resources.Recommendation - 42, // 37: google.ads.googleads.v16.services.ApplyRecommendationOperation.TextAdParameters.ad:type_name -> google.ads.googleads.v16.resources.Ad - 43, // 38: google.ads.googleads.v16.services.ApplyRecommendationOperation.KeywordParameters.match_type:type_name -> google.ads.googleads.v16.enums.KeywordMatchTypeEnum.KeywordMatchType - 44, // 39: google.ads.googleads.v16.services.ApplyRecommendationOperation.CalloutExtensionParameters.callout_extensions:type_name -> google.ads.googleads.v16.common.CalloutFeedItem - 45, // 40: google.ads.googleads.v16.services.ApplyRecommendationOperation.CallExtensionParameters.call_extensions:type_name -> google.ads.googleads.v16.common.CallFeedItem - 46, // 41: google.ads.googleads.v16.services.ApplyRecommendationOperation.SitelinkExtensionParameters.sitelink_extensions:type_name -> google.ads.googleads.v16.common.SitelinkFeedItem - 23, // 42: google.ads.googleads.v16.services.ApplyRecommendationOperation.CalloutAssetParameters.ad_asset_apply_parameters:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation.AdAssetApplyParameters - 23, // 43: google.ads.googleads.v16.services.ApplyRecommendationOperation.CallAssetParameters.ad_asset_apply_parameters:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation.AdAssetApplyParameters - 23, // 44: google.ads.googleads.v16.services.ApplyRecommendationOperation.SitelinkAssetParameters.ad_asset_apply_parameters:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation.AdAssetApplyParameters - 47, // 45: google.ads.googleads.v16.services.ApplyRecommendationOperation.AdAssetApplyParameters.new_assets:type_name -> google.ads.googleads.v16.resources.Asset - 0, // 46: google.ads.googleads.v16.services.ApplyRecommendationOperation.AdAssetApplyParameters.scope:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation.AdAssetApplyParameters.ApplyScope - 42, // 47: google.ads.googleads.v16.services.ApplyRecommendationOperation.ResponsiveSearchAdAssetParameters.updated_ad:type_name -> google.ads.googleads.v16.resources.Ad - 42, // 48: google.ads.googleads.v16.services.ApplyRecommendationOperation.ResponsiveSearchAdImproveAdStrengthParameters.updated_ad:type_name -> google.ads.googleads.v16.resources.Ad - 42, // 49: google.ads.googleads.v16.services.ApplyRecommendationOperation.ResponsiveSearchAdParameters.ad:type_name -> google.ads.googleads.v16.resources.Ad - 23, // 50: google.ads.googleads.v16.services.ApplyRecommendationOperation.LeadFormAssetParameters.ad_asset_apply_parameters:type_name -> google.ads.googleads.v16.services.ApplyRecommendationOperation.AdAssetApplyParameters - 48, // 51: google.ads.googleads.v16.services.GenerateRecommendationsRequest.BiddingInfo.bidding_strategy_type:type_name -> google.ads.googleads.v16.enums.BiddingStrategyTypeEnum.BiddingStrategyType - 49, // 52: google.ads.googleads.v16.services.GenerateRecommendationsRequest.AdGroupInfo.ad_group_type:type_name -> google.ads.googleads.v16.enums.AdGroupTypeEnum.AdGroupType - 50, // 53: google.ads.googleads.v16.services.GenerateRecommendationsRequest.AdGroupInfo.keywords:type_name -> google.ads.googleads.v16.common.KeywordInfo - 1, // 54: google.ads.googleads.v16.services.RecommendationService.ApplyRecommendation:input_type -> google.ads.googleads.v16.services.ApplyRecommendationRequest - 5, // 55: google.ads.googleads.v16.services.RecommendationService.DismissRecommendation:input_type -> google.ads.googleads.v16.services.DismissRecommendationRequest - 7, // 56: google.ads.googleads.v16.services.RecommendationService.GenerateRecommendations:input_type -> google.ads.googleads.v16.services.GenerateRecommendationsRequest - 3, // 57: google.ads.googleads.v16.services.RecommendationService.ApplyRecommendation:output_type -> google.ads.googleads.v16.services.ApplyRecommendationResponse - 6, // 58: google.ads.googleads.v16.services.RecommendationService.DismissRecommendation:output_type -> google.ads.googleads.v16.services.DismissRecommendationResponse - 8, // 59: google.ads.googleads.v16.services.RecommendationService.GenerateRecommendations:output_type -> google.ads.googleads.v16.services.GenerateRecommendationsResponse + (enums.RecommendationTypeEnum_RecommendationType)(0), // 38: google.ads.googleads.v17.enums.RecommendationTypeEnum.RecommendationType + (enums.AdvertisingChannelTypeEnum_AdvertisingChannelType)(0), // 39: google.ads.googleads.v17.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType + (enums.ConversionTrackingStatusEnum_ConversionTrackingStatus)(0), // 40: google.ads.googleads.v17.enums.ConversionTrackingStatusEnum.ConversionTrackingStatus + (*resources.Recommendation)(nil), // 41: google.ads.googleads.v17.resources.Recommendation + (*resources.Ad)(nil), // 42: google.ads.googleads.v17.resources.Ad + (enums.KeywordMatchTypeEnum_KeywordMatchType)(0), // 43: google.ads.googleads.v17.enums.KeywordMatchTypeEnum.KeywordMatchType + (*common.CalloutFeedItem)(nil), // 44: google.ads.googleads.v17.common.CalloutFeedItem + (*common.CallFeedItem)(nil), // 45: google.ads.googleads.v17.common.CallFeedItem + (*common.SitelinkFeedItem)(nil), // 46: google.ads.googleads.v17.common.SitelinkFeedItem + (*resources.Asset)(nil), // 47: google.ads.googleads.v17.resources.Asset + (enums.BiddingStrategyTypeEnum_BiddingStrategyType)(0), // 48: google.ads.googleads.v17.enums.BiddingStrategyTypeEnum.BiddingStrategyType + (enums.AdGroupTypeEnum_AdGroupType)(0), // 49: google.ads.googleads.v17.enums.AdGroupTypeEnum.AdGroupType + (*common.KeywordInfo)(nil), // 50: google.ads.googleads.v17.common.KeywordInfo +} +var file_google_ads_googleads_v17_services_recommendation_service_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v17.services.ApplyRecommendationRequest.operations:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation + 9, // 1: google.ads.googleads.v17.services.ApplyRecommendationOperation.campaign_budget:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation.CampaignBudgetParameters + 11, // 2: google.ads.googleads.v17.services.ApplyRecommendationOperation.text_ad:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation.TextAdParameters + 12, // 3: google.ads.googleads.v17.services.ApplyRecommendationOperation.keyword:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation.KeywordParameters + 13, // 4: google.ads.googleads.v17.services.ApplyRecommendationOperation.target_cpa_opt_in:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation.TargetCpaOptInParameters + 14, // 5: google.ads.googleads.v17.services.ApplyRecommendationOperation.target_roas_opt_in:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation.TargetRoasOptInParameters + 15, // 6: google.ads.googleads.v17.services.ApplyRecommendationOperation.callout_extension:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation.CalloutExtensionParameters + 16, // 7: google.ads.googleads.v17.services.ApplyRecommendationOperation.call_extension:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation.CallExtensionParameters + 17, // 8: google.ads.googleads.v17.services.ApplyRecommendationOperation.sitelink_extension:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation.SitelinkExtensionParameters + 24, // 9: google.ads.googleads.v17.services.ApplyRecommendationOperation.move_unused_budget:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation.MoveUnusedBudgetParameters + 27, // 10: google.ads.googleads.v17.services.ApplyRecommendationOperation.responsive_search_ad:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation.ResponsiveSearchAdParameters + 29, // 11: google.ads.googleads.v17.services.ApplyRecommendationOperation.use_broad_match_keyword:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation.UseBroadMatchKeywordParameters + 25, // 12: google.ads.googleads.v17.services.ApplyRecommendationOperation.responsive_search_ad_asset:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation.ResponsiveSearchAdAssetParameters + 26, // 13: google.ads.googleads.v17.services.ApplyRecommendationOperation.responsive_search_ad_improve_ad_strength:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation.ResponsiveSearchAdImproveAdStrengthParameters + 28, // 14: google.ads.googleads.v17.services.ApplyRecommendationOperation.raise_target_cpa_bid_too_low:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation.RaiseTargetCpaBidTooLowParameters + 10, // 15: google.ads.googleads.v17.services.ApplyRecommendationOperation.forecasting_set_target_roas:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation.ForecastingSetTargetRoasParameters + 18, // 16: google.ads.googleads.v17.services.ApplyRecommendationOperation.callout_asset:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation.CalloutAssetParameters + 19, // 17: google.ads.googleads.v17.services.ApplyRecommendationOperation.call_asset:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation.CallAssetParameters + 20, // 18: google.ads.googleads.v17.services.ApplyRecommendationOperation.sitelink_asset:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation.SitelinkAssetParameters + 21, // 19: google.ads.googleads.v17.services.ApplyRecommendationOperation.raise_target_cpa:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation.RaiseTargetCpaParameters + 22, // 20: google.ads.googleads.v17.services.ApplyRecommendationOperation.lower_target_roas:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation.LowerTargetRoasParameters + 30, // 21: google.ads.googleads.v17.services.ApplyRecommendationOperation.forecasting_set_target_cpa:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation.ForecastingSetTargetCpaParameters + 30, // 22: google.ads.googleads.v17.services.ApplyRecommendationOperation.set_target_cpa:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation.ForecastingSetTargetCpaParameters + 10, // 23: google.ads.googleads.v17.services.ApplyRecommendationOperation.set_target_roas:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation.ForecastingSetTargetRoasParameters + 31, // 24: google.ads.googleads.v17.services.ApplyRecommendationOperation.lead_form_asset:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation.LeadFormAssetParameters + 4, // 25: google.ads.googleads.v17.services.ApplyRecommendationResponse.results:type_name -> google.ads.googleads.v17.services.ApplyRecommendationResult + 37, // 26: google.ads.googleads.v17.services.ApplyRecommendationResponse.partial_failure_error:type_name -> google.rpc.Status + 32, // 27: google.ads.googleads.v17.services.DismissRecommendationRequest.operations:type_name -> google.ads.googleads.v17.services.DismissRecommendationRequest.DismissRecommendationOperation + 33, // 28: google.ads.googleads.v17.services.DismissRecommendationResponse.results:type_name -> google.ads.googleads.v17.services.DismissRecommendationResponse.DismissRecommendationResult + 37, // 29: google.ads.googleads.v17.services.DismissRecommendationResponse.partial_failure_error:type_name -> google.rpc.Status + 38, // 30: google.ads.googleads.v17.services.GenerateRecommendationsRequest.recommendation_types:type_name -> google.ads.googleads.v17.enums.RecommendationTypeEnum.RecommendationType + 39, // 31: google.ads.googleads.v17.services.GenerateRecommendationsRequest.advertising_channel_type:type_name -> google.ads.googleads.v17.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType + 40, // 32: google.ads.googleads.v17.services.GenerateRecommendationsRequest.conversion_tracking_status:type_name -> google.ads.googleads.v17.enums.ConversionTrackingStatusEnum.ConversionTrackingStatus + 34, // 33: google.ads.googleads.v17.services.GenerateRecommendationsRequest.bidding_info:type_name -> google.ads.googleads.v17.services.GenerateRecommendationsRequest.BiddingInfo + 35, // 34: google.ads.googleads.v17.services.GenerateRecommendationsRequest.ad_group_info:type_name -> google.ads.googleads.v17.services.GenerateRecommendationsRequest.AdGroupInfo + 36, // 35: google.ads.googleads.v17.services.GenerateRecommendationsRequest.seed_info:type_name -> google.ads.googleads.v17.services.GenerateRecommendationsRequest.SeedInfo + 41, // 36: google.ads.googleads.v17.services.GenerateRecommendationsResponse.recommendations:type_name -> google.ads.googleads.v17.resources.Recommendation + 42, // 37: google.ads.googleads.v17.services.ApplyRecommendationOperation.TextAdParameters.ad:type_name -> google.ads.googleads.v17.resources.Ad + 43, // 38: google.ads.googleads.v17.services.ApplyRecommendationOperation.KeywordParameters.match_type:type_name -> google.ads.googleads.v17.enums.KeywordMatchTypeEnum.KeywordMatchType + 44, // 39: google.ads.googleads.v17.services.ApplyRecommendationOperation.CalloutExtensionParameters.callout_extensions:type_name -> google.ads.googleads.v17.common.CalloutFeedItem + 45, // 40: google.ads.googleads.v17.services.ApplyRecommendationOperation.CallExtensionParameters.call_extensions:type_name -> google.ads.googleads.v17.common.CallFeedItem + 46, // 41: google.ads.googleads.v17.services.ApplyRecommendationOperation.SitelinkExtensionParameters.sitelink_extensions:type_name -> google.ads.googleads.v17.common.SitelinkFeedItem + 23, // 42: google.ads.googleads.v17.services.ApplyRecommendationOperation.CalloutAssetParameters.ad_asset_apply_parameters:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation.AdAssetApplyParameters + 23, // 43: google.ads.googleads.v17.services.ApplyRecommendationOperation.CallAssetParameters.ad_asset_apply_parameters:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation.AdAssetApplyParameters + 23, // 44: google.ads.googleads.v17.services.ApplyRecommendationOperation.SitelinkAssetParameters.ad_asset_apply_parameters:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation.AdAssetApplyParameters + 47, // 45: google.ads.googleads.v17.services.ApplyRecommendationOperation.AdAssetApplyParameters.new_assets:type_name -> google.ads.googleads.v17.resources.Asset + 0, // 46: google.ads.googleads.v17.services.ApplyRecommendationOperation.AdAssetApplyParameters.scope:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation.AdAssetApplyParameters.ApplyScope + 42, // 47: google.ads.googleads.v17.services.ApplyRecommendationOperation.ResponsiveSearchAdAssetParameters.updated_ad:type_name -> google.ads.googleads.v17.resources.Ad + 42, // 48: google.ads.googleads.v17.services.ApplyRecommendationOperation.ResponsiveSearchAdImproveAdStrengthParameters.updated_ad:type_name -> google.ads.googleads.v17.resources.Ad + 42, // 49: google.ads.googleads.v17.services.ApplyRecommendationOperation.ResponsiveSearchAdParameters.ad:type_name -> google.ads.googleads.v17.resources.Ad + 23, // 50: google.ads.googleads.v17.services.ApplyRecommendationOperation.LeadFormAssetParameters.ad_asset_apply_parameters:type_name -> google.ads.googleads.v17.services.ApplyRecommendationOperation.AdAssetApplyParameters + 48, // 51: google.ads.googleads.v17.services.GenerateRecommendationsRequest.BiddingInfo.bidding_strategy_type:type_name -> google.ads.googleads.v17.enums.BiddingStrategyTypeEnum.BiddingStrategyType + 49, // 52: google.ads.googleads.v17.services.GenerateRecommendationsRequest.AdGroupInfo.ad_group_type:type_name -> google.ads.googleads.v17.enums.AdGroupTypeEnum.AdGroupType + 50, // 53: google.ads.googleads.v17.services.GenerateRecommendationsRequest.AdGroupInfo.keywords:type_name -> google.ads.googleads.v17.common.KeywordInfo + 1, // 54: google.ads.googleads.v17.services.RecommendationService.ApplyRecommendation:input_type -> google.ads.googleads.v17.services.ApplyRecommendationRequest + 5, // 55: google.ads.googleads.v17.services.RecommendationService.DismissRecommendation:input_type -> google.ads.googleads.v17.services.DismissRecommendationRequest + 7, // 56: google.ads.googleads.v17.services.RecommendationService.GenerateRecommendations:input_type -> google.ads.googleads.v17.services.GenerateRecommendationsRequest + 3, // 57: google.ads.googleads.v17.services.RecommendationService.ApplyRecommendation:output_type -> google.ads.googleads.v17.services.ApplyRecommendationResponse + 6, // 58: google.ads.googleads.v17.services.RecommendationService.DismissRecommendation:output_type -> google.ads.googleads.v17.services.DismissRecommendationResponse + 8, // 59: google.ads.googleads.v17.services.RecommendationService.GenerateRecommendations:output_type -> google.ads.googleads.v17.services.GenerateRecommendationsResponse 57, // [57:60] is the sub-list for method output_type 54, // [54:57] is the sub-list for method input_type 54, // [54:54] is the sub-list for extension type_name @@ -3516,13 +3516,13 @@ var file_google_ads_googleads_v16_services_recommendation_service_proto_depIdxs 0, // [0:54] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_recommendation_service_proto_init() } -func file_google_ads_googleads_v16_services_recommendation_service_proto_init() { - if File_google_ads_googleads_v16_services_recommendation_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_recommendation_service_proto_init() } +func file_google_ads_googleads_v17_services_recommendation_service_proto_init() { + if File_google_ads_googleads_v17_services_recommendation_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ApplyRecommendationRequest); i { case 0: return &v.state @@ -3534,7 +3534,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ApplyRecommendationOperation); i { case 0: return &v.state @@ -3546,7 +3546,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ApplyRecommendationResponse); i { case 0: return &v.state @@ -3558,7 +3558,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ApplyRecommendationResult); i { case 0: return &v.state @@ -3570,7 +3570,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DismissRecommendationRequest); i { case 0: return &v.state @@ -3582,7 +3582,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DismissRecommendationResponse); i { case 0: return &v.state @@ -3594,7 +3594,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GenerateRecommendationsRequest); i { case 0: return &v.state @@ -3606,7 +3606,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GenerateRecommendationsResponse); i { case 0: return &v.state @@ -3618,7 +3618,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ApplyRecommendationOperation_CampaignBudgetParameters); i { case 0: return &v.state @@ -3630,7 +3630,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ApplyRecommendationOperation_ForecastingSetTargetRoasParameters); i { case 0: return &v.state @@ -3642,7 +3642,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ApplyRecommendationOperation_TextAdParameters); i { case 0: return &v.state @@ -3654,7 +3654,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ApplyRecommendationOperation_KeywordParameters); i { case 0: return &v.state @@ -3666,7 +3666,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ApplyRecommendationOperation_TargetCpaOptInParameters); i { case 0: return &v.state @@ -3678,7 +3678,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ApplyRecommendationOperation_TargetRoasOptInParameters); i { case 0: return &v.state @@ -3690,7 +3690,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ApplyRecommendationOperation_CalloutExtensionParameters); i { case 0: return &v.state @@ -3702,7 +3702,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ApplyRecommendationOperation_CallExtensionParameters); i { case 0: return &v.state @@ -3714,7 +3714,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ApplyRecommendationOperation_SitelinkExtensionParameters); i { case 0: return &v.state @@ -3726,7 +3726,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ApplyRecommendationOperation_CalloutAssetParameters); i { case 0: return &v.state @@ -3738,7 +3738,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ApplyRecommendationOperation_CallAssetParameters); i { case 0: return &v.state @@ -3750,7 +3750,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ApplyRecommendationOperation_SitelinkAssetParameters); i { case 0: return &v.state @@ -3762,7 +3762,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ApplyRecommendationOperation_RaiseTargetCpaParameters); i { case 0: return &v.state @@ -3774,7 +3774,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ApplyRecommendationOperation_LowerTargetRoasParameters); i { case 0: return &v.state @@ -3786,7 +3786,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ApplyRecommendationOperation_AdAssetApplyParameters); i { case 0: return &v.state @@ -3798,7 +3798,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ApplyRecommendationOperation_MoveUnusedBudgetParameters); i { case 0: return &v.state @@ -3810,7 +3810,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ApplyRecommendationOperation_ResponsiveSearchAdAssetParameters); i { case 0: return &v.state @@ -3822,7 +3822,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ApplyRecommendationOperation_ResponsiveSearchAdImproveAdStrengthParameters); i { case 0: return &v.state @@ -3834,7 +3834,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ApplyRecommendationOperation_ResponsiveSearchAdParameters); i { case 0: return &v.state @@ -3846,7 +3846,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ApplyRecommendationOperation_RaiseTargetCpaBidTooLowParameters); i { case 0: return &v.state @@ -3858,7 +3858,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ApplyRecommendationOperation_UseBroadMatchKeywordParameters); i { case 0: return &v.state @@ -3870,7 +3870,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ApplyRecommendationOperation_ForecastingSetTargetCpaParameters); i { case 0: return &v.state @@ -3882,7 +3882,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ApplyRecommendationOperation_LeadFormAssetParameters); i { case 0: return &v.state @@ -3894,7 +3894,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DismissRecommendationRequest_DismissRecommendationOperation); i { case 0: return &v.state @@ -3906,7 +3906,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DismissRecommendationResponse_DismissRecommendationResult); i { case 0: return &v.state @@ -3918,7 +3918,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GenerateRecommendationsRequest_BiddingInfo); i { case 0: return &v.state @@ -3930,7 +3930,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GenerateRecommendationsRequest_AdGroupInfo); i { case 0: return &v.state @@ -3942,7 +3942,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() return nil } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GenerateRecommendationsRequest_SeedInfo); i { case 0: return &v.state @@ -3955,7 +3955,7 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() } } } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*ApplyRecommendationOperation_CampaignBudget)(nil), (*ApplyRecommendationOperation_TextAd)(nil), (*ApplyRecommendationOperation_Keyword)(nil), @@ -3981,39 +3981,39 @@ func file_google_ads_googleads_v16_services_recommendation_service_proto_init() (*ApplyRecommendationOperation_SetTargetRoas)(nil), (*ApplyRecommendationOperation_LeadFormAsset)(nil), } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[6].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[8].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[9].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[11].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[12].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[13].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[23].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[28].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[29].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[30].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[33].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[6].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[8].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[9].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[11].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[12].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[13].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[23].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[28].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[29].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[30].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[33].OneofWrappers = []interface{}{ (*GenerateRecommendationsRequest_BiddingInfo_TargetCpaMicros)(nil), (*GenerateRecommendationsRequest_BiddingInfo_TargetRoas)(nil), } - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[34].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes[35].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[34].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes[35].OneofWrappers = []interface{}{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_recommendation_service_proto_rawDesc, NumEnums: 1, NumMessages: 36, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_recommendation_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_recommendation_service_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v16_services_recommendation_service_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v16_services_recommendation_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_recommendation_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_recommendation_service_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v17_services_recommendation_service_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v17_services_recommendation_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_recommendation_service_proto = out.File - file_google_ads_googleads_v16_services_recommendation_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_recommendation_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_recommendation_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_recommendation_service_proto = out.File + file_google_ads_googleads_v17_services_recommendation_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_recommendation_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_recommendation_service_proto_depIdxs = nil } diff --git a/services/recommendation_service_grpc.pb.go b/services/recommendation_service_grpc.pb.go index eb50f7f1..83f4e9b5 100644 --- a/services/recommendation_service_grpc.pb.go +++ b/services/recommendation_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/recommendation_service.proto +// source: google/ads/googleads/v17/services/recommendation_service.proto package services @@ -29,18 +29,20 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - RecommendationService_ApplyRecommendation_FullMethodName = "/google.ads.googleads.v16.services.RecommendationService/ApplyRecommendation" - RecommendationService_DismissRecommendation_FullMethodName = "/google.ads.googleads.v16.services.RecommendationService/DismissRecommendation" - RecommendationService_GenerateRecommendations_FullMethodName = "/google.ads.googleads.v16.services.RecommendationService/GenerateRecommendations" + RecommendationService_ApplyRecommendation_FullMethodName = "/google.ads.googleads.v17.services.RecommendationService/ApplyRecommendation" + RecommendationService_DismissRecommendation_FullMethodName = "/google.ads.googleads.v17.services.RecommendationService/DismissRecommendation" + RecommendationService_GenerateRecommendations_FullMethodName = "/google.ads.googleads.v17.services.RecommendationService/GenerateRecommendations" ) // RecommendationServiceClient is the client API for RecommendationService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage recommendations. type RecommendationServiceClient interface { // Applies given recommendations with corresponding apply parameters. // @@ -93,8 +95,9 @@ func NewRecommendationServiceClient(cc grpc.ClientConnInterface) RecommendationS } func (c *recommendationServiceClient) ApplyRecommendation(ctx context.Context, in *ApplyRecommendationRequest, opts ...grpc.CallOption) (*ApplyRecommendationResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(ApplyRecommendationResponse) - err := c.cc.Invoke(ctx, RecommendationService_ApplyRecommendation_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, RecommendationService_ApplyRecommendation_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -102,8 +105,9 @@ func (c *recommendationServiceClient) ApplyRecommendation(ctx context.Context, i } func (c *recommendationServiceClient) DismissRecommendation(ctx context.Context, in *DismissRecommendationRequest, opts ...grpc.CallOption) (*DismissRecommendationResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(DismissRecommendationResponse) - err := c.cc.Invoke(ctx, RecommendationService_DismissRecommendation_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, RecommendationService_DismissRecommendation_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -111,8 +115,9 @@ func (c *recommendationServiceClient) DismissRecommendation(ctx context.Context, } func (c *recommendationServiceClient) GenerateRecommendations(ctx context.Context, in *GenerateRecommendationsRequest, opts ...grpc.CallOption) (*GenerateRecommendationsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(GenerateRecommendationsResponse) - err := c.cc.Invoke(ctx, RecommendationService_GenerateRecommendations_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, RecommendationService_GenerateRecommendations_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -122,6 +127,8 @@ func (c *recommendationServiceClient) GenerateRecommendations(ctx context.Contex // RecommendationServiceServer is the server API for RecommendationService service. // All implementations must embed UnimplementedRecommendationServiceServer // for forward compatibility +// +// Service to manage recommendations. type RecommendationServiceServer interface { // Applies given recommendations with corresponding apply parameters. // @@ -250,7 +257,7 @@ func _RecommendationService_GenerateRecommendations_Handler(srv interface{}, ctx // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var RecommendationService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.RecommendationService", + ServiceName: "google.ads.googleads.v17.services.RecommendationService", HandlerType: (*RecommendationServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -267,5 +274,5 @@ var RecommendationService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/recommendation_service.proto", + Metadata: "google/ads/googleads/v17/services/recommendation_service.proto", } diff --git a/services/recommendation_subscription_service.pb.go b/services/recommendation_subscription_service.pb.go index 34b1f791..8ae6f0f6 100644 --- a/services/recommendation_subscription_service.pb.go +++ b/services/recommendation_subscription_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/recommendation_subscription_service.proto +// source: google/ads/googleads/v17/services/recommendation_subscription_service.proto package services @@ -62,13 +62,13 @@ type MutateRecommendationSubscriptionRequest struct { // or just the resource name should be returned post mutation. The mutable // resource will only be returned if the resource has the appropriate response // field. For example, MutateCampaignResult.campaign. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateRecommendationSubscriptionRequest) Reset() { *x = MutateRecommendationSubscriptionRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81,7 +81,7 @@ func (x *MutateRecommendationSubscriptionRequest) String() string { func (*MutateRecommendationSubscriptionRequest) ProtoMessage() {} func (x *MutateRecommendationSubscriptionRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_recommendation_subscription_service_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 *MutateRecommendationSubscriptionRequest) ProtoReflect() protoreflect.Me // Deprecated: Use MutateRecommendationSubscriptionRequest.ProtoReflect.Descriptor instead. func (*MutateRecommendationSubscriptionRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_rawDescGZIP(), []int{0} } func (x *MutateRecommendationSubscriptionRequest) GetCustomerId() string { @@ -154,7 +154,7 @@ type RecommendationSubscriptionOperation struct { func (x *RecommendationSubscriptionOperation) Reset() { *x = RecommendationSubscriptionOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -167,7 +167,7 @@ func (x *RecommendationSubscriptionOperation) String() string { func (*RecommendationSubscriptionOperation) ProtoMessage() {} func (x *RecommendationSubscriptionOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -180,7 +180,7 @@ func (x *RecommendationSubscriptionOperation) ProtoReflect() protoreflect.Messag // Deprecated: Use RecommendationSubscriptionOperation.ProtoReflect.Descriptor instead. func (*RecommendationSubscriptionOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_rawDescGZIP(), []int{1} } func (x *RecommendationSubscriptionOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -251,7 +251,7 @@ type MutateRecommendationSubscriptionResponse struct { func (x *MutateRecommendationSubscriptionResponse) Reset() { *x = MutateRecommendationSubscriptionResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -264,7 +264,7 @@ func (x *MutateRecommendationSubscriptionResponse) String() string { func (*MutateRecommendationSubscriptionResponse) ProtoMessage() {} func (x *MutateRecommendationSubscriptionResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -277,7 +277,7 @@ func (x *MutateRecommendationSubscriptionResponse) ProtoReflect() protoreflect.M // Deprecated: Use MutateRecommendationSubscriptionResponse.ProtoReflect.Descriptor instead. func (*MutateRecommendationSubscriptionResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_rawDescGZIP(), []int{2} } func (x *MutateRecommendationSubscriptionResponse) GetResults() []*MutateRecommendationSubscriptionResult { @@ -312,7 +312,7 @@ type MutateRecommendationSubscriptionResult struct { func (x *MutateRecommendationSubscriptionResult) Reset() { *x = MutateRecommendationSubscriptionResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -325,7 +325,7 @@ func (x *MutateRecommendationSubscriptionResult) String() string { func (*MutateRecommendationSubscriptionResult) ProtoMessage() {} func (x *MutateRecommendationSubscriptionResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -338,7 +338,7 @@ func (x *MutateRecommendationSubscriptionResult) ProtoReflect() protoreflect.Mes // Deprecated: Use MutateRecommendationSubscriptionResult.ProtoReflect.Descriptor instead. func (*MutateRecommendationSubscriptionResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_rawDescGZIP(), []int{3} } func (x *MutateRecommendationSubscriptionResult) GetResourceName() string { @@ -355,22 +355,22 @@ func (x *MutateRecommendationSubscriptionResult) GetRecommendationSubscription() return nil } -var File_google_ads_googleads_v16_services_recommendation_subscription_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_recommendation_subscription_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_recommendation_subscription_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 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, 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, 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, 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, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, @@ -392,7 +392,7 @@ var file_google_ads_googleads_v16_services_recommendation_subscription_service_p 0x49, 0x64, 0x12, 0x6b, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, @@ -404,7 +404,7 @@ var file_google_ads_googleads_v16_services_recommendation_subscription_service_p 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, @@ -418,12 +418,12 @@ var file_google_ads_googleads_v16_services_recommendation_subscription_service_p 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x58, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x58, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x02, 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, 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, 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, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0b, 0x0a, 0x09, @@ -433,7 +433,7 @@ var file_google_ads_googleads_v16_services_recommendation_subscription_service_p 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x63, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x46, 0x0a, 0x15, 0x70, @@ -453,7 +453,7 @@ var file_google_ads_googleads_v16_services_recommendation_subscription_service_p 0x1b, 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, 0x18, 0x02, 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, 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, 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, 0x52, 0x1a, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, @@ -464,17 +464,17 @@ var file_google_ads_googleads_v16_services_recommendation_subscription_service_p 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, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x7f, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, - 0x93, 0x02, 0x60, 0x3a, 0x01, 0x2a, 0x22, 0x5b, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, + 0x93, 0x02, 0x60, 0x3a, 0x01, 0x2a, 0x22, 0x5b, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 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, @@ -486,59 +486,59 @@ var file_google_ads_googleads_v16_services_recommendation_subscription_service_p 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x92, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x26, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_rawDescData = file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_rawDesc + file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_rawDescData = file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_rawDescData + return file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_goTypes = []interface{}{ - (*MutateRecommendationSubscriptionRequest)(nil), // 0: google.ads.googleads.v16.services.MutateRecommendationSubscriptionRequest - (*RecommendationSubscriptionOperation)(nil), // 1: google.ads.googleads.v16.services.RecommendationSubscriptionOperation - (*MutateRecommendationSubscriptionResponse)(nil), // 2: google.ads.googleads.v16.services.MutateRecommendationSubscriptionResponse - (*MutateRecommendationSubscriptionResult)(nil), // 3: google.ads.googleads.v16.services.MutateRecommendationSubscriptionResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_goTypes = []interface{}{ + (*MutateRecommendationSubscriptionRequest)(nil), // 0: google.ads.googleads.v17.services.MutateRecommendationSubscriptionRequest + (*RecommendationSubscriptionOperation)(nil), // 1: google.ads.googleads.v17.services.RecommendationSubscriptionOperation + (*MutateRecommendationSubscriptionResponse)(nil), // 2: google.ads.googleads.v17.services.MutateRecommendationSubscriptionResponse + (*MutateRecommendationSubscriptionResult)(nil), // 3: google.ads.googleads.v17.services.MutateRecommendationSubscriptionResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.RecommendationSubscription)(nil), // 6: google.ads.googleads.v16.resources.RecommendationSubscription + (*resources.RecommendationSubscription)(nil), // 6: google.ads.googleads.v17.resources.RecommendationSubscription (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateRecommendationSubscriptionRequest.operations:type_name -> google.ads.googleads.v16.services.RecommendationSubscriptionOperation - 4, // 1: google.ads.googleads.v16.services.MutateRecommendationSubscriptionRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.RecommendationSubscriptionOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.RecommendationSubscriptionOperation.create:type_name -> google.ads.googleads.v16.resources.RecommendationSubscription - 6, // 4: google.ads.googleads.v16.services.RecommendationSubscriptionOperation.update:type_name -> google.ads.googleads.v16.resources.RecommendationSubscription - 3, // 5: google.ads.googleads.v16.services.MutateRecommendationSubscriptionResponse.results:type_name -> google.ads.googleads.v16.services.MutateRecommendationSubscriptionResult - 7, // 6: google.ads.googleads.v16.services.MutateRecommendationSubscriptionResponse.partial_failure_error:type_name -> google.rpc.Status - 6, // 7: google.ads.googleads.v16.services.MutateRecommendationSubscriptionResult.recommendation_subscription:type_name -> google.ads.googleads.v16.resources.RecommendationSubscription - 0, // 8: google.ads.googleads.v16.services.RecommendationSubscriptionService.MutateRecommendationSubscription:input_type -> google.ads.googleads.v16.services.MutateRecommendationSubscriptionRequest - 2, // 9: google.ads.googleads.v16.services.RecommendationSubscriptionService.MutateRecommendationSubscription:output_type -> google.ads.googleads.v16.services.MutateRecommendationSubscriptionResponse +var file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateRecommendationSubscriptionRequest.operations:type_name -> google.ads.googleads.v17.services.RecommendationSubscriptionOperation + 4, // 1: google.ads.googleads.v17.services.MutateRecommendationSubscriptionRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.RecommendationSubscriptionOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.RecommendationSubscriptionOperation.create:type_name -> google.ads.googleads.v17.resources.RecommendationSubscription + 6, // 4: google.ads.googleads.v17.services.RecommendationSubscriptionOperation.update:type_name -> google.ads.googleads.v17.resources.RecommendationSubscription + 3, // 5: google.ads.googleads.v17.services.MutateRecommendationSubscriptionResponse.results:type_name -> google.ads.googleads.v17.services.MutateRecommendationSubscriptionResult + 7, // 6: google.ads.googleads.v17.services.MutateRecommendationSubscriptionResponse.partial_failure_error:type_name -> google.rpc.Status + 6, // 7: google.ads.googleads.v17.services.MutateRecommendationSubscriptionResult.recommendation_subscription:type_name -> google.ads.googleads.v17.resources.RecommendationSubscription + 0, // 8: google.ads.googleads.v17.services.RecommendationSubscriptionService.MutateRecommendationSubscription:input_type -> google.ads.googleads.v17.services.MutateRecommendationSubscriptionRequest + 2, // 9: google.ads.googleads.v17.services.RecommendationSubscriptionService.MutateRecommendationSubscription:output_type -> google.ads.googleads.v17.services.MutateRecommendationSubscriptionResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -546,13 +546,13 @@ var file_google_ads_googleads_v16_services_recommendation_subscription_service_p 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_init() } -func file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_init() { - if File_google_ads_googleads_v16_services_recommendation_subscription_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_init() } +func file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_init() { + if File_google_ads_googleads_v17_services_recommendation_subscription_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateRecommendationSubscriptionRequest); i { case 0: return &v.state @@ -564,7 +564,7 @@ func file_google_ads_googleads_v16_services_recommendation_subscription_service_ return nil } } - file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RecommendationSubscriptionOperation); i { case 0: return &v.state @@ -576,7 +576,7 @@ func file_google_ads_googleads_v16_services_recommendation_subscription_service_ return nil } } - file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateRecommendationSubscriptionResponse); i { case 0: return &v.state @@ -588,7 +588,7 @@ func file_google_ads_googleads_v16_services_recommendation_subscription_service_ return nil } } - file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateRecommendationSubscriptionResult); i { case 0: return &v.state @@ -601,7 +601,7 @@ func file_google_ads_googleads_v16_services_recommendation_subscription_service_ } } } - file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*RecommendationSubscriptionOperation_Create)(nil), (*RecommendationSubscriptionOperation_Update)(nil), } @@ -609,18 +609,18 @@ func file_google_ads_googleads_v16_services_recommendation_subscription_service_ out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_recommendation_subscription_service_proto = out.File - file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_recommendation_subscription_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_recommendation_subscription_service_proto = out.File + file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_recommendation_subscription_service_proto_depIdxs = nil } diff --git a/services/recommendation_subscription_service_grpc.pb.go b/services/recommendation_subscription_service_grpc.pb.go index 3f0f719f..e1de4fbc 100644 --- a/services/recommendation_subscription_service_grpc.pb.go +++ b/services/recommendation_subscription_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/recommendation_subscription_service.proto +// source: google/ads/googleads/v17/services/recommendation_subscription_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - RecommendationSubscriptionService_MutateRecommendationSubscription_FullMethodName = "/google.ads.googleads.v16.services.RecommendationSubscriptionService/MutateRecommendationSubscription" + RecommendationSubscriptionService_MutateRecommendationSubscription_FullMethodName = "/google.ads.googleads.v17.services.RecommendationSubscriptionService/MutateRecommendationSubscription" ) // RecommendationSubscriptionServiceClient is the client API for RecommendationSubscriptionService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage recommendation subscriptions. type RecommendationSubscriptionServiceClient interface { // Mutates given subscription with corresponding apply parameters. // @@ -67,8 +69,9 @@ func NewRecommendationSubscriptionServiceClient(cc grpc.ClientConnInterface) Rec } func (c *recommendationSubscriptionServiceClient) MutateRecommendationSubscription(ctx context.Context, in *MutateRecommendationSubscriptionRequest, opts ...grpc.CallOption) (*MutateRecommendationSubscriptionResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateRecommendationSubscriptionResponse) - err := c.cc.Invoke(ctx, RecommendationSubscriptionService_MutateRecommendationSubscription_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, RecommendationSubscriptionService_MutateRecommendationSubscription_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -78,6 +81,8 @@ func (c *recommendationSubscriptionServiceClient) MutateRecommendationSubscripti // RecommendationSubscriptionServiceServer is the server API for RecommendationSubscriptionService service. // All implementations must embed UnimplementedRecommendationSubscriptionServiceServer // for forward compatibility +// +// Service to manage recommendation subscriptions. type RecommendationSubscriptionServiceServer interface { // Mutates given subscription with corresponding apply parameters. // @@ -141,7 +146,7 @@ func _RecommendationSubscriptionService_MutateRecommendationSubscription_Handler // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var RecommendationSubscriptionService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.RecommendationSubscriptionService", + ServiceName: "google.ads.googleads.v17.services.RecommendationSubscriptionService", HandlerType: (*RecommendationSubscriptionServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -150,5 +155,5 @@ var RecommendationSubscriptionService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/recommendation_subscription_service.proto", + Metadata: "google/ads/googleads/v17/services/recommendation_subscription_service.proto", } diff --git a/services/remarketing_action_service.pb.go b/services/remarketing_action_service.pb.go index b192a7eb..b1556f98 100644 --- a/services/remarketing_action_service.pb.go +++ b/services/remarketing_action_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/remarketing_action_service.proto +// source: google/ads/googleads/v17/services/remarketing_action_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [RemarketingActionService.MutateRemarketingActions][google.ads.googleads.v16.services.RemarketingActionService.MutateRemarketingActions]. +// [RemarketingActionService.MutateRemarketingActions][google.ads.googleads.v17.services.RemarketingActionService.MutateRemarketingActions]. type MutateRemarketingActionsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -64,7 +64,7 @@ type MutateRemarketingActionsRequest struct { func (x *MutateRemarketingActionsRequest) Reset() { *x = MutateRemarketingActionsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_remarketing_action_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_remarketing_action_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *MutateRemarketingActionsRequest) String() string { func (*MutateRemarketingActionsRequest) ProtoMessage() {} func (x *MutateRemarketingActionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_remarketing_action_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_remarketing_action_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *MutateRemarketingActionsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateRemarketingActionsRequest.ProtoReflect.Descriptor instead. func (*MutateRemarketingActionsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_remarketing_action_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_remarketing_action_service_proto_rawDescGZIP(), []int{0} } func (x *MutateRemarketingActionsRequest) GetCustomerId() string { @@ -141,7 +141,7 @@ type RemarketingActionOperation struct { func (x *RemarketingActionOperation) Reset() { *x = RemarketingActionOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_remarketing_action_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_remarketing_action_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -154,7 +154,7 @@ func (x *RemarketingActionOperation) String() string { func (*RemarketingActionOperation) ProtoMessage() {} func (x *RemarketingActionOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_remarketing_action_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_remarketing_action_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -167,7 +167,7 @@ func (x *RemarketingActionOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use RemarketingActionOperation.ProtoReflect.Descriptor instead. func (*RemarketingActionOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_remarketing_action_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_remarketing_action_service_proto_rawDescGZIP(), []int{1} } func (x *RemarketingActionOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -236,7 +236,7 @@ type MutateRemarketingActionsResponse struct { func (x *MutateRemarketingActionsResponse) Reset() { *x = MutateRemarketingActionsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_remarketing_action_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_remarketing_action_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -249,7 +249,7 @@ func (x *MutateRemarketingActionsResponse) String() string { func (*MutateRemarketingActionsResponse) ProtoMessage() {} func (x *MutateRemarketingActionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_remarketing_action_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_remarketing_action_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -262,7 +262,7 @@ func (x *MutateRemarketingActionsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateRemarketingActionsResponse.ProtoReflect.Descriptor instead. func (*MutateRemarketingActionsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_remarketing_action_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_remarketing_action_service_proto_rawDescGZIP(), []int{2} } func (x *MutateRemarketingActionsResponse) GetPartialFailureError() *status.Status { @@ -292,7 +292,7 @@ type MutateRemarketingActionResult struct { func (x *MutateRemarketingActionResult) Reset() { *x = MutateRemarketingActionResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_remarketing_action_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_remarketing_action_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -305,7 +305,7 @@ func (x *MutateRemarketingActionResult) String() string { func (*MutateRemarketingActionResult) ProtoMessage() {} func (x *MutateRemarketingActionResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_remarketing_action_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_remarketing_action_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -318,7 +318,7 @@ func (x *MutateRemarketingActionResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateRemarketingActionResult.ProtoReflect.Descriptor instead. func (*MutateRemarketingActionResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_remarketing_action_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_remarketing_action_service_proto_rawDescGZIP(), []int{3} } func (x *MutateRemarketingActionResult) GetResourceName() string { @@ -328,18 +328,18 @@ func (x *MutateRemarketingActionResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_remarketing_action_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_remarketing_action_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_remarketing_action_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_remarketing_action_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x72, 0x65, 0x6d, 0x61, + 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, @@ -359,7 +359,7 @@ var file_google_ads_googleads_v16_services_remarketing_action_service_proto_rawD 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x62, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, @@ -376,12 +376,12 @@ var file_google_ads_googleads_v16_services_remarketing_action_service_proto_rawD 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x4f, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 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, 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, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x4f, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xc6, 0x01, 0x0a, 0x20, 0x4d, 0x75, @@ -394,7 +394,7 @@ var file_google_ads_googleads_v16_services_remarketing_action_service_proto_rawD 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x5a, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x75, 0x0a, 0x1d, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x52, 0x65, 0x6d, 0x61, @@ -409,17 +409,17 @@ var file_google_ads_googleads_v16_services_remarketing_action_service_proto_rawD 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x81, 0x02, 0x0a, 0x18, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5c, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3d, 0x3a, 0x01, 0x2a, - 0x22, 0x38, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, + 0x22, 0x38, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, @@ -429,55 +429,55 @@ var file_google_ads_googleads_v16_services_remarketing_action_service_proto_rawD 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x89, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1d, 0x52, 0x65, 0x6d, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1d, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, + 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, + 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_remarketing_action_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_remarketing_action_service_proto_rawDescData = file_google_ads_googleads_v16_services_remarketing_action_service_proto_rawDesc + file_google_ads_googleads_v17_services_remarketing_action_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_remarketing_action_service_proto_rawDescData = file_google_ads_googleads_v17_services_remarketing_action_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_remarketing_action_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_remarketing_action_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_remarketing_action_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_remarketing_action_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_remarketing_action_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_remarketing_action_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_remarketing_action_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_remarketing_action_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_remarketing_action_service_proto_rawDescData + return file_google_ads_googleads_v17_services_remarketing_action_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_remarketing_action_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_remarketing_action_service_proto_goTypes = []interface{}{ - (*MutateRemarketingActionsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateRemarketingActionsRequest - (*RemarketingActionOperation)(nil), // 1: google.ads.googleads.v16.services.RemarketingActionOperation - (*MutateRemarketingActionsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateRemarketingActionsResponse - (*MutateRemarketingActionResult)(nil), // 3: google.ads.googleads.v16.services.MutateRemarketingActionResult +var file_google_ads_googleads_v17_services_remarketing_action_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_remarketing_action_service_proto_goTypes = []interface{}{ + (*MutateRemarketingActionsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateRemarketingActionsRequest + (*RemarketingActionOperation)(nil), // 1: google.ads.googleads.v17.services.RemarketingActionOperation + (*MutateRemarketingActionsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateRemarketingActionsResponse + (*MutateRemarketingActionResult)(nil), // 3: google.ads.googleads.v17.services.MutateRemarketingActionResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.RemarketingAction)(nil), // 5: google.ads.googleads.v16.resources.RemarketingAction + (*resources.RemarketingAction)(nil), // 5: google.ads.googleads.v17.resources.RemarketingAction (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v16_services_remarketing_action_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateRemarketingActionsRequest.operations:type_name -> google.ads.googleads.v16.services.RemarketingActionOperation - 4, // 1: google.ads.googleads.v16.services.RemarketingActionOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v16.services.RemarketingActionOperation.create:type_name -> google.ads.googleads.v16.resources.RemarketingAction - 5, // 3: google.ads.googleads.v16.services.RemarketingActionOperation.update:type_name -> google.ads.googleads.v16.resources.RemarketingAction - 6, // 4: google.ads.googleads.v16.services.MutateRemarketingActionsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 5: google.ads.googleads.v16.services.MutateRemarketingActionsResponse.results:type_name -> google.ads.googleads.v16.services.MutateRemarketingActionResult - 0, // 6: google.ads.googleads.v16.services.RemarketingActionService.MutateRemarketingActions:input_type -> google.ads.googleads.v16.services.MutateRemarketingActionsRequest - 2, // 7: google.ads.googleads.v16.services.RemarketingActionService.MutateRemarketingActions:output_type -> google.ads.googleads.v16.services.MutateRemarketingActionsResponse +var file_google_ads_googleads_v17_services_remarketing_action_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateRemarketingActionsRequest.operations:type_name -> google.ads.googleads.v17.services.RemarketingActionOperation + 4, // 1: google.ads.googleads.v17.services.RemarketingActionOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v17.services.RemarketingActionOperation.create:type_name -> google.ads.googleads.v17.resources.RemarketingAction + 5, // 3: google.ads.googleads.v17.services.RemarketingActionOperation.update:type_name -> google.ads.googleads.v17.resources.RemarketingAction + 6, // 4: google.ads.googleads.v17.services.MutateRemarketingActionsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 5: google.ads.googleads.v17.services.MutateRemarketingActionsResponse.results:type_name -> google.ads.googleads.v17.services.MutateRemarketingActionResult + 0, // 6: google.ads.googleads.v17.services.RemarketingActionService.MutateRemarketingActions:input_type -> google.ads.googleads.v17.services.MutateRemarketingActionsRequest + 2, // 7: google.ads.googleads.v17.services.RemarketingActionService.MutateRemarketingActions:output_type -> google.ads.googleads.v17.services.MutateRemarketingActionsResponse 7, // [7:8] is the sub-list for method output_type 6, // [6:7] is the sub-list for method input_type 6, // [6:6] is the sub-list for extension type_name @@ -485,13 +485,13 @@ var file_google_ads_googleads_v16_services_remarketing_action_service_proto_depI 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_remarketing_action_service_proto_init() } -func file_google_ads_googleads_v16_services_remarketing_action_service_proto_init() { - if File_google_ads_googleads_v16_services_remarketing_action_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_remarketing_action_service_proto_init() } +func file_google_ads_googleads_v17_services_remarketing_action_service_proto_init() { + if File_google_ads_googleads_v17_services_remarketing_action_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_remarketing_action_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_remarketing_action_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateRemarketingActionsRequest); i { case 0: return &v.state @@ -503,7 +503,7 @@ func file_google_ads_googleads_v16_services_remarketing_action_service_proto_ini return nil } } - file_google_ads_googleads_v16_services_remarketing_action_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_remarketing_action_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RemarketingActionOperation); i { case 0: return &v.state @@ -515,7 +515,7 @@ func file_google_ads_googleads_v16_services_remarketing_action_service_proto_ini return nil } } - file_google_ads_googleads_v16_services_remarketing_action_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_remarketing_action_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateRemarketingActionsResponse); i { case 0: return &v.state @@ -527,7 +527,7 @@ func file_google_ads_googleads_v16_services_remarketing_action_service_proto_ini return nil } } - file_google_ads_googleads_v16_services_remarketing_action_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_remarketing_action_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateRemarketingActionResult); i { case 0: return &v.state @@ -540,7 +540,7 @@ func file_google_ads_googleads_v16_services_remarketing_action_service_proto_ini } } } - file_google_ads_googleads_v16_services_remarketing_action_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_remarketing_action_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*RemarketingActionOperation_Create)(nil), (*RemarketingActionOperation_Update)(nil), } @@ -548,18 +548,18 @@ func file_google_ads_googleads_v16_services_remarketing_action_service_proto_ini out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_remarketing_action_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_remarketing_action_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_remarketing_action_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_remarketing_action_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_remarketing_action_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_remarketing_action_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_remarketing_action_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_remarketing_action_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_remarketing_action_service_proto = out.File - file_google_ads_googleads_v16_services_remarketing_action_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_remarketing_action_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_remarketing_action_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_remarketing_action_service_proto = out.File + file_google_ads_googleads_v17_services_remarketing_action_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_remarketing_action_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_remarketing_action_service_proto_depIdxs = nil } diff --git a/services/remarketing_action_service_grpc.pb.go b/services/remarketing_action_service_grpc.pb.go index 59260cba..6d403626 100644 --- a/services/remarketing_action_service_grpc.pb.go +++ b/services/remarketing_action_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/remarketing_action_service.proto +// source: google/ads/googleads/v17/services/remarketing_action_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - RemarketingActionService_MutateRemarketingActions_FullMethodName = "/google.ads.googleads.v16.services.RemarketingActionService/MutateRemarketingActions" + RemarketingActionService_MutateRemarketingActions_FullMethodName = "/google.ads.googleads.v17.services.RemarketingActionService/MutateRemarketingActions" ) // RemarketingActionServiceClient is the client API for RemarketingActionService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage remarketing actions. type RemarketingActionServiceClient interface { // Creates or updates remarketing actions. Operation statuses are returned. // @@ -63,8 +65,9 @@ func NewRemarketingActionServiceClient(cc grpc.ClientConnInterface) RemarketingA } func (c *remarketingActionServiceClient) MutateRemarketingActions(ctx context.Context, in *MutateRemarketingActionsRequest, opts ...grpc.CallOption) (*MutateRemarketingActionsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateRemarketingActionsResponse) - err := c.cc.Invoke(ctx, RemarketingActionService_MutateRemarketingActions_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, RemarketingActionService_MutateRemarketingActions_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -74,6 +77,8 @@ func (c *remarketingActionServiceClient) MutateRemarketingActions(ctx context.Co // RemarketingActionServiceServer is the server API for RemarketingActionService service. // All implementations must embed UnimplementedRemarketingActionServiceServer // for forward compatibility +// +// Service to manage remarketing actions. type RemarketingActionServiceServer interface { // Creates or updates remarketing actions. Operation statuses are returned. // @@ -133,7 +138,7 @@ func _RemarketingActionService_MutateRemarketingActions_Handler(srv interface{}, // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var RemarketingActionService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.RemarketingActionService", + ServiceName: "google.ads.googleads.v17.services.RemarketingActionService", HandlerType: (*RemarketingActionServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -142,5 +147,5 @@ var RemarketingActionService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/remarketing_action_service.proto", + Metadata: "google/ads/googleads/v17/services/remarketing_action_service.proto", } diff --git a/services/shared_criterion_service.pb.go b/services/shared_criterion_service.pb.go index b733127e..56757240 100644 --- a/services/shared_criterion_service.pb.go +++ b/services/shared_criterion_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/shared_criterion_service.proto +// source: google/ads/googleads/v17/services/shared_criterion_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [SharedCriterionService.MutateSharedCriteria][google.ads.googleads.v16.services.SharedCriterionService.MutateSharedCriteria]. +// [SharedCriterionService.MutateSharedCriteria][google.ads.googleads.v17.services.SharedCriterionService.MutateSharedCriteria]. type MutateSharedCriteriaRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -59,13 +59,13 @@ type MutateSharedCriteriaRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateSharedCriteriaRequest) Reset() { *x = MutateSharedCriteriaRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_shared_criterion_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_shared_criterion_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *MutateSharedCriteriaRequest) String() string { func (*MutateSharedCriteriaRequest) ProtoMessage() {} func (x *MutateSharedCriteriaRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_shared_criterion_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_shared_criterion_service_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 *MutateSharedCriteriaRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateSharedCriteriaRequest.ProtoReflect.Descriptor instead. func (*MutateSharedCriteriaRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_shared_criterion_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_shared_criterion_service_proto_rawDescGZIP(), []int{0} } func (x *MutateSharedCriteriaRequest) GetCustomerId() string { @@ -147,7 +147,7 @@ type SharedCriterionOperation struct { func (x *SharedCriterionOperation) Reset() { *x = SharedCriterionOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_shared_criterion_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_shared_criterion_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160,7 +160,7 @@ func (x *SharedCriterionOperation) String() string { func (*SharedCriterionOperation) ProtoMessage() {} func (x *SharedCriterionOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_shared_criterion_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_shared_criterion_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -173,7 +173,7 @@ func (x *SharedCriterionOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use SharedCriterionOperation.ProtoReflect.Descriptor instead. func (*SharedCriterionOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_shared_criterion_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_shared_criterion_service_proto_rawDescGZIP(), []int{1} } func (m *SharedCriterionOperation) GetOperation() isSharedCriterionOperation_Operation { @@ -237,7 +237,7 @@ type MutateSharedCriteriaResponse struct { func (x *MutateSharedCriteriaResponse) Reset() { *x = MutateSharedCriteriaResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_shared_criterion_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_shared_criterion_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -250,7 +250,7 @@ func (x *MutateSharedCriteriaResponse) String() string { func (*MutateSharedCriteriaResponse) ProtoMessage() {} func (x *MutateSharedCriteriaResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_shared_criterion_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_shared_criterion_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -263,7 +263,7 @@ func (x *MutateSharedCriteriaResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateSharedCriteriaResponse.ProtoReflect.Descriptor instead. func (*MutateSharedCriteriaResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_shared_criterion_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_shared_criterion_service_proto_rawDescGZIP(), []int{2} } func (x *MutateSharedCriteriaResponse) GetPartialFailureError() *status.Status { @@ -297,7 +297,7 @@ type MutateSharedCriterionResult struct { func (x *MutateSharedCriterionResult) Reset() { *x = MutateSharedCriterionResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_shared_criterion_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_shared_criterion_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -310,7 +310,7 @@ func (x *MutateSharedCriterionResult) String() string { func (*MutateSharedCriterionResult) ProtoMessage() {} func (x *MutateSharedCriterionResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_shared_criterion_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_shared_criterion_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -323,7 +323,7 @@ func (x *MutateSharedCriterionResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateSharedCriterionResult.ProtoReflect.Descriptor instead. func (*MutateSharedCriterionResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_shared_criterion_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_shared_criterion_service_proto_rawDescGZIP(), []int{3} } func (x *MutateSharedCriterionResult) GetResourceName() string { @@ -340,21 +340,21 @@ func (x *MutateSharedCriterionResult) GetSharedCriterion() *resources.SharedCrit return nil } -var File_google_ads_googleads_v16_services_shared_criterion_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_shared_criterion_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_shared_criterion_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_shared_criterion_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 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, 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, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, @@ -372,7 +372,7 @@ var file_google_ads_googleads_v16_services_shared_criterion_service_proto_rawDes 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x60, 0x0a, 0x0a, 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, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, @@ -384,7 +384,7 @@ var file_google_ads_googleads_v16_services_shared_criterion_service_proto_rawDes 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, @@ -393,7 +393,7 @@ var file_google_ads_googleads_v16_services_shared_criterion_service_proto_rawDes 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4d, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 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, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x47, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2d, 0xfa, 0x41, 0x2a, @@ -410,7 +410,7 @@ var file_google_ads_googleads_v16_services_shared_criterion_service_proto_rawDes 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x58, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xd1, 0x01, 0x0a, 0x1b, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x53, @@ -423,7 +423,7 @@ var file_google_ads_googleads_v16_services_shared_criterion_service_proto_rawDes 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x5e, 0x0a, 0x10, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 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, 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, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x52, 0x0f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x32, 0xd3, 0x02, 0x0a, 0x16, 0x53, 0x68, 0x61, @@ -431,16 +431,16 @@ var file_google_ads_googleads_v16_services_shared_criterion_service_proto_rawDes 0x69, 0x63, 0x65, 0x12, 0xf1, 0x01, 0x0a, 0x14, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x58, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x39, 0x3a, 0x01, - 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, @@ -449,55 +449,55 @@ var file_google_ads_googleads_v16_services_shared_criterion_service_proto_rawDes 0x77, 0x77, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x87, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1b, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, + 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_shared_criterion_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_shared_criterion_service_proto_rawDescData = file_google_ads_googleads_v16_services_shared_criterion_service_proto_rawDesc + file_google_ads_googleads_v17_services_shared_criterion_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_shared_criterion_service_proto_rawDescData = file_google_ads_googleads_v17_services_shared_criterion_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_shared_criterion_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_shared_criterion_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_shared_criterion_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_shared_criterion_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_shared_criterion_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_shared_criterion_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_shared_criterion_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_shared_criterion_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_shared_criterion_service_proto_rawDescData + return file_google_ads_googleads_v17_services_shared_criterion_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_shared_criterion_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_shared_criterion_service_proto_goTypes = []interface{}{ - (*MutateSharedCriteriaRequest)(nil), // 0: google.ads.googleads.v16.services.MutateSharedCriteriaRequest - (*SharedCriterionOperation)(nil), // 1: google.ads.googleads.v16.services.SharedCriterionOperation - (*MutateSharedCriteriaResponse)(nil), // 2: google.ads.googleads.v16.services.MutateSharedCriteriaResponse - (*MutateSharedCriterionResult)(nil), // 3: google.ads.googleads.v16.services.MutateSharedCriterionResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - (*resources.SharedCriterion)(nil), // 5: google.ads.googleads.v16.resources.SharedCriterion +var file_google_ads_googleads_v17_services_shared_criterion_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_shared_criterion_service_proto_goTypes = []interface{}{ + (*MutateSharedCriteriaRequest)(nil), // 0: google.ads.googleads.v17.services.MutateSharedCriteriaRequest + (*SharedCriterionOperation)(nil), // 1: google.ads.googleads.v17.services.SharedCriterionOperation + (*MutateSharedCriteriaResponse)(nil), // 2: google.ads.googleads.v17.services.MutateSharedCriteriaResponse + (*MutateSharedCriterionResult)(nil), // 3: google.ads.googleads.v17.services.MutateSharedCriterionResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + (*resources.SharedCriterion)(nil), // 5: google.ads.googleads.v17.resources.SharedCriterion (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v16_services_shared_criterion_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateSharedCriteriaRequest.operations:type_name -> google.ads.googleads.v16.services.SharedCriterionOperation - 4, // 1: google.ads.googleads.v16.services.MutateSharedCriteriaRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.SharedCriterionOperation.create:type_name -> google.ads.googleads.v16.resources.SharedCriterion - 6, // 3: google.ads.googleads.v16.services.MutateSharedCriteriaResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 4: google.ads.googleads.v16.services.MutateSharedCriteriaResponse.results:type_name -> google.ads.googleads.v16.services.MutateSharedCriterionResult - 5, // 5: google.ads.googleads.v16.services.MutateSharedCriterionResult.shared_criterion:type_name -> google.ads.googleads.v16.resources.SharedCriterion - 0, // 6: google.ads.googleads.v16.services.SharedCriterionService.MutateSharedCriteria:input_type -> google.ads.googleads.v16.services.MutateSharedCriteriaRequest - 2, // 7: google.ads.googleads.v16.services.SharedCriterionService.MutateSharedCriteria:output_type -> google.ads.googleads.v16.services.MutateSharedCriteriaResponse +var file_google_ads_googleads_v17_services_shared_criterion_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateSharedCriteriaRequest.operations:type_name -> google.ads.googleads.v17.services.SharedCriterionOperation + 4, // 1: google.ads.googleads.v17.services.MutateSharedCriteriaRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.SharedCriterionOperation.create:type_name -> google.ads.googleads.v17.resources.SharedCriterion + 6, // 3: google.ads.googleads.v17.services.MutateSharedCriteriaResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 4: google.ads.googleads.v17.services.MutateSharedCriteriaResponse.results:type_name -> google.ads.googleads.v17.services.MutateSharedCriterionResult + 5, // 5: google.ads.googleads.v17.services.MutateSharedCriterionResult.shared_criterion:type_name -> google.ads.googleads.v17.resources.SharedCriterion + 0, // 6: google.ads.googleads.v17.services.SharedCriterionService.MutateSharedCriteria:input_type -> google.ads.googleads.v17.services.MutateSharedCriteriaRequest + 2, // 7: google.ads.googleads.v17.services.SharedCriterionService.MutateSharedCriteria:output_type -> google.ads.googleads.v17.services.MutateSharedCriteriaResponse 7, // [7:8] is the sub-list for method output_type 6, // [6:7] is the sub-list for method input_type 6, // [6:6] is the sub-list for extension type_name @@ -505,13 +505,13 @@ var file_google_ads_googleads_v16_services_shared_criterion_service_proto_depIdx 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_shared_criterion_service_proto_init() } -func file_google_ads_googleads_v16_services_shared_criterion_service_proto_init() { - if File_google_ads_googleads_v16_services_shared_criterion_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_shared_criterion_service_proto_init() } +func file_google_ads_googleads_v17_services_shared_criterion_service_proto_init() { + if File_google_ads_googleads_v17_services_shared_criterion_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_shared_criterion_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_shared_criterion_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateSharedCriteriaRequest); i { case 0: return &v.state @@ -523,7 +523,7 @@ func file_google_ads_googleads_v16_services_shared_criterion_service_proto_init( return nil } } - file_google_ads_googleads_v16_services_shared_criterion_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_shared_criterion_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SharedCriterionOperation); i { case 0: return &v.state @@ -535,7 +535,7 @@ func file_google_ads_googleads_v16_services_shared_criterion_service_proto_init( return nil } } - file_google_ads_googleads_v16_services_shared_criterion_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_shared_criterion_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateSharedCriteriaResponse); i { case 0: return &v.state @@ -547,7 +547,7 @@ func file_google_ads_googleads_v16_services_shared_criterion_service_proto_init( return nil } } - file_google_ads_googleads_v16_services_shared_criterion_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_shared_criterion_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateSharedCriterionResult); i { case 0: return &v.state @@ -560,7 +560,7 @@ func file_google_ads_googleads_v16_services_shared_criterion_service_proto_init( } } } - file_google_ads_googleads_v16_services_shared_criterion_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_shared_criterion_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*SharedCriterionOperation_Create)(nil), (*SharedCriterionOperation_Remove)(nil), } @@ -568,18 +568,18 @@ func file_google_ads_googleads_v16_services_shared_criterion_service_proto_init( out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_shared_criterion_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_shared_criterion_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_shared_criterion_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_shared_criterion_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_shared_criterion_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_shared_criterion_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_shared_criterion_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_shared_criterion_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_shared_criterion_service_proto = out.File - file_google_ads_googleads_v16_services_shared_criterion_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_shared_criterion_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_shared_criterion_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_shared_criterion_service_proto = out.File + file_google_ads_googleads_v17_services_shared_criterion_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_shared_criterion_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_shared_criterion_service_proto_depIdxs = nil } diff --git a/services/shared_criterion_service_grpc.pb.go b/services/shared_criterion_service_grpc.pb.go index febf0d38..6317be7e 100644 --- a/services/shared_criterion_service_grpc.pb.go +++ b/services/shared_criterion_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/shared_criterion_service.proto +// source: google/ads/googleads/v17/services/shared_criterion_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - SharedCriterionService_MutateSharedCriteria_FullMethodName = "/google.ads.googleads.v16.services.SharedCriterionService/MutateSharedCriteria" + SharedCriterionService_MutateSharedCriteria_FullMethodName = "/google.ads.googleads.v17.services.SharedCriterionService/MutateSharedCriteria" ) // SharedCriterionServiceClient is the client API for SharedCriterionService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage shared criteria. type SharedCriterionServiceClient interface { // Creates or removes shared criteria. Operation statuses are returned. // @@ -76,8 +78,9 @@ func NewSharedCriterionServiceClient(cc grpc.ClientConnInterface) SharedCriterio } func (c *sharedCriterionServiceClient) MutateSharedCriteria(ctx context.Context, in *MutateSharedCriteriaRequest, opts ...grpc.CallOption) (*MutateSharedCriteriaResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateSharedCriteriaResponse) - err := c.cc.Invoke(ctx, SharedCriterionService_MutateSharedCriteria_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, SharedCriterionService_MutateSharedCriteria_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -87,6 +90,8 @@ func (c *sharedCriterionServiceClient) MutateSharedCriteria(ctx context.Context, // SharedCriterionServiceServer is the server API for SharedCriterionService service. // All implementations must embed UnimplementedSharedCriterionServiceServer // for forward compatibility +// +// Service to manage shared criteria. type SharedCriterionServiceServer interface { // Creates or removes shared criteria. Operation statuses are returned. // @@ -159,7 +164,7 @@ func _SharedCriterionService_MutateSharedCriteria_Handler(srv interface{}, ctx c // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var SharedCriterionService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.SharedCriterionService", + ServiceName: "google.ads.googleads.v17.services.SharedCriterionService", HandlerType: (*SharedCriterionServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -168,5 +173,5 @@ var SharedCriterionService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/shared_criterion_service.proto", + Metadata: "google/ads/googleads/v17/services/shared_criterion_service.proto", } diff --git a/services/shared_set_service.pb.go b/services/shared_set_service.pb.go index 0d4ca3cb..10f325a6 100644 --- a/services/shared_set_service.pb.go +++ b/services/shared_set_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/shared_set_service.proto +// source: google/ads/googleads/v17/services/shared_set_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [SharedSetService.MutateSharedSets][google.ads.googleads.v16.services.SharedSetService.MutateSharedSets]. +// [SharedSetService.MutateSharedSets][google.ads.googleads.v17.services.SharedSetService.MutateSharedSets]. type MutateSharedSetsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -60,13 +60,13 @@ type MutateSharedSetsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateSharedSetsRequest) Reset() { *x = MutateSharedSetsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_shared_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_shared_set_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateSharedSetsRequest) String() string { func (*MutateSharedSetsRequest) ProtoMessage() {} func (x *MutateSharedSetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_shared_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_shared_set_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateSharedSetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateSharedSetsRequest.ProtoReflect.Descriptor instead. func (*MutateSharedSetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_shared_set_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_shared_set_service_proto_rawDescGZIP(), []int{0} } func (x *MutateSharedSetsRequest) GetCustomerId() string { @@ -151,7 +151,7 @@ type SharedSetOperation struct { func (x *SharedSetOperation) Reset() { *x = SharedSetOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_shared_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_shared_set_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164,7 +164,7 @@ func (x *SharedSetOperation) String() string { func (*SharedSetOperation) ProtoMessage() {} func (x *SharedSetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_shared_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_shared_set_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177,7 +177,7 @@ func (x *SharedSetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use SharedSetOperation.ProtoReflect.Descriptor instead. func (*SharedSetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_shared_set_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_shared_set_service_proto_rawDescGZIP(), []int{1} } func (x *SharedSetOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -262,7 +262,7 @@ type MutateSharedSetsResponse struct { func (x *MutateSharedSetsResponse) Reset() { *x = MutateSharedSetsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_shared_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_shared_set_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -275,7 +275,7 @@ func (x *MutateSharedSetsResponse) String() string { func (*MutateSharedSetsResponse) ProtoMessage() {} func (x *MutateSharedSetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_shared_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_shared_set_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -288,7 +288,7 @@ func (x *MutateSharedSetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateSharedSetsResponse.ProtoReflect.Descriptor instead. func (*MutateSharedSetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_shared_set_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_shared_set_service_proto_rawDescGZIP(), []int{2} } func (x *MutateSharedSetsResponse) GetPartialFailureError() *status.Status { @@ -322,7 +322,7 @@ type MutateSharedSetResult struct { func (x *MutateSharedSetResult) Reset() { *x = MutateSharedSetResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_shared_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_shared_set_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -335,7 +335,7 @@ func (x *MutateSharedSetResult) String() string { func (*MutateSharedSetResult) ProtoMessage() {} func (x *MutateSharedSetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_shared_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_shared_set_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -348,7 +348,7 @@ func (x *MutateSharedSetResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateSharedSetResult.ProtoReflect.Descriptor instead. func (*MutateSharedSetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_shared_set_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_shared_set_service_proto_rawDescGZIP(), []int{3} } func (x *MutateSharedSetResult) GetResourceName() string { @@ -365,21 +365,21 @@ func (x *MutateSharedSetResult) GetSharedSet() *resources.SharedSet { return nil } -var File_google_ads_googleads_v16_services_shared_set_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_shared_set_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_shared_set_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_shared_set_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, + 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, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, + 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, @@ -398,7 +398,7 @@ var file_google_ads_googleads_v16_services_shared_set_service_proto_rawDesc = [] 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5a, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, @@ -410,7 +410,7 @@ var file_google_ads_googleads_v16_services_shared_set_service_proto_rawDesc = [] 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, @@ -422,12 +422,12 @@ var file_google_ads_googleads_v16_services_shared_set_service_proto_rawDesc = [] 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x47, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 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, 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, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x47, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x68, + 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x41, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x27, 0xfa, 0x41, 0x24, 0x0a, 0x22, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, @@ -443,7 +443,7 @@ var file_google_ads_googleads_v16_services_shared_set_service_proto_rawDesc = [] 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x52, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xb3, 0x01, 0x0a, 0x15, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x52, 0x65, @@ -455,21 +455,21 @@ var file_google_ads_googleads_v16_services_shared_set_service_proto_rawDesc = [] 0x6d, 0x65, 0x12, 0x4c, 0x0a, 0x0a, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x68, 0x61, 0x72, + 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x52, 0x09, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x32, 0xbd, 0x02, 0x0a, 0x10, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xe1, 0x01, 0x0a, 0x10, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x54, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, - 0xe4, 0x93, 0x02, 0x35, 0x3a, 0x01, 0x2a, 0x22, 0x30, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, + 0xe4, 0x93, 0x02, 0x35, 0x3a, 0x01, 0x2a, 0x22, 0x30, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, @@ -479,57 +479,57 @@ var file_google_ads_googleads_v16_services_shared_set_service_proto_rawDesc = [] 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x81, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x15, 0x53, 0x68, 0x61, 0x72, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x15, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, + 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_shared_set_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_shared_set_service_proto_rawDescData = file_google_ads_googleads_v16_services_shared_set_service_proto_rawDesc + file_google_ads_googleads_v17_services_shared_set_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_shared_set_service_proto_rawDescData = file_google_ads_googleads_v17_services_shared_set_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_shared_set_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_shared_set_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_shared_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_shared_set_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_shared_set_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_shared_set_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_shared_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_shared_set_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_shared_set_service_proto_rawDescData + return file_google_ads_googleads_v17_services_shared_set_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_shared_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_shared_set_service_proto_goTypes = []interface{}{ - (*MutateSharedSetsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateSharedSetsRequest - (*SharedSetOperation)(nil), // 1: google.ads.googleads.v16.services.SharedSetOperation - (*MutateSharedSetsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateSharedSetsResponse - (*MutateSharedSetResult)(nil), // 3: google.ads.googleads.v16.services.MutateSharedSetResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v17_services_shared_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_shared_set_service_proto_goTypes = []interface{}{ + (*MutateSharedSetsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateSharedSetsRequest + (*SharedSetOperation)(nil), // 1: google.ads.googleads.v17.services.SharedSetOperation + (*MutateSharedSetsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateSharedSetsResponse + (*MutateSharedSetResult)(nil), // 3: google.ads.googleads.v17.services.MutateSharedSetResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.SharedSet)(nil), // 6: google.ads.googleads.v16.resources.SharedSet + (*resources.SharedSet)(nil), // 6: google.ads.googleads.v17.resources.SharedSet (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v16_services_shared_set_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateSharedSetsRequest.operations:type_name -> google.ads.googleads.v16.services.SharedSetOperation - 4, // 1: google.ads.googleads.v16.services.MutateSharedSetsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v16.services.SharedSetOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v16.services.SharedSetOperation.create:type_name -> google.ads.googleads.v16.resources.SharedSet - 6, // 4: google.ads.googleads.v16.services.SharedSetOperation.update:type_name -> google.ads.googleads.v16.resources.SharedSet - 7, // 5: google.ads.googleads.v16.services.MutateSharedSetsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v16.services.MutateSharedSetsResponse.results:type_name -> google.ads.googleads.v16.services.MutateSharedSetResult - 6, // 7: google.ads.googleads.v16.services.MutateSharedSetResult.shared_set:type_name -> google.ads.googleads.v16.resources.SharedSet - 0, // 8: google.ads.googleads.v16.services.SharedSetService.MutateSharedSets:input_type -> google.ads.googleads.v16.services.MutateSharedSetsRequest - 2, // 9: google.ads.googleads.v16.services.SharedSetService.MutateSharedSets:output_type -> google.ads.googleads.v16.services.MutateSharedSetsResponse +var file_google_ads_googleads_v17_services_shared_set_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateSharedSetsRequest.operations:type_name -> google.ads.googleads.v17.services.SharedSetOperation + 4, // 1: google.ads.googleads.v17.services.MutateSharedSetsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v17.services.SharedSetOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v17.services.SharedSetOperation.create:type_name -> google.ads.googleads.v17.resources.SharedSet + 6, // 4: google.ads.googleads.v17.services.SharedSetOperation.update:type_name -> google.ads.googleads.v17.resources.SharedSet + 7, // 5: google.ads.googleads.v17.services.MutateSharedSetsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v17.services.MutateSharedSetsResponse.results:type_name -> google.ads.googleads.v17.services.MutateSharedSetResult + 6, // 7: google.ads.googleads.v17.services.MutateSharedSetResult.shared_set:type_name -> google.ads.googleads.v17.resources.SharedSet + 0, // 8: google.ads.googleads.v17.services.SharedSetService.MutateSharedSets:input_type -> google.ads.googleads.v17.services.MutateSharedSetsRequest + 2, // 9: google.ads.googleads.v17.services.SharedSetService.MutateSharedSets:output_type -> google.ads.googleads.v17.services.MutateSharedSetsResponse 9, // [9:10] is the sub-list for method output_type 8, // [8:9] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name @@ -537,13 +537,13 @@ var file_google_ads_googleads_v16_services_shared_set_service_proto_depIdxs = [] 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_shared_set_service_proto_init() } -func file_google_ads_googleads_v16_services_shared_set_service_proto_init() { - if File_google_ads_googleads_v16_services_shared_set_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_shared_set_service_proto_init() } +func file_google_ads_googleads_v17_services_shared_set_service_proto_init() { + if File_google_ads_googleads_v17_services_shared_set_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_shared_set_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_shared_set_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateSharedSetsRequest); i { case 0: return &v.state @@ -555,7 +555,7 @@ func file_google_ads_googleads_v16_services_shared_set_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_shared_set_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_shared_set_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SharedSetOperation); i { case 0: return &v.state @@ -567,7 +567,7 @@ func file_google_ads_googleads_v16_services_shared_set_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_shared_set_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_shared_set_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateSharedSetsResponse); i { case 0: return &v.state @@ -579,7 +579,7 @@ func file_google_ads_googleads_v16_services_shared_set_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_shared_set_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_shared_set_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateSharedSetResult); i { case 0: return &v.state @@ -592,7 +592,7 @@ func file_google_ads_googleads_v16_services_shared_set_service_proto_init() { } } } - file_google_ads_googleads_v16_services_shared_set_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_shared_set_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*SharedSetOperation_Create)(nil), (*SharedSetOperation_Update)(nil), (*SharedSetOperation_Remove)(nil), @@ -601,18 +601,18 @@ func file_google_ads_googleads_v16_services_shared_set_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_shared_set_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_shared_set_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_shared_set_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_shared_set_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_shared_set_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_shared_set_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_shared_set_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_shared_set_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_shared_set_service_proto = out.File - file_google_ads_googleads_v16_services_shared_set_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_shared_set_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_shared_set_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_shared_set_service_proto = out.File + file_google_ads_googleads_v17_services_shared_set_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_shared_set_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_shared_set_service_proto_depIdxs = nil } diff --git a/services/shared_set_service_grpc.pb.go b/services/shared_set_service_grpc.pb.go index ec9bf731..e219f291 100644 --- a/services/shared_set_service_grpc.pb.go +++ b/services/shared_set_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/shared_set_service.proto +// source: google/ads/googleads/v17/services/shared_set_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - SharedSetService_MutateSharedSets_FullMethodName = "/google.ads.googleads.v16.services.SharedSetService/MutateSharedSets" + SharedSetService_MutateSharedSets_FullMethodName = "/google.ads.googleads.v17.services.SharedSetService/MutateSharedSets" ) // SharedSetServiceClient is the client API for SharedSetService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage shared sets. type SharedSetServiceClient interface { // Creates, updates, or removes shared sets. Operation statuses are returned. // @@ -79,8 +81,9 @@ func NewSharedSetServiceClient(cc grpc.ClientConnInterface) SharedSetServiceClie } func (c *sharedSetServiceClient) MutateSharedSets(ctx context.Context, in *MutateSharedSetsRequest, opts ...grpc.CallOption) (*MutateSharedSetsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateSharedSetsResponse) - err := c.cc.Invoke(ctx, SharedSetService_MutateSharedSets_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, SharedSetService_MutateSharedSets_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -90,6 +93,8 @@ func (c *sharedSetServiceClient) MutateSharedSets(ctx context.Context, in *Mutat // SharedSetServiceServer is the server API for SharedSetService service. // All implementations must embed UnimplementedSharedSetServiceServer // for forward compatibility +// +// Service to manage shared sets. type SharedSetServiceServer interface { // Creates, updates, or removes shared sets. Operation statuses are returned. // @@ -164,7 +169,7 @@ func _SharedSetService_MutateSharedSets_Handler(srv interface{}, ctx context.Con // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var SharedSetService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.SharedSetService", + ServiceName: "google.ads.googleads.v17.services.SharedSetService", HandlerType: (*SharedSetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -173,5 +178,5 @@ var SharedSetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/shared_set_service.proto", + Metadata: "google/ads/googleads/v17/services/shared_set_service.proto", } diff --git a/services/smart_campaign_setting_service.pb.go b/services/smart_campaign_setting_service.pb.go index f6b02c83..8a7f5ece 100644 --- a/services/smart_campaign_setting_service.pb.go +++ b/services/smart_campaign_setting_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/smart_campaign_setting_service.proto +// source: google/ads/googleads/v17/services/smart_campaign_setting_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [SmartCampaignSettingService.GetSmartCampaignStatus][google.ads.googleads.v16.services.SmartCampaignSettingService.GetSmartCampaignStatus]. +// [SmartCampaignSettingService.GetSmartCampaignStatus][google.ads.googleads.v17.services.SmartCampaignSettingService.GetSmartCampaignStatus]. type GetSmartCampaignStatusRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -54,7 +54,7 @@ type GetSmartCampaignStatusRequest struct { func (x *GetSmartCampaignStatusRequest) Reset() { *x = GetSmartCampaignStatusRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67,7 +67,7 @@ func (x *GetSmartCampaignStatusRequest) String() string { func (*GetSmartCampaignStatusRequest) ProtoMessage() {} func (x *GetSmartCampaignStatusRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80,7 +80,7 @@ func (x *GetSmartCampaignStatusRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetSmartCampaignStatusRequest.ProtoReflect.Descriptor instead. func (*GetSmartCampaignStatusRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{0} } func (x *GetSmartCampaignStatusRequest) GetResourceName() string { @@ -97,13 +97,13 @@ type SmartCampaignNotEligibleDetails struct { unknownFields protoimpl.UnknownFields // The reason why the Smart campaign is not eligible to serve. - NotEligibleReason *enums.SmartCampaignNotEligibleReasonEnum_SmartCampaignNotEligibleReason `protobuf:"varint,1,opt,name=not_eligible_reason,json=notEligibleReason,proto3,enum=google.ads.googleads.v16.enums.SmartCampaignNotEligibleReasonEnum_SmartCampaignNotEligibleReason,oneof" json:"not_eligible_reason,omitempty"` + NotEligibleReason *enums.SmartCampaignNotEligibleReasonEnum_SmartCampaignNotEligibleReason `protobuf:"varint,1,opt,name=not_eligible_reason,json=notEligibleReason,proto3,enum=google.ads.googleads.v17.enums.SmartCampaignNotEligibleReasonEnum_SmartCampaignNotEligibleReason,oneof" json:"not_eligible_reason,omitempty"` } func (x *SmartCampaignNotEligibleDetails) Reset() { *x = SmartCampaignNotEligibleDetails{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -116,7 +116,7 @@ func (x *SmartCampaignNotEligibleDetails) String() string { func (*SmartCampaignNotEligibleDetails) ProtoMessage() {} func (x *SmartCampaignNotEligibleDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_smart_campaign_setting_service_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 *SmartCampaignNotEligibleDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use SmartCampaignNotEligibleDetails.ProtoReflect.Descriptor instead. func (*SmartCampaignNotEligibleDetails) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{1} } func (x *SmartCampaignNotEligibleDetails) GetNotEligibleReason() enums.SmartCampaignNotEligibleReasonEnum_SmartCampaignNotEligibleReason { @@ -159,7 +159,7 @@ type SmartCampaignEligibleDetails struct { func (x *SmartCampaignEligibleDetails) Reset() { *x = SmartCampaignEligibleDetails{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -172,7 +172,7 @@ func (x *SmartCampaignEligibleDetails) String() string { func (*SmartCampaignEligibleDetails) ProtoMessage() {} func (x *SmartCampaignEligibleDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -185,7 +185,7 @@ func (x *SmartCampaignEligibleDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use SmartCampaignEligibleDetails.ProtoReflect.Descriptor instead. func (*SmartCampaignEligibleDetails) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{2} } func (x *SmartCampaignEligibleDetails) GetLastImpressionDateTime() string { @@ -217,7 +217,7 @@ type SmartCampaignPausedDetails struct { func (x *SmartCampaignPausedDetails) Reset() { *x = SmartCampaignPausedDetails{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -230,7 +230,7 @@ func (x *SmartCampaignPausedDetails) String() string { func (*SmartCampaignPausedDetails) ProtoMessage() {} func (x *SmartCampaignPausedDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -243,7 +243,7 @@ func (x *SmartCampaignPausedDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use SmartCampaignPausedDetails.ProtoReflect.Descriptor instead. func (*SmartCampaignPausedDetails) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{3} } func (x *SmartCampaignPausedDetails) GetPausedDateTime() string { @@ -268,7 +268,7 @@ type SmartCampaignRemovedDetails struct { func (x *SmartCampaignRemovedDetails) Reset() { *x = SmartCampaignRemovedDetails{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -281,7 +281,7 @@ func (x *SmartCampaignRemovedDetails) String() string { func (*SmartCampaignRemovedDetails) ProtoMessage() {} func (x *SmartCampaignRemovedDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -294,7 +294,7 @@ func (x *SmartCampaignRemovedDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use SmartCampaignRemovedDetails.ProtoReflect.Descriptor instead. func (*SmartCampaignRemovedDetails) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{4} } func (x *SmartCampaignRemovedDetails) GetRemovedDateTime() string { @@ -319,7 +319,7 @@ type SmartCampaignEndedDetails struct { func (x *SmartCampaignEndedDetails) Reset() { *x = SmartCampaignEndedDetails{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -332,7 +332,7 @@ func (x *SmartCampaignEndedDetails) String() string { func (*SmartCampaignEndedDetails) ProtoMessage() {} func (x *SmartCampaignEndedDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -345,7 +345,7 @@ func (x *SmartCampaignEndedDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use SmartCampaignEndedDetails.ProtoReflect.Descriptor instead. func (*SmartCampaignEndedDetails) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{5} } func (x *SmartCampaignEndedDetails) GetEndDateTime() string { @@ -356,14 +356,14 @@ func (x *SmartCampaignEndedDetails) GetEndDateTime() string { } // Response message for -// [SmartCampaignSettingService.GetSmartCampaignStatus][google.ads.googleads.v16.services.SmartCampaignSettingService.GetSmartCampaignStatus]. +// [SmartCampaignSettingService.GetSmartCampaignStatus][google.ads.googleads.v17.services.SmartCampaignSettingService.GetSmartCampaignStatus]. type GetSmartCampaignStatusResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields // The status of this Smart campaign. - SmartCampaignStatus enums.SmartCampaignStatusEnum_SmartCampaignStatus `protobuf:"varint,1,opt,name=smart_campaign_status,json=smartCampaignStatus,proto3,enum=google.ads.googleads.v16.enums.SmartCampaignStatusEnum_SmartCampaignStatus" json:"smart_campaign_status,omitempty"` + SmartCampaignStatus enums.SmartCampaignStatusEnum_SmartCampaignStatus `protobuf:"varint,1,opt,name=smart_campaign_status,json=smartCampaignStatus,proto3,enum=google.ads.googleads.v17.enums.SmartCampaignStatusEnum_SmartCampaignStatus" json:"smart_campaign_status,omitempty"` // Additional details accompanying the status of a Smart campaign. // // Types that are assignable to SmartCampaignStatusDetails: @@ -379,7 +379,7 @@ type GetSmartCampaignStatusResponse struct { func (x *GetSmartCampaignStatusResponse) Reset() { *x = GetSmartCampaignStatusResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -392,7 +392,7 @@ func (x *GetSmartCampaignStatusResponse) String() string { func (*GetSmartCampaignStatusResponse) ProtoMessage() {} func (x *GetSmartCampaignStatusResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[6] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -405,7 +405,7 @@ func (x *GetSmartCampaignStatusResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetSmartCampaignStatusResponse.ProtoReflect.Descriptor instead. func (*GetSmartCampaignStatusResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{6} } func (x *GetSmartCampaignStatusResponse) GetSmartCampaignStatus() enums.SmartCampaignStatusEnum_SmartCampaignStatus { @@ -502,7 +502,7 @@ func (*GetSmartCampaignStatusResponse_EndedDetails) isGetSmartCampaignStatusResp } // Request message for -// [SmartCampaignSettingService.MutateSmartCampaignSettings][google.ads.googleads.v16.services.SmartCampaignSettingService.MutateSmartCampaignSettings]. +// [SmartCampaignSettingService.MutateSmartCampaignSettings][google.ads.googleads.v17.services.SmartCampaignSettingService.MutateSmartCampaignSettings]. type MutateSmartCampaignSettingsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -524,13 +524,13 @@ type MutateSmartCampaignSettingsRequest struct { ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // The response content type setting. Determines whether the mutable resource // or just the resource name should be returned post mutation. - ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v16.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` + ResponseContentType enums.ResponseContentTypeEnum_ResponseContentType `protobuf:"varint,5,opt,name=response_content_type,json=responseContentType,proto3,enum=google.ads.googleads.v17.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` } func (x *MutateSmartCampaignSettingsRequest) Reset() { *x = MutateSmartCampaignSettingsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -543,7 +543,7 @@ func (x *MutateSmartCampaignSettingsRequest) String() string { func (*MutateSmartCampaignSettingsRequest) ProtoMessage() {} func (x *MutateSmartCampaignSettingsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[7] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -556,7 +556,7 @@ func (x *MutateSmartCampaignSettingsRequest) ProtoReflect() protoreflect.Message // Deprecated: Use MutateSmartCampaignSettingsRequest.ProtoReflect.Descriptor instead. func (*MutateSmartCampaignSettingsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{7} } func (x *MutateSmartCampaignSettingsRequest) GetCustomerId() string { @@ -610,7 +610,7 @@ type SmartCampaignSettingOperation struct { func (x *SmartCampaignSettingOperation) Reset() { *x = SmartCampaignSettingOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -623,7 +623,7 @@ func (x *SmartCampaignSettingOperation) String() string { func (*SmartCampaignSettingOperation) ProtoMessage() {} func (x *SmartCampaignSettingOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[8] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -636,7 +636,7 @@ func (x *SmartCampaignSettingOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use SmartCampaignSettingOperation.ProtoReflect.Descriptor instead. func (*SmartCampaignSettingOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{8} } func (x *SmartCampaignSettingOperation) GetUpdate() *resources.SmartCampaignSetting { @@ -671,7 +671,7 @@ type MutateSmartCampaignSettingsResponse struct { func (x *MutateSmartCampaignSettingsResponse) Reset() { *x = MutateSmartCampaignSettingsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -684,7 +684,7 @@ func (x *MutateSmartCampaignSettingsResponse) String() string { func (*MutateSmartCampaignSettingsResponse) ProtoMessage() {} func (x *MutateSmartCampaignSettingsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[9] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -697,7 +697,7 @@ func (x *MutateSmartCampaignSettingsResponse) ProtoReflect() protoreflect.Messag // Deprecated: Use MutateSmartCampaignSettingsResponse.ProtoReflect.Descriptor instead. func (*MutateSmartCampaignSettingsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{9} + return file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{9} } func (x *MutateSmartCampaignSettingsResponse) GetPartialFailureError() *status.Status { @@ -731,7 +731,7 @@ type MutateSmartCampaignSettingResult struct { func (x *MutateSmartCampaignSettingResult) Reset() { *x = MutateSmartCampaignSettingResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -744,7 +744,7 @@ func (x *MutateSmartCampaignSettingResult) String() string { func (*MutateSmartCampaignSettingResult) ProtoMessage() {} func (x *MutateSmartCampaignSettingResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[10] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -757,7 +757,7 @@ func (x *MutateSmartCampaignSettingResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateSmartCampaignSettingResult.ProtoReflect.Descriptor instead. func (*MutateSmartCampaignSettingResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{10} + return file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{10} } func (x *MutateSmartCampaignSettingResult) GetResourceName() string { @@ -774,30 +774,30 @@ func (x *MutateSmartCampaignSettingResult) GetSmartCampaignSetting() *resources. return nil } -var File_google_ads_googleads_v16_services_smart_campaign_setting_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_smart_campaign_setting_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_smart_campaign_setting_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3a, 0x67, 0x6f, 0x6f, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x72, 0x65, 0x73, 0x70, + 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, 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, 0x73, 0x2f, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x5f, 0x63, 0x61, + 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, 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, 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, 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, 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, 0x2f, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, @@ -824,7 +824,7 @@ var file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_ 0x13, 0x6e, 0x6f, 0x74, 0x5f, 0x65, 0x6c, 0x69, 0x67, 0x69, 0x62, 0x6c, 0x65, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 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, 0x53, 0x6d, 0x61, 0x72, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4e, 0x6f, 0x74, 0x45, @@ -867,7 +867,7 @@ var file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_ 0x61, 0x72, 0x74, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 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, 0x53, 0x6d, 0x61, 0x72, 0x74, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x13, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, @@ -875,34 +875,34 @@ var file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_ 0x6f, 0x74, 0x5f, 0x65, 0x6c, 0x69, 0x67, 0x69, 0x62, 0x6c, 0x65, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x6d, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4e, 0x6f, 0x74, 0x45, 0x6c, 0x69, 0x67, 0x69, 0x62, 0x6c, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x48, 0x00, 0x52, 0x12, 0x6e, 0x6f, 0x74, 0x45, 0x6c, 0x69, 0x67, 0x69, 0x62, 0x6c, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x12, 0x6c, 0x0a, 0x10, 0x65, 0x6c, 0x69, 0x67, 0x69, 0x62, 0x6c, 0x65, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x18, 0x03, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x6c, 0x69, 0x67, 0x69, 0x62, 0x6c, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x48, 0x00, 0x52, 0x0f, 0x65, 0x6c, 0x69, 0x67, 0x69, 0x62, 0x6c, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x12, 0x66, 0x0a, 0x0e, 0x70, 0x61, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x6d, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x50, 0x61, 0x75, 0x73, 0x65, 0x64, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x48, 0x00, 0x52, 0x0d, 0x70, 0x61, 0x75, 0x73, 0x65, 0x64, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x12, 0x69, 0x0a, 0x0f, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x64, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x18, 0x05, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x64, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x48, 0x00, 0x52, 0x0e, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x64, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x12, 0x63, 0x0a, 0x0d, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x18, 0x06, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x64, 0x65, 0x64, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x48, 0x00, 0x52, 0x0c, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x42, 0x1f, 0x0a, 0x1d, 0x73, 0x6d, 0x61, @@ -915,7 +915,7 @@ var file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_ 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x65, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, @@ -927,7 +927,7 @@ var file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_ 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 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, 0x52, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, @@ -936,7 +936,7 @@ var file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_ 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x50, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 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, 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, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x61, 0x73, 0x6b, @@ -952,7 +952,7 @@ var file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_ 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x5d, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xeb, 0x01, @@ -967,7 +967,7 @@ var file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_ 0x6d, 0x61, 0x72, 0x74, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x02, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x14, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x32, 0xfd, 0x04, 0x0a, 0x1b, @@ -976,15 +976,15 @@ var file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_ 0x47, 0x65, 0x74, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x6d, + 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x74, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x67, 0xda, 0x41, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x82, 0xd3, 0xe4, - 0x93, 0x02, 0x51, 0x12, 0x4f, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x93, 0x02, 0x51, 0x12, 0x4f, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x2a, 0x2f, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x2f, 0x2a, 0x7d, 0x3a, 0x67, 0x65, @@ -992,17 +992,17 @@ var file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_ 0x61, 0x74, 0x75, 0x73, 0x12, 0x8d, 0x02, 0x0a, 0x1b, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5f, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, - 0xe4, 0x93, 0x02, 0x40, 0x3a, 0x01, 0x2a, 0x22, 0x3b, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, + 0xe4, 0x93, 0x02, 0x40, 0x3a, 0x01, 0x2a, 0x22, 0x3b, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x3a, 0x6d, 0x75, @@ -1012,76 +1012,76 @@ var file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x8c, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x20, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, + 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, + 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_rawDescData = file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_rawDesc + file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_rawDescData = file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_rawDescData -} - -var file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes = make([]protoimpl.MessageInfo, 11) -var file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_goTypes = []interface{}{ - (*GetSmartCampaignStatusRequest)(nil), // 0: google.ads.googleads.v16.services.GetSmartCampaignStatusRequest - (*SmartCampaignNotEligibleDetails)(nil), // 1: google.ads.googleads.v16.services.SmartCampaignNotEligibleDetails - (*SmartCampaignEligibleDetails)(nil), // 2: google.ads.googleads.v16.services.SmartCampaignEligibleDetails - (*SmartCampaignPausedDetails)(nil), // 3: google.ads.googleads.v16.services.SmartCampaignPausedDetails - (*SmartCampaignRemovedDetails)(nil), // 4: google.ads.googleads.v16.services.SmartCampaignRemovedDetails - (*SmartCampaignEndedDetails)(nil), // 5: google.ads.googleads.v16.services.SmartCampaignEndedDetails - (*GetSmartCampaignStatusResponse)(nil), // 6: google.ads.googleads.v16.services.GetSmartCampaignStatusResponse - (*MutateSmartCampaignSettingsRequest)(nil), // 7: google.ads.googleads.v16.services.MutateSmartCampaignSettingsRequest - (*SmartCampaignSettingOperation)(nil), // 8: google.ads.googleads.v16.services.SmartCampaignSettingOperation - (*MutateSmartCampaignSettingsResponse)(nil), // 9: google.ads.googleads.v16.services.MutateSmartCampaignSettingsResponse - (*MutateSmartCampaignSettingResult)(nil), // 10: google.ads.googleads.v16.services.MutateSmartCampaignSettingResult - (enums.SmartCampaignNotEligibleReasonEnum_SmartCampaignNotEligibleReason)(0), // 11: google.ads.googleads.v16.enums.SmartCampaignNotEligibleReasonEnum.SmartCampaignNotEligibleReason - (enums.SmartCampaignStatusEnum_SmartCampaignStatus)(0), // 12: google.ads.googleads.v16.enums.SmartCampaignStatusEnum.SmartCampaignStatus - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 13: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - (*resources.SmartCampaignSetting)(nil), // 14: google.ads.googleads.v16.resources.SmartCampaignSetting + return file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_rawDescData +} + +var file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes = make([]protoimpl.MessageInfo, 11) +var file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_goTypes = []interface{}{ + (*GetSmartCampaignStatusRequest)(nil), // 0: google.ads.googleads.v17.services.GetSmartCampaignStatusRequest + (*SmartCampaignNotEligibleDetails)(nil), // 1: google.ads.googleads.v17.services.SmartCampaignNotEligibleDetails + (*SmartCampaignEligibleDetails)(nil), // 2: google.ads.googleads.v17.services.SmartCampaignEligibleDetails + (*SmartCampaignPausedDetails)(nil), // 3: google.ads.googleads.v17.services.SmartCampaignPausedDetails + (*SmartCampaignRemovedDetails)(nil), // 4: google.ads.googleads.v17.services.SmartCampaignRemovedDetails + (*SmartCampaignEndedDetails)(nil), // 5: google.ads.googleads.v17.services.SmartCampaignEndedDetails + (*GetSmartCampaignStatusResponse)(nil), // 6: google.ads.googleads.v17.services.GetSmartCampaignStatusResponse + (*MutateSmartCampaignSettingsRequest)(nil), // 7: google.ads.googleads.v17.services.MutateSmartCampaignSettingsRequest + (*SmartCampaignSettingOperation)(nil), // 8: google.ads.googleads.v17.services.SmartCampaignSettingOperation + (*MutateSmartCampaignSettingsResponse)(nil), // 9: google.ads.googleads.v17.services.MutateSmartCampaignSettingsResponse + (*MutateSmartCampaignSettingResult)(nil), // 10: google.ads.googleads.v17.services.MutateSmartCampaignSettingResult + (enums.SmartCampaignNotEligibleReasonEnum_SmartCampaignNotEligibleReason)(0), // 11: google.ads.googleads.v17.enums.SmartCampaignNotEligibleReasonEnum.SmartCampaignNotEligibleReason + (enums.SmartCampaignStatusEnum_SmartCampaignStatus)(0), // 12: google.ads.googleads.v17.enums.SmartCampaignStatusEnum.SmartCampaignStatus + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 13: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + (*resources.SmartCampaignSetting)(nil), // 14: google.ads.googleads.v17.resources.SmartCampaignSetting (*fieldmaskpb.FieldMask)(nil), // 15: google.protobuf.FieldMask (*status.Status)(nil), // 16: google.rpc.Status } -var file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_depIdxs = []int32{ - 11, // 0: google.ads.googleads.v16.services.SmartCampaignNotEligibleDetails.not_eligible_reason:type_name -> google.ads.googleads.v16.enums.SmartCampaignNotEligibleReasonEnum.SmartCampaignNotEligibleReason - 12, // 1: google.ads.googleads.v16.services.GetSmartCampaignStatusResponse.smart_campaign_status:type_name -> google.ads.googleads.v16.enums.SmartCampaignStatusEnum.SmartCampaignStatus - 1, // 2: google.ads.googleads.v16.services.GetSmartCampaignStatusResponse.not_eligible_details:type_name -> google.ads.googleads.v16.services.SmartCampaignNotEligibleDetails - 2, // 3: google.ads.googleads.v16.services.GetSmartCampaignStatusResponse.eligible_details:type_name -> google.ads.googleads.v16.services.SmartCampaignEligibleDetails - 3, // 4: google.ads.googleads.v16.services.GetSmartCampaignStatusResponse.paused_details:type_name -> google.ads.googleads.v16.services.SmartCampaignPausedDetails - 4, // 5: google.ads.googleads.v16.services.GetSmartCampaignStatusResponse.removed_details:type_name -> google.ads.googleads.v16.services.SmartCampaignRemovedDetails - 5, // 6: google.ads.googleads.v16.services.GetSmartCampaignStatusResponse.ended_details:type_name -> google.ads.googleads.v16.services.SmartCampaignEndedDetails - 8, // 7: google.ads.googleads.v16.services.MutateSmartCampaignSettingsRequest.operations:type_name -> google.ads.googleads.v16.services.SmartCampaignSettingOperation - 13, // 8: google.ads.googleads.v16.services.MutateSmartCampaignSettingsRequest.response_content_type:type_name -> google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType - 14, // 9: google.ads.googleads.v16.services.SmartCampaignSettingOperation.update:type_name -> google.ads.googleads.v16.resources.SmartCampaignSetting - 15, // 10: google.ads.googleads.v16.services.SmartCampaignSettingOperation.update_mask:type_name -> google.protobuf.FieldMask - 16, // 11: google.ads.googleads.v16.services.MutateSmartCampaignSettingsResponse.partial_failure_error:type_name -> google.rpc.Status - 10, // 12: google.ads.googleads.v16.services.MutateSmartCampaignSettingsResponse.results:type_name -> google.ads.googleads.v16.services.MutateSmartCampaignSettingResult - 14, // 13: google.ads.googleads.v16.services.MutateSmartCampaignSettingResult.smart_campaign_setting:type_name -> google.ads.googleads.v16.resources.SmartCampaignSetting - 0, // 14: google.ads.googleads.v16.services.SmartCampaignSettingService.GetSmartCampaignStatus:input_type -> google.ads.googleads.v16.services.GetSmartCampaignStatusRequest - 7, // 15: google.ads.googleads.v16.services.SmartCampaignSettingService.MutateSmartCampaignSettings:input_type -> google.ads.googleads.v16.services.MutateSmartCampaignSettingsRequest - 6, // 16: google.ads.googleads.v16.services.SmartCampaignSettingService.GetSmartCampaignStatus:output_type -> google.ads.googleads.v16.services.GetSmartCampaignStatusResponse - 9, // 17: google.ads.googleads.v16.services.SmartCampaignSettingService.MutateSmartCampaignSettings:output_type -> google.ads.googleads.v16.services.MutateSmartCampaignSettingsResponse +var file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_depIdxs = []int32{ + 11, // 0: google.ads.googleads.v17.services.SmartCampaignNotEligibleDetails.not_eligible_reason:type_name -> google.ads.googleads.v17.enums.SmartCampaignNotEligibleReasonEnum.SmartCampaignNotEligibleReason + 12, // 1: google.ads.googleads.v17.services.GetSmartCampaignStatusResponse.smart_campaign_status:type_name -> google.ads.googleads.v17.enums.SmartCampaignStatusEnum.SmartCampaignStatus + 1, // 2: google.ads.googleads.v17.services.GetSmartCampaignStatusResponse.not_eligible_details:type_name -> google.ads.googleads.v17.services.SmartCampaignNotEligibleDetails + 2, // 3: google.ads.googleads.v17.services.GetSmartCampaignStatusResponse.eligible_details:type_name -> google.ads.googleads.v17.services.SmartCampaignEligibleDetails + 3, // 4: google.ads.googleads.v17.services.GetSmartCampaignStatusResponse.paused_details:type_name -> google.ads.googleads.v17.services.SmartCampaignPausedDetails + 4, // 5: google.ads.googleads.v17.services.GetSmartCampaignStatusResponse.removed_details:type_name -> google.ads.googleads.v17.services.SmartCampaignRemovedDetails + 5, // 6: google.ads.googleads.v17.services.GetSmartCampaignStatusResponse.ended_details:type_name -> google.ads.googleads.v17.services.SmartCampaignEndedDetails + 8, // 7: google.ads.googleads.v17.services.MutateSmartCampaignSettingsRequest.operations:type_name -> google.ads.googleads.v17.services.SmartCampaignSettingOperation + 13, // 8: google.ads.googleads.v17.services.MutateSmartCampaignSettingsRequest.response_content_type:type_name -> google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType + 14, // 9: google.ads.googleads.v17.services.SmartCampaignSettingOperation.update:type_name -> google.ads.googleads.v17.resources.SmartCampaignSetting + 15, // 10: google.ads.googleads.v17.services.SmartCampaignSettingOperation.update_mask:type_name -> google.protobuf.FieldMask + 16, // 11: google.ads.googleads.v17.services.MutateSmartCampaignSettingsResponse.partial_failure_error:type_name -> google.rpc.Status + 10, // 12: google.ads.googleads.v17.services.MutateSmartCampaignSettingsResponse.results:type_name -> google.ads.googleads.v17.services.MutateSmartCampaignSettingResult + 14, // 13: google.ads.googleads.v17.services.MutateSmartCampaignSettingResult.smart_campaign_setting:type_name -> google.ads.googleads.v17.resources.SmartCampaignSetting + 0, // 14: google.ads.googleads.v17.services.SmartCampaignSettingService.GetSmartCampaignStatus:input_type -> google.ads.googleads.v17.services.GetSmartCampaignStatusRequest + 7, // 15: google.ads.googleads.v17.services.SmartCampaignSettingService.MutateSmartCampaignSettings:input_type -> google.ads.googleads.v17.services.MutateSmartCampaignSettingsRequest + 6, // 16: google.ads.googleads.v17.services.SmartCampaignSettingService.GetSmartCampaignStatus:output_type -> google.ads.googleads.v17.services.GetSmartCampaignStatusResponse + 9, // 17: google.ads.googleads.v17.services.SmartCampaignSettingService.MutateSmartCampaignSettings:output_type -> google.ads.googleads.v17.services.MutateSmartCampaignSettingsResponse 16, // [16:18] is the sub-list for method output_type 14, // [14:16] is the sub-list for method input_type 14, // [14:14] is the sub-list for extension type_name @@ -1089,13 +1089,13 @@ var file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_ 0, // [0:14] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_init() } -func file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_init() { - if File_google_ads_googleads_v16_services_smart_campaign_setting_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_init() } +func file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_init() { + if File_google_ads_googleads_v17_services_smart_campaign_setting_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetSmartCampaignStatusRequest); i { case 0: return &v.state @@ -1107,7 +1107,7 @@ func file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto return nil } } - file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SmartCampaignNotEligibleDetails); i { case 0: return &v.state @@ -1119,7 +1119,7 @@ func file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto return nil } } - file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SmartCampaignEligibleDetails); i { case 0: return &v.state @@ -1131,7 +1131,7 @@ func file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto return nil } } - file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SmartCampaignPausedDetails); i { case 0: return &v.state @@ -1143,7 +1143,7 @@ func file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto return nil } } - file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SmartCampaignRemovedDetails); i { case 0: return &v.state @@ -1155,7 +1155,7 @@ func file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto return nil } } - file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SmartCampaignEndedDetails); i { case 0: return &v.state @@ -1167,7 +1167,7 @@ func file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto return nil } } - file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetSmartCampaignStatusResponse); i { case 0: return &v.state @@ -1179,7 +1179,7 @@ func file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto return nil } } - file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateSmartCampaignSettingsRequest); i { case 0: return &v.state @@ -1191,7 +1191,7 @@ func file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto return nil } } - file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SmartCampaignSettingOperation); i { case 0: return &v.state @@ -1203,7 +1203,7 @@ func file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto return nil } } - file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateSmartCampaignSettingsResponse); i { case 0: return &v.state @@ -1215,7 +1215,7 @@ func file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto return nil } } - file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateSmartCampaignSettingResult); i { case 0: return &v.state @@ -1228,12 +1228,12 @@ func file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto } } } - file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[1].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[2].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[3].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[4].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[5].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes[6].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[1].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[2].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[3].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[4].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[5].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes[6].OneofWrappers = []interface{}{ (*GetSmartCampaignStatusResponse_NotEligibleDetails)(nil), (*GetSmartCampaignStatusResponse_EligibleDetails)(nil), (*GetSmartCampaignStatusResponse_PausedDetails)(nil), @@ -1244,18 +1244,18 @@ func file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_rawDesc, NumEnums: 0, NumMessages: 11, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_smart_campaign_setting_service_proto = out.File - file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_smart_campaign_setting_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_smart_campaign_setting_service_proto = out.File + file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_smart_campaign_setting_service_proto_depIdxs = nil } diff --git a/services/smart_campaign_setting_service_grpc.pb.go b/services/smart_campaign_setting_service_grpc.pb.go index 001e7f43..1ce441dd 100644 --- a/services/smart_campaign_setting_service_grpc.pb.go +++ b/services/smart_campaign_setting_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/smart_campaign_setting_service.proto +// source: google/ads/googleads/v17/services/smart_campaign_setting_service.proto package services @@ -29,17 +29,19 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - SmartCampaignSettingService_GetSmartCampaignStatus_FullMethodName = "/google.ads.googleads.v16.services.SmartCampaignSettingService/GetSmartCampaignStatus" - SmartCampaignSettingService_MutateSmartCampaignSettings_FullMethodName = "/google.ads.googleads.v16.services.SmartCampaignSettingService/MutateSmartCampaignSettings" + SmartCampaignSettingService_GetSmartCampaignStatus_FullMethodName = "/google.ads.googleads.v17.services.SmartCampaignSettingService/GetSmartCampaignStatus" + SmartCampaignSettingService_MutateSmartCampaignSettings_FullMethodName = "/google.ads.googleads.v17.services.SmartCampaignSettingService/MutateSmartCampaignSettings" ) // SmartCampaignSettingServiceClient is the client API for SmartCampaignSettingService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage Smart campaign settings. type SmartCampaignSettingServiceClient interface { // Returns the status of the requested Smart campaign. GetSmartCampaignStatus(ctx context.Context, in *GetSmartCampaignStatusRequest, opts ...grpc.CallOption) (*GetSmartCampaignStatusResponse, error) @@ -56,8 +58,9 @@ func NewSmartCampaignSettingServiceClient(cc grpc.ClientConnInterface) SmartCamp } func (c *smartCampaignSettingServiceClient) GetSmartCampaignStatus(ctx context.Context, in *GetSmartCampaignStatusRequest, opts ...grpc.CallOption) (*GetSmartCampaignStatusResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(GetSmartCampaignStatusResponse) - err := c.cc.Invoke(ctx, SmartCampaignSettingService_GetSmartCampaignStatus_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, SmartCampaignSettingService_GetSmartCampaignStatus_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -65,8 +68,9 @@ func (c *smartCampaignSettingServiceClient) GetSmartCampaignStatus(ctx context.C } func (c *smartCampaignSettingServiceClient) MutateSmartCampaignSettings(ctx context.Context, in *MutateSmartCampaignSettingsRequest, opts ...grpc.CallOption) (*MutateSmartCampaignSettingsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateSmartCampaignSettingsResponse) - err := c.cc.Invoke(ctx, SmartCampaignSettingService_MutateSmartCampaignSettings_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, SmartCampaignSettingService_MutateSmartCampaignSettings_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -76,6 +80,8 @@ func (c *smartCampaignSettingServiceClient) MutateSmartCampaignSettings(ctx cont // SmartCampaignSettingServiceServer is the server API for SmartCampaignSettingService service. // All implementations must embed UnimplementedSmartCampaignSettingServiceServer // for forward compatibility +// +// Service to manage Smart campaign settings. type SmartCampaignSettingServiceServer interface { // Returns the status of the requested Smart campaign. GetSmartCampaignStatus(context.Context, *GetSmartCampaignStatusRequest) (*GetSmartCampaignStatusResponse, error) @@ -148,7 +154,7 @@ func _SmartCampaignSettingService_MutateSmartCampaignSettings_Handler(srv interf // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var SmartCampaignSettingService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.SmartCampaignSettingService", + ServiceName: "google.ads.googleads.v17.services.SmartCampaignSettingService", HandlerType: (*SmartCampaignSettingServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -161,5 +167,5 @@ var SmartCampaignSettingService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/smart_campaign_setting_service.proto", + Metadata: "google/ads/googleads/v17/services/smart_campaign_setting_service.proto", } diff --git a/services/smart_campaign_suggest_service.pb.go b/services/smart_campaign_suggest_service.pb.go index f34ddf72..f2d0b346 100644 --- a/services/smart_campaign_suggest_service.pb.go +++ b/services/smart_campaign_suggest_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/smart_campaign_suggest_service.proto +// source: google/ads/googleads/v17/services/smart_campaign_suggest_service.proto package services @@ -38,7 +38,7 @@ const ( ) // Request message for -// [SmartCampaignSuggestService.SuggestSmartCampaignBudgetOptions][google.ads.googleads.v16.services.SmartCampaignSuggestService.SuggestSmartCampaignBudgetOptions]. +// [SmartCampaignSuggestService.SuggestSmartCampaignBudgetOptions][google.ads.googleads.v17.services.SmartCampaignSuggestService.SuggestSmartCampaignBudgetOptions]. type SuggestSmartCampaignBudgetOptionsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -60,7 +60,7 @@ type SuggestSmartCampaignBudgetOptionsRequest struct { func (x *SuggestSmartCampaignBudgetOptionsRequest) Reset() { *x = SuggestSmartCampaignBudgetOptionsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73,7 +73,7 @@ func (x *SuggestSmartCampaignBudgetOptionsRequest) String() string { func (*SuggestSmartCampaignBudgetOptionsRequest) ProtoMessage() {} func (x *SuggestSmartCampaignBudgetOptionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_smart_campaign_suggest_service_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 *SuggestSmartCampaignBudgetOptionsRequest) ProtoReflect() protoreflect.M // Deprecated: Use SuggestSmartCampaignBudgetOptionsRequest.ProtoReflect.Descriptor instead. func (*SuggestSmartCampaignBudgetOptionsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{0} } func (x *SuggestSmartCampaignBudgetOptionsRequest) GetCustomerId() string { @@ -176,7 +176,7 @@ type SmartCampaignSuggestionInfo struct { func (x *SmartCampaignSuggestionInfo) Reset() { *x = SmartCampaignSuggestionInfo{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -189,7 +189,7 @@ func (x *SmartCampaignSuggestionInfo) String() string { func (*SmartCampaignSuggestionInfo) ProtoMessage() {} func (x *SmartCampaignSuggestionInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_smart_campaign_suggest_service_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 *SmartCampaignSuggestionInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use SmartCampaignSuggestionInfo.ProtoReflect.Descriptor instead. func (*SmartCampaignSuggestionInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{1} } func (x *SmartCampaignSuggestionInfo) GetFinalUrl() string { @@ -321,7 +321,7 @@ func (*SmartCampaignSuggestionInfo_LocationList_) isSmartCampaignSuggestionInfo_ func (*SmartCampaignSuggestionInfo_Proximity) isSmartCampaignSuggestionInfo_GeoTarget() {} // Response message for -// [SmartCampaignSuggestService.SuggestSmartCampaignBudgetOptions][google.ads.googleads.v16.services.SmartCampaignSuggestService.SuggestSmartCampaignBudgetOptions]. +// [SmartCampaignSuggestService.SuggestSmartCampaignBudgetOptions][google.ads.googleads.v17.services.SmartCampaignSuggestService.SuggestSmartCampaignBudgetOptions]. // Depending on whether the system could suggest the options, either all of the // options or none of them might be returned. type SuggestSmartCampaignBudgetOptionsResponse struct { @@ -340,7 +340,7 @@ type SuggestSmartCampaignBudgetOptionsResponse struct { func (x *SuggestSmartCampaignBudgetOptionsResponse) Reset() { *x = SuggestSmartCampaignBudgetOptionsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -353,7 +353,7 @@ func (x *SuggestSmartCampaignBudgetOptionsResponse) String() string { func (*SuggestSmartCampaignBudgetOptionsResponse) ProtoMessage() {} func (x *SuggestSmartCampaignBudgetOptionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -366,7 +366,7 @@ func (x *SuggestSmartCampaignBudgetOptionsResponse) ProtoReflect() protoreflect. // Deprecated: Use SuggestSmartCampaignBudgetOptionsResponse.ProtoReflect.Descriptor instead. func (*SuggestSmartCampaignBudgetOptionsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{2} } func (x *SuggestSmartCampaignBudgetOptionsResponse) GetLow() *SuggestSmartCampaignBudgetOptionsResponse_BudgetOption { @@ -391,7 +391,7 @@ func (x *SuggestSmartCampaignBudgetOptionsResponse) GetHigh() *SuggestSmartCampa } // Request message for -// [SmartCampaignSuggestService.SuggestSmartCampaignAd][google.ads.googleads.v16.services.SmartCampaignSuggestService.SuggestSmartCampaignAd]. +// [SmartCampaignSuggestService.SuggestSmartCampaignAd][google.ads.googleads.v17.services.SmartCampaignSuggestService.SuggestSmartCampaignAd]. type SuggestSmartCampaignAdRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -409,7 +409,7 @@ type SuggestSmartCampaignAdRequest struct { func (x *SuggestSmartCampaignAdRequest) Reset() { *x = SuggestSmartCampaignAdRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -422,7 +422,7 @@ func (x *SuggestSmartCampaignAdRequest) String() string { func (*SuggestSmartCampaignAdRequest) ProtoMessage() {} func (x *SuggestSmartCampaignAdRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -435,7 +435,7 @@ func (x *SuggestSmartCampaignAdRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SuggestSmartCampaignAdRequest.ProtoReflect.Descriptor instead. func (*SuggestSmartCampaignAdRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{3} } func (x *SuggestSmartCampaignAdRequest) GetCustomerId() string { @@ -453,7 +453,7 @@ func (x *SuggestSmartCampaignAdRequest) GetSuggestionInfo() *SmartCampaignSugges } // Response message for -// [SmartCampaignSuggestService.SuggestSmartCampaignAd][google.ads.googleads.v16.services.SmartCampaignSuggestService.SuggestSmartCampaignAd]. +// [SmartCampaignSuggestService.SuggestSmartCampaignAd][google.ads.googleads.v17.services.SmartCampaignSuggestService.SuggestSmartCampaignAd]. type SuggestSmartCampaignAdResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -467,7 +467,7 @@ type SuggestSmartCampaignAdResponse struct { func (x *SuggestSmartCampaignAdResponse) Reset() { *x = SuggestSmartCampaignAdResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -480,7 +480,7 @@ func (x *SuggestSmartCampaignAdResponse) String() string { func (*SuggestSmartCampaignAdResponse) ProtoMessage() {} func (x *SuggestSmartCampaignAdResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -493,7 +493,7 @@ func (x *SuggestSmartCampaignAdResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use SuggestSmartCampaignAdResponse.ProtoReflect.Descriptor instead. func (*SuggestSmartCampaignAdResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{4} } func (x *SuggestSmartCampaignAdResponse) GetAdInfo() *common.SmartCampaignAdInfo { @@ -504,7 +504,7 @@ func (x *SuggestSmartCampaignAdResponse) GetAdInfo() *common.SmartCampaignAdInfo } // Request message for -// [SmartCampaignSuggestService.SuggestKeywordThemes][google.ads.googleads.v16.services.SmartCampaignSuggestService.SuggestKeywordThemes]. +// [SmartCampaignSuggestService.SuggestKeywordThemes][google.ads.googleads.v17.services.SmartCampaignSuggestService.SuggestKeywordThemes]. type SuggestKeywordThemesRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -528,7 +528,7 @@ type SuggestKeywordThemesRequest struct { func (x *SuggestKeywordThemesRequest) Reset() { *x = SuggestKeywordThemesRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -541,7 +541,7 @@ func (x *SuggestKeywordThemesRequest) String() string { func (*SuggestKeywordThemesRequest) ProtoMessage() {} func (x *SuggestKeywordThemesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -554,7 +554,7 @@ func (x *SuggestKeywordThemesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SuggestKeywordThemesRequest.ProtoReflect.Descriptor instead. func (*SuggestKeywordThemesRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{5} } func (x *SuggestKeywordThemesRequest) GetCustomerId() string { @@ -572,7 +572,7 @@ func (x *SuggestKeywordThemesRequest) GetSuggestionInfo() *SmartCampaignSuggesti } // Response message for -// [SmartCampaignSuggestService.SuggestKeywordThemes][google.ads.googleads.v16.services.SmartCampaignSuggestService.SuggestKeywordThemes]. +// [SmartCampaignSuggestService.SuggestKeywordThemes][google.ads.googleads.v17.services.SmartCampaignSuggestService.SuggestKeywordThemes]. type SuggestKeywordThemesResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -585,7 +585,7 @@ type SuggestKeywordThemesResponse struct { func (x *SuggestKeywordThemesResponse) Reset() { *x = SuggestKeywordThemesResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -598,7 +598,7 @@ func (x *SuggestKeywordThemesResponse) String() string { func (*SuggestKeywordThemesResponse) ProtoMessage() {} func (x *SuggestKeywordThemesResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[6] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -611,7 +611,7 @@ func (x *SuggestKeywordThemesResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use SuggestKeywordThemesResponse.ProtoReflect.Descriptor instead. func (*SuggestKeywordThemesResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{6} } func (x *SuggestKeywordThemesResponse) GetKeywordThemes() []*SuggestKeywordThemesResponse_KeywordTheme { @@ -634,7 +634,7 @@ type SmartCampaignSuggestionInfo_LocationList struct { func (x *SmartCampaignSuggestionInfo_LocationList) Reset() { *x = SmartCampaignSuggestionInfo_LocationList{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -647,7 +647,7 @@ func (x *SmartCampaignSuggestionInfo_LocationList) String() string { func (*SmartCampaignSuggestionInfo_LocationList) ProtoMessage() {} func (x *SmartCampaignSuggestionInfo_LocationList) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[7] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -660,7 +660,7 @@ func (x *SmartCampaignSuggestionInfo_LocationList) ProtoReflect() protoreflect.M // Deprecated: Use SmartCampaignSuggestionInfo_LocationList.ProtoReflect.Descriptor instead. func (*SmartCampaignSuggestionInfo_LocationList) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{1, 0} + return file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{1, 0} } func (x *SmartCampaignSuggestionInfo_LocationList) GetLocations() []*common.LocationInfo { @@ -683,7 +683,7 @@ type SmartCampaignSuggestionInfo_BusinessContext struct { func (x *SmartCampaignSuggestionInfo_BusinessContext) Reset() { *x = SmartCampaignSuggestionInfo_BusinessContext{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -696,7 +696,7 @@ func (x *SmartCampaignSuggestionInfo_BusinessContext) String() string { func (*SmartCampaignSuggestionInfo_BusinessContext) ProtoMessage() {} func (x *SmartCampaignSuggestionInfo_BusinessContext) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[8] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -709,7 +709,7 @@ func (x *SmartCampaignSuggestionInfo_BusinessContext) ProtoReflect() protoreflec // Deprecated: Use SmartCampaignSuggestionInfo_BusinessContext.ProtoReflect.Descriptor instead. func (*SmartCampaignSuggestionInfo_BusinessContext) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{1, 1} + return file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{1, 1} } func (x *SmartCampaignSuggestionInfo_BusinessContext) GetBusinessName() string { @@ -734,7 +734,7 @@ type SuggestSmartCampaignBudgetOptionsResponse_Metrics struct { func (x *SuggestSmartCampaignBudgetOptionsResponse_Metrics) Reset() { *x = SuggestSmartCampaignBudgetOptionsResponse_Metrics{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -747,7 +747,7 @@ func (x *SuggestSmartCampaignBudgetOptionsResponse_Metrics) String() string { func (*SuggestSmartCampaignBudgetOptionsResponse_Metrics) ProtoMessage() {} func (x *SuggestSmartCampaignBudgetOptionsResponse_Metrics) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[9] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -760,7 +760,7 @@ func (x *SuggestSmartCampaignBudgetOptionsResponse_Metrics) ProtoReflect() proto // Deprecated: Use SuggestSmartCampaignBudgetOptionsResponse_Metrics.ProtoReflect.Descriptor instead. func (*SuggestSmartCampaignBudgetOptionsResponse_Metrics) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{2, 0} + return file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{2, 0} } func (x *SuggestSmartCampaignBudgetOptionsResponse_Metrics) GetMinDailyClicks() int64 { @@ -795,7 +795,7 @@ type SuggestSmartCampaignBudgetOptionsResponse_BudgetOption struct { func (x *SuggestSmartCampaignBudgetOptionsResponse_BudgetOption) Reset() { *x = SuggestSmartCampaignBudgetOptionsResponse_BudgetOption{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -808,7 +808,7 @@ func (x *SuggestSmartCampaignBudgetOptionsResponse_BudgetOption) String() string func (*SuggestSmartCampaignBudgetOptionsResponse_BudgetOption) ProtoMessage() {} func (x *SuggestSmartCampaignBudgetOptionsResponse_BudgetOption) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[10] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -821,7 +821,7 @@ func (x *SuggestSmartCampaignBudgetOptionsResponse_BudgetOption) ProtoReflect() // Deprecated: Use SuggestSmartCampaignBudgetOptionsResponse_BudgetOption.ProtoReflect.Descriptor instead. func (*SuggestSmartCampaignBudgetOptionsResponse_BudgetOption) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{2, 1} + return file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{2, 1} } func (x *SuggestSmartCampaignBudgetOptionsResponse_BudgetOption) GetDailyAmountMicros() int64 { @@ -856,7 +856,7 @@ type SuggestKeywordThemesResponse_KeywordTheme struct { func (x *SuggestKeywordThemesResponse_KeywordTheme) Reset() { *x = SuggestKeywordThemesResponse_KeywordTheme{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -869,7 +869,7 @@ func (x *SuggestKeywordThemesResponse_KeywordTheme) String() string { func (*SuggestKeywordThemesResponse_KeywordTheme) ProtoMessage() {} func (x *SuggestKeywordThemesResponse_KeywordTheme) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[11] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -882,7 +882,7 @@ func (x *SuggestKeywordThemesResponse_KeywordTheme) ProtoReflect() protoreflect. // Deprecated: Use SuggestKeywordThemesResponse_KeywordTheme.ProtoReflect.Descriptor instead. func (*SuggestKeywordThemesResponse_KeywordTheme) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{6, 0} + return file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{6, 0} } func (m *SuggestKeywordThemesResponse_KeywordTheme) GetKeywordTheme() isSuggestKeywordThemesResponse_KeywordTheme_KeywordTheme { @@ -926,24 +926,24 @@ func (*SuggestKeywordThemesResponse_KeywordTheme_KeywordThemeConstant) isSuggest func (*SuggestKeywordThemesResponse_KeywordTheme_FreeFormKeywordTheme) isSuggestKeywordThemesResponse_KeywordTheme_KeywordTheme() { } -var File_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_smart_campaign_suggest_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x33, 0x67, 0x6f, 0x6f, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 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, 0x6e, 0x2f, 0x61, 0x64, 0x5f, + 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, 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, 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, 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, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x74, 0x68, 0x65, 0x6d, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, @@ -966,7 +966,7 @@ var file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_ 0x12, 0x6e, 0x0a, 0x0f, 0x73, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x03, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x6d, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x48, 0x00, 0x52, 0x0e, 0x73, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, @@ -980,19 +980,19 @@ var file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_ 0x01, 0x52, 0x0c, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x57, 0x0a, 0x0c, 0x61, 0x64, 0x5f, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 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, + 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, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x0b, 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x73, 0x12, 0x5d, 0x0a, 0x0e, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x74, 0x68, 0x65, 0x6d, 0x65, 0x73, 0x18, 0x07, 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, 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, 0x54, 0x68, 0x65, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x0d, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x54, 0x68, 0x65, 0x6d, 0x65, 0x73, 0x12, 0x80, 0x01, 0x0a, 0x10, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x18, 0x08, 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, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x2e, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x43, 0x6f, 0x6e, 0x74, 0x65, @@ -1004,7 +1004,7 @@ var file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_ 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x77, 0x0a, 0x0d, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, @@ -1012,13 +1012,13 @@ var file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_ 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x53, 0x0a, 0x09, 0x70, 0x72, 0x6f, 0x78, 0x69, 0x6d, 0x69, 0x74, 0x79, 0x18, 0x05, 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, 0x50, 0x72, 0x6f, 0x78, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x78, 0x69, 0x6d, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x48, 0x01, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x78, 0x69, 0x6d, 0x69, 0x74, 0x79, 0x1a, 0x60, 0x0a, 0x0c, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x50, 0x0a, 0x09, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x09, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x1a, 0x3b, 0x0a, 0x0f, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, @@ -1032,7 +1032,7 @@ var file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_ 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x75, 0x0a, 0x03, 0x6c, 0x6f, 0x77, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, 0x67, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x4f, 0x70, 0x74, 0x69, @@ -1040,7 +1040,7 @@ var file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_ 0x01, 0x12, 0x85, 0x01, 0x0a, 0x0b, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, 0x67, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x4f, 0x70, 0x74, 0x69, @@ -1048,7 +1048,7 @@ var file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_ 0x6d, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x88, 0x01, 0x01, 0x12, 0x77, 0x0a, 0x04, 0x68, 0x69, 0x67, 0x68, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, 0x67, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x4f, 0x70, 0x74, 0x69, @@ -1065,7 +1065,7 @@ var file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_ 0x11, 0x64, 0x61, 0x69, 0x6c, 0x79, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x12, 0x6e, 0x0a, 0x07, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, @@ -1079,7 +1079,7 @@ var file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_ 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x6c, 0x0a, 0x0f, 0x73, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0e, 0x73, 0x75, 0x67, 0x67, 0x65, @@ -1088,7 +1088,7 @@ var file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_ 0x6e, 0x41, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x52, 0x0a, 0x07, 0x61, 0x64, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01, 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, 0x53, + 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, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x06, 0x61, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0xb1, 0x01, 0x0a, 0x1b, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x77, 0x6f, @@ -1098,7 +1098,7 @@ var file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_ 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x6c, 0x0a, 0x0f, 0x73, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0e, 0x73, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x49, @@ -1107,7 +1107,7 @@ var file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_ 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x73, 0x0a, 0x0e, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x74, 0x68, 0x65, 0x6d, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x54, 0x68, 0x65, 0x6d, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x54, 0x68, 0x65, 0x6d, 0x65, 0x52, 0x0d, 0x6b, 0x65, 0x79, 0x77, @@ -1116,7 +1116,7 @@ var file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_ 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x74, 0x68, 0x65, 0x6d, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 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, 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, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x54, 0x68, 0x65, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x14, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x54, 0x68, 0x65, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x12, 0x37, 0x0a, 0x17, @@ -1130,45 +1130,45 @@ var file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_ 0x73, 0x74, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x4b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x45, 0x3a, - 0x01, 0x2a, 0x22, 0x40, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x01, 0x2a, 0x22, 0x40, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x3a, 0x73, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0xdf, 0x01, 0x0a, 0x16, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x64, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x40, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3a, 0x3a, 0x01, 0x2a, 0x22, - 0x35, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, + 0x35, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x3a, 0x73, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x64, 0x12, 0xd7, 0x01, 0x0a, 0x14, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x54, 0x68, 0x65, 0x6d, 0x65, 0x73, 0x12, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x54, 0x68, 0x65, 0x6d, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x54, 0x68, 0x65, 0x6d, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x3e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x38, 0x3a, 0x01, 0x2a, 0x22, 0x33, 0x2f, 0x76, 0x31, - 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, + 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x3a, 0x73, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x54, 0x68, 0x65, 0x6d, 0x65, 0x73, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x67, @@ -1177,80 +1177,80 @@ var file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_ 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x8c, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x20, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, - 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, + 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_rawDescData = file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_rawDesc + file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_rawDescData = file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_rawDescData -} - -var file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes = make([]protoimpl.MessageInfo, 12) -var file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_goTypes = []interface{}{ - (*SuggestSmartCampaignBudgetOptionsRequest)(nil), // 0: google.ads.googleads.v16.services.SuggestSmartCampaignBudgetOptionsRequest - (*SmartCampaignSuggestionInfo)(nil), // 1: google.ads.googleads.v16.services.SmartCampaignSuggestionInfo - (*SuggestSmartCampaignBudgetOptionsResponse)(nil), // 2: google.ads.googleads.v16.services.SuggestSmartCampaignBudgetOptionsResponse - (*SuggestSmartCampaignAdRequest)(nil), // 3: google.ads.googleads.v16.services.SuggestSmartCampaignAdRequest - (*SuggestSmartCampaignAdResponse)(nil), // 4: google.ads.googleads.v16.services.SuggestSmartCampaignAdResponse - (*SuggestKeywordThemesRequest)(nil), // 5: google.ads.googleads.v16.services.SuggestKeywordThemesRequest - (*SuggestKeywordThemesResponse)(nil), // 6: google.ads.googleads.v16.services.SuggestKeywordThemesResponse - (*SmartCampaignSuggestionInfo_LocationList)(nil), // 7: google.ads.googleads.v16.services.SmartCampaignSuggestionInfo.LocationList - (*SmartCampaignSuggestionInfo_BusinessContext)(nil), // 8: google.ads.googleads.v16.services.SmartCampaignSuggestionInfo.BusinessContext - (*SuggestSmartCampaignBudgetOptionsResponse_Metrics)(nil), // 9: google.ads.googleads.v16.services.SuggestSmartCampaignBudgetOptionsResponse.Metrics - (*SuggestSmartCampaignBudgetOptionsResponse_BudgetOption)(nil), // 10: google.ads.googleads.v16.services.SuggestSmartCampaignBudgetOptionsResponse.BudgetOption - (*SuggestKeywordThemesResponse_KeywordTheme)(nil), // 11: google.ads.googleads.v16.services.SuggestKeywordThemesResponse.KeywordTheme - (*common.AdScheduleInfo)(nil), // 12: google.ads.googleads.v16.common.AdScheduleInfo - (*common.KeywordThemeInfo)(nil), // 13: google.ads.googleads.v16.common.KeywordThemeInfo - (*common.ProximityInfo)(nil), // 14: google.ads.googleads.v16.common.ProximityInfo - (*common.SmartCampaignAdInfo)(nil), // 15: google.ads.googleads.v16.common.SmartCampaignAdInfo - (*common.LocationInfo)(nil), // 16: google.ads.googleads.v16.common.LocationInfo - (*resources.KeywordThemeConstant)(nil), // 17: google.ads.googleads.v16.resources.KeywordThemeConstant -} -var file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.SuggestSmartCampaignBudgetOptionsRequest.suggestion_info:type_name -> google.ads.googleads.v16.services.SmartCampaignSuggestionInfo - 12, // 1: google.ads.googleads.v16.services.SmartCampaignSuggestionInfo.ad_schedules:type_name -> google.ads.googleads.v16.common.AdScheduleInfo - 13, // 2: google.ads.googleads.v16.services.SmartCampaignSuggestionInfo.keyword_themes:type_name -> google.ads.googleads.v16.common.KeywordThemeInfo - 8, // 3: google.ads.googleads.v16.services.SmartCampaignSuggestionInfo.business_context:type_name -> google.ads.googleads.v16.services.SmartCampaignSuggestionInfo.BusinessContext - 7, // 4: google.ads.googleads.v16.services.SmartCampaignSuggestionInfo.location_list:type_name -> google.ads.googleads.v16.services.SmartCampaignSuggestionInfo.LocationList - 14, // 5: google.ads.googleads.v16.services.SmartCampaignSuggestionInfo.proximity:type_name -> google.ads.googleads.v16.common.ProximityInfo - 10, // 6: google.ads.googleads.v16.services.SuggestSmartCampaignBudgetOptionsResponse.low:type_name -> google.ads.googleads.v16.services.SuggestSmartCampaignBudgetOptionsResponse.BudgetOption - 10, // 7: google.ads.googleads.v16.services.SuggestSmartCampaignBudgetOptionsResponse.recommended:type_name -> google.ads.googleads.v16.services.SuggestSmartCampaignBudgetOptionsResponse.BudgetOption - 10, // 8: google.ads.googleads.v16.services.SuggestSmartCampaignBudgetOptionsResponse.high:type_name -> google.ads.googleads.v16.services.SuggestSmartCampaignBudgetOptionsResponse.BudgetOption - 1, // 9: google.ads.googleads.v16.services.SuggestSmartCampaignAdRequest.suggestion_info:type_name -> google.ads.googleads.v16.services.SmartCampaignSuggestionInfo - 15, // 10: google.ads.googleads.v16.services.SuggestSmartCampaignAdResponse.ad_info:type_name -> google.ads.googleads.v16.common.SmartCampaignAdInfo - 1, // 11: google.ads.googleads.v16.services.SuggestKeywordThemesRequest.suggestion_info:type_name -> google.ads.googleads.v16.services.SmartCampaignSuggestionInfo - 11, // 12: google.ads.googleads.v16.services.SuggestKeywordThemesResponse.keyword_themes:type_name -> google.ads.googleads.v16.services.SuggestKeywordThemesResponse.KeywordTheme - 16, // 13: google.ads.googleads.v16.services.SmartCampaignSuggestionInfo.LocationList.locations:type_name -> google.ads.googleads.v16.common.LocationInfo - 9, // 14: google.ads.googleads.v16.services.SuggestSmartCampaignBudgetOptionsResponse.BudgetOption.metrics:type_name -> google.ads.googleads.v16.services.SuggestSmartCampaignBudgetOptionsResponse.Metrics - 17, // 15: google.ads.googleads.v16.services.SuggestKeywordThemesResponse.KeywordTheme.keyword_theme_constant:type_name -> google.ads.googleads.v16.resources.KeywordThemeConstant - 0, // 16: google.ads.googleads.v16.services.SmartCampaignSuggestService.SuggestSmartCampaignBudgetOptions:input_type -> google.ads.googleads.v16.services.SuggestSmartCampaignBudgetOptionsRequest - 3, // 17: google.ads.googleads.v16.services.SmartCampaignSuggestService.SuggestSmartCampaignAd:input_type -> google.ads.googleads.v16.services.SuggestSmartCampaignAdRequest - 5, // 18: google.ads.googleads.v16.services.SmartCampaignSuggestService.SuggestKeywordThemes:input_type -> google.ads.googleads.v16.services.SuggestKeywordThemesRequest - 2, // 19: google.ads.googleads.v16.services.SmartCampaignSuggestService.SuggestSmartCampaignBudgetOptions:output_type -> google.ads.googleads.v16.services.SuggestSmartCampaignBudgetOptionsResponse - 4, // 20: google.ads.googleads.v16.services.SmartCampaignSuggestService.SuggestSmartCampaignAd:output_type -> google.ads.googleads.v16.services.SuggestSmartCampaignAdResponse - 6, // 21: google.ads.googleads.v16.services.SmartCampaignSuggestService.SuggestKeywordThemes:output_type -> google.ads.googleads.v16.services.SuggestKeywordThemesResponse + return file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_rawDescData +} + +var file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes = make([]protoimpl.MessageInfo, 12) +var file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_goTypes = []interface{}{ + (*SuggestSmartCampaignBudgetOptionsRequest)(nil), // 0: google.ads.googleads.v17.services.SuggestSmartCampaignBudgetOptionsRequest + (*SmartCampaignSuggestionInfo)(nil), // 1: google.ads.googleads.v17.services.SmartCampaignSuggestionInfo + (*SuggestSmartCampaignBudgetOptionsResponse)(nil), // 2: google.ads.googleads.v17.services.SuggestSmartCampaignBudgetOptionsResponse + (*SuggestSmartCampaignAdRequest)(nil), // 3: google.ads.googleads.v17.services.SuggestSmartCampaignAdRequest + (*SuggestSmartCampaignAdResponse)(nil), // 4: google.ads.googleads.v17.services.SuggestSmartCampaignAdResponse + (*SuggestKeywordThemesRequest)(nil), // 5: google.ads.googleads.v17.services.SuggestKeywordThemesRequest + (*SuggestKeywordThemesResponse)(nil), // 6: google.ads.googleads.v17.services.SuggestKeywordThemesResponse + (*SmartCampaignSuggestionInfo_LocationList)(nil), // 7: google.ads.googleads.v17.services.SmartCampaignSuggestionInfo.LocationList + (*SmartCampaignSuggestionInfo_BusinessContext)(nil), // 8: google.ads.googleads.v17.services.SmartCampaignSuggestionInfo.BusinessContext + (*SuggestSmartCampaignBudgetOptionsResponse_Metrics)(nil), // 9: google.ads.googleads.v17.services.SuggestSmartCampaignBudgetOptionsResponse.Metrics + (*SuggestSmartCampaignBudgetOptionsResponse_BudgetOption)(nil), // 10: google.ads.googleads.v17.services.SuggestSmartCampaignBudgetOptionsResponse.BudgetOption + (*SuggestKeywordThemesResponse_KeywordTheme)(nil), // 11: google.ads.googleads.v17.services.SuggestKeywordThemesResponse.KeywordTheme + (*common.AdScheduleInfo)(nil), // 12: google.ads.googleads.v17.common.AdScheduleInfo + (*common.KeywordThemeInfo)(nil), // 13: google.ads.googleads.v17.common.KeywordThemeInfo + (*common.ProximityInfo)(nil), // 14: google.ads.googleads.v17.common.ProximityInfo + (*common.SmartCampaignAdInfo)(nil), // 15: google.ads.googleads.v17.common.SmartCampaignAdInfo + (*common.LocationInfo)(nil), // 16: google.ads.googleads.v17.common.LocationInfo + (*resources.KeywordThemeConstant)(nil), // 17: google.ads.googleads.v17.resources.KeywordThemeConstant +} +var file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.SuggestSmartCampaignBudgetOptionsRequest.suggestion_info:type_name -> google.ads.googleads.v17.services.SmartCampaignSuggestionInfo + 12, // 1: google.ads.googleads.v17.services.SmartCampaignSuggestionInfo.ad_schedules:type_name -> google.ads.googleads.v17.common.AdScheduleInfo + 13, // 2: google.ads.googleads.v17.services.SmartCampaignSuggestionInfo.keyword_themes:type_name -> google.ads.googleads.v17.common.KeywordThemeInfo + 8, // 3: google.ads.googleads.v17.services.SmartCampaignSuggestionInfo.business_context:type_name -> google.ads.googleads.v17.services.SmartCampaignSuggestionInfo.BusinessContext + 7, // 4: google.ads.googleads.v17.services.SmartCampaignSuggestionInfo.location_list:type_name -> google.ads.googleads.v17.services.SmartCampaignSuggestionInfo.LocationList + 14, // 5: google.ads.googleads.v17.services.SmartCampaignSuggestionInfo.proximity:type_name -> google.ads.googleads.v17.common.ProximityInfo + 10, // 6: google.ads.googleads.v17.services.SuggestSmartCampaignBudgetOptionsResponse.low:type_name -> google.ads.googleads.v17.services.SuggestSmartCampaignBudgetOptionsResponse.BudgetOption + 10, // 7: google.ads.googleads.v17.services.SuggestSmartCampaignBudgetOptionsResponse.recommended:type_name -> google.ads.googleads.v17.services.SuggestSmartCampaignBudgetOptionsResponse.BudgetOption + 10, // 8: google.ads.googleads.v17.services.SuggestSmartCampaignBudgetOptionsResponse.high:type_name -> google.ads.googleads.v17.services.SuggestSmartCampaignBudgetOptionsResponse.BudgetOption + 1, // 9: google.ads.googleads.v17.services.SuggestSmartCampaignAdRequest.suggestion_info:type_name -> google.ads.googleads.v17.services.SmartCampaignSuggestionInfo + 15, // 10: google.ads.googleads.v17.services.SuggestSmartCampaignAdResponse.ad_info:type_name -> google.ads.googleads.v17.common.SmartCampaignAdInfo + 1, // 11: google.ads.googleads.v17.services.SuggestKeywordThemesRequest.suggestion_info:type_name -> google.ads.googleads.v17.services.SmartCampaignSuggestionInfo + 11, // 12: google.ads.googleads.v17.services.SuggestKeywordThemesResponse.keyword_themes:type_name -> google.ads.googleads.v17.services.SuggestKeywordThemesResponse.KeywordTheme + 16, // 13: google.ads.googleads.v17.services.SmartCampaignSuggestionInfo.LocationList.locations:type_name -> google.ads.googleads.v17.common.LocationInfo + 9, // 14: google.ads.googleads.v17.services.SuggestSmartCampaignBudgetOptionsResponse.BudgetOption.metrics:type_name -> google.ads.googleads.v17.services.SuggestSmartCampaignBudgetOptionsResponse.Metrics + 17, // 15: google.ads.googleads.v17.services.SuggestKeywordThemesResponse.KeywordTheme.keyword_theme_constant:type_name -> google.ads.googleads.v17.resources.KeywordThemeConstant + 0, // 16: google.ads.googleads.v17.services.SmartCampaignSuggestService.SuggestSmartCampaignBudgetOptions:input_type -> google.ads.googleads.v17.services.SuggestSmartCampaignBudgetOptionsRequest + 3, // 17: google.ads.googleads.v17.services.SmartCampaignSuggestService.SuggestSmartCampaignAd:input_type -> google.ads.googleads.v17.services.SuggestSmartCampaignAdRequest + 5, // 18: google.ads.googleads.v17.services.SmartCampaignSuggestService.SuggestKeywordThemes:input_type -> google.ads.googleads.v17.services.SuggestKeywordThemesRequest + 2, // 19: google.ads.googleads.v17.services.SmartCampaignSuggestService.SuggestSmartCampaignBudgetOptions:output_type -> google.ads.googleads.v17.services.SuggestSmartCampaignBudgetOptionsResponse + 4, // 20: google.ads.googleads.v17.services.SmartCampaignSuggestService.SuggestSmartCampaignAd:output_type -> google.ads.googleads.v17.services.SuggestSmartCampaignAdResponse + 6, // 21: google.ads.googleads.v17.services.SmartCampaignSuggestService.SuggestKeywordThemes:output_type -> google.ads.googleads.v17.services.SuggestKeywordThemesResponse 19, // [19:22] is the sub-list for method output_type 16, // [16:19] is the sub-list for method input_type 16, // [16:16] is the sub-list for extension type_name @@ -1258,13 +1258,13 @@ var file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_ 0, // [0:16] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_init() } -func file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_init() { - if File_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_init() } +func file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_init() { + if File_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SuggestSmartCampaignBudgetOptionsRequest); i { case 0: return &v.state @@ -1276,7 +1276,7 @@ func file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto return nil } } - file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SmartCampaignSuggestionInfo); i { case 0: return &v.state @@ -1288,7 +1288,7 @@ func file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto return nil } } - file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SuggestSmartCampaignBudgetOptionsResponse); i { case 0: return &v.state @@ -1300,7 +1300,7 @@ func file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto return nil } } - file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SuggestSmartCampaignAdRequest); i { case 0: return &v.state @@ -1312,7 +1312,7 @@ func file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto return nil } } - file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SuggestSmartCampaignAdResponse); i { case 0: return &v.state @@ -1324,7 +1324,7 @@ func file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto return nil } } - file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SuggestKeywordThemesRequest); i { case 0: return &v.state @@ -1336,7 +1336,7 @@ func file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto return nil } } - file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SuggestKeywordThemesResponse); i { case 0: return &v.state @@ -1348,7 +1348,7 @@ func file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto return nil } } - file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SmartCampaignSuggestionInfo_LocationList); i { case 0: return &v.state @@ -1360,7 +1360,7 @@ func file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto return nil } } - file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SmartCampaignSuggestionInfo_BusinessContext); i { case 0: return &v.state @@ -1372,7 +1372,7 @@ func file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto return nil } } - file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SuggestSmartCampaignBudgetOptionsResponse_Metrics); i { case 0: return &v.state @@ -1384,7 +1384,7 @@ func file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto return nil } } - file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SuggestSmartCampaignBudgetOptionsResponse_BudgetOption); i { case 0: return &v.state @@ -1396,7 +1396,7 @@ func file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto return nil } } - file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SuggestKeywordThemesResponse_KeywordTheme); i { case 0: return &v.state @@ -1409,18 +1409,18 @@ func file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto } } } - file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[0].OneofWrappers = []interface{}{ (*SuggestSmartCampaignBudgetOptionsRequest_Campaign)(nil), (*SuggestSmartCampaignBudgetOptionsRequest_SuggestionInfo)(nil), } - file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*SmartCampaignSuggestionInfo_BusinessContext_)(nil), (*SmartCampaignSuggestionInfo_BusinessProfileLocation)(nil), (*SmartCampaignSuggestionInfo_LocationList_)(nil), (*SmartCampaignSuggestionInfo_Proximity)(nil), } - file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[2].OneofWrappers = []interface{}{} - file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes[11].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[2].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes[11].OneofWrappers = []interface{}{ (*SuggestKeywordThemesResponse_KeywordTheme_KeywordThemeConstant)(nil), (*SuggestKeywordThemesResponse_KeywordTheme_FreeFormKeywordTheme)(nil), } @@ -1428,18 +1428,18 @@ func file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_rawDesc, NumEnums: 0, NumMessages: 12, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto = out.File - file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_smart_campaign_suggest_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto = out.File + file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_smart_campaign_suggest_service_proto_depIdxs = nil } diff --git a/services/smart_campaign_suggest_service_grpc.pb.go b/services/smart_campaign_suggest_service_grpc.pb.go index 6bf50324..a003aab0 100644 --- a/services/smart_campaign_suggest_service_grpc.pb.go +++ b/services/smart_campaign_suggest_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/smart_campaign_suggest_service.proto +// source: google/ads/googleads/v17/services/smart_campaign_suggest_service.proto package services @@ -29,18 +29,20 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - SmartCampaignSuggestService_SuggestSmartCampaignBudgetOptions_FullMethodName = "/google.ads.googleads.v16.services.SmartCampaignSuggestService/SuggestSmartCampaignBudgetOptions" - SmartCampaignSuggestService_SuggestSmartCampaignAd_FullMethodName = "/google.ads.googleads.v16.services.SmartCampaignSuggestService/SuggestSmartCampaignAd" - SmartCampaignSuggestService_SuggestKeywordThemes_FullMethodName = "/google.ads.googleads.v16.services.SmartCampaignSuggestService/SuggestKeywordThemes" + SmartCampaignSuggestService_SuggestSmartCampaignBudgetOptions_FullMethodName = "/google.ads.googleads.v17.services.SmartCampaignSuggestService/SuggestSmartCampaignBudgetOptions" + SmartCampaignSuggestService_SuggestSmartCampaignAd_FullMethodName = "/google.ads.googleads.v17.services.SmartCampaignSuggestService/SuggestSmartCampaignAd" + SmartCampaignSuggestService_SuggestKeywordThemes_FullMethodName = "/google.ads.googleads.v17.services.SmartCampaignSuggestService/SuggestKeywordThemes" ) // SmartCampaignSuggestServiceClient is the client API for SmartCampaignSuggestService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to get suggestions for Smart Campaigns. type SmartCampaignSuggestServiceClient interface { // Returns BudgetOption suggestions. SuggestSmartCampaignBudgetOptions(ctx context.Context, in *SuggestSmartCampaignBudgetOptionsRequest, opts ...grpc.CallOption) (*SuggestSmartCampaignBudgetOptionsResponse, error) @@ -60,8 +62,9 @@ func NewSmartCampaignSuggestServiceClient(cc grpc.ClientConnInterface) SmartCamp } func (c *smartCampaignSuggestServiceClient) SuggestSmartCampaignBudgetOptions(ctx context.Context, in *SuggestSmartCampaignBudgetOptionsRequest, opts ...grpc.CallOption) (*SuggestSmartCampaignBudgetOptionsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(SuggestSmartCampaignBudgetOptionsResponse) - err := c.cc.Invoke(ctx, SmartCampaignSuggestService_SuggestSmartCampaignBudgetOptions_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, SmartCampaignSuggestService_SuggestSmartCampaignBudgetOptions_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -69,8 +72,9 @@ func (c *smartCampaignSuggestServiceClient) SuggestSmartCampaignBudgetOptions(ct } func (c *smartCampaignSuggestServiceClient) SuggestSmartCampaignAd(ctx context.Context, in *SuggestSmartCampaignAdRequest, opts ...grpc.CallOption) (*SuggestSmartCampaignAdResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(SuggestSmartCampaignAdResponse) - err := c.cc.Invoke(ctx, SmartCampaignSuggestService_SuggestSmartCampaignAd_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, SmartCampaignSuggestService_SuggestSmartCampaignAd_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -78,8 +82,9 @@ func (c *smartCampaignSuggestServiceClient) SuggestSmartCampaignAd(ctx context.C } func (c *smartCampaignSuggestServiceClient) SuggestKeywordThemes(ctx context.Context, in *SuggestKeywordThemesRequest, opts ...grpc.CallOption) (*SuggestKeywordThemesResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(SuggestKeywordThemesResponse) - err := c.cc.Invoke(ctx, SmartCampaignSuggestService_SuggestKeywordThemes_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, SmartCampaignSuggestService_SuggestKeywordThemes_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -89,6 +94,8 @@ func (c *smartCampaignSuggestServiceClient) SuggestKeywordThemes(ctx context.Con // SmartCampaignSuggestServiceServer is the server API for SmartCampaignSuggestService service. // All implementations must embed UnimplementedSmartCampaignSuggestServiceServer // for forward compatibility +// +// Service to get suggestions for Smart Campaigns. type SmartCampaignSuggestServiceServer interface { // Returns BudgetOption suggestions. SuggestSmartCampaignBudgetOptions(context.Context, *SuggestSmartCampaignBudgetOptionsRequest) (*SuggestSmartCampaignBudgetOptionsResponse, error) @@ -185,7 +192,7 @@ func _SmartCampaignSuggestService_SuggestKeywordThemes_Handler(srv interface{}, // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var SmartCampaignSuggestService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.SmartCampaignSuggestService", + ServiceName: "google.ads.googleads.v17.services.SmartCampaignSuggestService", HandlerType: (*SmartCampaignSuggestServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -202,5 +209,5 @@ var SmartCampaignSuggestService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/smart_campaign_suggest_service.proto", + Metadata: "google/ads/googleads/v17/services/smart_campaign_suggest_service.proto", } diff --git a/services/third_party_app_analytics_link_service.pb.go b/services/third_party_app_analytics_link_service.pb.go index 22804453..9b1ce5bc 100644 --- a/services/third_party_app_analytics_link_service.pb.go +++ b/services/third_party_app_analytics_link_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/third_party_app_analytics_link_service.proto +// source: google/ads/googleads/v17/services/third_party_app_analytics_link_service.proto package services @@ -36,7 +36,7 @@ const ( ) // Request message for -// [ThirdPartyAppAnalyticsLinkService.RegenerateShareableLinkId][google.ads.googleads.v16.services.ThirdPartyAppAnalyticsLinkService.RegenerateShareableLinkId]. +// [ThirdPartyAppAnalyticsLinkService.RegenerateShareableLinkId][google.ads.googleads.v17.services.ThirdPartyAppAnalyticsLinkService.RegenerateShareableLinkId]. type RegenerateShareableLinkIdRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -49,7 +49,7 @@ type RegenerateShareableLinkIdRequest struct { func (x *RegenerateShareableLinkIdRequest) Reset() { *x = RegenerateShareableLinkIdRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -62,7 +62,7 @@ func (x *RegenerateShareableLinkIdRequest) String() string { func (*RegenerateShareableLinkIdRequest) ProtoMessage() {} func (x *RegenerateShareableLinkIdRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_third_party_app_analytics_link_service_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 *RegenerateShareableLinkIdRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RegenerateShareableLinkIdRequest.ProtoReflect.Descriptor instead. func (*RegenerateShareableLinkIdRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto_rawDescGZIP(), []int{0} } func (x *RegenerateShareableLinkIdRequest) GetResourceName() string { @@ -86,7 +86,7 @@ func (x *RegenerateShareableLinkIdRequest) GetResourceName() string { } // Response message for -// [ThirdPartyAppAnalyticsLinkService.RegenerateShareableLinkId][google.ads.googleads.v16.services.ThirdPartyAppAnalyticsLinkService.RegenerateShareableLinkId]. +// [ThirdPartyAppAnalyticsLinkService.RegenerateShareableLinkId][google.ads.googleads.v17.services.ThirdPartyAppAnalyticsLinkService.RegenerateShareableLinkId]. type RegenerateShareableLinkIdResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -96,7 +96,7 @@ type RegenerateShareableLinkIdResponse struct { func (x *RegenerateShareableLinkIdResponse) Reset() { *x = RegenerateShareableLinkIdResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *RegenerateShareableLinkIdResponse) String() string { func (*RegenerateShareableLinkIdResponse) ProtoMessage() {} func (x *RegenerateShareableLinkIdResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,19 +122,19 @@ func (x *RegenerateShareableLinkIdResponse) ProtoReflect() protoreflect.Message // Deprecated: Use RegenerateShareableLinkIdResponse.ProtoReflect.Descriptor instead. func (*RegenerateShareableLinkIdResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto_rawDescGZIP(), []int{1} } -var File_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_third_party_app_analytics_link_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6c, @@ -156,15 +156,15 @@ var file_google_ads_googleads_v16_services_third_party_app_analytics_link_servic 0x76, 0x69, 0x63, 0x65, 0x12, 0x8b, 0x02, 0x0a, 0x19, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x64, 0x12, 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, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x67, 0x65, + 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x63, 0x82, - 0xd3, 0xe4, 0x93, 0x02, 0x5d, 0x3a, 0x01, 0x2a, 0x22, 0x58, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x7b, + 0xd3, 0xe4, 0x93, 0x02, 0x5d, 0x3a, 0x01, 0x2a, 0x22, 0x58, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x2a, 0x2f, 0x74, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x41, 0x70, 0x70, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x74, 0x69, 0x63, 0x73, @@ -176,45 +176,45 @@ var file_google_ads_googleads_v16_services_third_party_app_analytics_link_servic 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x92, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x26, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, + 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto_rawDescData = file_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto_rawDesc + file_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto_rawDescData = file_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto_rawDescData + return file_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto_goTypes = []interface{}{ - (*RegenerateShareableLinkIdRequest)(nil), // 0: google.ads.googleads.v16.services.RegenerateShareableLinkIdRequest - (*RegenerateShareableLinkIdResponse)(nil), // 1: google.ads.googleads.v16.services.RegenerateShareableLinkIdResponse +var file_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto_goTypes = []interface{}{ + (*RegenerateShareableLinkIdRequest)(nil), // 0: google.ads.googleads.v17.services.RegenerateShareableLinkIdRequest + (*RegenerateShareableLinkIdResponse)(nil), // 1: google.ads.googleads.v17.services.RegenerateShareableLinkIdResponse } -var file_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto_depIdxs = []int32{ - 0, // 0: google.ads.googleads.v16.services.ThirdPartyAppAnalyticsLinkService.RegenerateShareableLinkId:input_type -> google.ads.googleads.v16.services.RegenerateShareableLinkIdRequest - 1, // 1: google.ads.googleads.v16.services.ThirdPartyAppAnalyticsLinkService.RegenerateShareableLinkId:output_type -> google.ads.googleads.v16.services.RegenerateShareableLinkIdResponse +var file_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto_depIdxs = []int32{ + 0, // 0: google.ads.googleads.v17.services.ThirdPartyAppAnalyticsLinkService.RegenerateShareableLinkId:input_type -> google.ads.googleads.v17.services.RegenerateShareableLinkIdRequest + 1, // 1: google.ads.googleads.v17.services.ThirdPartyAppAnalyticsLinkService.RegenerateShareableLinkId:output_type -> google.ads.googleads.v17.services.RegenerateShareableLinkIdResponse 1, // [1:2] is the sub-list for method output_type 0, // [0:1] is the sub-list for method input_type 0, // [0:0] is the sub-list for extension type_name @@ -223,14 +223,14 @@ var file_google_ads_googleads_v16_services_third_party_app_analytics_link_servic } func init() { - file_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto_init() + file_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto_init() } -func file_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto_init() { - if File_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto != nil { +func file_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto_init() { + if File_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RegenerateShareableLinkIdRequest); i { case 0: return &v.state @@ -242,7 +242,7 @@ func file_google_ads_googleads_v16_services_third_party_app_analytics_link_servi return nil } } - file_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RegenerateShareableLinkIdResponse); i { case 0: return &v.state @@ -259,18 +259,18 @@ func file_google_ads_googleads_v16_services_third_party_app_analytics_link_servi out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto_rawDesc, NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto = out.File - file_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_third_party_app_analytics_link_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto = out.File + file_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_third_party_app_analytics_link_service_proto_depIdxs = nil } diff --git a/services/third_party_app_analytics_link_service_grpc.pb.go b/services/third_party_app_analytics_link_service_grpc.pb.go index b7e95231..d16a2e67 100644 --- a/services/third_party_app_analytics_link_service_grpc.pb.go +++ b/services/third_party_app_analytics_link_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/third_party_app_analytics_link_service.proto +// source: google/ads/googleads/v17/services/third_party_app_analytics_link_service.proto package services @@ -29,16 +29,19 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - ThirdPartyAppAnalyticsLinkService_RegenerateShareableLinkId_FullMethodName = "/google.ads.googleads.v16.services.ThirdPartyAppAnalyticsLinkService/RegenerateShareableLinkId" + ThirdPartyAppAnalyticsLinkService_RegenerateShareableLinkId_FullMethodName = "/google.ads.googleads.v17.services.ThirdPartyAppAnalyticsLinkService/RegenerateShareableLinkId" ) // ThirdPartyAppAnalyticsLinkServiceClient is the client API for ThirdPartyAppAnalyticsLinkService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// This service allows management of links between Google Ads and third party +// app analytics. type ThirdPartyAppAnalyticsLinkServiceClient interface { // Regenerate ThirdPartyAppAnalyticsLink.shareable_link_id that should be // provided to the third party when setting up app analytics. @@ -63,8 +66,9 @@ func NewThirdPartyAppAnalyticsLinkServiceClient(cc grpc.ClientConnInterface) Thi } func (c *thirdPartyAppAnalyticsLinkServiceClient) RegenerateShareableLinkId(ctx context.Context, in *RegenerateShareableLinkIdRequest, opts ...grpc.CallOption) (*RegenerateShareableLinkIdResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(RegenerateShareableLinkIdResponse) - err := c.cc.Invoke(ctx, ThirdPartyAppAnalyticsLinkService_RegenerateShareableLinkId_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, ThirdPartyAppAnalyticsLinkService_RegenerateShareableLinkId_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -74,6 +78,9 @@ func (c *thirdPartyAppAnalyticsLinkServiceClient) RegenerateShareableLinkId(ctx // ThirdPartyAppAnalyticsLinkServiceServer is the server API for ThirdPartyAppAnalyticsLinkService service. // All implementations must embed UnimplementedThirdPartyAppAnalyticsLinkServiceServer // for forward compatibility +// +// This service allows management of links between Google Ads and third party +// app analytics. type ThirdPartyAppAnalyticsLinkServiceServer interface { // Regenerate ThirdPartyAppAnalyticsLink.shareable_link_id that should be // provided to the third party when setting up app analytics. @@ -133,7 +140,7 @@ func _ThirdPartyAppAnalyticsLinkService_RegenerateShareableLinkId_Handler(srv in // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var ThirdPartyAppAnalyticsLinkService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.ThirdPartyAppAnalyticsLinkService", + ServiceName: "google.ads.googleads.v17.services.ThirdPartyAppAnalyticsLinkService", HandlerType: (*ThirdPartyAppAnalyticsLinkServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -142,5 +149,5 @@ var ThirdPartyAppAnalyticsLinkService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/third_party_app_analytics_link_service.proto", + Metadata: "google/ads/googleads/v17/services/third_party_app_analytics_link_service.proto", } diff --git a/services/travel_asset_suggestion_service.pb.go b/services/travel_asset_suggestion_service.pb.go index 46c7f13c..7fcf06fa 100644 --- a/services/travel_asset_suggestion_service.pb.go +++ b/services/travel_asset_suggestion_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/travel_asset_suggestion_service.proto +// source: google/ads/googleads/v17/services/travel_asset_suggestion_service.proto package services @@ -37,7 +37,7 @@ const ( ) // Request message for -// [TravelAssetSuggestionService.SuggestTravelAssets][google.ads.googleads.v16.services.TravelAssetSuggestionService.SuggestTravelAssets]. +// [TravelAssetSuggestionService.SuggestTravelAssets][google.ads.googleads.v17.services.TravelAssetSuggestionService.SuggestTravelAssets]. type SuggestTravelAssetsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -58,7 +58,7 @@ type SuggestTravelAssetsRequest struct { func (x *SuggestTravelAssetsRequest) Reset() { *x = SuggestTravelAssetsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -71,7 +71,7 @@ func (x *SuggestTravelAssetsRequest) String() string { func (*SuggestTravelAssetsRequest) ProtoMessage() {} func (x *SuggestTravelAssetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84,7 +84,7 @@ func (x *SuggestTravelAssetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SuggestTravelAssetsRequest.ProtoReflect.Descriptor instead. func (*SuggestTravelAssetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_rawDescGZIP(), []int{0} } func (x *SuggestTravelAssetsRequest) GetCustomerId() string { @@ -109,7 +109,7 @@ func (x *SuggestTravelAssetsRequest) GetPlaceIds() []string { } // Response message for -// [TravelAssetSuggestionService.SuggestTravelAssets][google.ads.googleads.v16.services.TravelAssetSuggestionService.SuggestTravelAssets]. +// [TravelAssetSuggestionService.SuggestTravelAssets][google.ads.googleads.v17.services.TravelAssetSuggestionService.SuggestTravelAssets]. type SuggestTravelAssetsResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -122,7 +122,7 @@ type SuggestTravelAssetsResponse struct { func (x *SuggestTravelAssetsResponse) Reset() { *x = SuggestTravelAssetsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -135,7 +135,7 @@ func (x *SuggestTravelAssetsResponse) String() string { func (*SuggestTravelAssetsResponse) ProtoMessage() {} func (x *SuggestTravelAssetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -148,7 +148,7 @@ func (x *SuggestTravelAssetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use SuggestTravelAssetsResponse.ProtoReflect.Descriptor instead. func (*SuggestTravelAssetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_rawDescGZIP(), []int{1} } func (x *SuggestTravelAssetsResponse) GetHotelAssetSuggestions() []*HotelAssetSuggestion { @@ -171,19 +171,19 @@ type HotelAssetSuggestion struct { // Hotel name in requested language. HotelName string `protobuf:"bytes,3,opt,name=hotel_name,json=hotelName,proto3" json:"hotel_name,omitempty"` // Call to action type. - CallToAction enums.CallToActionTypeEnum_CallToActionType `protobuf:"varint,4,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,4,opt,name=call_to_action,json=callToAction,proto3,enum=google.ads.googleads.v17.enums.CallToActionTypeEnum_CallToActionType" json:"call_to_action,omitempty"` // Text assets such as headline, description, etc. TextAssets []*HotelTextAsset `protobuf:"bytes,5,rep,name=text_assets,json=textAssets,proto3" json:"text_assets,omitempty"` // Image assets such as landscape/portrait/square, etc. ImageAssets []*HotelImageAsset `protobuf:"bytes,6,rep,name=image_assets,json=imageAssets,proto3" json:"image_assets,omitempty"` // The status of the hotel asset suggestion. - Status enums.HotelAssetSuggestionStatusEnum_HotelAssetSuggestionStatus `protobuf:"varint,7,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.HotelAssetSuggestionStatusEnum_HotelAssetSuggestionStatus" json:"status,omitempty"` + Status enums.HotelAssetSuggestionStatusEnum_HotelAssetSuggestionStatus `protobuf:"varint,7,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.HotelAssetSuggestionStatusEnum_HotelAssetSuggestionStatus" json:"status,omitempty"` } func (x *HotelAssetSuggestion) Reset() { *x = HotelAssetSuggestion{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -196,7 +196,7 @@ func (x *HotelAssetSuggestion) String() string { func (*HotelAssetSuggestion) ProtoMessage() {} func (x *HotelAssetSuggestion) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -209,7 +209,7 @@ func (x *HotelAssetSuggestion) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelAssetSuggestion.ProtoReflect.Descriptor instead. func (*HotelAssetSuggestion) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_rawDescGZIP(), []int{2} } func (x *HotelAssetSuggestion) GetPlaceId() string { @@ -270,13 +270,13 @@ type HotelTextAsset struct { // Asset text in requested language. Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"` // The text asset type. For example, HEADLINE, DESCRIPTION, etc. - AssetFieldType enums.AssetFieldTypeEnum_AssetFieldType `protobuf:"varint,2,opt,name=asset_field_type,json=assetFieldType,proto3,enum=google.ads.googleads.v16.enums.AssetFieldTypeEnum_AssetFieldType" json:"asset_field_type,omitempty"` + AssetFieldType enums.AssetFieldTypeEnum_AssetFieldType `protobuf:"varint,2,opt,name=asset_field_type,json=assetFieldType,proto3,enum=google.ads.googleads.v17.enums.AssetFieldTypeEnum_AssetFieldType" json:"asset_field_type,omitempty"` } func (x *HotelTextAsset) Reset() { *x = HotelTextAsset{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -289,7 +289,7 @@ func (x *HotelTextAsset) String() string { func (*HotelTextAsset) ProtoMessage() {} func (x *HotelTextAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -302,7 +302,7 @@ func (x *HotelTextAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelTextAsset.ProtoReflect.Descriptor instead. func (*HotelTextAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_rawDescGZIP(), []int{3} } func (x *HotelTextAsset) GetText() string { @@ -329,13 +329,13 @@ type HotelImageAsset struct { Uri string `protobuf:"bytes,1,opt,name=uri,proto3" json:"uri,omitempty"` // The Image asset type. For example, MARKETING_IMAGE, // PORTRAIT_MARKETING_IMAGE, etc. - AssetFieldType enums.AssetFieldTypeEnum_AssetFieldType `protobuf:"varint,2,opt,name=asset_field_type,json=assetFieldType,proto3,enum=google.ads.googleads.v16.enums.AssetFieldTypeEnum_AssetFieldType" json:"asset_field_type,omitempty"` + AssetFieldType enums.AssetFieldTypeEnum_AssetFieldType `protobuf:"varint,2,opt,name=asset_field_type,json=assetFieldType,proto3,enum=google.ads.googleads.v17.enums.AssetFieldTypeEnum_AssetFieldType" json:"asset_field_type,omitempty"` } func (x *HotelImageAsset) Reset() { *x = HotelImageAsset{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -348,7 +348,7 @@ func (x *HotelImageAsset) String() string { func (*HotelImageAsset) ProtoMessage() {} func (x *HotelImageAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -361,7 +361,7 @@ func (x *HotelImageAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelImageAsset.ProtoReflect.Descriptor instead. func (*HotelImageAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_rawDescGZIP(), []int{4} } func (x *HotelImageAsset) GetUri() string { @@ -378,25 +378,25 @@ func (x *HotelImageAsset) GetAssetFieldType() enums.AssetFieldTypeEnum_AssetFiel return enums.AssetFieldTypeEnum_AssetFieldType(0) } -var File_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_travel_asset_suggestion_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x35, 0x67, 0x6f, + 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 0x61, 0x73, 0x73, + 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, 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, + 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, 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, 0x68, 0x6f, + 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, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, @@ -419,7 +419,7 @@ var file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto 0x65, 0x6c, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x48, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x15, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0xf8, 0x03, 0x0a, 0x14, 0x48, @@ -432,24 +432,24 @@ var file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto 0x09, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x6b, 0x0a, 0x0e, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x74, 0x6f, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 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, + 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, 0x6c, 0x6c, 0x54, 0x6f, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x52, 0x0a, 0x0b, 0x74, 0x65, 0x78, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x73, 0x18, 0x05, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x54, 0x65, 0x78, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0a, 0x74, 0x65, 0x78, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x12, 0x55, 0x0a, 0x0c, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x73, 0x18, 0x06, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0b, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x12, 0x71, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 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, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 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, 0x2e, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x75, 0x67, @@ -460,7 +460,7 @@ var file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 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, 0x41, 0x73, 0x73, 0x65, 0x74, 0x46, 0x69, 0x65, + 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, 0x0e, 0x61, 0x73, 0x73, 0x65, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x22, 0x90, 0x01, 0x0a, 0x0f, 0x48, 0x6f, @@ -469,7 +469,7 @@ var file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto 0x6b, 0x0a, 0x10, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 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, 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, 0x0e, 0x61, 0x73, 0x73, 0x65, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x32, 0xd9, 0x02, 0x0a, @@ -477,17 +477,17 @@ var file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xf1, 0x01, 0x0a, 0x13, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x54, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x54, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x54, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5b, 0xda, 0x41, 0x1b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x37, 0x3a, 0x01, 0x2a, 0x22, 0x32, 0x2f, - 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, + 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x3a, 0x73, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x54, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, @@ -496,57 +496,57 @@ var file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x8d, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x21, 0x54, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, + 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_rawDescData = file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_rawDesc + file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_rawDescData = file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_rawDescData -} - -var file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_msgTypes = make([]protoimpl.MessageInfo, 5) -var file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_goTypes = []interface{}{ - (*SuggestTravelAssetsRequest)(nil), // 0: google.ads.googleads.v16.services.SuggestTravelAssetsRequest - (*SuggestTravelAssetsResponse)(nil), // 1: google.ads.googleads.v16.services.SuggestTravelAssetsResponse - (*HotelAssetSuggestion)(nil), // 2: google.ads.googleads.v16.services.HotelAssetSuggestion - (*HotelTextAsset)(nil), // 3: google.ads.googleads.v16.services.HotelTextAsset - (*HotelImageAsset)(nil), // 4: google.ads.googleads.v16.services.HotelImageAsset - (enums.CallToActionTypeEnum_CallToActionType)(0), // 5: google.ads.googleads.v16.enums.CallToActionTypeEnum.CallToActionType - (enums.HotelAssetSuggestionStatusEnum_HotelAssetSuggestionStatus)(0), // 6: google.ads.googleads.v16.enums.HotelAssetSuggestionStatusEnum.HotelAssetSuggestionStatus - (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 7: google.ads.googleads.v16.enums.AssetFieldTypeEnum.AssetFieldType -} -var file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v16.services.SuggestTravelAssetsResponse.hotel_asset_suggestions:type_name -> google.ads.googleads.v16.services.HotelAssetSuggestion - 5, // 1: google.ads.googleads.v16.services.HotelAssetSuggestion.call_to_action:type_name -> google.ads.googleads.v16.enums.CallToActionTypeEnum.CallToActionType - 3, // 2: google.ads.googleads.v16.services.HotelAssetSuggestion.text_assets:type_name -> google.ads.googleads.v16.services.HotelTextAsset - 4, // 3: google.ads.googleads.v16.services.HotelAssetSuggestion.image_assets:type_name -> google.ads.googleads.v16.services.HotelImageAsset - 6, // 4: google.ads.googleads.v16.services.HotelAssetSuggestion.status:type_name -> google.ads.googleads.v16.enums.HotelAssetSuggestionStatusEnum.HotelAssetSuggestionStatus - 7, // 5: google.ads.googleads.v16.services.HotelTextAsset.asset_field_type:type_name -> google.ads.googleads.v16.enums.AssetFieldTypeEnum.AssetFieldType - 7, // 6: google.ads.googleads.v16.services.HotelImageAsset.asset_field_type:type_name -> google.ads.googleads.v16.enums.AssetFieldTypeEnum.AssetFieldType - 0, // 7: google.ads.googleads.v16.services.TravelAssetSuggestionService.SuggestTravelAssets:input_type -> google.ads.googleads.v16.services.SuggestTravelAssetsRequest - 1, // 8: google.ads.googleads.v16.services.TravelAssetSuggestionService.SuggestTravelAssets:output_type -> google.ads.googleads.v16.services.SuggestTravelAssetsResponse + return file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_rawDescData +} + +var file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_msgTypes = make([]protoimpl.MessageInfo, 5) +var file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_goTypes = []interface{}{ + (*SuggestTravelAssetsRequest)(nil), // 0: google.ads.googleads.v17.services.SuggestTravelAssetsRequest + (*SuggestTravelAssetsResponse)(nil), // 1: google.ads.googleads.v17.services.SuggestTravelAssetsResponse + (*HotelAssetSuggestion)(nil), // 2: google.ads.googleads.v17.services.HotelAssetSuggestion + (*HotelTextAsset)(nil), // 3: google.ads.googleads.v17.services.HotelTextAsset + (*HotelImageAsset)(nil), // 4: google.ads.googleads.v17.services.HotelImageAsset + (enums.CallToActionTypeEnum_CallToActionType)(0), // 5: google.ads.googleads.v17.enums.CallToActionTypeEnum.CallToActionType + (enums.HotelAssetSuggestionStatusEnum_HotelAssetSuggestionStatus)(0), // 6: google.ads.googleads.v17.enums.HotelAssetSuggestionStatusEnum.HotelAssetSuggestionStatus + (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 7: google.ads.googleads.v17.enums.AssetFieldTypeEnum.AssetFieldType +} +var file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v17.services.SuggestTravelAssetsResponse.hotel_asset_suggestions:type_name -> google.ads.googleads.v17.services.HotelAssetSuggestion + 5, // 1: google.ads.googleads.v17.services.HotelAssetSuggestion.call_to_action:type_name -> google.ads.googleads.v17.enums.CallToActionTypeEnum.CallToActionType + 3, // 2: google.ads.googleads.v17.services.HotelAssetSuggestion.text_assets:type_name -> google.ads.googleads.v17.services.HotelTextAsset + 4, // 3: google.ads.googleads.v17.services.HotelAssetSuggestion.image_assets:type_name -> google.ads.googleads.v17.services.HotelImageAsset + 6, // 4: google.ads.googleads.v17.services.HotelAssetSuggestion.status:type_name -> google.ads.googleads.v17.enums.HotelAssetSuggestionStatusEnum.HotelAssetSuggestionStatus + 7, // 5: google.ads.googleads.v17.services.HotelTextAsset.asset_field_type:type_name -> google.ads.googleads.v17.enums.AssetFieldTypeEnum.AssetFieldType + 7, // 6: google.ads.googleads.v17.services.HotelImageAsset.asset_field_type:type_name -> google.ads.googleads.v17.enums.AssetFieldTypeEnum.AssetFieldType + 0, // 7: google.ads.googleads.v17.services.TravelAssetSuggestionService.SuggestTravelAssets:input_type -> google.ads.googleads.v17.services.SuggestTravelAssetsRequest + 1, // 8: google.ads.googleads.v17.services.TravelAssetSuggestionService.SuggestTravelAssets:output_type -> google.ads.googleads.v17.services.SuggestTravelAssetsResponse 8, // [8:9] is the sub-list for method output_type 7, // [7:8] is the sub-list for method input_type 7, // [7:7] is the sub-list for extension type_name @@ -554,13 +554,13 @@ var file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto 0, // [0:7] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_init() } -func file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_init() { - if File_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_init() } +func file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_init() { + if File_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SuggestTravelAssetsRequest); i { case 0: return &v.state @@ -572,7 +572,7 @@ func file_google_ads_googleads_v16_services_travel_asset_suggestion_service_prot return nil } } - file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SuggestTravelAssetsResponse); i { case 0: return &v.state @@ -584,7 +584,7 @@ func file_google_ads_googleads_v16_services_travel_asset_suggestion_service_prot return nil } } - file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*HotelAssetSuggestion); i { case 0: return &v.state @@ -596,7 +596,7 @@ func file_google_ads_googleads_v16_services_travel_asset_suggestion_service_prot return nil } } - file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*HotelTextAsset); i { case 0: return &v.state @@ -608,7 +608,7 @@ func file_google_ads_googleads_v16_services_travel_asset_suggestion_service_prot return nil } } - file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*HotelImageAsset); i { case 0: return &v.state @@ -625,18 +625,18 @@ func file_google_ads_googleads_v16_services_travel_asset_suggestion_service_prot out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_rawDesc, NumEnums: 0, NumMessages: 5, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto = out.File - file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_travel_asset_suggestion_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto = out.File + file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_travel_asset_suggestion_service_proto_depIdxs = nil } diff --git a/services/travel_asset_suggestion_service_grpc.pb.go b/services/travel_asset_suggestion_service_grpc.pb.go index c4aac74b..9b7ca49c 100644 --- a/services/travel_asset_suggestion_service_grpc.pb.go +++ b/services/travel_asset_suggestion_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/travel_asset_suggestion_service.proto +// source: google/ads/googleads/v17/services/travel_asset_suggestion_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - TravelAssetSuggestionService_SuggestTravelAssets_FullMethodName = "/google.ads.googleads.v16.services.TravelAssetSuggestionService/SuggestTravelAssets" + TravelAssetSuggestionService_SuggestTravelAssets_FullMethodName = "/google.ads.googleads.v17.services.TravelAssetSuggestionService/SuggestTravelAssets" ) // TravelAssetSuggestionServiceClient is the client API for TravelAssetSuggestionService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to retrieve Travel asset suggestions. type TravelAssetSuggestionServiceClient interface { // Returns Travel Asset suggestions. Asset // suggestions are returned on a best-effort basis. There are no guarantees @@ -56,8 +58,9 @@ func NewTravelAssetSuggestionServiceClient(cc grpc.ClientConnInterface) TravelAs } func (c *travelAssetSuggestionServiceClient) SuggestTravelAssets(ctx context.Context, in *SuggestTravelAssetsRequest, opts ...grpc.CallOption) (*SuggestTravelAssetsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(SuggestTravelAssetsResponse) - err := c.cc.Invoke(ctx, TravelAssetSuggestionService_SuggestTravelAssets_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, TravelAssetSuggestionService_SuggestTravelAssets_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -67,6 +70,8 @@ func (c *travelAssetSuggestionServiceClient) SuggestTravelAssets(ctx context.Con // TravelAssetSuggestionServiceServer is the server API for TravelAssetSuggestionService service. // All implementations must embed UnimplementedTravelAssetSuggestionServiceServer // for forward compatibility +// +// Service to retrieve Travel asset suggestions. type TravelAssetSuggestionServiceServer interface { // Returns Travel Asset suggestions. Asset // suggestions are returned on a best-effort basis. There are no guarantees @@ -119,7 +124,7 @@ func _TravelAssetSuggestionService_SuggestTravelAssets_Handler(srv interface{}, // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var TravelAssetSuggestionService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.TravelAssetSuggestionService", + ServiceName: "google.ads.googleads.v17.services.TravelAssetSuggestionService", HandlerType: (*TravelAssetSuggestionServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -128,5 +133,5 @@ var TravelAssetSuggestionService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/travel_asset_suggestion_service.proto", + Metadata: "google/ads/googleads/v17/services/travel_asset_suggestion_service.proto", } diff --git a/services/user_data_service.pb.go b/services/user_data_service.pb.go index 02fb4f32..d1567f73 100644 --- a/services/user_data_service.pb.go +++ b/services/user_data_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/user_data_service.proto +// source: google/ads/googleads/v17/services/user_data_service.proto package services @@ -37,7 +37,7 @@ const ( ) // Request message for -// [UserDataService.UploadUserData][google.ads.googleads.v16.services.UserDataService.UploadUserData] +// [UserDataService.UploadUserData][google.ads.googleads.v17.services.UserDataService.UploadUserData] type UploadUserDataRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -58,7 +58,7 @@ type UploadUserDataRequest struct { func (x *UploadUserDataRequest) Reset() { *x = UploadUserDataRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_user_data_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_user_data_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -71,7 +71,7 @@ func (x *UploadUserDataRequest) String() string { func (*UploadUserDataRequest) ProtoMessage() {} func (x *UploadUserDataRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_user_data_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_user_data_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84,7 +84,7 @@ func (x *UploadUserDataRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UploadUserDataRequest.ProtoReflect.Descriptor instead. func (*UploadUserDataRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_user_data_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_user_data_service_proto_rawDescGZIP(), []int{0} } func (x *UploadUserDataRequest) GetCustomerId() string { @@ -144,7 +144,7 @@ type UserDataOperation struct { func (x *UserDataOperation) Reset() { *x = UserDataOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_user_data_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_user_data_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -157,7 +157,7 @@ func (x *UserDataOperation) String() string { func (*UserDataOperation) ProtoMessage() {} func (x *UserDataOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_user_data_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_user_data_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -170,7 +170,7 @@ func (x *UserDataOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use UserDataOperation.ProtoReflect.Descriptor instead. func (*UserDataOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_user_data_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_user_data_service_proto_rawDescGZIP(), []int{1} } func (m *UserDataOperation) GetOperation() isUserDataOperation_Operation { @@ -213,7 +213,7 @@ func (*UserDataOperation_Create) isUserDataOperation_Operation() {} func (*UserDataOperation_Remove) isUserDataOperation_Operation() {} // Response message for -// [UserDataService.UploadUserData][google.ads.googleads.v16.services.UserDataService.UploadUserData] +// [UserDataService.UploadUserData][google.ads.googleads.v17.services.UserDataService.UploadUserData] // Uploads made through this service will not be visible under the 'Segment // members' section for the Customer Match List in the Google Ads UI. type UploadUserDataResponse struct { @@ -231,7 +231,7 @@ type UploadUserDataResponse struct { func (x *UploadUserDataResponse) Reset() { *x = UploadUserDataResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_user_data_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_user_data_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -244,7 +244,7 @@ func (x *UploadUserDataResponse) String() string { func (*UploadUserDataResponse) ProtoMessage() {} func (x *UploadUserDataResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_user_data_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_user_data_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -257,7 +257,7 @@ func (x *UploadUserDataResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use UploadUserDataResponse.ProtoReflect.Descriptor instead. func (*UploadUserDataResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_user_data_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_user_data_service_proto_rawDescGZIP(), []int{2} } func (x *UploadUserDataResponse) GetUploadDateTime() string { @@ -274,17 +274,17 @@ func (x *UploadUserDataResponse) GetReceivedOperationsCount() int32 { return 0 } -var File_google_ads_googleads_v16_services_user_data_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_user_data_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_user_data_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_user_data_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x37, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 0x2f, + 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, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, @@ -298,7 +298,7 @@ var file_google_ads_googleads_v16_services_user_data_service_proto_rawDesc = []b 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x59, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x8a, 0x01, 0x0a, 0x21, 0x63, @@ -306,7 +306,7 @@ var file_google_ads_googleads_v16_services_user_data_service_proto_rawDesc = []b 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x02, 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, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, 0x1d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x4d, @@ -315,11 +315,11 @@ var file_google_ads_googleads_v16_services_user_data_service_proto_rawDesc = []b 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x43, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 0x55, 0x73, 0x65, 0x72, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x43, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xbb, 0x01, 0x0a, 0x16, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, @@ -337,14 +337,14 @@ var file_google_ads_googleads_v16_services_user_data_service_proto_rawDesc = []b 0x02, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xbf, 0x01, 0x0a, 0x0e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x12, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x38, 0x82, 0xd3, 0xe4, 0x93, - 0x02, 0x32, 0x3a, 0x01, 0x2a, 0x22, 0x2d, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, + 0x02, 0x32, 0x3a, 0x01, 0x2a, 0x22, 0x2d, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x3a, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, @@ -353,51 +353,51 @@ var file_google_ads_googleads_v16_services_user_data_service_proto_rawDesc = []b 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x80, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x14, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, + 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_user_data_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_user_data_service_proto_rawDescData = file_google_ads_googleads_v16_services_user_data_service_proto_rawDesc + file_google_ads_googleads_v17_services_user_data_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_user_data_service_proto_rawDescData = file_google_ads_googleads_v17_services_user_data_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_user_data_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_user_data_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_user_data_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_user_data_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_user_data_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_user_data_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_user_data_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_user_data_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_user_data_service_proto_rawDescData -} - -var file_google_ads_googleads_v16_services_user_data_service_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_google_ads_googleads_v16_services_user_data_service_proto_goTypes = []interface{}{ - (*UploadUserDataRequest)(nil), // 0: google.ads.googleads.v16.services.UploadUserDataRequest - (*UserDataOperation)(nil), // 1: google.ads.googleads.v16.services.UserDataOperation - (*UploadUserDataResponse)(nil), // 2: google.ads.googleads.v16.services.UploadUserDataResponse - (*common.CustomerMatchUserListMetadata)(nil), // 3: google.ads.googleads.v16.common.CustomerMatchUserListMetadata - (*common.UserData)(nil), // 4: google.ads.googleads.v16.common.UserData -} -var file_google_ads_googleads_v16_services_user_data_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.UploadUserDataRequest.operations:type_name -> google.ads.googleads.v16.services.UserDataOperation - 3, // 1: google.ads.googleads.v16.services.UploadUserDataRequest.customer_match_user_list_metadata:type_name -> google.ads.googleads.v16.common.CustomerMatchUserListMetadata - 4, // 2: google.ads.googleads.v16.services.UserDataOperation.create:type_name -> google.ads.googleads.v16.common.UserData - 4, // 3: google.ads.googleads.v16.services.UserDataOperation.remove:type_name -> google.ads.googleads.v16.common.UserData - 0, // 4: google.ads.googleads.v16.services.UserDataService.UploadUserData:input_type -> google.ads.googleads.v16.services.UploadUserDataRequest - 2, // 5: google.ads.googleads.v16.services.UserDataService.UploadUserData:output_type -> google.ads.googleads.v16.services.UploadUserDataResponse + return file_google_ads_googleads_v17_services_user_data_service_proto_rawDescData +} + +var file_google_ads_googleads_v17_services_user_data_service_proto_msgTypes = make([]protoimpl.MessageInfo, 3) +var file_google_ads_googleads_v17_services_user_data_service_proto_goTypes = []interface{}{ + (*UploadUserDataRequest)(nil), // 0: google.ads.googleads.v17.services.UploadUserDataRequest + (*UserDataOperation)(nil), // 1: google.ads.googleads.v17.services.UserDataOperation + (*UploadUserDataResponse)(nil), // 2: google.ads.googleads.v17.services.UploadUserDataResponse + (*common.CustomerMatchUserListMetadata)(nil), // 3: google.ads.googleads.v17.common.CustomerMatchUserListMetadata + (*common.UserData)(nil), // 4: google.ads.googleads.v17.common.UserData +} +var file_google_ads_googleads_v17_services_user_data_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.UploadUserDataRequest.operations:type_name -> google.ads.googleads.v17.services.UserDataOperation + 3, // 1: google.ads.googleads.v17.services.UploadUserDataRequest.customer_match_user_list_metadata:type_name -> google.ads.googleads.v17.common.CustomerMatchUserListMetadata + 4, // 2: google.ads.googleads.v17.services.UserDataOperation.create:type_name -> google.ads.googleads.v17.common.UserData + 4, // 3: google.ads.googleads.v17.services.UserDataOperation.remove:type_name -> google.ads.googleads.v17.common.UserData + 0, // 4: google.ads.googleads.v17.services.UserDataService.UploadUserData:input_type -> google.ads.googleads.v17.services.UploadUserDataRequest + 2, // 5: google.ads.googleads.v17.services.UserDataService.UploadUserData:output_type -> google.ads.googleads.v17.services.UploadUserDataResponse 5, // [5:6] is the sub-list for method output_type 4, // [4:5] is the sub-list for method input_type 4, // [4:4] is the sub-list for extension type_name @@ -405,13 +405,13 @@ var file_google_ads_googleads_v16_services_user_data_service_proto_depIdxs = []i 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_user_data_service_proto_init() } -func file_google_ads_googleads_v16_services_user_data_service_proto_init() { - if File_google_ads_googleads_v16_services_user_data_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_user_data_service_proto_init() } +func file_google_ads_googleads_v17_services_user_data_service_proto_init() { + if File_google_ads_googleads_v17_services_user_data_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_user_data_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_user_data_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*UploadUserDataRequest); i { case 0: return &v.state @@ -423,7 +423,7 @@ func file_google_ads_googleads_v16_services_user_data_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_user_data_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_user_data_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*UserDataOperation); i { case 0: return &v.state @@ -435,7 +435,7 @@ func file_google_ads_googleads_v16_services_user_data_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_user_data_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_user_data_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*UploadUserDataResponse); i { case 0: return &v.state @@ -448,30 +448,30 @@ func file_google_ads_googleads_v16_services_user_data_service_proto_init() { } } } - file_google_ads_googleads_v16_services_user_data_service_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_user_data_service_proto_msgTypes[0].OneofWrappers = []interface{}{ (*UploadUserDataRequest_CustomerMatchUserListMetadata)(nil), } - file_google_ads_googleads_v16_services_user_data_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_user_data_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*UserDataOperation_Create)(nil), (*UserDataOperation_Remove)(nil), } - file_google_ads_googleads_v16_services_user_data_service_proto_msgTypes[2].OneofWrappers = []interface{}{} + file_google_ads_googleads_v17_services_user_data_service_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_services_user_data_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_user_data_service_proto_rawDesc, NumEnums: 0, NumMessages: 3, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_user_data_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_user_data_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_user_data_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_user_data_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_user_data_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_user_data_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_user_data_service_proto = out.File - file_google_ads_googleads_v16_services_user_data_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_user_data_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_user_data_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_user_data_service_proto = out.File + file_google_ads_googleads_v17_services_user_data_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_user_data_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_user_data_service_proto_depIdxs = nil } diff --git a/services/user_data_service_grpc.pb.go b/services/user_data_service_grpc.pb.go index 7b5628d8..1a93f533 100644 --- a/services/user_data_service_grpc.pb.go +++ b/services/user_data_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/user_data_service.proto +// source: google/ads/googleads/v17/services/user_data_service.proto package services @@ -29,16 +29,23 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - UserDataService_UploadUserData_FullMethodName = "/google.ads.googleads.v16.services.UserDataService/UploadUserData" + UserDataService_UploadUserData_FullMethodName = "/google.ads.googleads.v17.services.UserDataService/UploadUserData" ) // UserDataServiceClient is the client API for UserDataService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage user data uploads. +// Any uploads made to a Customer Match list through this service will be +// eligible for matching as per the customer matching process. See +// https://support.google.com/google-ads/answer/7474263. However, the uploads +// made through this service will not be visible under the 'Segment members' +// section for the Customer Match List in the Google Ads UI. type UserDataServiceClient interface { // Uploads the given user data. // @@ -67,8 +74,9 @@ func NewUserDataServiceClient(cc grpc.ClientConnInterface) UserDataServiceClient } func (c *userDataServiceClient) UploadUserData(ctx context.Context, in *UploadUserDataRequest, opts ...grpc.CallOption) (*UploadUserDataResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(UploadUserDataResponse) - err := c.cc.Invoke(ctx, UserDataService_UploadUserData_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, UserDataService_UploadUserData_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -78,6 +86,13 @@ func (c *userDataServiceClient) UploadUserData(ctx context.Context, in *UploadUs // UserDataServiceServer is the server API for UserDataService service. // All implementations must embed UnimplementedUserDataServiceServer // for forward compatibility +// +// Service to manage user data uploads. +// Any uploads made to a Customer Match list through this service will be +// eligible for matching as per the customer matching process. See +// https://support.google.com/google-ads/answer/7474263. However, the uploads +// made through this service will not be visible under the 'Segment members' +// section for the Customer Match List in the Google Ads UI. type UserDataServiceServer interface { // Uploads the given user data. // @@ -140,7 +155,7 @@ func _UserDataService_UploadUserData_Handler(srv interface{}, ctx context.Contex // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var UserDataService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.UserDataService", + ServiceName: "google.ads.googleads.v17.services.UserDataService", HandlerType: (*UserDataServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -149,5 +164,5 @@ var UserDataService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/user_data_service.proto", + Metadata: "google/ads/googleads/v17/services/user_data_service.proto", } diff --git a/services/user_list_customer_type_service.pb.go b/services/user_list_customer_type_service.pb.go new file mode 100644 index 00000000..1b7f0ebd --- /dev/null +++ b/services/user_list_customer_type_service.pb.go @@ -0,0 +1,553 @@ +// Copyright 2024 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/services/user_list_customer_type_service.proto + +package services + +import ( + resources "github.com/shenzhencenter/google-ads-pb/resources" + _ "google.golang.org/genproto/googleapis/api/annotations" + status "google.golang.org/genproto/googleapis/rpc/status" + 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) +) + +// Request message for +// [UserListCustomerTypeService.MutateUserListCustomerTypes][google.ads.googleads.v17.services.UserListCustomerTypeService.MutateUserListCustomerTypes]. +type MutateUserListCustomerTypesRequest struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + // Required. The ID of the customer whose user list customer types are being + // modified. + CustomerId string `protobuf:"bytes,1,opt,name=customer_id,json=customerId,proto3" json:"customer_id,omitempty"` + // Required. The list of operations to perform on the user list customer + // types. + Operations []*UserListCustomerTypeOperation `protobuf:"bytes,2,rep,name=operations,proto3" json:"operations,omitempty"` + // Optional. If true, successful operations will be carried out and invalid + // operations will return errors. If false, all operations will be carried + // out in one transaction if and only if they are all valid. + // Default is false. + PartialFailure bool `protobuf:"varint,3,opt,name=partial_failure,json=partialFailure,proto3" json:"partial_failure,omitempty"` + // Optional. If true, the request is validated but not executed. Only errors + // are returned, not results. + ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` +} + +func (x *MutateUserListCustomerTypesRequest) Reset() { + *x = MutateUserListCustomerTypesRequest{} + if protoimpl.UnsafeEnabled { + mi := &file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *MutateUserListCustomerTypesRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*MutateUserListCustomerTypesRequest) ProtoMessage() {} + +func (x *MutateUserListCustomerTypesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v17_services_user_list_customer_type_service_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 MutateUserListCustomerTypesRequest.ProtoReflect.Descriptor instead. +func (*MutateUserListCustomerTypesRequest) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_rawDescGZIP(), []int{0} +} + +func (x *MutateUserListCustomerTypesRequest) GetCustomerId() string { + if x != nil { + return x.CustomerId + } + return "" +} + +func (x *MutateUserListCustomerTypesRequest) GetOperations() []*UserListCustomerTypeOperation { + if x != nil { + return x.Operations + } + return nil +} + +func (x *MutateUserListCustomerTypesRequest) GetPartialFailure() bool { + if x != nil { + return x.PartialFailure + } + return false +} + +func (x *MutateUserListCustomerTypesRequest) GetValidateOnly() bool { + if x != nil { + return x.ValidateOnly + } + return false +} + +// A single mutate operation on the user list customer type. +type UserListCustomerTypeOperation struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + // The mutate operation. + // + // Types that are assignable to Operation: + // + // *UserListCustomerTypeOperation_Create + // *UserListCustomerTypeOperation_Remove + Operation isUserListCustomerTypeOperation_Operation `protobuf_oneof:"operation"` +} + +func (x *UserListCustomerTypeOperation) Reset() { + *x = UserListCustomerTypeOperation{} + if protoimpl.UnsafeEnabled { + mi := &file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_msgTypes[1] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *UserListCustomerTypeOperation) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*UserListCustomerTypeOperation) ProtoMessage() {} + +func (x *UserListCustomerTypeOperation) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_msgTypes[1] + 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 UserListCustomerTypeOperation.ProtoReflect.Descriptor instead. +func (*UserListCustomerTypeOperation) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_rawDescGZIP(), []int{1} +} + +func (m *UserListCustomerTypeOperation) GetOperation() isUserListCustomerTypeOperation_Operation { + if m != nil { + return m.Operation + } + return nil +} + +func (x *UserListCustomerTypeOperation) GetCreate() *resources.UserListCustomerType { + if x, ok := x.GetOperation().(*UserListCustomerTypeOperation_Create); ok { + return x.Create + } + return nil +} + +func (x *UserListCustomerTypeOperation) GetRemove() string { + if x, ok := x.GetOperation().(*UserListCustomerTypeOperation_Remove); ok { + return x.Remove + } + return "" +} + +type isUserListCustomerTypeOperation_Operation interface { + isUserListCustomerTypeOperation_Operation() +} + +type UserListCustomerTypeOperation_Create struct { + // Attach a user list customer type to a user list. + // No resource name is expected for the new user list customer type. + Create *resources.UserListCustomerType `protobuf:"bytes,1,opt,name=create,proto3,oneof"` +} + +type UserListCustomerTypeOperation_Remove struct { + // Remove an existing user list customer type. + // A resource name for the removed user list customer type is + // expected, in this format: + // + // `customers/{customer_id}/userListCustomerTypes/{user_list_id}~{customer_type_category}` + Remove string `protobuf:"bytes,2,opt,name=remove,proto3,oneof"` +} + +func (*UserListCustomerTypeOperation_Create) isUserListCustomerTypeOperation_Operation() {} + +func (*UserListCustomerTypeOperation_Remove) isUserListCustomerTypeOperation_Operation() {} + +// Response message for a user list customer type mutate. +type MutateUserListCustomerTypesResponse struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + // Errors that pertain to operation failures in the partial failure mode. + // Returned only when partial_failure = true and all errors occur inside the + // operations. If any errors occur outside the operations (for example, auth + // errors), we return an RPC level error. + PartialFailureError *status.Status `protobuf:"bytes,1,opt,name=partial_failure_error,json=partialFailureError,proto3" json:"partial_failure_error,omitempty"` + // All results for the mutate. + Results []*MutateUserListCustomerTypeResult `protobuf:"bytes,2,rep,name=results,proto3" json:"results,omitempty"` +} + +func (x *MutateUserListCustomerTypesResponse) Reset() { + *x = MutateUserListCustomerTypesResponse{} + if protoimpl.UnsafeEnabled { + mi := &file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_msgTypes[2] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *MutateUserListCustomerTypesResponse) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*MutateUserListCustomerTypesResponse) ProtoMessage() {} + +func (x *MutateUserListCustomerTypesResponse) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_msgTypes[2] + 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 MutateUserListCustomerTypesResponse.ProtoReflect.Descriptor instead. +func (*MutateUserListCustomerTypesResponse) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_rawDescGZIP(), []int{2} +} + +func (x *MutateUserListCustomerTypesResponse) GetPartialFailureError() *status.Status { + if x != nil { + return x.PartialFailureError + } + return nil +} + +func (x *MutateUserListCustomerTypesResponse) GetResults() []*MutateUserListCustomerTypeResult { + if x != nil { + return x.Results + } + return nil +} + +// The result for the user list customer type mutate. +type MutateUserListCustomerTypeResult struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + // Returned for successful operations. + ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` +} + +func (x *MutateUserListCustomerTypeResult) Reset() { + *x = MutateUserListCustomerTypeResult{} + if protoimpl.UnsafeEnabled { + mi := &file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_msgTypes[3] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *MutateUserListCustomerTypeResult) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*MutateUserListCustomerTypeResult) ProtoMessage() {} + +func (x *MutateUserListCustomerTypeResult) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v17_services_user_list_customer_type_service_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 MutateUserListCustomerTypeResult.ProtoReflect.Descriptor instead. +func (*MutateUserListCustomerTypeResult) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_rawDescGZIP(), []int{3} +} + +func (x *MutateUserListCustomerTypeResult) GetResourceName() string { + if x != nil { + return x.ResourceName + } + return "" +} + +var File_google_ads_googleads_v17_services_user_list_customer_type_service_proto protoreflect.FileDescriptor + +var file_google_ads_googleads_v17_services_user_list_customer_type_service_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, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 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, 0x73, 0x65, 0x72, 0x76, + 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 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, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x67, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 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, 0x1a, 0x17, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x72, 0x70, 0x63, 0x2f, 0x73, 0x74, + 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x89, 0x02, 0x0a, 0x22, 0x4d, + 0x75, 0x74, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, + 0x74, 0x12, 0x24, 0x0a, 0x0b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x65, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x54, 0x79, 0x70, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, + 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x2c, + 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, + 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x0e, 0x70, 0x61, + 0x72, 0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x12, 0x28, 0x0a, 0x0d, + 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x04, 0x20, + 0x01, 0x28, 0x08, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x0c, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, + 0x74, 0x65, 0x4f, 0x6e, 0x6c, 0x79, 0x22, 0xce, 0x01, 0x0a, 0x1d, 0x55, 0x73, 0x65, 0x72, 0x4c, + 0x69, 0x73, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x4f, + 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x52, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, + 0x74, 0x65, 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, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x73, + 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x54, 0x79, + 0x70, 0x65, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x4c, 0x0a, 0x06, + 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x32, 0xfa, 0x41, + 0x2f, 0x0a, 0x2d, 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, 0x55, 0x73, 0x65, 0x72, + 0x4c, 0x69, 0x73, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, + 0x48, 0x00, 0x52, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x6f, 0x70, + 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xcc, 0x01, 0x0a, 0x23, 0x4d, 0x75, 0x74, 0x61, + 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, + 0x46, 0x0a, 0x15, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x75, + 0x72, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x72, 0x70, 0x63, 0x2e, 0x53, 0x74, 0x61, 0x74, + 0x75, 0x73, 0x52, 0x13, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, + 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x5d, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, + 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 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, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, + 0x6d, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, + 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x7b, 0x0a, 0x20, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, + 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x54, 0x79, 0x70, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x57, 0x0a, 0x0d, 0x72, 0x65, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x09, 0x42, 0x32, 0xfa, 0x41, 0x2f, 0x0a, 0x2d, 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, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x72, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, + 0x61, 0x6d, 0x65, 0x32, 0xf4, 0x02, 0x0a, 0x1b, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, + 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x53, 0x65, 0x72, 0x76, + 0x69, 0x63, 0x65, 0x12, 0x8d, 0x02, 0x0a, 0x1b, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x55, 0x73, + 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x54, 0x79, + 0x70, 0x65, 0x73, 0x12, 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, 0x37, 0x2e, 0x73, + 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x55, 0x73, + 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x54, 0x79, + 0x70, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x75, 0x74, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x73, 0x65, 0x22, 0x5f, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, + 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, + 0x93, 0x02, 0x40, 0x3a, 0x01, 0x2a, 0x22, 0x3b, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, + 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x73, 0x3a, 0x6d, 0x75, 0x74, + 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, + 0xd2, 0x41, 0x27, 0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x67, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, + 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x8c, 0x02, 0x0a, 0x25, 0x63, + 0x6f, 0x6d, 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, 0x73, 0x65, 0x72, 0x76, + 0x69, 0x63, 0x65, 0x73, 0x42, 0x20, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x75, + 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, + 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, + 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 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, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x33, +} + +var ( + file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_rawDescData = file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_rawDesc +) + +func file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_rawDescData) + }) + return file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_rawDescData +} + +var file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_goTypes = []interface{}{ + (*MutateUserListCustomerTypesRequest)(nil), // 0: google.ads.googleads.v17.services.MutateUserListCustomerTypesRequest + (*UserListCustomerTypeOperation)(nil), // 1: google.ads.googleads.v17.services.UserListCustomerTypeOperation + (*MutateUserListCustomerTypesResponse)(nil), // 2: google.ads.googleads.v17.services.MutateUserListCustomerTypesResponse + (*MutateUserListCustomerTypeResult)(nil), // 3: google.ads.googleads.v17.services.MutateUserListCustomerTypeResult + (*resources.UserListCustomerType)(nil), // 4: google.ads.googleads.v17.resources.UserListCustomerType + (*status.Status)(nil), // 5: google.rpc.Status +} +var file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateUserListCustomerTypesRequest.operations:type_name -> google.ads.googleads.v17.services.UserListCustomerTypeOperation + 4, // 1: google.ads.googleads.v17.services.UserListCustomerTypeOperation.create:type_name -> google.ads.googleads.v17.resources.UserListCustomerType + 5, // 2: google.ads.googleads.v17.services.MutateUserListCustomerTypesResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 3: google.ads.googleads.v17.services.MutateUserListCustomerTypesResponse.results:type_name -> google.ads.googleads.v17.services.MutateUserListCustomerTypeResult + 0, // 4: google.ads.googleads.v17.services.UserListCustomerTypeService.MutateUserListCustomerTypes:input_type -> google.ads.googleads.v17.services.MutateUserListCustomerTypesRequest + 2, // 5: google.ads.googleads.v17.services.UserListCustomerTypeService.MutateUserListCustomerTypes:output_type -> google.ads.googleads.v17.services.MutateUserListCustomerTypesResponse + 5, // [5:6] is the sub-list for method output_type + 4, // [4:5] is the sub-list for method input_type + 4, // [4:4] is the sub-list for extension type_name + 4, // [4:4] is the sub-list for extension extendee + 0, // [0:4] is the sub-list for field type_name +} + +func init() { file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_init() } +func file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_init() { + if File_google_ads_googleads_v17_services_user_list_customer_type_service_proto != nil { + return + } + if !protoimpl.UnsafeEnabled { + file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*MutateUserListCustomerTypesRequest); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*UserListCustomerTypeOperation); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*MutateUserListCustomerTypesResponse); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*MutateUserListCustomerTypeResult); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + } + file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + (*UserListCustomerTypeOperation_Create)(nil), + (*UserListCustomerTypeOperation_Remove)(nil), + } + type x struct{} + out := protoimpl.TypeBuilder{ + File: protoimpl.DescBuilder{ + GoPackagePath: reflect.TypeOf(x{}).PkgPath(), + RawDescriptor: file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_rawDesc, + NumEnums: 0, + NumMessages: 4, + NumExtensions: 0, + NumServices: 1, + }, + GoTypes: file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_msgTypes, + }.Build() + File_google_ads_googleads_v17_services_user_list_customer_type_service_proto = out.File + file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_user_list_customer_type_service_proto_depIdxs = nil +} diff --git a/services/user_list_customer_type_service_grpc.pb.go b/services/user_list_customer_type_service_grpc.pb.go new file mode 100644 index 00000000..6c1aaceb --- /dev/null +++ b/services/user_list_customer_type_service_grpc.pb.go @@ -0,0 +1,153 @@ +// Copyright 2024 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-grpc. DO NOT EDIT. +// versions: +// - protoc-gen-go-grpc v1.4.0 +// - protoc v4.24.4 +// source: google/ads/googleads/v17/services/user_list_customer_type_service.proto + +package services + +import ( + context "context" + grpc "google.golang.org/grpc" + codes "google.golang.org/grpc/codes" + status "google.golang.org/grpc/status" +) + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the grpc package it is being compiled against. +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 + +const ( + UserListCustomerTypeService_MutateUserListCustomerTypes_FullMethodName = "/google.ads.googleads.v17.services.UserListCustomerTypeService/MutateUserListCustomerTypes" +) + +// UserListCustomerTypeServiceClient is the client API for UserListCustomerTypeService service. +// +// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage user list customer types. +type UserListCustomerTypeServiceClient interface { + // Attach or remove user list customer types. Operation statuses + // are returned. + // + // List of thrown errors: + // + // [AuthenticationError]() + // [AuthorizationError]() + // [UserListCustomerTypeError]() + // [HeaderError]() + // [InternalError]() + // [QuotaError]() + // [RequestError]() + MutateUserListCustomerTypes(ctx context.Context, in *MutateUserListCustomerTypesRequest, opts ...grpc.CallOption) (*MutateUserListCustomerTypesResponse, error) +} + +type userListCustomerTypeServiceClient struct { + cc grpc.ClientConnInterface +} + +func NewUserListCustomerTypeServiceClient(cc grpc.ClientConnInterface) UserListCustomerTypeServiceClient { + return &userListCustomerTypeServiceClient{cc} +} + +func (c *userListCustomerTypeServiceClient) MutateUserListCustomerTypes(ctx context.Context, in *MutateUserListCustomerTypesRequest, opts ...grpc.CallOption) (*MutateUserListCustomerTypesResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) + out := new(MutateUserListCustomerTypesResponse) + err := c.cc.Invoke(ctx, UserListCustomerTypeService_MutateUserListCustomerTypes_FullMethodName, in, out, cOpts...) + if err != nil { + return nil, err + } + return out, nil +} + +// UserListCustomerTypeServiceServer is the server API for UserListCustomerTypeService service. +// All implementations must embed UnimplementedUserListCustomerTypeServiceServer +// for forward compatibility +// +// Service to manage user list customer types. +type UserListCustomerTypeServiceServer interface { + // Attach or remove user list customer types. Operation statuses + // are returned. + // + // List of thrown errors: + // + // [AuthenticationError]() + // [AuthorizationError]() + // [UserListCustomerTypeError]() + // [HeaderError]() + // [InternalError]() + // [QuotaError]() + // [RequestError]() + MutateUserListCustomerTypes(context.Context, *MutateUserListCustomerTypesRequest) (*MutateUserListCustomerTypesResponse, error) + mustEmbedUnimplementedUserListCustomerTypeServiceServer() +} + +// UnimplementedUserListCustomerTypeServiceServer must be embedded to have forward compatible implementations. +type UnimplementedUserListCustomerTypeServiceServer struct { +} + +func (UnimplementedUserListCustomerTypeServiceServer) MutateUserListCustomerTypes(context.Context, *MutateUserListCustomerTypesRequest) (*MutateUserListCustomerTypesResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method MutateUserListCustomerTypes not implemented") +} +func (UnimplementedUserListCustomerTypeServiceServer) mustEmbedUnimplementedUserListCustomerTypeServiceServer() { +} + +// UnsafeUserListCustomerTypeServiceServer may be embedded to opt out of forward compatibility for this service. +// Use of this interface is not recommended, as added methods to UserListCustomerTypeServiceServer will +// result in compilation errors. +type UnsafeUserListCustomerTypeServiceServer interface { + mustEmbedUnimplementedUserListCustomerTypeServiceServer() +} + +func RegisterUserListCustomerTypeServiceServer(s grpc.ServiceRegistrar, srv UserListCustomerTypeServiceServer) { + s.RegisterService(&UserListCustomerTypeService_ServiceDesc, srv) +} + +func _UserListCustomerTypeService_MutateUserListCustomerTypes_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(MutateUserListCustomerTypesRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(UserListCustomerTypeServiceServer).MutateUserListCustomerTypes(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: UserListCustomerTypeService_MutateUserListCustomerTypes_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(UserListCustomerTypeServiceServer).MutateUserListCustomerTypes(ctx, req.(*MutateUserListCustomerTypesRequest)) + } + return interceptor(ctx, in, info, handler) +} + +// UserListCustomerTypeService_ServiceDesc is the grpc.ServiceDesc for UserListCustomerTypeService service. +// It's only intended for direct use with grpc.RegisterService, +// and not to be introspected or modified (even as a copy) +var UserListCustomerTypeService_ServiceDesc = grpc.ServiceDesc{ + ServiceName: "google.ads.googleads.v17.services.UserListCustomerTypeService", + HandlerType: (*UserListCustomerTypeServiceServer)(nil), + Methods: []grpc.MethodDesc{ + { + MethodName: "MutateUserListCustomerTypes", + Handler: _UserListCustomerTypeService_MutateUserListCustomerTypes_Handler, + }, + }, + Streams: []grpc.StreamDesc{}, + Metadata: "google/ads/googleads/v17/services/user_list_customer_type_service.proto", +} diff --git a/services/user_list_service.pb.go b/services/user_list_service.pb.go index 4b6cc681..b45a751d 100644 --- a/services/user_list_service.pb.go +++ b/services/user_list_service.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.1 // protoc v4.24.4 -// source: google/ads/googleads/v16/services/user_list_service.proto +// source: google/ads/googleads/v17/services/user_list_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [UserListService.MutateUserLists][google.ads.googleads.v16.services.UserListService.MutateUserLists]. +// [UserListService.MutateUserLists][google.ads.googleads.v17.services.UserListService.MutateUserLists]. type MutateUserListsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -62,7 +62,7 @@ type MutateUserListsRequest struct { func (x *MutateUserListsRequest) Reset() { *x = MutateUserListsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_user_list_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_user_list_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75,7 +75,7 @@ func (x *MutateUserListsRequest) String() string { func (*MutateUserListsRequest) ProtoMessage() {} func (x *MutateUserListsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_user_list_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v17_services_user_list_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88,7 +88,7 @@ func (x *MutateUserListsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateUserListsRequest.ProtoReflect.Descriptor instead. func (*MutateUserListsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_user_list_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v17_services_user_list_service_proto_rawDescGZIP(), []int{0} } func (x *MutateUserListsRequest) GetCustomerId() string { @@ -140,7 +140,7 @@ type UserListOperation struct { func (x *UserListOperation) Reset() { *x = UserListOperation{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_user_list_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_user_list_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -153,7 +153,7 @@ func (x *UserListOperation) String() string { func (*UserListOperation) ProtoMessage() {} func (x *UserListOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_user_list_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v17_services_user_list_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -166,7 +166,7 @@ func (x *UserListOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use UserListOperation.ProtoReflect.Descriptor instead. func (*UserListOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_user_list_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v17_services_user_list_service_proto_rawDescGZIP(), []int{1} } func (x *UserListOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -251,7 +251,7 @@ type MutateUserListsResponse struct { func (x *MutateUserListsResponse) Reset() { *x = MutateUserListsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_user_list_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_user_list_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -264,7 +264,7 @@ func (x *MutateUserListsResponse) String() string { func (*MutateUserListsResponse) ProtoMessage() {} func (x *MutateUserListsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_user_list_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v17_services_user_list_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -277,7 +277,7 @@ func (x *MutateUserListsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateUserListsResponse.ProtoReflect.Descriptor instead. func (*MutateUserListsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_user_list_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v17_services_user_list_service_proto_rawDescGZIP(), []int{2} } func (x *MutateUserListsResponse) GetPartialFailureError() *status.Status { @@ -307,7 +307,7 @@ type MutateUserListResult struct { func (x *MutateUserListResult) Reset() { *x = MutateUserListResult{} if protoimpl.UnsafeEnabled { - mi := &file_google_ads_googleads_v16_services_user_list_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_user_list_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -320,7 +320,7 @@ func (x *MutateUserListResult) String() string { func (*MutateUserListResult) ProtoMessage() {} func (x *MutateUserListResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v16_services_user_list_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v17_services_user_list_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -333,7 +333,7 @@ func (x *MutateUserListResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateUserListResult.ProtoReflect.Descriptor instead. func (*MutateUserListResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v16_services_user_list_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v17_services_user_list_service_proto_rawDescGZIP(), []int{3} } func (x *MutateUserListResult) GetResourceName() string { @@ -343,17 +343,17 @@ func (x *MutateUserListResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v16_services_user_list_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v17_services_user_list_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v16_services_user_list_service_proto_rawDesc = []byte{ +var file_google_ads_googleads_v17_services_user_list_service_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, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x32, + 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, @@ -372,7 +372,7 @@ var file_google_ads_googleads_v16_services_user_list_service_proto_rawDesc = []b 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x59, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, @@ -388,11 +388,11 @@ var file_google_ads_googleads_v16_services_user_list_service_proto_rawDesc = []b 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x46, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 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, 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, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x46, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 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, + 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, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x48, 0x00, 0x52, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x40, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x26, 0xfa, @@ -408,7 +408,7 @@ var file_google_ads_googleads_v16_services_user_list_service_proto_rawDesc = []b 0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x51, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 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, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x63, 0x0a, 0x14, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, @@ -421,16 +421,16 @@ var file_google_ads_googleads_v16_services_user_list_service_proto_rawDesc = []b 0x72, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xdd, 0x01, 0x0a, 0x0f, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x73, 0x12, 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, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x53, 0xda, 0x41, 0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x34, 0x3a, 0x01, 0x2a, 0x22, 0x2f, 0x2f, 0x76, 0x31, - 0x36, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, + 0x37, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x3d, 0x2a, 0x7d, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x73, 0x3a, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, @@ -439,54 +439,54 @@ var file_google_ads_googleads_v16_services_user_list_service_proto_rawDesc = []b 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x80, 0x02, 0x0a, 0x25, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 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, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x14, 0x55, + 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x14, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 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, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, - 0x36, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, + 0x37, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x53, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_google_ads_googleads_v16_services_user_list_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v16_services_user_list_service_proto_rawDescData = file_google_ads_googleads_v16_services_user_list_service_proto_rawDesc + file_google_ads_googleads_v17_services_user_list_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v17_services_user_list_service_proto_rawDescData = file_google_ads_googleads_v17_services_user_list_service_proto_rawDesc ) -func file_google_ads_googleads_v16_services_user_list_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v16_services_user_list_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v16_services_user_list_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_services_user_list_service_proto_rawDescData) +func file_google_ads_googleads_v17_services_user_list_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v17_services_user_list_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v17_services_user_list_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_services_user_list_service_proto_rawDescData) }) - return file_google_ads_googleads_v16_services_user_list_service_proto_rawDescData + return file_google_ads_googleads_v17_services_user_list_service_proto_rawDescData } -var file_google_ads_googleads_v16_services_user_list_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v16_services_user_list_service_proto_goTypes = []interface{}{ - (*MutateUserListsRequest)(nil), // 0: google.ads.googleads.v16.services.MutateUserListsRequest - (*UserListOperation)(nil), // 1: google.ads.googleads.v16.services.UserListOperation - (*MutateUserListsResponse)(nil), // 2: google.ads.googleads.v16.services.MutateUserListsResponse - (*MutateUserListResult)(nil), // 3: google.ads.googleads.v16.services.MutateUserListResult +var file_google_ads_googleads_v17_services_user_list_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v17_services_user_list_service_proto_goTypes = []interface{}{ + (*MutateUserListsRequest)(nil), // 0: google.ads.googleads.v17.services.MutateUserListsRequest + (*UserListOperation)(nil), // 1: google.ads.googleads.v17.services.UserListOperation + (*MutateUserListsResponse)(nil), // 2: google.ads.googleads.v17.services.MutateUserListsResponse + (*MutateUserListResult)(nil), // 3: google.ads.googleads.v17.services.MutateUserListResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.UserList)(nil), // 5: google.ads.googleads.v16.resources.UserList + (*resources.UserList)(nil), // 5: google.ads.googleads.v17.resources.UserList (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v16_services_user_list_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v16.services.MutateUserListsRequest.operations:type_name -> google.ads.googleads.v16.services.UserListOperation - 4, // 1: google.ads.googleads.v16.services.UserListOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v16.services.UserListOperation.create:type_name -> google.ads.googleads.v16.resources.UserList - 5, // 3: google.ads.googleads.v16.services.UserListOperation.update:type_name -> google.ads.googleads.v16.resources.UserList - 6, // 4: google.ads.googleads.v16.services.MutateUserListsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 5: google.ads.googleads.v16.services.MutateUserListsResponse.results:type_name -> google.ads.googleads.v16.services.MutateUserListResult - 0, // 6: google.ads.googleads.v16.services.UserListService.MutateUserLists:input_type -> google.ads.googleads.v16.services.MutateUserListsRequest - 2, // 7: google.ads.googleads.v16.services.UserListService.MutateUserLists:output_type -> google.ads.googleads.v16.services.MutateUserListsResponse +var file_google_ads_googleads_v17_services_user_list_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v17.services.MutateUserListsRequest.operations:type_name -> google.ads.googleads.v17.services.UserListOperation + 4, // 1: google.ads.googleads.v17.services.UserListOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v17.services.UserListOperation.create:type_name -> google.ads.googleads.v17.resources.UserList + 5, // 3: google.ads.googleads.v17.services.UserListOperation.update:type_name -> google.ads.googleads.v17.resources.UserList + 6, // 4: google.ads.googleads.v17.services.MutateUserListsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 5: google.ads.googleads.v17.services.MutateUserListsResponse.results:type_name -> google.ads.googleads.v17.services.MutateUserListResult + 0, // 6: google.ads.googleads.v17.services.UserListService.MutateUserLists:input_type -> google.ads.googleads.v17.services.MutateUserListsRequest + 2, // 7: google.ads.googleads.v17.services.UserListService.MutateUserLists:output_type -> google.ads.googleads.v17.services.MutateUserListsResponse 7, // [7:8] is the sub-list for method output_type 6, // [6:7] is the sub-list for method input_type 6, // [6:6] is the sub-list for extension type_name @@ -494,13 +494,13 @@ var file_google_ads_googleads_v16_services_user_list_service_proto_depIdxs = []i 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v16_services_user_list_service_proto_init() } -func file_google_ads_googleads_v16_services_user_list_service_proto_init() { - if File_google_ads_googleads_v16_services_user_list_service_proto != nil { +func init() { file_google_ads_googleads_v17_services_user_list_service_proto_init() } +func file_google_ads_googleads_v17_services_user_list_service_proto_init() { + if File_google_ads_googleads_v17_services_user_list_service_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_google_ads_googleads_v16_services_user_list_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_user_list_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateUserListsRequest); i { case 0: return &v.state @@ -512,7 +512,7 @@ func file_google_ads_googleads_v16_services_user_list_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_user_list_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_user_list_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*UserListOperation); i { case 0: return &v.state @@ -524,7 +524,7 @@ func file_google_ads_googleads_v16_services_user_list_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_user_list_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_user_list_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateUserListsResponse); i { case 0: return &v.state @@ -536,7 +536,7 @@ func file_google_ads_googleads_v16_services_user_list_service_proto_init() { return nil } } - file_google_ads_googleads_v16_services_user_list_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_google_ads_googleads_v17_services_user_list_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MutateUserListResult); i { case 0: return &v.state @@ -549,7 +549,7 @@ func file_google_ads_googleads_v16_services_user_list_service_proto_init() { } } } - file_google_ads_googleads_v16_services_user_list_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_google_ads_googleads_v17_services_user_list_service_proto_msgTypes[1].OneofWrappers = []interface{}{ (*UserListOperation_Create)(nil), (*UserListOperation_Update)(nil), (*UserListOperation_Remove)(nil), @@ -558,18 +558,18 @@ func file_google_ads_googleads_v16_services_user_list_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_google_ads_googleads_v16_services_user_list_service_proto_rawDesc, + RawDescriptor: file_google_ads_googleads_v17_services_user_list_service_proto_rawDesc, NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v16_services_user_list_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v16_services_user_list_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v16_services_user_list_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v17_services_user_list_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v17_services_user_list_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v17_services_user_list_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v16_services_user_list_service_proto = out.File - file_google_ads_googleads_v16_services_user_list_service_proto_rawDesc = nil - file_google_ads_googleads_v16_services_user_list_service_proto_goTypes = nil - file_google_ads_googleads_v16_services_user_list_service_proto_depIdxs = nil + File_google_ads_googleads_v17_services_user_list_service_proto = out.File + file_google_ads_googleads_v17_services_user_list_service_proto_rawDesc = nil + file_google_ads_googleads_v17_services_user_list_service_proto_goTypes = nil + file_google_ads_googleads_v17_services_user_list_service_proto_depIdxs = nil } diff --git a/services/user_list_service_grpc.pb.go b/services/user_list_service_grpc.pb.go index c27690f5..f3fd77d9 100644 --- a/services/user_list_service_grpc.pb.go +++ b/services/user_list_service_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.3.0 +// - protoc-gen-go-grpc v1.4.0 // - protoc v4.24.4 -// source: google/ads/googleads/v16/services/user_list_service.proto +// source: google/ads/googleads/v17/services/user_list_service.proto package services @@ -29,16 +29,18 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 +// Requires gRPC-Go v1.62.0 or later. +const _ = grpc.SupportPackageIsVersion8 const ( - UserListService_MutateUserLists_FullMethodName = "/google.ads.googleads.v16.services.UserListService/MutateUserLists" + UserListService_MutateUserLists_FullMethodName = "/google.ads.googleads.v17.services.UserListService/MutateUserLists" ) // UserListServiceClient is the client API for UserListService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. +// +// Service to manage user lists. type UserListServiceClient interface { // Creates or updates user lists. Operation statuses are returned. // @@ -76,8 +78,9 @@ func NewUserListServiceClient(cc grpc.ClientConnInterface) UserListServiceClient } func (c *userListServiceClient) MutateUserLists(ctx context.Context, in *MutateUserListsRequest, opts ...grpc.CallOption) (*MutateUserListsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MutateUserListsResponse) - err := c.cc.Invoke(ctx, UserListService_MutateUserLists_FullMethodName, in, out, opts...) + err := c.cc.Invoke(ctx, UserListService_MutateUserLists_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } @@ -87,6 +90,8 @@ func (c *userListServiceClient) MutateUserLists(ctx context.Context, in *MutateU // UserListServiceServer is the server API for UserListService service. // All implementations must embed UnimplementedUserListServiceServer // for forward compatibility +// +// Service to manage user lists. type UserListServiceServer interface { // Creates or updates user lists. Operation statuses are returned. // @@ -158,7 +163,7 @@ func _UserListService_MutateUserLists_Handler(srv interface{}, ctx context.Conte // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var UserListService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v16.services.UserListService", + ServiceName: "google.ads.googleads.v17.services.UserListService", HandlerType: (*UserListServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -167,5 +172,5 @@ var UserListService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v16/services/user_list_service.proto", + Metadata: "google/ads/googleads/v17/services/user_list_service.proto", }